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 llvm::APInt ResultVal(MaxWidth, 0); 3359 3360 if (Literal.GetIntegerValue(ResultVal)) { 3361 // If this value didn't fit into uintmax_t, error and force to ull. 3362 Diag(Tok.getLocation(), diag::err_integer_literal_too_large) 3363 << /* Unsigned */ 1; 3364 Ty = Context.UnsignedLongLongTy; 3365 assert(Context.getTypeSize(Ty) == ResultVal.getBitWidth() && 3366 "long long is not intmax_t?"); 3367 } else { 3368 // If this value fits into a ULL, try to figure out what else it fits into 3369 // according to the rules of C99 6.4.4.1p5. 3370 3371 // Octal, Hexadecimal, and integers with a U suffix are allowed to 3372 // be an unsigned int. 3373 bool AllowUnsigned = Literal.isUnsigned || Literal.getRadix() != 10; 3374 3375 // Check from smallest to largest, picking the smallest type we can. 3376 unsigned Width = 0; 3377 3378 // Microsoft specific integer suffixes are explicitly sized. 3379 if (Literal.MicrosoftInteger) { 3380 if (Literal.MicrosoftInteger == 8 && !Literal.isUnsigned) { 3381 Width = 8; 3382 Ty = Context.CharTy; 3383 } else { 3384 Width = Literal.MicrosoftInteger; 3385 Ty = Context.getIntTypeForBitwidth(Width, 3386 /*Signed=*/!Literal.isUnsigned); 3387 } 3388 } 3389 3390 if (Ty.isNull() && !Literal.isLong && !Literal.isLongLong) { 3391 // Are int/unsigned possibilities? 3392 unsigned IntSize = Context.getTargetInfo().getIntWidth(); 3393 3394 // Does it fit in a unsigned int? 3395 if (ResultVal.isIntN(IntSize)) { 3396 // Does it fit in a signed int? 3397 if (!Literal.isUnsigned && ResultVal[IntSize-1] == 0) 3398 Ty = Context.IntTy; 3399 else if (AllowUnsigned) 3400 Ty = Context.UnsignedIntTy; 3401 Width = IntSize; 3402 } 3403 } 3404 3405 // Are long/unsigned long possibilities? 3406 if (Ty.isNull() && !Literal.isLongLong) { 3407 unsigned LongSize = Context.getTargetInfo().getLongWidth(); 3408 3409 // Does it fit in a unsigned long? 3410 if (ResultVal.isIntN(LongSize)) { 3411 // Does it fit in a signed long? 3412 if (!Literal.isUnsigned && ResultVal[LongSize-1] == 0) 3413 Ty = Context.LongTy; 3414 else if (AllowUnsigned) 3415 Ty = Context.UnsignedLongTy; 3416 // Check according to the rules of C90 6.1.3.2p5. C++03 [lex.icon]p2 3417 // is compatible. 3418 else if (!getLangOpts().C99 && !getLangOpts().CPlusPlus11) { 3419 const unsigned LongLongSize = 3420 Context.getTargetInfo().getLongLongWidth(); 3421 Diag(Tok.getLocation(), 3422 getLangOpts().CPlusPlus 3423 ? Literal.isLong 3424 ? diag::warn_old_implicitly_unsigned_long_cxx 3425 : /*C++98 UB*/ diag:: 3426 ext_old_implicitly_unsigned_long_cxx 3427 : diag::warn_old_implicitly_unsigned_long) 3428 << (LongLongSize > LongSize ? /*will have type 'long long'*/ 0 3429 : /*will be ill-formed*/ 1); 3430 Ty = Context.UnsignedLongTy; 3431 } 3432 Width = LongSize; 3433 } 3434 } 3435 3436 // Check long long if needed. 3437 if (Ty.isNull()) { 3438 unsigned LongLongSize = Context.getTargetInfo().getLongLongWidth(); 3439 3440 // Does it fit in a unsigned long long? 3441 if (ResultVal.isIntN(LongLongSize)) { 3442 // Does it fit in a signed long long? 3443 // To be compatible with MSVC, hex integer literals ending with the 3444 // LL or i64 suffix are always signed in Microsoft mode. 3445 if (!Literal.isUnsigned && (ResultVal[LongLongSize-1] == 0 || 3446 (getLangOpts().MicrosoftExt && Literal.isLongLong))) 3447 Ty = Context.LongLongTy; 3448 else if (AllowUnsigned) 3449 Ty = Context.UnsignedLongLongTy; 3450 Width = LongLongSize; 3451 } 3452 } 3453 3454 // If we still couldn't decide a type, we probably have something that 3455 // does not fit in a signed long long, but has no U suffix. 3456 if (Ty.isNull()) { 3457 Diag(Tok.getLocation(), diag::ext_integer_literal_too_large_for_signed); 3458 Ty = Context.UnsignedLongLongTy; 3459 Width = Context.getTargetInfo().getLongLongWidth(); 3460 } 3461 3462 if (ResultVal.getBitWidth() != Width) 3463 ResultVal = ResultVal.trunc(Width); 3464 } 3465 Res = IntegerLiteral::Create(Context, ResultVal, Ty, Tok.getLocation()); 3466 } 3467 3468 // If this is an imaginary literal, create the ImaginaryLiteral wrapper. 3469 if (Literal.isImaginary) 3470 Res = new (Context) ImaginaryLiteral(Res, 3471 Context.getComplexType(Res->getType())); 3472 3473 return Res; 3474 } 3475 3476 ExprResult Sema::ActOnParenExpr(SourceLocation L, SourceLocation R, Expr *E) { 3477 assert(E && "ActOnParenExpr() missing expr"); 3478 return new (Context) ParenExpr(L, R, E); 3479 } 3480 3481 static bool CheckVecStepTraitOperandType(Sema &S, QualType T, 3482 SourceLocation Loc, 3483 SourceRange ArgRange) { 3484 // [OpenCL 1.1 6.11.12] "The vec_step built-in function takes a built-in 3485 // scalar or vector data type argument..." 3486 // Every built-in scalar type (OpenCL 1.1 6.1.1) is either an arithmetic 3487 // type (C99 6.2.5p18) or void. 3488 if (!(T->isArithmeticType() || T->isVoidType() || T->isVectorType())) { 3489 S.Diag(Loc, diag::err_vecstep_non_scalar_vector_type) 3490 << T << ArgRange; 3491 return true; 3492 } 3493 3494 assert((T->isVoidType() || !T->isIncompleteType()) && 3495 "Scalar types should always be complete"); 3496 return false; 3497 } 3498 3499 static bool CheckExtensionTraitOperandType(Sema &S, QualType T, 3500 SourceLocation Loc, 3501 SourceRange ArgRange, 3502 UnaryExprOrTypeTrait TraitKind) { 3503 // Invalid types must be hard errors for SFINAE in C++. 3504 if (S.LangOpts.CPlusPlus) 3505 return true; 3506 3507 // C99 6.5.3.4p1: 3508 if (T->isFunctionType() && 3509 (TraitKind == UETT_SizeOf || TraitKind == UETT_AlignOf)) { 3510 // sizeof(function)/alignof(function) is allowed as an extension. 3511 S.Diag(Loc, diag::ext_sizeof_alignof_function_type) 3512 << TraitKind << ArgRange; 3513 return false; 3514 } 3515 3516 // Allow sizeof(void)/alignof(void) as an extension, unless in OpenCL where 3517 // this is an error (OpenCL v1.1 s6.3.k) 3518 if (T->isVoidType()) { 3519 unsigned DiagID = S.LangOpts.OpenCL ? diag::err_opencl_sizeof_alignof_type 3520 : diag::ext_sizeof_alignof_void_type; 3521 S.Diag(Loc, DiagID) << TraitKind << ArgRange; 3522 return false; 3523 } 3524 3525 return true; 3526 } 3527 3528 static bool CheckObjCTraitOperandConstraints(Sema &S, QualType T, 3529 SourceLocation Loc, 3530 SourceRange ArgRange, 3531 UnaryExprOrTypeTrait TraitKind) { 3532 // Reject sizeof(interface) and sizeof(interface<proto>) if the 3533 // runtime doesn't allow it. 3534 if (!S.LangOpts.ObjCRuntime.allowsSizeofAlignof() && T->isObjCObjectType()) { 3535 S.Diag(Loc, diag::err_sizeof_nonfragile_interface) 3536 << T << (TraitKind == UETT_SizeOf) 3537 << ArgRange; 3538 return true; 3539 } 3540 3541 return false; 3542 } 3543 3544 /// \brief Check whether E is a pointer from a decayed array type (the decayed 3545 /// pointer type is equal to T) and emit a warning if it is. 3546 static void warnOnSizeofOnArrayDecay(Sema &S, SourceLocation Loc, QualType T, 3547 Expr *E) { 3548 // Don't warn if the operation changed the type. 3549 if (T != E->getType()) 3550 return; 3551 3552 // Now look for array decays. 3553 ImplicitCastExpr *ICE = dyn_cast<ImplicitCastExpr>(E); 3554 if (!ICE || ICE->getCastKind() != CK_ArrayToPointerDecay) 3555 return; 3556 3557 S.Diag(Loc, diag::warn_sizeof_array_decay) << ICE->getSourceRange() 3558 << ICE->getType() 3559 << ICE->getSubExpr()->getType(); 3560 } 3561 3562 /// \brief Check the constraints on expression operands to unary type expression 3563 /// and type traits. 3564 /// 3565 /// Completes any types necessary and validates the constraints on the operand 3566 /// expression. The logic mostly mirrors the type-based overload, but may modify 3567 /// the expression as it completes the type for that expression through template 3568 /// instantiation, etc. 3569 bool Sema::CheckUnaryExprOrTypeTraitOperand(Expr *E, 3570 UnaryExprOrTypeTrait ExprKind) { 3571 QualType ExprTy = E->getType(); 3572 assert(!ExprTy->isReferenceType()); 3573 3574 if (ExprKind == UETT_VecStep) 3575 return CheckVecStepTraitOperandType(*this, ExprTy, E->getExprLoc(), 3576 E->getSourceRange()); 3577 3578 // Whitelist some types as extensions 3579 if (!CheckExtensionTraitOperandType(*this, ExprTy, E->getExprLoc(), 3580 E->getSourceRange(), ExprKind)) 3581 return false; 3582 3583 // 'alignof' applied to an expression only requires the base element type of 3584 // the expression to be complete. 'sizeof' requires the expression's type to 3585 // be complete (and will attempt to complete it if it's an array of unknown 3586 // bound). 3587 if (ExprKind == UETT_AlignOf) { 3588 if (RequireCompleteType(E->getExprLoc(), 3589 Context.getBaseElementType(E->getType()), 3590 diag::err_sizeof_alignof_incomplete_type, ExprKind, 3591 E->getSourceRange())) 3592 return true; 3593 } else { 3594 if (RequireCompleteExprType(E, diag::err_sizeof_alignof_incomplete_type, 3595 ExprKind, E->getSourceRange())) 3596 return true; 3597 } 3598 3599 // Completing the expression's type may have changed it. 3600 ExprTy = E->getType(); 3601 assert(!ExprTy->isReferenceType()); 3602 3603 if (ExprTy->isFunctionType()) { 3604 Diag(E->getExprLoc(), diag::err_sizeof_alignof_function_type) 3605 << ExprKind << E->getSourceRange(); 3606 return true; 3607 } 3608 3609 // The operand for sizeof and alignof is in an unevaluated expression context, 3610 // so side effects could result in unintended consequences. 3611 if ((ExprKind == UETT_SizeOf || ExprKind == UETT_AlignOf) && 3612 ActiveTemplateInstantiations.empty() && E->HasSideEffects(Context, false)) 3613 Diag(E->getExprLoc(), diag::warn_side_effects_unevaluated_context); 3614 3615 if (CheckObjCTraitOperandConstraints(*this, ExprTy, E->getExprLoc(), 3616 E->getSourceRange(), ExprKind)) 3617 return true; 3618 3619 if (ExprKind == UETT_SizeOf) { 3620 if (DeclRefExpr *DeclRef = dyn_cast<DeclRefExpr>(E->IgnoreParens())) { 3621 if (ParmVarDecl *PVD = dyn_cast<ParmVarDecl>(DeclRef->getFoundDecl())) { 3622 QualType OType = PVD->getOriginalType(); 3623 QualType Type = PVD->getType(); 3624 if (Type->isPointerType() && OType->isArrayType()) { 3625 Diag(E->getExprLoc(), diag::warn_sizeof_array_param) 3626 << Type << OType; 3627 Diag(PVD->getLocation(), diag::note_declared_at); 3628 } 3629 } 3630 } 3631 3632 // Warn on "sizeof(array op x)" and "sizeof(x op array)", where the array 3633 // decays into a pointer and returns an unintended result. This is most 3634 // likely a typo for "sizeof(array) op x". 3635 if (BinaryOperator *BO = dyn_cast<BinaryOperator>(E->IgnoreParens())) { 3636 warnOnSizeofOnArrayDecay(*this, BO->getOperatorLoc(), BO->getType(), 3637 BO->getLHS()); 3638 warnOnSizeofOnArrayDecay(*this, BO->getOperatorLoc(), BO->getType(), 3639 BO->getRHS()); 3640 } 3641 } 3642 3643 return false; 3644 } 3645 3646 /// \brief Check the constraints on operands to unary expression and type 3647 /// traits. 3648 /// 3649 /// This will complete any types necessary, and validate the various constraints 3650 /// on those operands. 3651 /// 3652 /// The UsualUnaryConversions() function is *not* called by this routine. 3653 /// C99 6.3.2.1p[2-4] all state: 3654 /// Except when it is the operand of the sizeof operator ... 3655 /// 3656 /// C++ [expr.sizeof]p4 3657 /// The lvalue-to-rvalue, array-to-pointer, and function-to-pointer 3658 /// standard conversions are not applied to the operand of sizeof. 3659 /// 3660 /// This policy is followed for all of the unary trait expressions. 3661 bool Sema::CheckUnaryExprOrTypeTraitOperand(QualType ExprType, 3662 SourceLocation OpLoc, 3663 SourceRange ExprRange, 3664 UnaryExprOrTypeTrait ExprKind) { 3665 if (ExprType->isDependentType()) 3666 return false; 3667 3668 // C++ [expr.sizeof]p2: 3669 // When applied to a reference or a reference type, the result 3670 // is the size of the referenced type. 3671 // C++11 [expr.alignof]p3: 3672 // When alignof is applied to a reference type, the result 3673 // shall be the alignment of the referenced type. 3674 if (const ReferenceType *Ref = ExprType->getAs<ReferenceType>()) 3675 ExprType = Ref->getPointeeType(); 3676 3677 // C11 6.5.3.4/3, C++11 [expr.alignof]p3: 3678 // When alignof or _Alignof is applied to an array type, the result 3679 // is the alignment of the element type. 3680 if (ExprKind == UETT_AlignOf || ExprKind == UETT_OpenMPRequiredSimdAlign) 3681 ExprType = Context.getBaseElementType(ExprType); 3682 3683 if (ExprKind == UETT_VecStep) 3684 return CheckVecStepTraitOperandType(*this, ExprType, OpLoc, ExprRange); 3685 3686 // Whitelist some types as extensions 3687 if (!CheckExtensionTraitOperandType(*this, ExprType, OpLoc, ExprRange, 3688 ExprKind)) 3689 return false; 3690 3691 if (RequireCompleteType(OpLoc, ExprType, 3692 diag::err_sizeof_alignof_incomplete_type, 3693 ExprKind, ExprRange)) 3694 return true; 3695 3696 if (ExprType->isFunctionType()) { 3697 Diag(OpLoc, diag::err_sizeof_alignof_function_type) 3698 << ExprKind << ExprRange; 3699 return true; 3700 } 3701 3702 if (CheckObjCTraitOperandConstraints(*this, ExprType, OpLoc, ExprRange, 3703 ExprKind)) 3704 return true; 3705 3706 return false; 3707 } 3708 3709 static bool CheckAlignOfExpr(Sema &S, Expr *E) { 3710 E = E->IgnoreParens(); 3711 3712 // Cannot know anything else if the expression is dependent. 3713 if (E->isTypeDependent()) 3714 return false; 3715 3716 if (E->getObjectKind() == OK_BitField) { 3717 S.Diag(E->getExprLoc(), diag::err_sizeof_alignof_bitfield) 3718 << 1 << E->getSourceRange(); 3719 return true; 3720 } 3721 3722 ValueDecl *D = nullptr; 3723 if (DeclRefExpr *DRE = dyn_cast<DeclRefExpr>(E)) { 3724 D = DRE->getDecl(); 3725 } else if (MemberExpr *ME = dyn_cast<MemberExpr>(E)) { 3726 D = ME->getMemberDecl(); 3727 } 3728 3729 // If it's a field, require the containing struct to have a 3730 // complete definition so that we can compute the layout. 3731 // 3732 // This can happen in C++11 onwards, either by naming the member 3733 // in a way that is not transformed into a member access expression 3734 // (in an unevaluated operand, for instance), or by naming the member 3735 // in a trailing-return-type. 3736 // 3737 // For the record, since __alignof__ on expressions is a GCC 3738 // extension, GCC seems to permit this but always gives the 3739 // nonsensical answer 0. 3740 // 3741 // We don't really need the layout here --- we could instead just 3742 // directly check for all the appropriate alignment-lowing 3743 // attributes --- but that would require duplicating a lot of 3744 // logic that just isn't worth duplicating for such a marginal 3745 // use-case. 3746 if (FieldDecl *FD = dyn_cast_or_null<FieldDecl>(D)) { 3747 // Fast path this check, since we at least know the record has a 3748 // definition if we can find a member of it. 3749 if (!FD->getParent()->isCompleteDefinition()) { 3750 S.Diag(E->getExprLoc(), diag::err_alignof_member_of_incomplete_type) 3751 << E->getSourceRange(); 3752 return true; 3753 } 3754 3755 // Otherwise, if it's a field, and the field doesn't have 3756 // reference type, then it must have a complete type (or be a 3757 // flexible array member, which we explicitly want to 3758 // white-list anyway), which makes the following checks trivial. 3759 if (!FD->getType()->isReferenceType()) 3760 return false; 3761 } 3762 3763 return S.CheckUnaryExprOrTypeTraitOperand(E, UETT_AlignOf); 3764 } 3765 3766 bool Sema::CheckVecStepExpr(Expr *E) { 3767 E = E->IgnoreParens(); 3768 3769 // Cannot know anything else if the expression is dependent. 3770 if (E->isTypeDependent()) 3771 return false; 3772 3773 return CheckUnaryExprOrTypeTraitOperand(E, UETT_VecStep); 3774 } 3775 3776 /// \brief Build a sizeof or alignof expression given a type operand. 3777 ExprResult 3778 Sema::CreateUnaryExprOrTypeTraitExpr(TypeSourceInfo *TInfo, 3779 SourceLocation OpLoc, 3780 UnaryExprOrTypeTrait ExprKind, 3781 SourceRange R) { 3782 if (!TInfo) 3783 return ExprError(); 3784 3785 QualType T = TInfo->getType(); 3786 3787 if (!T->isDependentType() && 3788 CheckUnaryExprOrTypeTraitOperand(T, OpLoc, R, ExprKind)) 3789 return ExprError(); 3790 3791 // C99 6.5.3.4p4: the type (an unsigned integer type) is size_t. 3792 return new (Context) UnaryExprOrTypeTraitExpr( 3793 ExprKind, TInfo, Context.getSizeType(), OpLoc, R.getEnd()); 3794 } 3795 3796 /// \brief Build a sizeof or alignof expression given an expression 3797 /// operand. 3798 ExprResult 3799 Sema::CreateUnaryExprOrTypeTraitExpr(Expr *E, SourceLocation OpLoc, 3800 UnaryExprOrTypeTrait ExprKind) { 3801 ExprResult PE = CheckPlaceholderExpr(E); 3802 if (PE.isInvalid()) 3803 return ExprError(); 3804 3805 E = PE.get(); 3806 3807 // Verify that the operand is valid. 3808 bool isInvalid = false; 3809 if (E->isTypeDependent()) { 3810 // Delay type-checking for type-dependent expressions. 3811 } else if (ExprKind == UETT_AlignOf) { 3812 isInvalid = CheckAlignOfExpr(*this, E); 3813 } else if (ExprKind == UETT_VecStep) { 3814 isInvalid = CheckVecStepExpr(E); 3815 } else if (ExprKind == UETT_OpenMPRequiredSimdAlign) { 3816 Diag(E->getExprLoc(), diag::err_openmp_default_simd_align_expr); 3817 isInvalid = true; 3818 } else if (E->refersToBitField()) { // C99 6.5.3.4p1. 3819 Diag(E->getExprLoc(), diag::err_sizeof_alignof_bitfield) << 0; 3820 isInvalid = true; 3821 } else { 3822 isInvalid = CheckUnaryExprOrTypeTraitOperand(E, UETT_SizeOf); 3823 } 3824 3825 if (isInvalid) 3826 return ExprError(); 3827 3828 if (ExprKind == UETT_SizeOf && E->getType()->isVariableArrayType()) { 3829 PE = TransformToPotentiallyEvaluated(E); 3830 if (PE.isInvalid()) return ExprError(); 3831 E = PE.get(); 3832 } 3833 3834 // C99 6.5.3.4p4: the type (an unsigned integer type) is size_t. 3835 return new (Context) UnaryExprOrTypeTraitExpr( 3836 ExprKind, E, Context.getSizeType(), OpLoc, E->getSourceRange().getEnd()); 3837 } 3838 3839 /// ActOnUnaryExprOrTypeTraitExpr - Handle @c sizeof(type) and @c sizeof @c 3840 /// expr and the same for @c alignof and @c __alignof 3841 /// Note that the ArgRange is invalid if isType is false. 3842 ExprResult 3843 Sema::ActOnUnaryExprOrTypeTraitExpr(SourceLocation OpLoc, 3844 UnaryExprOrTypeTrait ExprKind, bool IsType, 3845 void *TyOrEx, const SourceRange &ArgRange) { 3846 // If error parsing type, ignore. 3847 if (!TyOrEx) return ExprError(); 3848 3849 if (IsType) { 3850 TypeSourceInfo *TInfo; 3851 (void) GetTypeFromParser(ParsedType::getFromOpaquePtr(TyOrEx), &TInfo); 3852 return CreateUnaryExprOrTypeTraitExpr(TInfo, OpLoc, ExprKind, ArgRange); 3853 } 3854 3855 Expr *ArgEx = (Expr *)TyOrEx; 3856 ExprResult Result = CreateUnaryExprOrTypeTraitExpr(ArgEx, OpLoc, ExprKind); 3857 return Result; 3858 } 3859 3860 static QualType CheckRealImagOperand(Sema &S, ExprResult &V, SourceLocation Loc, 3861 bool IsReal) { 3862 if (V.get()->isTypeDependent()) 3863 return S.Context.DependentTy; 3864 3865 // _Real and _Imag are only l-values for normal l-values. 3866 if (V.get()->getObjectKind() != OK_Ordinary) { 3867 V = S.DefaultLvalueConversion(V.get()); 3868 if (V.isInvalid()) 3869 return QualType(); 3870 } 3871 3872 // These operators return the element type of a complex type. 3873 if (const ComplexType *CT = V.get()->getType()->getAs<ComplexType>()) 3874 return CT->getElementType(); 3875 3876 // Otherwise they pass through real integer and floating point types here. 3877 if (V.get()->getType()->isArithmeticType()) 3878 return V.get()->getType(); 3879 3880 // Test for placeholders. 3881 ExprResult PR = S.CheckPlaceholderExpr(V.get()); 3882 if (PR.isInvalid()) return QualType(); 3883 if (PR.get() != V.get()) { 3884 V = PR; 3885 return CheckRealImagOperand(S, V, Loc, IsReal); 3886 } 3887 3888 // Reject anything else. 3889 S.Diag(Loc, diag::err_realimag_invalid_type) << V.get()->getType() 3890 << (IsReal ? "__real" : "__imag"); 3891 return QualType(); 3892 } 3893 3894 3895 3896 ExprResult 3897 Sema::ActOnPostfixUnaryOp(Scope *S, SourceLocation OpLoc, 3898 tok::TokenKind Kind, Expr *Input) { 3899 UnaryOperatorKind Opc; 3900 switch (Kind) { 3901 default: llvm_unreachable("Unknown unary op!"); 3902 case tok::plusplus: Opc = UO_PostInc; break; 3903 case tok::minusminus: Opc = UO_PostDec; break; 3904 } 3905 3906 // Since this might is a postfix expression, get rid of ParenListExprs. 3907 ExprResult Result = MaybeConvertParenListExprToParenExpr(S, Input); 3908 if (Result.isInvalid()) return ExprError(); 3909 Input = Result.get(); 3910 3911 return BuildUnaryOp(S, OpLoc, Opc, Input); 3912 } 3913 3914 /// \brief Diagnose if arithmetic on the given ObjC pointer is illegal. 3915 /// 3916 /// \return true on error 3917 static bool checkArithmeticOnObjCPointer(Sema &S, 3918 SourceLocation opLoc, 3919 Expr *op) { 3920 assert(op->getType()->isObjCObjectPointerType()); 3921 if (S.LangOpts.ObjCRuntime.allowsPointerArithmetic() && 3922 !S.LangOpts.ObjCSubscriptingLegacyRuntime) 3923 return false; 3924 3925 S.Diag(opLoc, diag::err_arithmetic_nonfragile_interface) 3926 << op->getType()->castAs<ObjCObjectPointerType>()->getPointeeType() 3927 << op->getSourceRange(); 3928 return true; 3929 } 3930 3931 ExprResult 3932 Sema::ActOnArraySubscriptExpr(Scope *S, Expr *base, SourceLocation lbLoc, 3933 Expr *idx, SourceLocation rbLoc) { 3934 // Since this might be a postfix expression, get rid of ParenListExprs. 3935 if (isa<ParenListExpr>(base)) { 3936 ExprResult result = MaybeConvertParenListExprToParenExpr(S, base); 3937 if (result.isInvalid()) return ExprError(); 3938 base = result.get(); 3939 } 3940 3941 // Handle any non-overload placeholder types in the base and index 3942 // expressions. We can't handle overloads here because the other 3943 // operand might be an overloadable type, in which case the overload 3944 // resolution for the operator overload should get the first crack 3945 // at the overload. 3946 if (base->getType()->isNonOverloadPlaceholderType()) { 3947 ExprResult result = CheckPlaceholderExpr(base); 3948 if (result.isInvalid()) return ExprError(); 3949 base = result.get(); 3950 } 3951 if (idx->getType()->isNonOverloadPlaceholderType()) { 3952 ExprResult result = CheckPlaceholderExpr(idx); 3953 if (result.isInvalid()) return ExprError(); 3954 idx = result.get(); 3955 } 3956 3957 // Build an unanalyzed expression if either operand is type-dependent. 3958 if (getLangOpts().CPlusPlus && 3959 (base->isTypeDependent() || idx->isTypeDependent())) { 3960 return new (Context) ArraySubscriptExpr(base, idx, Context.DependentTy, 3961 VK_LValue, OK_Ordinary, rbLoc); 3962 } 3963 3964 // Use C++ overloaded-operator rules if either operand has record 3965 // type. The spec says to do this if either type is *overloadable*, 3966 // but enum types can't declare subscript operators or conversion 3967 // operators, so there's nothing interesting for overload resolution 3968 // to do if there aren't any record types involved. 3969 // 3970 // ObjC pointers have their own subscripting logic that is not tied 3971 // to overload resolution and so should not take this path. 3972 if (getLangOpts().CPlusPlus && 3973 (base->getType()->isRecordType() || 3974 (!base->getType()->isObjCObjectPointerType() && 3975 idx->getType()->isRecordType()))) { 3976 return CreateOverloadedArraySubscriptExpr(lbLoc, rbLoc, base, idx); 3977 } 3978 3979 return CreateBuiltinArraySubscriptExpr(base, lbLoc, idx, rbLoc); 3980 } 3981 3982 ExprResult 3983 Sema::CreateBuiltinArraySubscriptExpr(Expr *Base, SourceLocation LLoc, 3984 Expr *Idx, SourceLocation RLoc) { 3985 Expr *LHSExp = Base; 3986 Expr *RHSExp = Idx; 3987 3988 // Perform default conversions. 3989 if (!LHSExp->getType()->getAs<VectorType>()) { 3990 ExprResult Result = DefaultFunctionArrayLvalueConversion(LHSExp); 3991 if (Result.isInvalid()) 3992 return ExprError(); 3993 LHSExp = Result.get(); 3994 } 3995 ExprResult Result = DefaultFunctionArrayLvalueConversion(RHSExp); 3996 if (Result.isInvalid()) 3997 return ExprError(); 3998 RHSExp = Result.get(); 3999 4000 QualType LHSTy = LHSExp->getType(), RHSTy = RHSExp->getType(); 4001 ExprValueKind VK = VK_LValue; 4002 ExprObjectKind OK = OK_Ordinary; 4003 4004 // C99 6.5.2.1p2: the expression e1[e2] is by definition precisely equivalent 4005 // to the expression *((e1)+(e2)). This means the array "Base" may actually be 4006 // in the subscript position. As a result, we need to derive the array base 4007 // and index from the expression types. 4008 Expr *BaseExpr, *IndexExpr; 4009 QualType ResultType; 4010 if (LHSTy->isDependentType() || RHSTy->isDependentType()) { 4011 BaseExpr = LHSExp; 4012 IndexExpr = RHSExp; 4013 ResultType = Context.DependentTy; 4014 } else if (const PointerType *PTy = LHSTy->getAs<PointerType>()) { 4015 BaseExpr = LHSExp; 4016 IndexExpr = RHSExp; 4017 ResultType = PTy->getPointeeType(); 4018 } else if (const ObjCObjectPointerType *PTy = 4019 LHSTy->getAs<ObjCObjectPointerType>()) { 4020 BaseExpr = LHSExp; 4021 IndexExpr = RHSExp; 4022 4023 // Use custom logic if this should be the pseudo-object subscript 4024 // expression. 4025 if (!LangOpts.isSubscriptPointerArithmetic()) 4026 return BuildObjCSubscriptExpression(RLoc, BaseExpr, IndexExpr, nullptr, 4027 nullptr); 4028 4029 ResultType = PTy->getPointeeType(); 4030 } else if (const PointerType *PTy = RHSTy->getAs<PointerType>()) { 4031 // Handle the uncommon case of "123[Ptr]". 4032 BaseExpr = RHSExp; 4033 IndexExpr = LHSExp; 4034 ResultType = PTy->getPointeeType(); 4035 } else if (const ObjCObjectPointerType *PTy = 4036 RHSTy->getAs<ObjCObjectPointerType>()) { 4037 // Handle the uncommon case of "123[Ptr]". 4038 BaseExpr = RHSExp; 4039 IndexExpr = LHSExp; 4040 ResultType = PTy->getPointeeType(); 4041 if (!LangOpts.isSubscriptPointerArithmetic()) { 4042 Diag(LLoc, diag::err_subscript_nonfragile_interface) 4043 << ResultType << BaseExpr->getSourceRange(); 4044 return ExprError(); 4045 } 4046 } else if (const VectorType *VTy = LHSTy->getAs<VectorType>()) { 4047 BaseExpr = LHSExp; // vectors: V[123] 4048 IndexExpr = RHSExp; 4049 VK = LHSExp->getValueKind(); 4050 if (VK != VK_RValue) 4051 OK = OK_VectorComponent; 4052 4053 // FIXME: need to deal with const... 4054 ResultType = VTy->getElementType(); 4055 } else if (LHSTy->isArrayType()) { 4056 // If we see an array that wasn't promoted by 4057 // DefaultFunctionArrayLvalueConversion, it must be an array that 4058 // wasn't promoted because of the C90 rule that doesn't 4059 // allow promoting non-lvalue arrays. Warn, then 4060 // force the promotion here. 4061 Diag(LHSExp->getLocStart(), diag::ext_subscript_non_lvalue) << 4062 LHSExp->getSourceRange(); 4063 LHSExp = ImpCastExprToType(LHSExp, Context.getArrayDecayedType(LHSTy), 4064 CK_ArrayToPointerDecay).get(); 4065 LHSTy = LHSExp->getType(); 4066 4067 BaseExpr = LHSExp; 4068 IndexExpr = RHSExp; 4069 ResultType = LHSTy->getAs<PointerType>()->getPointeeType(); 4070 } else if (RHSTy->isArrayType()) { 4071 // Same as previous, except for 123[f().a] case 4072 Diag(RHSExp->getLocStart(), diag::ext_subscript_non_lvalue) << 4073 RHSExp->getSourceRange(); 4074 RHSExp = ImpCastExprToType(RHSExp, Context.getArrayDecayedType(RHSTy), 4075 CK_ArrayToPointerDecay).get(); 4076 RHSTy = RHSExp->getType(); 4077 4078 BaseExpr = RHSExp; 4079 IndexExpr = LHSExp; 4080 ResultType = RHSTy->getAs<PointerType>()->getPointeeType(); 4081 } else { 4082 return ExprError(Diag(LLoc, diag::err_typecheck_subscript_value) 4083 << LHSExp->getSourceRange() << RHSExp->getSourceRange()); 4084 } 4085 // C99 6.5.2.1p1 4086 if (!IndexExpr->getType()->isIntegerType() && !IndexExpr->isTypeDependent()) 4087 return ExprError(Diag(LLoc, diag::err_typecheck_subscript_not_integer) 4088 << IndexExpr->getSourceRange()); 4089 4090 if ((IndexExpr->getType()->isSpecificBuiltinType(BuiltinType::Char_S) || 4091 IndexExpr->getType()->isSpecificBuiltinType(BuiltinType::Char_U)) 4092 && !IndexExpr->isTypeDependent()) 4093 Diag(LLoc, diag::warn_subscript_is_char) << IndexExpr->getSourceRange(); 4094 4095 // C99 6.5.2.1p1: "shall have type "pointer to *object* type". Similarly, 4096 // C++ [expr.sub]p1: The type "T" shall be a completely-defined object 4097 // type. Note that Functions are not objects, and that (in C99 parlance) 4098 // incomplete types are not object types. 4099 if (ResultType->isFunctionType()) { 4100 Diag(BaseExpr->getLocStart(), diag::err_subscript_function_type) 4101 << ResultType << BaseExpr->getSourceRange(); 4102 return ExprError(); 4103 } 4104 4105 if (ResultType->isVoidType() && !getLangOpts().CPlusPlus) { 4106 // GNU extension: subscripting on pointer to void 4107 Diag(LLoc, diag::ext_gnu_subscript_void_type) 4108 << BaseExpr->getSourceRange(); 4109 4110 // C forbids expressions of unqualified void type from being l-values. 4111 // See IsCForbiddenLValueType. 4112 if (!ResultType.hasQualifiers()) VK = VK_RValue; 4113 } else if (!ResultType->isDependentType() && 4114 RequireCompleteType(LLoc, ResultType, 4115 diag::err_subscript_incomplete_type, BaseExpr)) 4116 return ExprError(); 4117 4118 assert(VK == VK_RValue || LangOpts.CPlusPlus || 4119 !ResultType.isCForbiddenLValueType()); 4120 4121 return new (Context) 4122 ArraySubscriptExpr(LHSExp, RHSExp, ResultType, VK, OK, RLoc); 4123 } 4124 4125 ExprResult Sema::BuildCXXDefaultArgExpr(SourceLocation CallLoc, 4126 FunctionDecl *FD, 4127 ParmVarDecl *Param) { 4128 if (Param->hasUnparsedDefaultArg()) { 4129 Diag(CallLoc, 4130 diag::err_use_of_default_argument_to_function_declared_later) << 4131 FD << cast<CXXRecordDecl>(FD->getDeclContext())->getDeclName(); 4132 Diag(UnparsedDefaultArgLocs[Param], 4133 diag::note_default_argument_declared_here); 4134 return ExprError(); 4135 } 4136 4137 if (Param->hasUninstantiatedDefaultArg()) { 4138 Expr *UninstExpr = Param->getUninstantiatedDefaultArg(); 4139 4140 EnterExpressionEvaluationContext EvalContext(*this, PotentiallyEvaluated, 4141 Param); 4142 4143 // Instantiate the expression. 4144 MultiLevelTemplateArgumentList MutiLevelArgList 4145 = getTemplateInstantiationArgs(FD, nullptr, /*RelativeToPrimary=*/true); 4146 4147 InstantiatingTemplate Inst(*this, CallLoc, Param, 4148 MutiLevelArgList.getInnermost()); 4149 if (Inst.isInvalid()) 4150 return ExprError(); 4151 4152 ExprResult Result; 4153 { 4154 // C++ [dcl.fct.default]p5: 4155 // The names in the [default argument] expression are bound, and 4156 // the semantic constraints are checked, at the point where the 4157 // default argument expression appears. 4158 ContextRAII SavedContext(*this, FD); 4159 LocalInstantiationScope Local(*this); 4160 Result = SubstExpr(UninstExpr, MutiLevelArgList); 4161 } 4162 if (Result.isInvalid()) 4163 return ExprError(); 4164 4165 // Check the expression as an initializer for the parameter. 4166 InitializedEntity Entity 4167 = InitializedEntity::InitializeParameter(Context, Param); 4168 InitializationKind Kind 4169 = InitializationKind::CreateCopy(Param->getLocation(), 4170 /*FIXME:EqualLoc*/UninstExpr->getLocStart()); 4171 Expr *ResultE = Result.getAs<Expr>(); 4172 4173 InitializationSequence InitSeq(*this, Entity, Kind, ResultE); 4174 Result = InitSeq.Perform(*this, Entity, Kind, ResultE); 4175 if (Result.isInvalid()) 4176 return ExprError(); 4177 4178 Expr *Arg = Result.getAs<Expr>(); 4179 CheckCompletedExpr(Arg, Param->getOuterLocStart()); 4180 // Build the default argument expression. 4181 return CXXDefaultArgExpr::Create(Context, CallLoc, Param, Arg); 4182 } 4183 4184 // If the default expression creates temporaries, we need to 4185 // push them to the current stack of expression temporaries so they'll 4186 // be properly destroyed. 4187 // FIXME: We should really be rebuilding the default argument with new 4188 // bound temporaries; see the comment in PR5810. 4189 // We don't need to do that with block decls, though, because 4190 // blocks in default argument expression can never capture anything. 4191 if (isa<ExprWithCleanups>(Param->getInit())) { 4192 // Set the "needs cleanups" bit regardless of whether there are 4193 // any explicit objects. 4194 ExprNeedsCleanups = true; 4195 4196 // Append all the objects to the cleanup list. Right now, this 4197 // should always be a no-op, because blocks in default argument 4198 // expressions should never be able to capture anything. 4199 assert(!cast<ExprWithCleanups>(Param->getInit())->getNumObjects() && 4200 "default argument expression has capturing blocks?"); 4201 } 4202 4203 // We already type-checked the argument, so we know it works. 4204 // Just mark all of the declarations in this potentially-evaluated expression 4205 // as being "referenced". 4206 MarkDeclarationsReferencedInExpr(Param->getDefaultArg(), 4207 /*SkipLocalVariables=*/true); 4208 return CXXDefaultArgExpr::Create(Context, CallLoc, Param); 4209 } 4210 4211 4212 Sema::VariadicCallType 4213 Sema::getVariadicCallType(FunctionDecl *FDecl, const FunctionProtoType *Proto, 4214 Expr *Fn) { 4215 if (Proto && Proto->isVariadic()) { 4216 if (dyn_cast_or_null<CXXConstructorDecl>(FDecl)) 4217 return VariadicConstructor; 4218 else if (Fn && Fn->getType()->isBlockPointerType()) 4219 return VariadicBlock; 4220 else if (FDecl) { 4221 if (CXXMethodDecl *Method = dyn_cast_or_null<CXXMethodDecl>(FDecl)) 4222 if (Method->isInstance()) 4223 return VariadicMethod; 4224 } else if (Fn && Fn->getType() == Context.BoundMemberTy) 4225 return VariadicMethod; 4226 return VariadicFunction; 4227 } 4228 return VariadicDoesNotApply; 4229 } 4230 4231 namespace { 4232 class FunctionCallCCC : public FunctionCallFilterCCC { 4233 public: 4234 FunctionCallCCC(Sema &SemaRef, const IdentifierInfo *FuncName, 4235 unsigned NumArgs, MemberExpr *ME) 4236 : FunctionCallFilterCCC(SemaRef, NumArgs, false, ME), 4237 FunctionName(FuncName) {} 4238 4239 bool ValidateCandidate(const TypoCorrection &candidate) override { 4240 if (!candidate.getCorrectionSpecifier() || 4241 candidate.getCorrectionAsIdentifierInfo() != FunctionName) { 4242 return false; 4243 } 4244 4245 return FunctionCallFilterCCC::ValidateCandidate(candidate); 4246 } 4247 4248 private: 4249 const IdentifierInfo *const FunctionName; 4250 }; 4251 } 4252 4253 static TypoCorrection TryTypoCorrectionForCall(Sema &S, Expr *Fn, 4254 FunctionDecl *FDecl, 4255 ArrayRef<Expr *> Args) { 4256 MemberExpr *ME = dyn_cast<MemberExpr>(Fn); 4257 DeclarationName FuncName = FDecl->getDeclName(); 4258 SourceLocation NameLoc = ME ? ME->getMemberLoc() : Fn->getLocStart(); 4259 4260 if (TypoCorrection Corrected = S.CorrectTypo( 4261 DeclarationNameInfo(FuncName, NameLoc), Sema::LookupOrdinaryName, 4262 S.getScopeForContext(S.CurContext), nullptr, 4263 llvm::make_unique<FunctionCallCCC>(S, FuncName.getAsIdentifierInfo(), 4264 Args.size(), ME), 4265 Sema::CTK_ErrorRecovery)) { 4266 if (NamedDecl *ND = Corrected.getCorrectionDecl()) { 4267 if (Corrected.isOverloaded()) { 4268 OverloadCandidateSet OCS(NameLoc, OverloadCandidateSet::CSK_Normal); 4269 OverloadCandidateSet::iterator Best; 4270 for (TypoCorrection::decl_iterator CD = Corrected.begin(), 4271 CDEnd = Corrected.end(); 4272 CD != CDEnd; ++CD) { 4273 if (FunctionDecl *FD = dyn_cast<FunctionDecl>(*CD)) 4274 S.AddOverloadCandidate(FD, DeclAccessPair::make(FD, AS_none), Args, 4275 OCS); 4276 } 4277 switch (OCS.BestViableFunction(S, NameLoc, Best)) { 4278 case OR_Success: 4279 ND = Best->Function; 4280 Corrected.setCorrectionDecl(ND); 4281 break; 4282 default: 4283 break; 4284 } 4285 } 4286 if (isa<ValueDecl>(ND) || isa<FunctionTemplateDecl>(ND)) { 4287 return Corrected; 4288 } 4289 } 4290 } 4291 return TypoCorrection(); 4292 } 4293 4294 /// ConvertArgumentsForCall - Converts the arguments specified in 4295 /// Args/NumArgs to the parameter types of the function FDecl with 4296 /// function prototype Proto. Call is the call expression itself, and 4297 /// Fn is the function expression. For a C++ member function, this 4298 /// routine does not attempt to convert the object argument. Returns 4299 /// true if the call is ill-formed. 4300 bool 4301 Sema::ConvertArgumentsForCall(CallExpr *Call, Expr *Fn, 4302 FunctionDecl *FDecl, 4303 const FunctionProtoType *Proto, 4304 ArrayRef<Expr *> Args, 4305 SourceLocation RParenLoc, 4306 bool IsExecConfig) { 4307 // Bail out early if calling a builtin with custom typechecking. 4308 if (FDecl) 4309 if (unsigned ID = FDecl->getBuiltinID()) 4310 if (Context.BuiltinInfo.hasCustomTypechecking(ID)) 4311 return false; 4312 4313 // C99 6.5.2.2p7 - the arguments are implicitly converted, as if by 4314 // assignment, to the types of the corresponding parameter, ... 4315 unsigned NumParams = Proto->getNumParams(); 4316 bool Invalid = false; 4317 unsigned MinArgs = FDecl ? FDecl->getMinRequiredArguments() : NumParams; 4318 unsigned FnKind = Fn->getType()->isBlockPointerType() 4319 ? 1 /* block */ 4320 : (IsExecConfig ? 3 /* kernel function (exec config) */ 4321 : 0 /* function */); 4322 4323 // If too few arguments are available (and we don't have default 4324 // arguments for the remaining parameters), don't make the call. 4325 if (Args.size() < NumParams) { 4326 if (Args.size() < MinArgs) { 4327 TypoCorrection TC; 4328 if (FDecl && (TC = TryTypoCorrectionForCall(*this, Fn, FDecl, Args))) { 4329 unsigned diag_id = 4330 MinArgs == NumParams && !Proto->isVariadic() 4331 ? diag::err_typecheck_call_too_few_args_suggest 4332 : diag::err_typecheck_call_too_few_args_at_least_suggest; 4333 diagnoseTypo(TC, PDiag(diag_id) << FnKind << MinArgs 4334 << static_cast<unsigned>(Args.size()) 4335 << TC.getCorrectionRange()); 4336 } else if (MinArgs == 1 && FDecl && FDecl->getParamDecl(0)->getDeclName()) 4337 Diag(RParenLoc, 4338 MinArgs == NumParams && !Proto->isVariadic() 4339 ? diag::err_typecheck_call_too_few_args_one 4340 : diag::err_typecheck_call_too_few_args_at_least_one) 4341 << FnKind << FDecl->getParamDecl(0) << Fn->getSourceRange(); 4342 else 4343 Diag(RParenLoc, MinArgs == NumParams && !Proto->isVariadic() 4344 ? diag::err_typecheck_call_too_few_args 4345 : diag::err_typecheck_call_too_few_args_at_least) 4346 << FnKind << MinArgs << static_cast<unsigned>(Args.size()) 4347 << Fn->getSourceRange(); 4348 4349 // Emit the location of the prototype. 4350 if (!TC && FDecl && !FDecl->getBuiltinID() && !IsExecConfig) 4351 Diag(FDecl->getLocStart(), diag::note_callee_decl) 4352 << FDecl; 4353 4354 return true; 4355 } 4356 Call->setNumArgs(Context, NumParams); 4357 } 4358 4359 // If too many are passed and not variadic, error on the extras and drop 4360 // them. 4361 if (Args.size() > NumParams) { 4362 if (!Proto->isVariadic()) { 4363 TypoCorrection TC; 4364 if (FDecl && (TC = TryTypoCorrectionForCall(*this, Fn, FDecl, Args))) { 4365 unsigned diag_id = 4366 MinArgs == NumParams && !Proto->isVariadic() 4367 ? diag::err_typecheck_call_too_many_args_suggest 4368 : diag::err_typecheck_call_too_many_args_at_most_suggest; 4369 diagnoseTypo(TC, PDiag(diag_id) << FnKind << NumParams 4370 << static_cast<unsigned>(Args.size()) 4371 << TC.getCorrectionRange()); 4372 } else if (NumParams == 1 && FDecl && 4373 FDecl->getParamDecl(0)->getDeclName()) 4374 Diag(Args[NumParams]->getLocStart(), 4375 MinArgs == NumParams 4376 ? diag::err_typecheck_call_too_many_args_one 4377 : diag::err_typecheck_call_too_many_args_at_most_one) 4378 << FnKind << FDecl->getParamDecl(0) 4379 << static_cast<unsigned>(Args.size()) << Fn->getSourceRange() 4380 << SourceRange(Args[NumParams]->getLocStart(), 4381 Args.back()->getLocEnd()); 4382 else 4383 Diag(Args[NumParams]->getLocStart(), 4384 MinArgs == NumParams 4385 ? diag::err_typecheck_call_too_many_args 4386 : diag::err_typecheck_call_too_many_args_at_most) 4387 << FnKind << NumParams << static_cast<unsigned>(Args.size()) 4388 << Fn->getSourceRange() 4389 << SourceRange(Args[NumParams]->getLocStart(), 4390 Args.back()->getLocEnd()); 4391 4392 // Emit the location of the prototype. 4393 if (!TC && FDecl && !FDecl->getBuiltinID() && !IsExecConfig) 4394 Diag(FDecl->getLocStart(), diag::note_callee_decl) 4395 << FDecl; 4396 4397 // This deletes the extra arguments. 4398 Call->setNumArgs(Context, NumParams); 4399 return true; 4400 } 4401 } 4402 SmallVector<Expr *, 8> AllArgs; 4403 VariadicCallType CallType = getVariadicCallType(FDecl, Proto, Fn); 4404 4405 Invalid = GatherArgumentsForCall(Call->getLocStart(), FDecl, 4406 Proto, 0, Args, AllArgs, CallType); 4407 if (Invalid) 4408 return true; 4409 unsigned TotalNumArgs = AllArgs.size(); 4410 for (unsigned i = 0; i < TotalNumArgs; ++i) 4411 Call->setArg(i, AllArgs[i]); 4412 4413 return false; 4414 } 4415 4416 bool Sema::GatherArgumentsForCall(SourceLocation CallLoc, FunctionDecl *FDecl, 4417 const FunctionProtoType *Proto, 4418 unsigned FirstParam, ArrayRef<Expr *> Args, 4419 SmallVectorImpl<Expr *> &AllArgs, 4420 VariadicCallType CallType, bool AllowExplicit, 4421 bool IsListInitialization) { 4422 unsigned NumParams = Proto->getNumParams(); 4423 bool Invalid = false; 4424 unsigned ArgIx = 0; 4425 // Continue to check argument types (even if we have too few/many args). 4426 for (unsigned i = FirstParam; i < NumParams; i++) { 4427 QualType ProtoArgType = Proto->getParamType(i); 4428 4429 Expr *Arg; 4430 ParmVarDecl *Param = FDecl ? FDecl->getParamDecl(i) : nullptr; 4431 if (ArgIx < Args.size()) { 4432 Arg = Args[ArgIx++]; 4433 4434 if (RequireCompleteType(Arg->getLocStart(), 4435 ProtoArgType, 4436 diag::err_call_incomplete_argument, Arg)) 4437 return true; 4438 4439 // Strip the unbridged-cast placeholder expression off, if applicable. 4440 bool CFAudited = false; 4441 if (Arg->getType() == Context.ARCUnbridgedCastTy && 4442 FDecl && FDecl->hasAttr<CFAuditedTransferAttr>() && 4443 (!Param || !Param->hasAttr<CFConsumedAttr>())) 4444 Arg = stripARCUnbridgedCast(Arg); 4445 else if (getLangOpts().ObjCAutoRefCount && 4446 FDecl && FDecl->hasAttr<CFAuditedTransferAttr>() && 4447 (!Param || !Param->hasAttr<CFConsumedAttr>())) 4448 CFAudited = true; 4449 4450 InitializedEntity Entity = 4451 Param ? InitializedEntity::InitializeParameter(Context, Param, 4452 ProtoArgType) 4453 : InitializedEntity::InitializeParameter( 4454 Context, ProtoArgType, Proto->isParamConsumed(i)); 4455 4456 // Remember that parameter belongs to a CF audited API. 4457 if (CFAudited) 4458 Entity.setParameterCFAudited(); 4459 4460 ExprResult ArgE = PerformCopyInitialization( 4461 Entity, SourceLocation(), Arg, IsListInitialization, AllowExplicit); 4462 if (ArgE.isInvalid()) 4463 return true; 4464 4465 Arg = ArgE.getAs<Expr>(); 4466 } else { 4467 assert(Param && "can't use default arguments without a known callee"); 4468 4469 ExprResult ArgExpr = 4470 BuildCXXDefaultArgExpr(CallLoc, FDecl, Param); 4471 if (ArgExpr.isInvalid()) 4472 return true; 4473 4474 Arg = ArgExpr.getAs<Expr>(); 4475 } 4476 4477 // Check for array bounds violations for each argument to the call. This 4478 // check only triggers warnings when the argument isn't a more complex Expr 4479 // with its own checking, such as a BinaryOperator. 4480 CheckArrayAccess(Arg); 4481 4482 // Check for violations of C99 static array rules (C99 6.7.5.3p7). 4483 CheckStaticArrayArgument(CallLoc, Param, Arg); 4484 4485 AllArgs.push_back(Arg); 4486 } 4487 4488 // If this is a variadic call, handle args passed through "...". 4489 if (CallType != VariadicDoesNotApply) { 4490 // Assume that extern "C" functions with variadic arguments that 4491 // return __unknown_anytype aren't *really* variadic. 4492 if (Proto->getReturnType() == Context.UnknownAnyTy && FDecl && 4493 FDecl->isExternC()) { 4494 for (unsigned i = ArgIx, e = Args.size(); i != e; ++i) { 4495 QualType paramType; // ignored 4496 ExprResult arg = checkUnknownAnyArg(CallLoc, Args[i], paramType); 4497 Invalid |= arg.isInvalid(); 4498 AllArgs.push_back(arg.get()); 4499 } 4500 4501 // Otherwise do argument promotion, (C99 6.5.2.2p7). 4502 } else { 4503 for (unsigned i = ArgIx, e = Args.size(); i != e; ++i) { 4504 ExprResult Arg = DefaultVariadicArgumentPromotion(Args[i], CallType, 4505 FDecl); 4506 Invalid |= Arg.isInvalid(); 4507 AllArgs.push_back(Arg.get()); 4508 } 4509 } 4510 4511 // Check for array bounds violations. 4512 for (unsigned i = ArgIx, e = Args.size(); i != e; ++i) 4513 CheckArrayAccess(Args[i]); 4514 } 4515 return Invalid; 4516 } 4517 4518 static void DiagnoseCalleeStaticArrayParam(Sema &S, ParmVarDecl *PVD) { 4519 TypeLoc TL = PVD->getTypeSourceInfo()->getTypeLoc(); 4520 if (DecayedTypeLoc DTL = TL.getAs<DecayedTypeLoc>()) 4521 TL = DTL.getOriginalLoc(); 4522 if (ArrayTypeLoc ATL = TL.getAs<ArrayTypeLoc>()) 4523 S.Diag(PVD->getLocation(), diag::note_callee_static_array) 4524 << ATL.getLocalSourceRange(); 4525 } 4526 4527 /// CheckStaticArrayArgument - If the given argument corresponds to a static 4528 /// array parameter, check that it is non-null, and that if it is formed by 4529 /// array-to-pointer decay, the underlying array is sufficiently large. 4530 /// 4531 /// C99 6.7.5.3p7: If the keyword static also appears within the [ and ] of the 4532 /// array type derivation, then for each call to the function, the value of the 4533 /// corresponding actual argument shall provide access to the first element of 4534 /// an array with at least as many elements as specified by the size expression. 4535 void 4536 Sema::CheckStaticArrayArgument(SourceLocation CallLoc, 4537 ParmVarDecl *Param, 4538 const Expr *ArgExpr) { 4539 // Static array parameters are not supported in C++. 4540 if (!Param || getLangOpts().CPlusPlus) 4541 return; 4542 4543 QualType OrigTy = Param->getOriginalType(); 4544 4545 const ArrayType *AT = Context.getAsArrayType(OrigTy); 4546 if (!AT || AT->getSizeModifier() != ArrayType::Static) 4547 return; 4548 4549 if (ArgExpr->isNullPointerConstant(Context, 4550 Expr::NPC_NeverValueDependent)) { 4551 Diag(CallLoc, diag::warn_null_arg) << ArgExpr->getSourceRange(); 4552 DiagnoseCalleeStaticArrayParam(*this, Param); 4553 return; 4554 } 4555 4556 const ConstantArrayType *CAT = dyn_cast<ConstantArrayType>(AT); 4557 if (!CAT) 4558 return; 4559 4560 const ConstantArrayType *ArgCAT = 4561 Context.getAsConstantArrayType(ArgExpr->IgnoreParenImpCasts()->getType()); 4562 if (!ArgCAT) 4563 return; 4564 4565 if (ArgCAT->getSize().ult(CAT->getSize())) { 4566 Diag(CallLoc, diag::warn_static_array_too_small) 4567 << ArgExpr->getSourceRange() 4568 << (unsigned) ArgCAT->getSize().getZExtValue() 4569 << (unsigned) CAT->getSize().getZExtValue(); 4570 DiagnoseCalleeStaticArrayParam(*this, Param); 4571 } 4572 } 4573 4574 /// Given a function expression of unknown-any type, try to rebuild it 4575 /// to have a function type. 4576 static ExprResult rebuildUnknownAnyFunction(Sema &S, Expr *fn); 4577 4578 /// Is the given type a placeholder that we need to lower out 4579 /// immediately during argument processing? 4580 static bool isPlaceholderToRemoveAsArg(QualType type) { 4581 // Placeholders are never sugared. 4582 const BuiltinType *placeholder = dyn_cast<BuiltinType>(type); 4583 if (!placeholder) return false; 4584 4585 switch (placeholder->getKind()) { 4586 // Ignore all the non-placeholder types. 4587 #define PLACEHOLDER_TYPE(ID, SINGLETON_ID) 4588 #define BUILTIN_TYPE(ID, SINGLETON_ID) case BuiltinType::ID: 4589 #include "clang/AST/BuiltinTypes.def" 4590 return false; 4591 4592 // We cannot lower out overload sets; they might validly be resolved 4593 // by the call machinery. 4594 case BuiltinType::Overload: 4595 return false; 4596 4597 // Unbridged casts in ARC can be handled in some call positions and 4598 // should be left in place. 4599 case BuiltinType::ARCUnbridgedCast: 4600 return false; 4601 4602 // Pseudo-objects should be converted as soon as possible. 4603 case BuiltinType::PseudoObject: 4604 return true; 4605 4606 // The debugger mode could theoretically but currently does not try 4607 // to resolve unknown-typed arguments based on known parameter types. 4608 case BuiltinType::UnknownAny: 4609 return true; 4610 4611 // These are always invalid as call arguments and should be reported. 4612 case BuiltinType::BoundMember: 4613 case BuiltinType::BuiltinFn: 4614 return true; 4615 } 4616 llvm_unreachable("bad builtin type kind"); 4617 } 4618 4619 /// Check an argument list for placeholders that we won't try to 4620 /// handle later. 4621 static bool checkArgsForPlaceholders(Sema &S, MultiExprArg args) { 4622 // Apply this processing to all the arguments at once instead of 4623 // dying at the first failure. 4624 bool hasInvalid = false; 4625 for (size_t i = 0, e = args.size(); i != e; i++) { 4626 if (isPlaceholderToRemoveAsArg(args[i]->getType())) { 4627 ExprResult result = S.CheckPlaceholderExpr(args[i]); 4628 if (result.isInvalid()) hasInvalid = true; 4629 else args[i] = result.get(); 4630 } else if (hasInvalid) { 4631 (void)S.CorrectDelayedTyposInExpr(args[i]); 4632 } 4633 } 4634 return hasInvalid; 4635 } 4636 4637 /// If a builtin function has a pointer argument with no explicit address 4638 /// space, than it should be able to accept a pointer to any address 4639 /// space as input. In order to do this, we need to replace the 4640 /// standard builtin declaration with one that uses the same address space 4641 /// as the call. 4642 /// 4643 /// \returns nullptr If this builtin is not a candidate for a rewrite i.e. 4644 /// it does not contain any pointer arguments without 4645 /// an address space qualifer. Otherwise the rewritten 4646 /// FunctionDecl is returned. 4647 /// TODO: Handle pointer return types. 4648 static FunctionDecl *rewriteBuiltinFunctionDecl(Sema *Sema, ASTContext &Context, 4649 const FunctionDecl *FDecl, 4650 MultiExprArg ArgExprs) { 4651 4652 QualType DeclType = FDecl->getType(); 4653 const FunctionProtoType *FT = dyn_cast<FunctionProtoType>(DeclType); 4654 4655 if (!Context.BuiltinInfo.hasPtrArgsOrResult(FDecl->getBuiltinID()) || 4656 !FT || FT->isVariadic() || ArgExprs.size() != FT->getNumParams()) 4657 return nullptr; 4658 4659 bool NeedsNewDecl = false; 4660 unsigned i = 0; 4661 SmallVector<QualType, 8> OverloadParams; 4662 4663 for (QualType ParamType : FT->param_types()) { 4664 4665 // Convert array arguments to pointer to simplify type lookup. 4666 Expr *Arg = Sema->DefaultFunctionArrayLvalueConversion(ArgExprs[i++]).get(); 4667 QualType ArgType = Arg->getType(); 4668 if (!ParamType->isPointerType() || 4669 ParamType.getQualifiers().hasAddressSpace() || 4670 !ArgType->isPointerType() || 4671 !ArgType->getPointeeType().getQualifiers().hasAddressSpace()) { 4672 OverloadParams.push_back(ParamType); 4673 continue; 4674 } 4675 4676 NeedsNewDecl = true; 4677 unsigned AS = ArgType->getPointeeType().getQualifiers().getAddressSpace(); 4678 4679 QualType PointeeType = ParamType->getPointeeType(); 4680 PointeeType = Context.getAddrSpaceQualType(PointeeType, AS); 4681 OverloadParams.push_back(Context.getPointerType(PointeeType)); 4682 } 4683 4684 if (!NeedsNewDecl) 4685 return nullptr; 4686 4687 FunctionProtoType::ExtProtoInfo EPI; 4688 QualType OverloadTy = Context.getFunctionType(FT->getReturnType(), 4689 OverloadParams, EPI); 4690 DeclContext *Parent = Context.getTranslationUnitDecl(); 4691 FunctionDecl *OverloadDecl = FunctionDecl::Create(Context, Parent, 4692 FDecl->getLocation(), 4693 FDecl->getLocation(), 4694 FDecl->getIdentifier(), 4695 OverloadTy, 4696 /*TInfo=*/nullptr, 4697 SC_Extern, false, 4698 /*hasPrototype=*/true); 4699 SmallVector<ParmVarDecl*, 16> Params; 4700 FT = cast<FunctionProtoType>(OverloadTy); 4701 for (unsigned i = 0, e = FT->getNumParams(); i != e; ++i) { 4702 QualType ParamType = FT->getParamType(i); 4703 ParmVarDecl *Parm = 4704 ParmVarDecl::Create(Context, OverloadDecl, SourceLocation(), 4705 SourceLocation(), nullptr, ParamType, 4706 /*TInfo=*/nullptr, SC_None, nullptr); 4707 Parm->setScopeInfo(0, i); 4708 Params.push_back(Parm); 4709 } 4710 OverloadDecl->setParams(Params); 4711 return OverloadDecl; 4712 } 4713 4714 /// ActOnCallExpr - Handle a call to Fn with the specified array of arguments. 4715 /// This provides the location of the left/right parens and a list of comma 4716 /// locations. 4717 ExprResult 4718 Sema::ActOnCallExpr(Scope *S, Expr *Fn, SourceLocation LParenLoc, 4719 MultiExprArg ArgExprs, SourceLocation RParenLoc, 4720 Expr *ExecConfig, bool IsExecConfig) { 4721 // Since this might be a postfix expression, get rid of ParenListExprs. 4722 ExprResult Result = MaybeConvertParenListExprToParenExpr(S, Fn); 4723 if (Result.isInvalid()) return ExprError(); 4724 Fn = Result.get(); 4725 4726 if (checkArgsForPlaceholders(*this, ArgExprs)) 4727 return ExprError(); 4728 4729 if (getLangOpts().CPlusPlus) { 4730 // If this is a pseudo-destructor expression, build the call immediately. 4731 if (isa<CXXPseudoDestructorExpr>(Fn)) { 4732 if (!ArgExprs.empty()) { 4733 // Pseudo-destructor calls should not have any arguments. 4734 Diag(Fn->getLocStart(), diag::err_pseudo_dtor_call_with_args) 4735 << FixItHint::CreateRemoval( 4736 SourceRange(ArgExprs[0]->getLocStart(), 4737 ArgExprs.back()->getLocEnd())); 4738 } 4739 4740 return new (Context) 4741 CallExpr(Context, Fn, None, Context.VoidTy, VK_RValue, RParenLoc); 4742 } 4743 if (Fn->getType() == Context.PseudoObjectTy) { 4744 ExprResult result = CheckPlaceholderExpr(Fn); 4745 if (result.isInvalid()) return ExprError(); 4746 Fn = result.get(); 4747 } 4748 4749 // Determine whether this is a dependent call inside a C++ template, 4750 // in which case we won't do any semantic analysis now. 4751 // FIXME: Will need to cache the results of name lookup (including ADL) in 4752 // Fn. 4753 bool Dependent = false; 4754 if (Fn->isTypeDependent()) 4755 Dependent = true; 4756 else if (Expr::hasAnyTypeDependentArguments(ArgExprs)) 4757 Dependent = true; 4758 4759 if (Dependent) { 4760 if (ExecConfig) { 4761 return new (Context) CUDAKernelCallExpr( 4762 Context, Fn, cast<CallExpr>(ExecConfig), ArgExprs, 4763 Context.DependentTy, VK_RValue, RParenLoc); 4764 } else { 4765 return new (Context) CallExpr( 4766 Context, Fn, ArgExprs, Context.DependentTy, VK_RValue, RParenLoc); 4767 } 4768 } 4769 4770 // Determine whether this is a call to an object (C++ [over.call.object]). 4771 if (Fn->getType()->isRecordType()) 4772 return BuildCallToObjectOfClassType(S, Fn, LParenLoc, ArgExprs, 4773 RParenLoc); 4774 4775 if (Fn->getType() == Context.UnknownAnyTy) { 4776 ExprResult result = rebuildUnknownAnyFunction(*this, Fn); 4777 if (result.isInvalid()) return ExprError(); 4778 Fn = result.get(); 4779 } 4780 4781 if (Fn->getType() == Context.BoundMemberTy) { 4782 return BuildCallToMemberFunction(S, Fn, LParenLoc, ArgExprs, RParenLoc); 4783 } 4784 } 4785 4786 // Check for overloaded calls. This can happen even in C due to extensions. 4787 if (Fn->getType() == Context.OverloadTy) { 4788 OverloadExpr::FindResult find = OverloadExpr::find(Fn); 4789 4790 // We aren't supposed to apply this logic for if there's an '&' involved. 4791 if (!find.HasFormOfMemberPointer) { 4792 OverloadExpr *ovl = find.Expression; 4793 if (isa<UnresolvedLookupExpr>(ovl)) { 4794 UnresolvedLookupExpr *ULE = cast<UnresolvedLookupExpr>(ovl); 4795 return BuildOverloadedCallExpr(S, Fn, ULE, LParenLoc, ArgExprs, 4796 RParenLoc, ExecConfig); 4797 } else { 4798 return BuildCallToMemberFunction(S, Fn, LParenLoc, ArgExprs, 4799 RParenLoc); 4800 } 4801 } 4802 } 4803 4804 // If we're directly calling a function, get the appropriate declaration. 4805 if (Fn->getType() == Context.UnknownAnyTy) { 4806 ExprResult result = rebuildUnknownAnyFunction(*this, Fn); 4807 if (result.isInvalid()) return ExprError(); 4808 Fn = result.get(); 4809 } 4810 4811 Expr *NakedFn = Fn->IgnoreParens(); 4812 4813 NamedDecl *NDecl = nullptr; 4814 if (UnaryOperator *UnOp = dyn_cast<UnaryOperator>(NakedFn)) 4815 if (UnOp->getOpcode() == UO_AddrOf) 4816 NakedFn = UnOp->getSubExpr()->IgnoreParens(); 4817 4818 if (isa<DeclRefExpr>(NakedFn)) { 4819 NDecl = cast<DeclRefExpr>(NakedFn)->getDecl(); 4820 4821 FunctionDecl *FDecl = dyn_cast<FunctionDecl>(NDecl); 4822 if (FDecl && FDecl->getBuiltinID()) { 4823 // Rewrite the function decl for this builtin by replacing paramaters 4824 // with no explicit address space with the address space of the arguments 4825 // in ArgExprs. 4826 if ((FDecl = rewriteBuiltinFunctionDecl(this, Context, FDecl, ArgExprs))) { 4827 NDecl = FDecl; 4828 Fn = DeclRefExpr::Create(Context, FDecl->getQualifierLoc(), 4829 SourceLocation(), FDecl, false, 4830 SourceLocation(), FDecl->getType(), 4831 Fn->getValueKind(), FDecl); 4832 } 4833 } 4834 } else if (isa<MemberExpr>(NakedFn)) 4835 NDecl = cast<MemberExpr>(NakedFn)->getMemberDecl(); 4836 4837 if (FunctionDecl *FD = dyn_cast_or_null<FunctionDecl>(NDecl)) { 4838 if (FD->hasAttr<EnableIfAttr>()) { 4839 if (const EnableIfAttr *Attr = CheckEnableIf(FD, ArgExprs, true)) { 4840 Diag(Fn->getLocStart(), 4841 isa<CXXMethodDecl>(FD) ? 4842 diag::err_ovl_no_viable_member_function_in_call : 4843 diag::err_ovl_no_viable_function_in_call) 4844 << FD << FD->getSourceRange(); 4845 Diag(FD->getLocation(), 4846 diag::note_ovl_candidate_disabled_by_enable_if_attr) 4847 << Attr->getCond()->getSourceRange() << Attr->getMessage(); 4848 } 4849 } 4850 } 4851 4852 return BuildResolvedCallExpr(Fn, NDecl, LParenLoc, ArgExprs, RParenLoc, 4853 ExecConfig, IsExecConfig); 4854 } 4855 4856 /// ActOnAsTypeExpr - create a new asType (bitcast) from the arguments. 4857 /// 4858 /// __builtin_astype( value, dst type ) 4859 /// 4860 ExprResult Sema::ActOnAsTypeExpr(Expr *E, ParsedType ParsedDestTy, 4861 SourceLocation BuiltinLoc, 4862 SourceLocation RParenLoc) { 4863 ExprValueKind VK = VK_RValue; 4864 ExprObjectKind OK = OK_Ordinary; 4865 QualType DstTy = GetTypeFromParser(ParsedDestTy); 4866 QualType SrcTy = E->getType(); 4867 if (Context.getTypeSize(DstTy) != Context.getTypeSize(SrcTy)) 4868 return ExprError(Diag(BuiltinLoc, 4869 diag::err_invalid_astype_of_different_size) 4870 << DstTy 4871 << SrcTy 4872 << E->getSourceRange()); 4873 return new (Context) AsTypeExpr(E, DstTy, VK, OK, BuiltinLoc, RParenLoc); 4874 } 4875 4876 /// ActOnConvertVectorExpr - create a new convert-vector expression from the 4877 /// provided arguments. 4878 /// 4879 /// __builtin_convertvector( value, dst type ) 4880 /// 4881 ExprResult Sema::ActOnConvertVectorExpr(Expr *E, ParsedType ParsedDestTy, 4882 SourceLocation BuiltinLoc, 4883 SourceLocation RParenLoc) { 4884 TypeSourceInfo *TInfo; 4885 GetTypeFromParser(ParsedDestTy, &TInfo); 4886 return SemaConvertVectorExpr(E, TInfo, BuiltinLoc, RParenLoc); 4887 } 4888 4889 /// BuildResolvedCallExpr - Build a call to a resolved expression, 4890 /// i.e. an expression not of \p OverloadTy. The expression should 4891 /// unary-convert to an expression of function-pointer or 4892 /// block-pointer type. 4893 /// 4894 /// \param NDecl the declaration being called, if available 4895 ExprResult 4896 Sema::BuildResolvedCallExpr(Expr *Fn, NamedDecl *NDecl, 4897 SourceLocation LParenLoc, 4898 ArrayRef<Expr *> Args, 4899 SourceLocation RParenLoc, 4900 Expr *Config, bool IsExecConfig) { 4901 FunctionDecl *FDecl = dyn_cast_or_null<FunctionDecl>(NDecl); 4902 unsigned BuiltinID = (FDecl ? FDecl->getBuiltinID() : 0); 4903 4904 // Promote the function operand. 4905 // We special-case function promotion here because we only allow promoting 4906 // builtin functions to function pointers in the callee of a call. 4907 ExprResult Result; 4908 if (BuiltinID && 4909 Fn->getType()->isSpecificBuiltinType(BuiltinType::BuiltinFn)) { 4910 Result = ImpCastExprToType(Fn, Context.getPointerType(FDecl->getType()), 4911 CK_BuiltinFnToFnPtr).get(); 4912 } else { 4913 Result = CallExprUnaryConversions(Fn); 4914 } 4915 if (Result.isInvalid()) 4916 return ExprError(); 4917 Fn = Result.get(); 4918 4919 // Make the call expr early, before semantic checks. This guarantees cleanup 4920 // of arguments and function on error. 4921 CallExpr *TheCall; 4922 if (Config) 4923 TheCall = new (Context) CUDAKernelCallExpr(Context, Fn, 4924 cast<CallExpr>(Config), Args, 4925 Context.BoolTy, VK_RValue, 4926 RParenLoc); 4927 else 4928 TheCall = new (Context) CallExpr(Context, Fn, Args, Context.BoolTy, 4929 VK_RValue, RParenLoc); 4930 4931 if (!getLangOpts().CPlusPlus) { 4932 // C cannot always handle TypoExpr nodes in builtin calls and direct 4933 // function calls as their argument checking don't necessarily handle 4934 // dependent types properly, so make sure any TypoExprs have been 4935 // dealt with. 4936 ExprResult Result = CorrectDelayedTyposInExpr(TheCall); 4937 if (!Result.isUsable()) return ExprError(); 4938 TheCall = dyn_cast<CallExpr>(Result.get()); 4939 if (!TheCall) return Result; 4940 } 4941 4942 // Bail out early if calling a builtin with custom typechecking. 4943 if (BuiltinID && Context.BuiltinInfo.hasCustomTypechecking(BuiltinID)) 4944 return CheckBuiltinFunctionCall(FDecl, BuiltinID, TheCall); 4945 4946 retry: 4947 const FunctionType *FuncT; 4948 if (const PointerType *PT = Fn->getType()->getAs<PointerType>()) { 4949 // C99 6.5.2.2p1 - "The expression that denotes the called function shall 4950 // have type pointer to function". 4951 FuncT = PT->getPointeeType()->getAs<FunctionType>(); 4952 if (!FuncT) 4953 return ExprError(Diag(LParenLoc, diag::err_typecheck_call_not_function) 4954 << Fn->getType() << Fn->getSourceRange()); 4955 } else if (const BlockPointerType *BPT = 4956 Fn->getType()->getAs<BlockPointerType>()) { 4957 FuncT = BPT->getPointeeType()->castAs<FunctionType>(); 4958 } else { 4959 // Handle calls to expressions of unknown-any type. 4960 if (Fn->getType() == Context.UnknownAnyTy) { 4961 ExprResult rewrite = rebuildUnknownAnyFunction(*this, Fn); 4962 if (rewrite.isInvalid()) return ExprError(); 4963 Fn = rewrite.get(); 4964 TheCall->setCallee(Fn); 4965 goto retry; 4966 } 4967 4968 return ExprError(Diag(LParenLoc, diag::err_typecheck_call_not_function) 4969 << Fn->getType() << Fn->getSourceRange()); 4970 } 4971 4972 if (getLangOpts().CUDA) { 4973 if (Config) { 4974 // CUDA: Kernel calls must be to global functions 4975 if (FDecl && !FDecl->hasAttr<CUDAGlobalAttr>()) 4976 return ExprError(Diag(LParenLoc,diag::err_kern_call_not_global_function) 4977 << FDecl->getName() << Fn->getSourceRange()); 4978 4979 // CUDA: Kernel function must have 'void' return type 4980 if (!FuncT->getReturnType()->isVoidType()) 4981 return ExprError(Diag(LParenLoc, diag::err_kern_type_not_void_return) 4982 << Fn->getType() << Fn->getSourceRange()); 4983 } else { 4984 // CUDA: Calls to global functions must be configured 4985 if (FDecl && FDecl->hasAttr<CUDAGlobalAttr>()) 4986 return ExprError(Diag(LParenLoc, diag::err_global_call_not_config) 4987 << FDecl->getName() << Fn->getSourceRange()); 4988 } 4989 } 4990 4991 // Check for a valid return type 4992 if (CheckCallReturnType(FuncT->getReturnType(), Fn->getLocStart(), TheCall, 4993 FDecl)) 4994 return ExprError(); 4995 4996 // We know the result type of the call, set it. 4997 TheCall->setType(FuncT->getCallResultType(Context)); 4998 TheCall->setValueKind(Expr::getValueKindForType(FuncT->getReturnType())); 4999 5000 const FunctionProtoType *Proto = dyn_cast<FunctionProtoType>(FuncT); 5001 if (Proto) { 5002 if (ConvertArgumentsForCall(TheCall, Fn, FDecl, Proto, Args, RParenLoc, 5003 IsExecConfig)) 5004 return ExprError(); 5005 } else { 5006 assert(isa<FunctionNoProtoType>(FuncT) && "Unknown FunctionType!"); 5007 5008 if (FDecl) { 5009 // Check if we have too few/too many template arguments, based 5010 // on our knowledge of the function definition. 5011 const FunctionDecl *Def = nullptr; 5012 if (FDecl->hasBody(Def) && Args.size() != Def->param_size()) { 5013 Proto = Def->getType()->getAs<FunctionProtoType>(); 5014 if (!Proto || !(Proto->isVariadic() && Args.size() >= Def->param_size())) 5015 Diag(RParenLoc, diag::warn_call_wrong_number_of_arguments) 5016 << (Args.size() > Def->param_size()) << FDecl << Fn->getSourceRange(); 5017 } 5018 5019 // If the function we're calling isn't a function prototype, but we have 5020 // a function prototype from a prior declaratiom, use that prototype. 5021 if (!FDecl->hasPrototype()) 5022 Proto = FDecl->getType()->getAs<FunctionProtoType>(); 5023 } 5024 5025 // Promote the arguments (C99 6.5.2.2p6). 5026 for (unsigned i = 0, e = Args.size(); i != e; i++) { 5027 Expr *Arg = Args[i]; 5028 5029 if (Proto && i < Proto->getNumParams()) { 5030 InitializedEntity Entity = InitializedEntity::InitializeParameter( 5031 Context, Proto->getParamType(i), Proto->isParamConsumed(i)); 5032 ExprResult ArgE = 5033 PerformCopyInitialization(Entity, SourceLocation(), Arg); 5034 if (ArgE.isInvalid()) 5035 return true; 5036 5037 Arg = ArgE.getAs<Expr>(); 5038 5039 } else { 5040 ExprResult ArgE = DefaultArgumentPromotion(Arg); 5041 5042 if (ArgE.isInvalid()) 5043 return true; 5044 5045 Arg = ArgE.getAs<Expr>(); 5046 } 5047 5048 if (RequireCompleteType(Arg->getLocStart(), 5049 Arg->getType(), 5050 diag::err_call_incomplete_argument, Arg)) 5051 return ExprError(); 5052 5053 TheCall->setArg(i, Arg); 5054 } 5055 } 5056 5057 if (CXXMethodDecl *Method = dyn_cast_or_null<CXXMethodDecl>(FDecl)) 5058 if (!Method->isStatic()) 5059 return ExprError(Diag(LParenLoc, diag::err_member_call_without_object) 5060 << Fn->getSourceRange()); 5061 5062 // Check for sentinels 5063 if (NDecl) 5064 DiagnoseSentinelCalls(NDecl, LParenLoc, Args); 5065 5066 // Do special checking on direct calls to functions. 5067 if (FDecl) { 5068 if (CheckFunctionCall(FDecl, TheCall, Proto)) 5069 return ExprError(); 5070 5071 if (BuiltinID) 5072 return CheckBuiltinFunctionCall(FDecl, BuiltinID, TheCall); 5073 } else if (NDecl) { 5074 if (CheckPointerCall(NDecl, TheCall, Proto)) 5075 return ExprError(); 5076 } else { 5077 if (CheckOtherCall(TheCall, Proto)) 5078 return ExprError(); 5079 } 5080 5081 return MaybeBindToTemporary(TheCall); 5082 } 5083 5084 ExprResult 5085 Sema::ActOnCompoundLiteral(SourceLocation LParenLoc, ParsedType Ty, 5086 SourceLocation RParenLoc, Expr *InitExpr) { 5087 assert(Ty && "ActOnCompoundLiteral(): missing type"); 5088 // FIXME: put back this assert when initializers are worked out. 5089 //assert((InitExpr != 0) && "ActOnCompoundLiteral(): missing expression"); 5090 5091 TypeSourceInfo *TInfo; 5092 QualType literalType = GetTypeFromParser(Ty, &TInfo); 5093 if (!TInfo) 5094 TInfo = Context.getTrivialTypeSourceInfo(literalType); 5095 5096 return BuildCompoundLiteralExpr(LParenLoc, TInfo, RParenLoc, InitExpr); 5097 } 5098 5099 ExprResult 5100 Sema::BuildCompoundLiteralExpr(SourceLocation LParenLoc, TypeSourceInfo *TInfo, 5101 SourceLocation RParenLoc, Expr *LiteralExpr) { 5102 QualType literalType = TInfo->getType(); 5103 5104 if (literalType->isArrayType()) { 5105 if (RequireCompleteType(LParenLoc, Context.getBaseElementType(literalType), 5106 diag::err_illegal_decl_array_incomplete_type, 5107 SourceRange(LParenLoc, 5108 LiteralExpr->getSourceRange().getEnd()))) 5109 return ExprError(); 5110 if (literalType->isVariableArrayType()) 5111 return ExprError(Diag(LParenLoc, diag::err_variable_object_no_init) 5112 << SourceRange(LParenLoc, LiteralExpr->getSourceRange().getEnd())); 5113 } else if (!literalType->isDependentType() && 5114 RequireCompleteType(LParenLoc, literalType, 5115 diag::err_typecheck_decl_incomplete_type, 5116 SourceRange(LParenLoc, LiteralExpr->getSourceRange().getEnd()))) 5117 return ExprError(); 5118 5119 InitializedEntity Entity 5120 = InitializedEntity::InitializeCompoundLiteralInit(TInfo); 5121 InitializationKind Kind 5122 = InitializationKind::CreateCStyleCast(LParenLoc, 5123 SourceRange(LParenLoc, RParenLoc), 5124 /*InitList=*/true); 5125 InitializationSequence InitSeq(*this, Entity, Kind, LiteralExpr); 5126 ExprResult Result = InitSeq.Perform(*this, Entity, Kind, LiteralExpr, 5127 &literalType); 5128 if (Result.isInvalid()) 5129 return ExprError(); 5130 LiteralExpr = Result.get(); 5131 5132 bool isFileScope = getCurFunctionOrMethodDecl() == nullptr; 5133 if (isFileScope && 5134 !LiteralExpr->isTypeDependent() && 5135 !LiteralExpr->isValueDependent() && 5136 !literalType->isDependentType()) { // 6.5.2.5p3 5137 if (CheckForConstantInitializer(LiteralExpr, literalType)) 5138 return ExprError(); 5139 } 5140 5141 // In C, compound literals are l-values for some reason. 5142 ExprValueKind VK = getLangOpts().CPlusPlus ? VK_RValue : VK_LValue; 5143 5144 return MaybeBindToTemporary( 5145 new (Context) CompoundLiteralExpr(LParenLoc, TInfo, literalType, 5146 VK, LiteralExpr, isFileScope)); 5147 } 5148 5149 ExprResult 5150 Sema::ActOnInitList(SourceLocation LBraceLoc, MultiExprArg InitArgList, 5151 SourceLocation RBraceLoc) { 5152 // Immediately handle non-overload placeholders. Overloads can be 5153 // resolved contextually, but everything else here can't. 5154 for (unsigned I = 0, E = InitArgList.size(); I != E; ++I) { 5155 if (InitArgList[I]->getType()->isNonOverloadPlaceholderType()) { 5156 ExprResult result = CheckPlaceholderExpr(InitArgList[I]); 5157 5158 // Ignore failures; dropping the entire initializer list because 5159 // of one failure would be terrible for indexing/etc. 5160 if (result.isInvalid()) continue; 5161 5162 InitArgList[I] = result.get(); 5163 } 5164 } 5165 5166 // Semantic analysis for initializers is done by ActOnDeclarator() and 5167 // CheckInitializer() - it requires knowledge of the object being intialized. 5168 5169 InitListExpr *E = new (Context) InitListExpr(Context, LBraceLoc, InitArgList, 5170 RBraceLoc); 5171 E->setType(Context.VoidTy); // FIXME: just a place holder for now. 5172 return E; 5173 } 5174 5175 /// Do an explicit extend of the given block pointer if we're in ARC. 5176 void Sema::maybeExtendBlockObject(ExprResult &E) { 5177 assert(E.get()->getType()->isBlockPointerType()); 5178 assert(E.get()->isRValue()); 5179 5180 // Only do this in an r-value context. 5181 if (!getLangOpts().ObjCAutoRefCount) return; 5182 5183 E = ImplicitCastExpr::Create(Context, E.get()->getType(), 5184 CK_ARCExtendBlockObject, E.get(), 5185 /*base path*/ nullptr, VK_RValue); 5186 ExprNeedsCleanups = true; 5187 } 5188 5189 /// Prepare a conversion of the given expression to an ObjC object 5190 /// pointer type. 5191 CastKind Sema::PrepareCastToObjCObjectPointer(ExprResult &E) { 5192 QualType type = E.get()->getType(); 5193 if (type->isObjCObjectPointerType()) { 5194 return CK_BitCast; 5195 } else if (type->isBlockPointerType()) { 5196 maybeExtendBlockObject(E); 5197 return CK_BlockPointerToObjCPointerCast; 5198 } else { 5199 assert(type->isPointerType()); 5200 return CK_CPointerToObjCPointerCast; 5201 } 5202 } 5203 5204 /// Prepares for a scalar cast, performing all the necessary stages 5205 /// except the final cast and returning the kind required. 5206 CastKind Sema::PrepareScalarCast(ExprResult &Src, QualType DestTy) { 5207 // Both Src and Dest are scalar types, i.e. arithmetic or pointer. 5208 // Also, callers should have filtered out the invalid cases with 5209 // pointers. Everything else should be possible. 5210 5211 QualType SrcTy = Src.get()->getType(); 5212 if (Context.hasSameUnqualifiedType(SrcTy, DestTy)) 5213 return CK_NoOp; 5214 5215 switch (Type::ScalarTypeKind SrcKind = SrcTy->getScalarTypeKind()) { 5216 case Type::STK_MemberPointer: 5217 llvm_unreachable("member pointer type in C"); 5218 5219 case Type::STK_CPointer: 5220 case Type::STK_BlockPointer: 5221 case Type::STK_ObjCObjectPointer: 5222 switch (DestTy->getScalarTypeKind()) { 5223 case Type::STK_CPointer: { 5224 unsigned SrcAS = SrcTy->getPointeeType().getAddressSpace(); 5225 unsigned DestAS = DestTy->getPointeeType().getAddressSpace(); 5226 if (SrcAS != DestAS) 5227 return CK_AddressSpaceConversion; 5228 return CK_BitCast; 5229 } 5230 case Type::STK_BlockPointer: 5231 return (SrcKind == Type::STK_BlockPointer 5232 ? CK_BitCast : CK_AnyPointerToBlockPointerCast); 5233 case Type::STK_ObjCObjectPointer: 5234 if (SrcKind == Type::STK_ObjCObjectPointer) 5235 return CK_BitCast; 5236 if (SrcKind == Type::STK_CPointer) 5237 return CK_CPointerToObjCPointerCast; 5238 maybeExtendBlockObject(Src); 5239 return CK_BlockPointerToObjCPointerCast; 5240 case Type::STK_Bool: 5241 return CK_PointerToBoolean; 5242 case Type::STK_Integral: 5243 return CK_PointerToIntegral; 5244 case Type::STK_Floating: 5245 case Type::STK_FloatingComplex: 5246 case Type::STK_IntegralComplex: 5247 case Type::STK_MemberPointer: 5248 llvm_unreachable("illegal cast from pointer"); 5249 } 5250 llvm_unreachable("Should have returned before this"); 5251 5252 case Type::STK_Bool: // casting from bool is like casting from an integer 5253 case Type::STK_Integral: 5254 switch (DestTy->getScalarTypeKind()) { 5255 case Type::STK_CPointer: 5256 case Type::STK_ObjCObjectPointer: 5257 case Type::STK_BlockPointer: 5258 if (Src.get()->isNullPointerConstant(Context, 5259 Expr::NPC_ValueDependentIsNull)) 5260 return CK_NullToPointer; 5261 return CK_IntegralToPointer; 5262 case Type::STK_Bool: 5263 return CK_IntegralToBoolean; 5264 case Type::STK_Integral: 5265 return CK_IntegralCast; 5266 case Type::STK_Floating: 5267 return CK_IntegralToFloating; 5268 case Type::STK_IntegralComplex: 5269 Src = ImpCastExprToType(Src.get(), 5270 DestTy->castAs<ComplexType>()->getElementType(), 5271 CK_IntegralCast); 5272 return CK_IntegralRealToComplex; 5273 case Type::STK_FloatingComplex: 5274 Src = ImpCastExprToType(Src.get(), 5275 DestTy->castAs<ComplexType>()->getElementType(), 5276 CK_IntegralToFloating); 5277 return CK_FloatingRealToComplex; 5278 case Type::STK_MemberPointer: 5279 llvm_unreachable("member pointer type in C"); 5280 } 5281 llvm_unreachable("Should have returned before this"); 5282 5283 case Type::STK_Floating: 5284 switch (DestTy->getScalarTypeKind()) { 5285 case Type::STK_Floating: 5286 return CK_FloatingCast; 5287 case Type::STK_Bool: 5288 return CK_FloatingToBoolean; 5289 case Type::STK_Integral: 5290 return CK_FloatingToIntegral; 5291 case Type::STK_FloatingComplex: 5292 Src = ImpCastExprToType(Src.get(), 5293 DestTy->castAs<ComplexType>()->getElementType(), 5294 CK_FloatingCast); 5295 return CK_FloatingRealToComplex; 5296 case Type::STK_IntegralComplex: 5297 Src = ImpCastExprToType(Src.get(), 5298 DestTy->castAs<ComplexType>()->getElementType(), 5299 CK_FloatingToIntegral); 5300 return CK_IntegralRealToComplex; 5301 case Type::STK_CPointer: 5302 case Type::STK_ObjCObjectPointer: 5303 case Type::STK_BlockPointer: 5304 llvm_unreachable("valid float->pointer cast?"); 5305 case Type::STK_MemberPointer: 5306 llvm_unreachable("member pointer type in C"); 5307 } 5308 llvm_unreachable("Should have returned before this"); 5309 5310 case Type::STK_FloatingComplex: 5311 switch (DestTy->getScalarTypeKind()) { 5312 case Type::STK_FloatingComplex: 5313 return CK_FloatingComplexCast; 5314 case Type::STK_IntegralComplex: 5315 return CK_FloatingComplexToIntegralComplex; 5316 case Type::STK_Floating: { 5317 QualType ET = SrcTy->castAs<ComplexType>()->getElementType(); 5318 if (Context.hasSameType(ET, DestTy)) 5319 return CK_FloatingComplexToReal; 5320 Src = ImpCastExprToType(Src.get(), ET, CK_FloatingComplexToReal); 5321 return CK_FloatingCast; 5322 } 5323 case Type::STK_Bool: 5324 return CK_FloatingComplexToBoolean; 5325 case Type::STK_Integral: 5326 Src = ImpCastExprToType(Src.get(), 5327 SrcTy->castAs<ComplexType>()->getElementType(), 5328 CK_FloatingComplexToReal); 5329 return CK_FloatingToIntegral; 5330 case Type::STK_CPointer: 5331 case Type::STK_ObjCObjectPointer: 5332 case Type::STK_BlockPointer: 5333 llvm_unreachable("valid complex float->pointer cast?"); 5334 case Type::STK_MemberPointer: 5335 llvm_unreachable("member pointer type in C"); 5336 } 5337 llvm_unreachable("Should have returned before this"); 5338 5339 case Type::STK_IntegralComplex: 5340 switch (DestTy->getScalarTypeKind()) { 5341 case Type::STK_FloatingComplex: 5342 return CK_IntegralComplexToFloatingComplex; 5343 case Type::STK_IntegralComplex: 5344 return CK_IntegralComplexCast; 5345 case Type::STK_Integral: { 5346 QualType ET = SrcTy->castAs<ComplexType>()->getElementType(); 5347 if (Context.hasSameType(ET, DestTy)) 5348 return CK_IntegralComplexToReal; 5349 Src = ImpCastExprToType(Src.get(), ET, CK_IntegralComplexToReal); 5350 return CK_IntegralCast; 5351 } 5352 case Type::STK_Bool: 5353 return CK_IntegralComplexToBoolean; 5354 case Type::STK_Floating: 5355 Src = ImpCastExprToType(Src.get(), 5356 SrcTy->castAs<ComplexType>()->getElementType(), 5357 CK_IntegralComplexToReal); 5358 return CK_IntegralToFloating; 5359 case Type::STK_CPointer: 5360 case Type::STK_ObjCObjectPointer: 5361 case Type::STK_BlockPointer: 5362 llvm_unreachable("valid complex int->pointer cast?"); 5363 case Type::STK_MemberPointer: 5364 llvm_unreachable("member pointer type in C"); 5365 } 5366 llvm_unreachable("Should have returned before this"); 5367 } 5368 5369 llvm_unreachable("Unhandled scalar cast"); 5370 } 5371 5372 static bool breakDownVectorType(QualType type, uint64_t &len, 5373 QualType &eltType) { 5374 // Vectors are simple. 5375 if (const VectorType *vecType = type->getAs<VectorType>()) { 5376 len = vecType->getNumElements(); 5377 eltType = vecType->getElementType(); 5378 assert(eltType->isScalarType()); 5379 return true; 5380 } 5381 5382 // We allow lax conversion to and from non-vector types, but only if 5383 // they're real types (i.e. non-complex, non-pointer scalar types). 5384 if (!type->isRealType()) return false; 5385 5386 len = 1; 5387 eltType = type; 5388 return true; 5389 } 5390 5391 /// Are the two types lax-compatible vector types? That is, given 5392 /// that one of them is a vector, do they have equal storage sizes, 5393 /// where the storage size is the number of elements times the element 5394 /// size? 5395 /// 5396 /// This will also return false if either of the types is neither a 5397 /// vector nor a real type. 5398 bool Sema::areLaxCompatibleVectorTypes(QualType srcTy, QualType destTy) { 5399 assert(destTy->isVectorType() || srcTy->isVectorType()); 5400 5401 uint64_t srcLen, destLen; 5402 QualType srcElt, destElt; 5403 if (!breakDownVectorType(srcTy, srcLen, srcElt)) return false; 5404 if (!breakDownVectorType(destTy, destLen, destElt)) return false; 5405 5406 // ASTContext::getTypeSize will return the size rounded up to a 5407 // power of 2, so instead of using that, we need to use the raw 5408 // element size multiplied by the element count. 5409 uint64_t srcEltSize = Context.getTypeSize(srcElt); 5410 uint64_t destEltSize = Context.getTypeSize(destElt); 5411 5412 return (srcLen * srcEltSize == destLen * destEltSize); 5413 } 5414 5415 /// Is this a legal conversion between two types, one of which is 5416 /// known to be a vector type? 5417 bool Sema::isLaxVectorConversion(QualType srcTy, QualType destTy) { 5418 assert(destTy->isVectorType() || srcTy->isVectorType()); 5419 5420 if (!Context.getLangOpts().LaxVectorConversions) 5421 return false; 5422 return areLaxCompatibleVectorTypes(srcTy, destTy); 5423 } 5424 5425 bool Sema::CheckVectorCast(SourceRange R, QualType VectorTy, QualType Ty, 5426 CastKind &Kind) { 5427 assert(VectorTy->isVectorType() && "Not a vector type!"); 5428 5429 if (Ty->isVectorType() || Ty->isIntegralType(Context)) { 5430 if (!areLaxCompatibleVectorTypes(Ty, VectorTy)) 5431 return Diag(R.getBegin(), 5432 Ty->isVectorType() ? 5433 diag::err_invalid_conversion_between_vectors : 5434 diag::err_invalid_conversion_between_vector_and_integer) 5435 << VectorTy << Ty << R; 5436 } else 5437 return Diag(R.getBegin(), 5438 diag::err_invalid_conversion_between_vector_and_scalar) 5439 << VectorTy << Ty << R; 5440 5441 Kind = CK_BitCast; 5442 return false; 5443 } 5444 5445 ExprResult Sema::CheckExtVectorCast(SourceRange R, QualType DestTy, 5446 Expr *CastExpr, CastKind &Kind) { 5447 assert(DestTy->isExtVectorType() && "Not an extended vector type!"); 5448 5449 QualType SrcTy = CastExpr->getType(); 5450 5451 // If SrcTy is a VectorType, the total size must match to explicitly cast to 5452 // an ExtVectorType. 5453 // In OpenCL, casts between vectors of different types are not allowed. 5454 // (See OpenCL 6.2). 5455 if (SrcTy->isVectorType()) { 5456 if (!areLaxCompatibleVectorTypes(SrcTy, DestTy) 5457 || (getLangOpts().OpenCL && 5458 (DestTy.getCanonicalType() != SrcTy.getCanonicalType()))) { 5459 Diag(R.getBegin(),diag::err_invalid_conversion_between_ext_vectors) 5460 << DestTy << SrcTy << R; 5461 return ExprError(); 5462 } 5463 Kind = CK_BitCast; 5464 return CastExpr; 5465 } 5466 5467 // All non-pointer scalars can be cast to ExtVector type. The appropriate 5468 // conversion will take place first from scalar to elt type, and then 5469 // splat from elt type to vector. 5470 if (SrcTy->isPointerType()) 5471 return Diag(R.getBegin(), 5472 diag::err_invalid_conversion_between_vector_and_scalar) 5473 << DestTy << SrcTy << R; 5474 5475 QualType DestElemTy = DestTy->getAs<ExtVectorType>()->getElementType(); 5476 ExprResult CastExprRes = CastExpr; 5477 CastKind CK = PrepareScalarCast(CastExprRes, DestElemTy); 5478 if (CastExprRes.isInvalid()) 5479 return ExprError(); 5480 CastExpr = ImpCastExprToType(CastExprRes.get(), DestElemTy, CK).get(); 5481 5482 Kind = CK_VectorSplat; 5483 return CastExpr; 5484 } 5485 5486 ExprResult 5487 Sema::ActOnCastExpr(Scope *S, SourceLocation LParenLoc, 5488 Declarator &D, ParsedType &Ty, 5489 SourceLocation RParenLoc, Expr *CastExpr) { 5490 assert(!D.isInvalidType() && (CastExpr != nullptr) && 5491 "ActOnCastExpr(): missing type or expr"); 5492 5493 TypeSourceInfo *castTInfo = GetTypeForDeclaratorCast(D, CastExpr->getType()); 5494 if (D.isInvalidType()) 5495 return ExprError(); 5496 5497 if (getLangOpts().CPlusPlus) { 5498 // Check that there are no default arguments (C++ only). 5499 CheckExtraCXXDefaultArguments(D); 5500 } else { 5501 // Make sure any TypoExprs have been dealt with. 5502 ExprResult Res = CorrectDelayedTyposInExpr(CastExpr); 5503 if (!Res.isUsable()) 5504 return ExprError(); 5505 CastExpr = Res.get(); 5506 } 5507 5508 checkUnusedDeclAttributes(D); 5509 5510 QualType castType = castTInfo->getType(); 5511 Ty = CreateParsedType(castType, castTInfo); 5512 5513 bool isVectorLiteral = false; 5514 5515 // Check for an altivec or OpenCL literal, 5516 // i.e. all the elements are integer constants. 5517 ParenExpr *PE = dyn_cast<ParenExpr>(CastExpr); 5518 ParenListExpr *PLE = dyn_cast<ParenListExpr>(CastExpr); 5519 if ((getLangOpts().AltiVec || getLangOpts().OpenCL) 5520 && castType->isVectorType() && (PE || PLE)) { 5521 if (PLE && PLE->getNumExprs() == 0) { 5522 Diag(PLE->getExprLoc(), diag::err_altivec_empty_initializer); 5523 return ExprError(); 5524 } 5525 if (PE || PLE->getNumExprs() == 1) { 5526 Expr *E = (PE ? PE->getSubExpr() : PLE->getExpr(0)); 5527 if (!E->getType()->isVectorType()) 5528 isVectorLiteral = true; 5529 } 5530 else 5531 isVectorLiteral = true; 5532 } 5533 5534 // If this is a vector initializer, '(' type ')' '(' init, ..., init ')' 5535 // then handle it as such. 5536 if (isVectorLiteral) 5537 return BuildVectorLiteral(LParenLoc, RParenLoc, CastExpr, castTInfo); 5538 5539 // If the Expr being casted is a ParenListExpr, handle it specially. 5540 // This is not an AltiVec-style cast, so turn the ParenListExpr into a 5541 // sequence of BinOp comma operators. 5542 if (isa<ParenListExpr>(CastExpr)) { 5543 ExprResult Result = MaybeConvertParenListExprToParenExpr(S, CastExpr); 5544 if (Result.isInvalid()) return ExprError(); 5545 CastExpr = Result.get(); 5546 } 5547 5548 if (getLangOpts().CPlusPlus && !castType->isVoidType() && 5549 !getSourceManager().isInSystemMacro(LParenLoc)) 5550 Diag(LParenLoc, diag::warn_old_style_cast) << CastExpr->getSourceRange(); 5551 5552 CheckTollFreeBridgeCast(castType, CastExpr); 5553 5554 CheckObjCBridgeRelatedCast(castType, CastExpr); 5555 5556 return BuildCStyleCastExpr(LParenLoc, castTInfo, RParenLoc, CastExpr); 5557 } 5558 5559 ExprResult Sema::BuildVectorLiteral(SourceLocation LParenLoc, 5560 SourceLocation RParenLoc, Expr *E, 5561 TypeSourceInfo *TInfo) { 5562 assert((isa<ParenListExpr>(E) || isa<ParenExpr>(E)) && 5563 "Expected paren or paren list expression"); 5564 5565 Expr **exprs; 5566 unsigned numExprs; 5567 Expr *subExpr; 5568 SourceLocation LiteralLParenLoc, LiteralRParenLoc; 5569 if (ParenListExpr *PE = dyn_cast<ParenListExpr>(E)) { 5570 LiteralLParenLoc = PE->getLParenLoc(); 5571 LiteralRParenLoc = PE->getRParenLoc(); 5572 exprs = PE->getExprs(); 5573 numExprs = PE->getNumExprs(); 5574 } else { // isa<ParenExpr> by assertion at function entrance 5575 LiteralLParenLoc = cast<ParenExpr>(E)->getLParen(); 5576 LiteralRParenLoc = cast<ParenExpr>(E)->getRParen(); 5577 subExpr = cast<ParenExpr>(E)->getSubExpr(); 5578 exprs = &subExpr; 5579 numExprs = 1; 5580 } 5581 5582 QualType Ty = TInfo->getType(); 5583 assert(Ty->isVectorType() && "Expected vector type"); 5584 5585 SmallVector<Expr *, 8> initExprs; 5586 const VectorType *VTy = Ty->getAs<VectorType>(); 5587 unsigned numElems = Ty->getAs<VectorType>()->getNumElements(); 5588 5589 // '(...)' form of vector initialization in AltiVec: the number of 5590 // initializers must be one or must match the size of the vector. 5591 // If a single value is specified in the initializer then it will be 5592 // replicated to all the components of the vector 5593 if (VTy->getVectorKind() == VectorType::AltiVecVector) { 5594 // The number of initializers must be one or must match the size of the 5595 // vector. If a single value is specified in the initializer then it will 5596 // be replicated to all the components of the vector 5597 if (numExprs == 1) { 5598 QualType ElemTy = Ty->getAs<VectorType>()->getElementType(); 5599 ExprResult Literal = DefaultLvalueConversion(exprs[0]); 5600 if (Literal.isInvalid()) 5601 return ExprError(); 5602 Literal = ImpCastExprToType(Literal.get(), ElemTy, 5603 PrepareScalarCast(Literal, ElemTy)); 5604 return BuildCStyleCastExpr(LParenLoc, TInfo, RParenLoc, Literal.get()); 5605 } 5606 else if (numExprs < numElems) { 5607 Diag(E->getExprLoc(), 5608 diag::err_incorrect_number_of_vector_initializers); 5609 return ExprError(); 5610 } 5611 else 5612 initExprs.append(exprs, exprs + numExprs); 5613 } 5614 else { 5615 // For OpenCL, when the number of initializers is a single value, 5616 // it will be replicated to all components of the vector. 5617 if (getLangOpts().OpenCL && 5618 VTy->getVectorKind() == VectorType::GenericVector && 5619 numExprs == 1) { 5620 QualType ElemTy = Ty->getAs<VectorType>()->getElementType(); 5621 ExprResult Literal = DefaultLvalueConversion(exprs[0]); 5622 if (Literal.isInvalid()) 5623 return ExprError(); 5624 Literal = ImpCastExprToType(Literal.get(), ElemTy, 5625 PrepareScalarCast(Literal, ElemTy)); 5626 return BuildCStyleCastExpr(LParenLoc, TInfo, RParenLoc, Literal.get()); 5627 } 5628 5629 initExprs.append(exprs, exprs + numExprs); 5630 } 5631 // FIXME: This means that pretty-printing the final AST will produce curly 5632 // braces instead of the original commas. 5633 InitListExpr *initE = new (Context) InitListExpr(Context, LiteralLParenLoc, 5634 initExprs, LiteralRParenLoc); 5635 initE->setType(Ty); 5636 return BuildCompoundLiteralExpr(LParenLoc, TInfo, RParenLoc, initE); 5637 } 5638 5639 /// This is not an AltiVec-style cast or or C++ direct-initialization, so turn 5640 /// the ParenListExpr into a sequence of comma binary operators. 5641 ExprResult 5642 Sema::MaybeConvertParenListExprToParenExpr(Scope *S, Expr *OrigExpr) { 5643 ParenListExpr *E = dyn_cast<ParenListExpr>(OrigExpr); 5644 if (!E) 5645 return OrigExpr; 5646 5647 ExprResult Result(E->getExpr(0)); 5648 5649 for (unsigned i = 1, e = E->getNumExprs(); i != e && !Result.isInvalid(); ++i) 5650 Result = ActOnBinOp(S, E->getExprLoc(), tok::comma, Result.get(), 5651 E->getExpr(i)); 5652 5653 if (Result.isInvalid()) return ExprError(); 5654 5655 return ActOnParenExpr(E->getLParenLoc(), E->getRParenLoc(), Result.get()); 5656 } 5657 5658 ExprResult Sema::ActOnParenListExpr(SourceLocation L, 5659 SourceLocation R, 5660 MultiExprArg Val) { 5661 Expr *expr = new (Context) ParenListExpr(Context, L, Val, R); 5662 return expr; 5663 } 5664 5665 /// \brief Emit a specialized diagnostic when one expression is a null pointer 5666 /// constant and the other is not a pointer. Returns true if a diagnostic is 5667 /// emitted. 5668 bool Sema::DiagnoseConditionalForNull(Expr *LHSExpr, Expr *RHSExpr, 5669 SourceLocation QuestionLoc) { 5670 Expr *NullExpr = LHSExpr; 5671 Expr *NonPointerExpr = RHSExpr; 5672 Expr::NullPointerConstantKind NullKind = 5673 NullExpr->isNullPointerConstant(Context, 5674 Expr::NPC_ValueDependentIsNotNull); 5675 5676 if (NullKind == Expr::NPCK_NotNull) { 5677 NullExpr = RHSExpr; 5678 NonPointerExpr = LHSExpr; 5679 NullKind = 5680 NullExpr->isNullPointerConstant(Context, 5681 Expr::NPC_ValueDependentIsNotNull); 5682 } 5683 5684 if (NullKind == Expr::NPCK_NotNull) 5685 return false; 5686 5687 if (NullKind == Expr::NPCK_ZeroExpression) 5688 return false; 5689 5690 if (NullKind == Expr::NPCK_ZeroLiteral) { 5691 // In this case, check to make sure that we got here from a "NULL" 5692 // string in the source code. 5693 NullExpr = NullExpr->IgnoreParenImpCasts(); 5694 SourceLocation loc = NullExpr->getExprLoc(); 5695 if (!findMacroSpelling(loc, "NULL")) 5696 return false; 5697 } 5698 5699 int DiagType = (NullKind == Expr::NPCK_CXX11_nullptr); 5700 Diag(QuestionLoc, diag::err_typecheck_cond_incompatible_operands_null) 5701 << NonPointerExpr->getType() << DiagType 5702 << NonPointerExpr->getSourceRange(); 5703 return true; 5704 } 5705 5706 /// \brief Return false if the condition expression is valid, true otherwise. 5707 static bool checkCondition(Sema &S, Expr *Cond, SourceLocation QuestionLoc) { 5708 QualType CondTy = Cond->getType(); 5709 5710 // OpenCL v1.1 s6.3.i says the condition cannot be a floating point type. 5711 if (S.getLangOpts().OpenCL && CondTy->isFloatingType()) { 5712 S.Diag(QuestionLoc, diag::err_typecheck_cond_expect_nonfloat) 5713 << CondTy << Cond->getSourceRange(); 5714 return true; 5715 } 5716 5717 // C99 6.5.15p2 5718 if (CondTy->isScalarType()) return false; 5719 5720 S.Diag(QuestionLoc, diag::err_typecheck_cond_expect_scalar) 5721 << CondTy << Cond->getSourceRange(); 5722 return true; 5723 } 5724 5725 /// \brief Handle when one or both operands are void type. 5726 static QualType checkConditionalVoidType(Sema &S, ExprResult &LHS, 5727 ExprResult &RHS) { 5728 Expr *LHSExpr = LHS.get(); 5729 Expr *RHSExpr = RHS.get(); 5730 5731 if (!LHSExpr->getType()->isVoidType()) 5732 S.Diag(RHSExpr->getLocStart(), diag::ext_typecheck_cond_one_void) 5733 << RHSExpr->getSourceRange(); 5734 if (!RHSExpr->getType()->isVoidType()) 5735 S.Diag(LHSExpr->getLocStart(), diag::ext_typecheck_cond_one_void) 5736 << LHSExpr->getSourceRange(); 5737 LHS = S.ImpCastExprToType(LHS.get(), S.Context.VoidTy, CK_ToVoid); 5738 RHS = S.ImpCastExprToType(RHS.get(), S.Context.VoidTy, CK_ToVoid); 5739 return S.Context.VoidTy; 5740 } 5741 5742 /// \brief Return false if the NullExpr can be promoted to PointerTy, 5743 /// true otherwise. 5744 static bool checkConditionalNullPointer(Sema &S, ExprResult &NullExpr, 5745 QualType PointerTy) { 5746 if ((!PointerTy->isAnyPointerType() && !PointerTy->isBlockPointerType()) || 5747 !NullExpr.get()->isNullPointerConstant(S.Context, 5748 Expr::NPC_ValueDependentIsNull)) 5749 return true; 5750 5751 NullExpr = S.ImpCastExprToType(NullExpr.get(), PointerTy, CK_NullToPointer); 5752 return false; 5753 } 5754 5755 /// \brief Checks compatibility between two pointers and return the resulting 5756 /// type. 5757 static QualType checkConditionalPointerCompatibility(Sema &S, ExprResult &LHS, 5758 ExprResult &RHS, 5759 SourceLocation Loc) { 5760 QualType LHSTy = LHS.get()->getType(); 5761 QualType RHSTy = RHS.get()->getType(); 5762 5763 if (S.Context.hasSameType(LHSTy, RHSTy)) { 5764 // Two identical pointers types are always compatible. 5765 return LHSTy; 5766 } 5767 5768 QualType lhptee, rhptee; 5769 5770 // Get the pointee types. 5771 bool IsBlockPointer = false; 5772 if (const BlockPointerType *LHSBTy = LHSTy->getAs<BlockPointerType>()) { 5773 lhptee = LHSBTy->getPointeeType(); 5774 rhptee = RHSTy->castAs<BlockPointerType>()->getPointeeType(); 5775 IsBlockPointer = true; 5776 } else { 5777 lhptee = LHSTy->castAs<PointerType>()->getPointeeType(); 5778 rhptee = RHSTy->castAs<PointerType>()->getPointeeType(); 5779 } 5780 5781 // C99 6.5.15p6: If both operands are pointers to compatible types or to 5782 // differently qualified versions of compatible types, the result type is 5783 // a pointer to an appropriately qualified version of the composite 5784 // type. 5785 5786 // Only CVR-qualifiers exist in the standard, and the differently-qualified 5787 // clause doesn't make sense for our extensions. E.g. address space 2 should 5788 // be incompatible with address space 3: they may live on different devices or 5789 // anything. 5790 Qualifiers lhQual = lhptee.getQualifiers(); 5791 Qualifiers rhQual = rhptee.getQualifiers(); 5792 5793 unsigned MergedCVRQual = lhQual.getCVRQualifiers() | rhQual.getCVRQualifiers(); 5794 lhQual.removeCVRQualifiers(); 5795 rhQual.removeCVRQualifiers(); 5796 5797 lhptee = S.Context.getQualifiedType(lhptee.getUnqualifiedType(), lhQual); 5798 rhptee = S.Context.getQualifiedType(rhptee.getUnqualifiedType(), rhQual); 5799 5800 QualType CompositeTy = S.Context.mergeTypes(lhptee, rhptee); 5801 5802 if (CompositeTy.isNull()) { 5803 S.Diag(Loc, diag::ext_typecheck_cond_incompatible_pointers) 5804 << LHSTy << RHSTy << LHS.get()->getSourceRange() 5805 << RHS.get()->getSourceRange(); 5806 // In this situation, we assume void* type. No especially good 5807 // reason, but this is what gcc does, and we do have to pick 5808 // to get a consistent AST. 5809 QualType incompatTy = S.Context.getPointerType(S.Context.VoidTy); 5810 LHS = S.ImpCastExprToType(LHS.get(), incompatTy, CK_BitCast); 5811 RHS = S.ImpCastExprToType(RHS.get(), incompatTy, CK_BitCast); 5812 return incompatTy; 5813 } 5814 5815 // The pointer types are compatible. 5816 QualType ResultTy = CompositeTy.withCVRQualifiers(MergedCVRQual); 5817 if (IsBlockPointer) 5818 ResultTy = S.Context.getBlockPointerType(ResultTy); 5819 else 5820 ResultTy = S.Context.getPointerType(ResultTy); 5821 5822 LHS = S.ImpCastExprToType(LHS.get(), ResultTy, CK_BitCast); 5823 RHS = S.ImpCastExprToType(RHS.get(), ResultTy, CK_BitCast); 5824 return ResultTy; 5825 } 5826 5827 /// \brief Return the resulting type when the operands are both block pointers. 5828 static QualType checkConditionalBlockPointerCompatibility(Sema &S, 5829 ExprResult &LHS, 5830 ExprResult &RHS, 5831 SourceLocation Loc) { 5832 QualType LHSTy = LHS.get()->getType(); 5833 QualType RHSTy = RHS.get()->getType(); 5834 5835 if (!LHSTy->isBlockPointerType() || !RHSTy->isBlockPointerType()) { 5836 if (LHSTy->isVoidPointerType() || RHSTy->isVoidPointerType()) { 5837 QualType destType = S.Context.getPointerType(S.Context.VoidTy); 5838 LHS = S.ImpCastExprToType(LHS.get(), destType, CK_BitCast); 5839 RHS = S.ImpCastExprToType(RHS.get(), destType, CK_BitCast); 5840 return destType; 5841 } 5842 S.Diag(Loc, diag::err_typecheck_cond_incompatible_operands) 5843 << LHSTy << RHSTy << LHS.get()->getSourceRange() 5844 << RHS.get()->getSourceRange(); 5845 return QualType(); 5846 } 5847 5848 // We have 2 block pointer types. 5849 return checkConditionalPointerCompatibility(S, LHS, RHS, Loc); 5850 } 5851 5852 /// \brief Return the resulting type when the operands are both pointers. 5853 static QualType 5854 checkConditionalObjectPointersCompatibility(Sema &S, ExprResult &LHS, 5855 ExprResult &RHS, 5856 SourceLocation Loc) { 5857 // get the pointer types 5858 QualType LHSTy = LHS.get()->getType(); 5859 QualType RHSTy = RHS.get()->getType(); 5860 5861 // get the "pointed to" types 5862 QualType lhptee = LHSTy->getAs<PointerType>()->getPointeeType(); 5863 QualType rhptee = RHSTy->getAs<PointerType>()->getPointeeType(); 5864 5865 // ignore qualifiers on void (C99 6.5.15p3, clause 6) 5866 if (lhptee->isVoidType() && rhptee->isIncompleteOrObjectType()) { 5867 // Figure out necessary qualifiers (C99 6.5.15p6) 5868 QualType destPointee 5869 = S.Context.getQualifiedType(lhptee, rhptee.getQualifiers()); 5870 QualType destType = S.Context.getPointerType(destPointee); 5871 // Add qualifiers if necessary. 5872 LHS = S.ImpCastExprToType(LHS.get(), destType, CK_NoOp); 5873 // Promote to void*. 5874 RHS = S.ImpCastExprToType(RHS.get(), destType, CK_BitCast); 5875 return destType; 5876 } 5877 if (rhptee->isVoidType() && lhptee->isIncompleteOrObjectType()) { 5878 QualType destPointee 5879 = S.Context.getQualifiedType(rhptee, lhptee.getQualifiers()); 5880 QualType destType = S.Context.getPointerType(destPointee); 5881 // Add qualifiers if necessary. 5882 RHS = S.ImpCastExprToType(RHS.get(), destType, CK_NoOp); 5883 // Promote to void*. 5884 LHS = S.ImpCastExprToType(LHS.get(), destType, CK_BitCast); 5885 return destType; 5886 } 5887 5888 return checkConditionalPointerCompatibility(S, LHS, RHS, Loc); 5889 } 5890 5891 /// \brief Return false if the first expression is not an integer and the second 5892 /// expression is not a pointer, true otherwise. 5893 static bool checkPointerIntegerMismatch(Sema &S, ExprResult &Int, 5894 Expr* PointerExpr, SourceLocation Loc, 5895 bool IsIntFirstExpr) { 5896 if (!PointerExpr->getType()->isPointerType() || 5897 !Int.get()->getType()->isIntegerType()) 5898 return false; 5899 5900 Expr *Expr1 = IsIntFirstExpr ? Int.get() : PointerExpr; 5901 Expr *Expr2 = IsIntFirstExpr ? PointerExpr : Int.get(); 5902 5903 S.Diag(Loc, diag::ext_typecheck_cond_pointer_integer_mismatch) 5904 << Expr1->getType() << Expr2->getType() 5905 << Expr1->getSourceRange() << Expr2->getSourceRange(); 5906 Int = S.ImpCastExprToType(Int.get(), PointerExpr->getType(), 5907 CK_IntegralToPointer); 5908 return true; 5909 } 5910 5911 /// \brief Simple conversion between integer and floating point types. 5912 /// 5913 /// Used when handling the OpenCL conditional operator where the 5914 /// condition is a vector while the other operands are scalar. 5915 /// 5916 /// OpenCL v1.1 s6.3.i and s6.11.6 together require that the scalar 5917 /// types are either integer or floating type. Between the two 5918 /// operands, the type with the higher rank is defined as the "result 5919 /// type". The other operand needs to be promoted to the same type. No 5920 /// other type promotion is allowed. We cannot use 5921 /// UsualArithmeticConversions() for this purpose, since it always 5922 /// promotes promotable types. 5923 static QualType OpenCLArithmeticConversions(Sema &S, ExprResult &LHS, 5924 ExprResult &RHS, 5925 SourceLocation QuestionLoc) { 5926 LHS = S.DefaultFunctionArrayLvalueConversion(LHS.get()); 5927 if (LHS.isInvalid()) 5928 return QualType(); 5929 RHS = S.DefaultFunctionArrayLvalueConversion(RHS.get()); 5930 if (RHS.isInvalid()) 5931 return QualType(); 5932 5933 // For conversion purposes, we ignore any qualifiers. 5934 // For example, "const float" and "float" are equivalent. 5935 QualType LHSType = 5936 S.Context.getCanonicalType(LHS.get()->getType()).getUnqualifiedType(); 5937 QualType RHSType = 5938 S.Context.getCanonicalType(RHS.get()->getType()).getUnqualifiedType(); 5939 5940 if (!LHSType->isIntegerType() && !LHSType->isRealFloatingType()) { 5941 S.Diag(QuestionLoc, diag::err_typecheck_cond_expect_int_float) 5942 << LHSType << LHS.get()->getSourceRange(); 5943 return QualType(); 5944 } 5945 5946 if (!RHSType->isIntegerType() && !RHSType->isRealFloatingType()) { 5947 S.Diag(QuestionLoc, diag::err_typecheck_cond_expect_int_float) 5948 << RHSType << RHS.get()->getSourceRange(); 5949 return QualType(); 5950 } 5951 5952 // If both types are identical, no conversion is needed. 5953 if (LHSType == RHSType) 5954 return LHSType; 5955 5956 // Now handle "real" floating types (i.e. float, double, long double). 5957 if (LHSType->isRealFloatingType() || RHSType->isRealFloatingType()) 5958 return handleFloatConversion(S, LHS, RHS, LHSType, RHSType, 5959 /*IsCompAssign = */ false); 5960 5961 // Finally, we have two differing integer types. 5962 return handleIntegerConversion<doIntegralCast, doIntegralCast> 5963 (S, LHS, RHS, LHSType, RHSType, /*IsCompAssign = */ false); 5964 } 5965 5966 /// \brief Convert scalar operands to a vector that matches the 5967 /// condition in length. 5968 /// 5969 /// Used when handling the OpenCL conditional operator where the 5970 /// condition is a vector while the other operands are scalar. 5971 /// 5972 /// We first compute the "result type" for the scalar operands 5973 /// according to OpenCL v1.1 s6.3.i. Both operands are then converted 5974 /// into a vector of that type where the length matches the condition 5975 /// vector type. s6.11.6 requires that the element types of the result 5976 /// and the condition must have the same number of bits. 5977 static QualType 5978 OpenCLConvertScalarsToVectors(Sema &S, ExprResult &LHS, ExprResult &RHS, 5979 QualType CondTy, SourceLocation QuestionLoc) { 5980 QualType ResTy = OpenCLArithmeticConversions(S, LHS, RHS, QuestionLoc); 5981 if (ResTy.isNull()) return QualType(); 5982 5983 const VectorType *CV = CondTy->getAs<VectorType>(); 5984 assert(CV); 5985 5986 // Determine the vector result type 5987 unsigned NumElements = CV->getNumElements(); 5988 QualType VectorTy = S.Context.getExtVectorType(ResTy, NumElements); 5989 5990 // Ensure that all types have the same number of bits 5991 if (S.Context.getTypeSize(CV->getElementType()) 5992 != S.Context.getTypeSize(ResTy)) { 5993 // Since VectorTy is created internally, it does not pretty print 5994 // with an OpenCL name. Instead, we just print a description. 5995 std::string EleTyName = ResTy.getUnqualifiedType().getAsString(); 5996 SmallString<64> Str; 5997 llvm::raw_svector_ostream OS(Str); 5998 OS << "(vector of " << NumElements << " '" << EleTyName << "' values)"; 5999 S.Diag(QuestionLoc, diag::err_conditional_vector_element_size) 6000 << CondTy << OS.str(); 6001 return QualType(); 6002 } 6003 6004 // Convert operands to the vector result type 6005 LHS = S.ImpCastExprToType(LHS.get(), VectorTy, CK_VectorSplat); 6006 RHS = S.ImpCastExprToType(RHS.get(), VectorTy, CK_VectorSplat); 6007 6008 return VectorTy; 6009 } 6010 6011 /// \brief Return false if this is a valid OpenCL condition vector 6012 static bool checkOpenCLConditionVector(Sema &S, Expr *Cond, 6013 SourceLocation QuestionLoc) { 6014 // OpenCL v1.1 s6.11.6 says the elements of the vector must be of 6015 // integral type. 6016 const VectorType *CondTy = Cond->getType()->getAs<VectorType>(); 6017 assert(CondTy); 6018 QualType EleTy = CondTy->getElementType(); 6019 if (EleTy->isIntegerType()) return false; 6020 6021 S.Diag(QuestionLoc, diag::err_typecheck_cond_expect_nonfloat) 6022 << Cond->getType() << Cond->getSourceRange(); 6023 return true; 6024 } 6025 6026 /// \brief Return false if the vector condition type and the vector 6027 /// result type are compatible. 6028 /// 6029 /// OpenCL v1.1 s6.11.6 requires that both vector types have the same 6030 /// number of elements, and their element types have the same number 6031 /// of bits. 6032 static bool checkVectorResult(Sema &S, QualType CondTy, QualType VecResTy, 6033 SourceLocation QuestionLoc) { 6034 const VectorType *CV = CondTy->getAs<VectorType>(); 6035 const VectorType *RV = VecResTy->getAs<VectorType>(); 6036 assert(CV && RV); 6037 6038 if (CV->getNumElements() != RV->getNumElements()) { 6039 S.Diag(QuestionLoc, diag::err_conditional_vector_size) 6040 << CondTy << VecResTy; 6041 return true; 6042 } 6043 6044 QualType CVE = CV->getElementType(); 6045 QualType RVE = RV->getElementType(); 6046 6047 if (S.Context.getTypeSize(CVE) != S.Context.getTypeSize(RVE)) { 6048 S.Diag(QuestionLoc, diag::err_conditional_vector_element_size) 6049 << CondTy << VecResTy; 6050 return true; 6051 } 6052 6053 return false; 6054 } 6055 6056 /// \brief Return the resulting type for the conditional operator in 6057 /// OpenCL (aka "ternary selection operator", OpenCL v1.1 6058 /// s6.3.i) when the condition is a vector type. 6059 static QualType 6060 OpenCLCheckVectorConditional(Sema &S, ExprResult &Cond, 6061 ExprResult &LHS, ExprResult &RHS, 6062 SourceLocation QuestionLoc) { 6063 Cond = S.DefaultFunctionArrayLvalueConversion(Cond.get()); 6064 if (Cond.isInvalid()) 6065 return QualType(); 6066 QualType CondTy = Cond.get()->getType(); 6067 6068 if (checkOpenCLConditionVector(S, Cond.get(), QuestionLoc)) 6069 return QualType(); 6070 6071 // If either operand is a vector then find the vector type of the 6072 // result as specified in OpenCL v1.1 s6.3.i. 6073 if (LHS.get()->getType()->isVectorType() || 6074 RHS.get()->getType()->isVectorType()) { 6075 QualType VecResTy = S.CheckVectorOperands(LHS, RHS, QuestionLoc, 6076 /*isCompAssign*/false); 6077 if (VecResTy.isNull()) return QualType(); 6078 // The result type must match the condition type as specified in 6079 // OpenCL v1.1 s6.11.6. 6080 if (checkVectorResult(S, CondTy, VecResTy, QuestionLoc)) 6081 return QualType(); 6082 return VecResTy; 6083 } 6084 6085 // Both operands are scalar. 6086 return OpenCLConvertScalarsToVectors(S, LHS, RHS, CondTy, QuestionLoc); 6087 } 6088 6089 /// Note that LHS is not null here, even if this is the gnu "x ?: y" extension. 6090 /// In that case, LHS = cond. 6091 /// C99 6.5.15 6092 QualType Sema::CheckConditionalOperands(ExprResult &Cond, ExprResult &LHS, 6093 ExprResult &RHS, ExprValueKind &VK, 6094 ExprObjectKind &OK, 6095 SourceLocation QuestionLoc) { 6096 6097 ExprResult LHSResult = CheckPlaceholderExpr(LHS.get()); 6098 if (!LHSResult.isUsable()) return QualType(); 6099 LHS = LHSResult; 6100 6101 ExprResult RHSResult = CheckPlaceholderExpr(RHS.get()); 6102 if (!RHSResult.isUsable()) return QualType(); 6103 RHS = RHSResult; 6104 6105 // C++ is sufficiently different to merit its own checker. 6106 if (getLangOpts().CPlusPlus) 6107 return CXXCheckConditionalOperands(Cond, LHS, RHS, VK, OK, QuestionLoc); 6108 6109 VK = VK_RValue; 6110 OK = OK_Ordinary; 6111 6112 // The OpenCL operator with a vector condition is sufficiently 6113 // different to merit its own checker. 6114 if (getLangOpts().OpenCL && Cond.get()->getType()->isVectorType()) 6115 return OpenCLCheckVectorConditional(*this, Cond, LHS, RHS, QuestionLoc); 6116 6117 // First, check the condition. 6118 Cond = UsualUnaryConversions(Cond.get()); 6119 if (Cond.isInvalid()) 6120 return QualType(); 6121 if (checkCondition(*this, Cond.get(), QuestionLoc)) 6122 return QualType(); 6123 6124 // Now check the two expressions. 6125 if (LHS.get()->getType()->isVectorType() || 6126 RHS.get()->getType()->isVectorType()) 6127 return CheckVectorOperands(LHS, RHS, QuestionLoc, /*isCompAssign*/false); 6128 6129 QualType ResTy = UsualArithmeticConversions(LHS, RHS); 6130 if (LHS.isInvalid() || RHS.isInvalid()) 6131 return QualType(); 6132 6133 QualType LHSTy = LHS.get()->getType(); 6134 QualType RHSTy = RHS.get()->getType(); 6135 6136 // If both operands have arithmetic type, do the usual arithmetic conversions 6137 // to find a common type: C99 6.5.15p3,5. 6138 if (LHSTy->isArithmeticType() && RHSTy->isArithmeticType()) { 6139 LHS = ImpCastExprToType(LHS.get(), ResTy, PrepareScalarCast(LHS, ResTy)); 6140 RHS = ImpCastExprToType(RHS.get(), ResTy, PrepareScalarCast(RHS, ResTy)); 6141 6142 return ResTy; 6143 } 6144 6145 // If both operands are the same structure or union type, the result is that 6146 // type. 6147 if (const RecordType *LHSRT = LHSTy->getAs<RecordType>()) { // C99 6.5.15p3 6148 if (const RecordType *RHSRT = RHSTy->getAs<RecordType>()) 6149 if (LHSRT->getDecl() == RHSRT->getDecl()) 6150 // "If both the operands have structure or union type, the result has 6151 // that type." This implies that CV qualifiers are dropped. 6152 return LHSTy.getUnqualifiedType(); 6153 // FIXME: Type of conditional expression must be complete in C mode. 6154 } 6155 6156 // C99 6.5.15p5: "If both operands have void type, the result has void type." 6157 // The following || allows only one side to be void (a GCC-ism). 6158 if (LHSTy->isVoidType() || RHSTy->isVoidType()) { 6159 return checkConditionalVoidType(*this, LHS, RHS); 6160 } 6161 6162 // C99 6.5.15p6 - "if one operand is a null pointer constant, the result has 6163 // the type of the other operand." 6164 if (!checkConditionalNullPointer(*this, RHS, LHSTy)) return LHSTy; 6165 if (!checkConditionalNullPointer(*this, LHS, RHSTy)) return RHSTy; 6166 6167 // All objective-c pointer type analysis is done here. 6168 QualType compositeType = FindCompositeObjCPointerType(LHS, RHS, 6169 QuestionLoc); 6170 if (LHS.isInvalid() || RHS.isInvalid()) 6171 return QualType(); 6172 if (!compositeType.isNull()) 6173 return compositeType; 6174 6175 6176 // Handle block pointer types. 6177 if (LHSTy->isBlockPointerType() || RHSTy->isBlockPointerType()) 6178 return checkConditionalBlockPointerCompatibility(*this, LHS, RHS, 6179 QuestionLoc); 6180 6181 // Check constraints for C object pointers types (C99 6.5.15p3,6). 6182 if (LHSTy->isPointerType() && RHSTy->isPointerType()) 6183 return checkConditionalObjectPointersCompatibility(*this, LHS, RHS, 6184 QuestionLoc); 6185 6186 // GCC compatibility: soften pointer/integer mismatch. Note that 6187 // null pointers have been filtered out by this point. 6188 if (checkPointerIntegerMismatch(*this, LHS, RHS.get(), QuestionLoc, 6189 /*isIntFirstExpr=*/true)) 6190 return RHSTy; 6191 if (checkPointerIntegerMismatch(*this, RHS, LHS.get(), QuestionLoc, 6192 /*isIntFirstExpr=*/false)) 6193 return LHSTy; 6194 6195 // Emit a better diagnostic if one of the expressions is a null pointer 6196 // constant and the other is not a pointer type. In this case, the user most 6197 // likely forgot to take the address of the other expression. 6198 if (DiagnoseConditionalForNull(LHS.get(), RHS.get(), QuestionLoc)) 6199 return QualType(); 6200 6201 // Otherwise, the operands are not compatible. 6202 Diag(QuestionLoc, diag::err_typecheck_cond_incompatible_operands) 6203 << LHSTy << RHSTy << LHS.get()->getSourceRange() 6204 << RHS.get()->getSourceRange(); 6205 return QualType(); 6206 } 6207 6208 /// FindCompositeObjCPointerType - Helper method to find composite type of 6209 /// two objective-c pointer types of the two input expressions. 6210 QualType Sema::FindCompositeObjCPointerType(ExprResult &LHS, ExprResult &RHS, 6211 SourceLocation QuestionLoc) { 6212 QualType LHSTy = LHS.get()->getType(); 6213 QualType RHSTy = RHS.get()->getType(); 6214 6215 // Handle things like Class and struct objc_class*. Here we case the result 6216 // to the pseudo-builtin, because that will be implicitly cast back to the 6217 // redefinition type if an attempt is made to access its fields. 6218 if (LHSTy->isObjCClassType() && 6219 (Context.hasSameType(RHSTy, Context.getObjCClassRedefinitionType()))) { 6220 RHS = ImpCastExprToType(RHS.get(), LHSTy, CK_CPointerToObjCPointerCast); 6221 return LHSTy; 6222 } 6223 if (RHSTy->isObjCClassType() && 6224 (Context.hasSameType(LHSTy, Context.getObjCClassRedefinitionType()))) { 6225 LHS = ImpCastExprToType(LHS.get(), RHSTy, CK_CPointerToObjCPointerCast); 6226 return RHSTy; 6227 } 6228 // And the same for struct objc_object* / id 6229 if (LHSTy->isObjCIdType() && 6230 (Context.hasSameType(RHSTy, Context.getObjCIdRedefinitionType()))) { 6231 RHS = ImpCastExprToType(RHS.get(), LHSTy, CK_CPointerToObjCPointerCast); 6232 return LHSTy; 6233 } 6234 if (RHSTy->isObjCIdType() && 6235 (Context.hasSameType(LHSTy, Context.getObjCIdRedefinitionType()))) { 6236 LHS = ImpCastExprToType(LHS.get(), RHSTy, CK_CPointerToObjCPointerCast); 6237 return RHSTy; 6238 } 6239 // And the same for struct objc_selector* / SEL 6240 if (Context.isObjCSelType(LHSTy) && 6241 (Context.hasSameType(RHSTy, Context.getObjCSelRedefinitionType()))) { 6242 RHS = ImpCastExprToType(RHS.get(), LHSTy, CK_BitCast); 6243 return LHSTy; 6244 } 6245 if (Context.isObjCSelType(RHSTy) && 6246 (Context.hasSameType(LHSTy, Context.getObjCSelRedefinitionType()))) { 6247 LHS = ImpCastExprToType(LHS.get(), RHSTy, CK_BitCast); 6248 return RHSTy; 6249 } 6250 // Check constraints for Objective-C object pointers types. 6251 if (LHSTy->isObjCObjectPointerType() && RHSTy->isObjCObjectPointerType()) { 6252 6253 if (Context.getCanonicalType(LHSTy) == Context.getCanonicalType(RHSTy)) { 6254 // Two identical object pointer types are always compatible. 6255 return LHSTy; 6256 } 6257 const ObjCObjectPointerType *LHSOPT = LHSTy->castAs<ObjCObjectPointerType>(); 6258 const ObjCObjectPointerType *RHSOPT = RHSTy->castAs<ObjCObjectPointerType>(); 6259 QualType compositeType = LHSTy; 6260 6261 // If both operands are interfaces and either operand can be 6262 // assigned to the other, use that type as the composite 6263 // type. This allows 6264 // xxx ? (A*) a : (B*) b 6265 // where B is a subclass of A. 6266 // 6267 // Additionally, as for assignment, if either type is 'id' 6268 // allow silent coercion. Finally, if the types are 6269 // incompatible then make sure to use 'id' as the composite 6270 // type so the result is acceptable for sending messages to. 6271 6272 // FIXME: Consider unifying with 'areComparableObjCPointerTypes'. 6273 // It could return the composite type. 6274 if (!(compositeType = 6275 Context.areCommonBaseCompatible(LHSOPT, RHSOPT)).isNull()) { 6276 // Nothing more to do. 6277 } else if (Context.canAssignObjCInterfaces(LHSOPT, RHSOPT)) { 6278 compositeType = RHSOPT->isObjCBuiltinType() ? RHSTy : LHSTy; 6279 } else if (Context.canAssignObjCInterfaces(RHSOPT, LHSOPT)) { 6280 compositeType = LHSOPT->isObjCBuiltinType() ? LHSTy : RHSTy; 6281 } else if ((LHSTy->isObjCQualifiedIdType() || 6282 RHSTy->isObjCQualifiedIdType()) && 6283 Context.ObjCQualifiedIdTypesAreCompatible(LHSTy, RHSTy, true)) { 6284 // Need to handle "id<xx>" explicitly. 6285 // GCC allows qualified id and any Objective-C type to devolve to 6286 // id. Currently localizing to here until clear this should be 6287 // part of ObjCQualifiedIdTypesAreCompatible. 6288 compositeType = Context.getObjCIdType(); 6289 } else if (LHSTy->isObjCIdType() || RHSTy->isObjCIdType()) { 6290 compositeType = Context.getObjCIdType(); 6291 } else { 6292 Diag(QuestionLoc, diag::ext_typecheck_cond_incompatible_operands) 6293 << LHSTy << RHSTy 6294 << LHS.get()->getSourceRange() << RHS.get()->getSourceRange(); 6295 QualType incompatTy = Context.getObjCIdType(); 6296 LHS = ImpCastExprToType(LHS.get(), incompatTy, CK_BitCast); 6297 RHS = ImpCastExprToType(RHS.get(), incompatTy, CK_BitCast); 6298 return incompatTy; 6299 } 6300 // The object pointer types are compatible. 6301 LHS = ImpCastExprToType(LHS.get(), compositeType, CK_BitCast); 6302 RHS = ImpCastExprToType(RHS.get(), compositeType, CK_BitCast); 6303 return compositeType; 6304 } 6305 // Check Objective-C object pointer types and 'void *' 6306 if (LHSTy->isVoidPointerType() && RHSTy->isObjCObjectPointerType()) { 6307 if (getLangOpts().ObjCAutoRefCount) { 6308 // ARC forbids the implicit conversion of object pointers to 'void *', 6309 // so these types are not compatible. 6310 Diag(QuestionLoc, diag::err_cond_voidptr_arc) << LHSTy << RHSTy 6311 << LHS.get()->getSourceRange() << RHS.get()->getSourceRange(); 6312 LHS = RHS = true; 6313 return QualType(); 6314 } 6315 QualType lhptee = LHSTy->getAs<PointerType>()->getPointeeType(); 6316 QualType rhptee = RHSTy->getAs<ObjCObjectPointerType>()->getPointeeType(); 6317 QualType destPointee 6318 = Context.getQualifiedType(lhptee, rhptee.getQualifiers()); 6319 QualType destType = Context.getPointerType(destPointee); 6320 // Add qualifiers if necessary. 6321 LHS = ImpCastExprToType(LHS.get(), destType, CK_NoOp); 6322 // Promote to void*. 6323 RHS = ImpCastExprToType(RHS.get(), destType, CK_BitCast); 6324 return destType; 6325 } 6326 if (LHSTy->isObjCObjectPointerType() && RHSTy->isVoidPointerType()) { 6327 if (getLangOpts().ObjCAutoRefCount) { 6328 // ARC forbids the implicit conversion of object pointers to 'void *', 6329 // so these types are not compatible. 6330 Diag(QuestionLoc, diag::err_cond_voidptr_arc) << LHSTy << RHSTy 6331 << LHS.get()->getSourceRange() << RHS.get()->getSourceRange(); 6332 LHS = RHS = true; 6333 return QualType(); 6334 } 6335 QualType lhptee = LHSTy->getAs<ObjCObjectPointerType>()->getPointeeType(); 6336 QualType rhptee = RHSTy->getAs<PointerType>()->getPointeeType(); 6337 QualType destPointee 6338 = Context.getQualifiedType(rhptee, lhptee.getQualifiers()); 6339 QualType destType = Context.getPointerType(destPointee); 6340 // Add qualifiers if necessary. 6341 RHS = ImpCastExprToType(RHS.get(), destType, CK_NoOp); 6342 // Promote to void*. 6343 LHS = ImpCastExprToType(LHS.get(), destType, CK_BitCast); 6344 return destType; 6345 } 6346 return QualType(); 6347 } 6348 6349 /// SuggestParentheses - Emit a note with a fixit hint that wraps 6350 /// ParenRange in parentheses. 6351 static void SuggestParentheses(Sema &Self, SourceLocation Loc, 6352 const PartialDiagnostic &Note, 6353 SourceRange ParenRange) { 6354 SourceLocation EndLoc = Self.PP.getLocForEndOfToken(ParenRange.getEnd()); 6355 if (ParenRange.getBegin().isFileID() && ParenRange.getEnd().isFileID() && 6356 EndLoc.isValid()) { 6357 Self.Diag(Loc, Note) 6358 << FixItHint::CreateInsertion(ParenRange.getBegin(), "(") 6359 << FixItHint::CreateInsertion(EndLoc, ")"); 6360 } else { 6361 // We can't display the parentheses, so just show the bare note. 6362 Self.Diag(Loc, Note) << ParenRange; 6363 } 6364 } 6365 6366 static bool IsArithmeticOp(BinaryOperatorKind Opc) { 6367 return Opc >= BO_Mul && Opc <= BO_Shr; 6368 } 6369 6370 /// IsArithmeticBinaryExpr - Returns true if E is an arithmetic binary 6371 /// expression, either using a built-in or overloaded operator, 6372 /// and sets *OpCode to the opcode and *RHSExprs to the right-hand side 6373 /// expression. 6374 static bool IsArithmeticBinaryExpr(Expr *E, BinaryOperatorKind *Opcode, 6375 Expr **RHSExprs) { 6376 // Don't strip parenthesis: we should not warn if E is in parenthesis. 6377 E = E->IgnoreImpCasts(); 6378 E = E->IgnoreConversionOperator(); 6379 E = E->IgnoreImpCasts(); 6380 6381 // Built-in binary operator. 6382 if (BinaryOperator *OP = dyn_cast<BinaryOperator>(E)) { 6383 if (IsArithmeticOp(OP->getOpcode())) { 6384 *Opcode = OP->getOpcode(); 6385 *RHSExprs = OP->getRHS(); 6386 return true; 6387 } 6388 } 6389 6390 // Overloaded operator. 6391 if (CXXOperatorCallExpr *Call = dyn_cast<CXXOperatorCallExpr>(E)) { 6392 if (Call->getNumArgs() != 2) 6393 return false; 6394 6395 // Make sure this is really a binary operator that is safe to pass into 6396 // BinaryOperator::getOverloadedOpcode(), e.g. it's not a subscript op. 6397 OverloadedOperatorKind OO = Call->getOperator(); 6398 if (OO < OO_Plus || OO > OO_Arrow || 6399 OO == OO_PlusPlus || OO == OO_MinusMinus) 6400 return false; 6401 6402 BinaryOperatorKind OpKind = BinaryOperator::getOverloadedOpcode(OO); 6403 if (IsArithmeticOp(OpKind)) { 6404 *Opcode = OpKind; 6405 *RHSExprs = Call->getArg(1); 6406 return true; 6407 } 6408 } 6409 6410 return false; 6411 } 6412 6413 static bool IsLogicOp(BinaryOperatorKind Opc) { 6414 return (Opc >= BO_LT && Opc <= BO_NE) || (Opc >= BO_LAnd && Opc <= BO_LOr); 6415 } 6416 6417 /// ExprLooksBoolean - Returns true if E looks boolean, i.e. it has boolean type 6418 /// or is a logical expression such as (x==y) which has int type, but is 6419 /// commonly interpreted as boolean. 6420 static bool ExprLooksBoolean(Expr *E) { 6421 E = E->IgnoreParenImpCasts(); 6422 6423 if (E->getType()->isBooleanType()) 6424 return true; 6425 if (BinaryOperator *OP = dyn_cast<BinaryOperator>(E)) 6426 return IsLogicOp(OP->getOpcode()); 6427 if (UnaryOperator *OP = dyn_cast<UnaryOperator>(E)) 6428 return OP->getOpcode() == UO_LNot; 6429 if (E->getType()->isPointerType()) 6430 return true; 6431 6432 return false; 6433 } 6434 6435 /// DiagnoseConditionalPrecedence - Emit a warning when a conditional operator 6436 /// and binary operator are mixed in a way that suggests the programmer assumed 6437 /// the conditional operator has higher precedence, for example: 6438 /// "int x = a + someBinaryCondition ? 1 : 2". 6439 static void DiagnoseConditionalPrecedence(Sema &Self, 6440 SourceLocation OpLoc, 6441 Expr *Condition, 6442 Expr *LHSExpr, 6443 Expr *RHSExpr) { 6444 BinaryOperatorKind CondOpcode; 6445 Expr *CondRHS; 6446 6447 if (!IsArithmeticBinaryExpr(Condition, &CondOpcode, &CondRHS)) 6448 return; 6449 if (!ExprLooksBoolean(CondRHS)) 6450 return; 6451 6452 // The condition is an arithmetic binary expression, with a right- 6453 // hand side that looks boolean, so warn. 6454 6455 Self.Diag(OpLoc, diag::warn_precedence_conditional) 6456 << Condition->getSourceRange() 6457 << BinaryOperator::getOpcodeStr(CondOpcode); 6458 6459 SuggestParentheses(Self, OpLoc, 6460 Self.PDiag(diag::note_precedence_silence) 6461 << BinaryOperator::getOpcodeStr(CondOpcode), 6462 SourceRange(Condition->getLocStart(), Condition->getLocEnd())); 6463 6464 SuggestParentheses(Self, OpLoc, 6465 Self.PDiag(diag::note_precedence_conditional_first), 6466 SourceRange(CondRHS->getLocStart(), RHSExpr->getLocEnd())); 6467 } 6468 6469 /// ActOnConditionalOp - Parse a ?: operation. Note that 'LHS' may be null 6470 /// in the case of a the GNU conditional expr extension. 6471 ExprResult Sema::ActOnConditionalOp(SourceLocation QuestionLoc, 6472 SourceLocation ColonLoc, 6473 Expr *CondExpr, Expr *LHSExpr, 6474 Expr *RHSExpr) { 6475 if (!getLangOpts().CPlusPlus) { 6476 // C cannot handle TypoExpr nodes in the condition because it 6477 // doesn't handle dependent types properly, so make sure any TypoExprs have 6478 // been dealt with before checking the operands. 6479 ExprResult CondResult = CorrectDelayedTyposInExpr(CondExpr); 6480 if (!CondResult.isUsable()) return ExprError(); 6481 CondExpr = CondResult.get(); 6482 } 6483 6484 // If this is the gnu "x ?: y" extension, analyze the types as though the LHS 6485 // was the condition. 6486 OpaqueValueExpr *opaqueValue = nullptr; 6487 Expr *commonExpr = nullptr; 6488 if (!LHSExpr) { 6489 commonExpr = CondExpr; 6490 // Lower out placeholder types first. This is important so that we don't 6491 // try to capture a placeholder. This happens in few cases in C++; such 6492 // as Objective-C++'s dictionary subscripting syntax. 6493 if (commonExpr->hasPlaceholderType()) { 6494 ExprResult result = CheckPlaceholderExpr(commonExpr); 6495 if (!result.isUsable()) return ExprError(); 6496 commonExpr = result.get(); 6497 } 6498 // We usually want to apply unary conversions *before* saving, except 6499 // in the special case of a C++ l-value conditional. 6500 if (!(getLangOpts().CPlusPlus 6501 && !commonExpr->isTypeDependent() 6502 && commonExpr->getValueKind() == RHSExpr->getValueKind() 6503 && commonExpr->isGLValue() 6504 && commonExpr->isOrdinaryOrBitFieldObject() 6505 && RHSExpr->isOrdinaryOrBitFieldObject() 6506 && Context.hasSameType(commonExpr->getType(), RHSExpr->getType()))) { 6507 ExprResult commonRes = UsualUnaryConversions(commonExpr); 6508 if (commonRes.isInvalid()) 6509 return ExprError(); 6510 commonExpr = commonRes.get(); 6511 } 6512 6513 opaqueValue = new (Context) OpaqueValueExpr(commonExpr->getExprLoc(), 6514 commonExpr->getType(), 6515 commonExpr->getValueKind(), 6516 commonExpr->getObjectKind(), 6517 commonExpr); 6518 LHSExpr = CondExpr = opaqueValue; 6519 } 6520 6521 ExprValueKind VK = VK_RValue; 6522 ExprObjectKind OK = OK_Ordinary; 6523 ExprResult Cond = CondExpr, LHS = LHSExpr, RHS = RHSExpr; 6524 QualType result = CheckConditionalOperands(Cond, LHS, RHS, 6525 VK, OK, QuestionLoc); 6526 if (result.isNull() || Cond.isInvalid() || LHS.isInvalid() || 6527 RHS.isInvalid()) 6528 return ExprError(); 6529 6530 DiagnoseConditionalPrecedence(*this, QuestionLoc, Cond.get(), LHS.get(), 6531 RHS.get()); 6532 6533 CheckBoolLikeConversion(Cond.get(), QuestionLoc); 6534 6535 if (!commonExpr) 6536 return new (Context) 6537 ConditionalOperator(Cond.get(), QuestionLoc, LHS.get(), ColonLoc, 6538 RHS.get(), result, VK, OK); 6539 6540 return new (Context) BinaryConditionalOperator( 6541 commonExpr, opaqueValue, Cond.get(), LHS.get(), RHS.get(), QuestionLoc, 6542 ColonLoc, result, VK, OK); 6543 } 6544 6545 // checkPointerTypesForAssignment - This is a very tricky routine (despite 6546 // being closely modeled after the C99 spec:-). The odd characteristic of this 6547 // routine is it effectively iqnores the qualifiers on the top level pointee. 6548 // This circumvents the usual type rules specified in 6.2.7p1 & 6.7.5.[1-3]. 6549 // FIXME: add a couple examples in this comment. 6550 static Sema::AssignConvertType 6551 checkPointerTypesForAssignment(Sema &S, QualType LHSType, QualType RHSType) { 6552 assert(LHSType.isCanonical() && "LHS not canonicalized!"); 6553 assert(RHSType.isCanonical() && "RHS not canonicalized!"); 6554 6555 // get the "pointed to" type (ignoring qualifiers at the top level) 6556 const Type *lhptee, *rhptee; 6557 Qualifiers lhq, rhq; 6558 std::tie(lhptee, lhq) = 6559 cast<PointerType>(LHSType)->getPointeeType().split().asPair(); 6560 std::tie(rhptee, rhq) = 6561 cast<PointerType>(RHSType)->getPointeeType().split().asPair(); 6562 6563 Sema::AssignConvertType ConvTy = Sema::Compatible; 6564 6565 // C99 6.5.16.1p1: This following citation is common to constraints 6566 // 3 & 4 (below). ...and the type *pointed to* by the left has all the 6567 // qualifiers of the type *pointed to* by the right; 6568 6569 // As a special case, 'non-__weak A *' -> 'non-__weak const *' is okay. 6570 if (lhq.getObjCLifetime() != rhq.getObjCLifetime() && 6571 lhq.compatiblyIncludesObjCLifetime(rhq)) { 6572 // Ignore lifetime for further calculation. 6573 lhq.removeObjCLifetime(); 6574 rhq.removeObjCLifetime(); 6575 } 6576 6577 if (!lhq.compatiblyIncludes(rhq)) { 6578 // Treat address-space mismatches as fatal. TODO: address subspaces 6579 if (!lhq.isAddressSpaceSupersetOf(rhq)) 6580 ConvTy = Sema::IncompatiblePointerDiscardsQualifiers; 6581 6582 // It's okay to add or remove GC or lifetime qualifiers when converting to 6583 // and from void*. 6584 else if (lhq.withoutObjCGCAttr().withoutObjCLifetime() 6585 .compatiblyIncludes( 6586 rhq.withoutObjCGCAttr().withoutObjCLifetime()) 6587 && (lhptee->isVoidType() || rhptee->isVoidType())) 6588 ; // keep old 6589 6590 // Treat lifetime mismatches as fatal. 6591 else if (lhq.getObjCLifetime() != rhq.getObjCLifetime()) 6592 ConvTy = Sema::IncompatiblePointerDiscardsQualifiers; 6593 6594 // For GCC compatibility, other qualifier mismatches are treated 6595 // as still compatible in C. 6596 else ConvTy = Sema::CompatiblePointerDiscardsQualifiers; 6597 } 6598 6599 // C99 6.5.16.1p1 (constraint 4): If one operand is a pointer to an object or 6600 // incomplete type and the other is a pointer to a qualified or unqualified 6601 // version of void... 6602 if (lhptee->isVoidType()) { 6603 if (rhptee->isIncompleteOrObjectType()) 6604 return ConvTy; 6605 6606 // As an extension, we allow cast to/from void* to function pointer. 6607 assert(rhptee->isFunctionType()); 6608 return Sema::FunctionVoidPointer; 6609 } 6610 6611 if (rhptee->isVoidType()) { 6612 if (lhptee->isIncompleteOrObjectType()) 6613 return ConvTy; 6614 6615 // As an extension, we allow cast to/from void* to function pointer. 6616 assert(lhptee->isFunctionType()); 6617 return Sema::FunctionVoidPointer; 6618 } 6619 6620 // C99 6.5.16.1p1 (constraint 3): both operands are pointers to qualified or 6621 // unqualified versions of compatible types, ... 6622 QualType ltrans = QualType(lhptee, 0), rtrans = QualType(rhptee, 0); 6623 if (!S.Context.typesAreCompatible(ltrans, rtrans)) { 6624 // Check if the pointee types are compatible ignoring the sign. 6625 // We explicitly check for char so that we catch "char" vs 6626 // "unsigned char" on systems where "char" is unsigned. 6627 if (lhptee->isCharType()) 6628 ltrans = S.Context.UnsignedCharTy; 6629 else if (lhptee->hasSignedIntegerRepresentation()) 6630 ltrans = S.Context.getCorrespondingUnsignedType(ltrans); 6631 6632 if (rhptee->isCharType()) 6633 rtrans = S.Context.UnsignedCharTy; 6634 else if (rhptee->hasSignedIntegerRepresentation()) 6635 rtrans = S.Context.getCorrespondingUnsignedType(rtrans); 6636 6637 if (ltrans == rtrans) { 6638 // Types are compatible ignoring the sign. Qualifier incompatibility 6639 // takes priority over sign incompatibility because the sign 6640 // warning can be disabled. 6641 if (ConvTy != Sema::Compatible) 6642 return ConvTy; 6643 6644 return Sema::IncompatiblePointerSign; 6645 } 6646 6647 // If we are a multi-level pointer, it's possible that our issue is simply 6648 // one of qualification - e.g. char ** -> const char ** is not allowed. If 6649 // the eventual target type is the same and the pointers have the same 6650 // level of indirection, this must be the issue. 6651 if (isa<PointerType>(lhptee) && isa<PointerType>(rhptee)) { 6652 do { 6653 lhptee = cast<PointerType>(lhptee)->getPointeeType().getTypePtr(); 6654 rhptee = cast<PointerType>(rhptee)->getPointeeType().getTypePtr(); 6655 } while (isa<PointerType>(lhptee) && isa<PointerType>(rhptee)); 6656 6657 if (lhptee == rhptee) 6658 return Sema::IncompatibleNestedPointerQualifiers; 6659 } 6660 6661 // General pointer incompatibility takes priority over qualifiers. 6662 return Sema::IncompatiblePointer; 6663 } 6664 if (!S.getLangOpts().CPlusPlus && 6665 S.IsNoReturnConversion(ltrans, rtrans, ltrans)) 6666 return Sema::IncompatiblePointer; 6667 return ConvTy; 6668 } 6669 6670 /// checkBlockPointerTypesForAssignment - This routine determines whether two 6671 /// block pointer types are compatible or whether a block and normal pointer 6672 /// are compatible. It is more restrict than comparing two function pointer 6673 // types. 6674 static Sema::AssignConvertType 6675 checkBlockPointerTypesForAssignment(Sema &S, QualType LHSType, 6676 QualType RHSType) { 6677 assert(LHSType.isCanonical() && "LHS not canonicalized!"); 6678 assert(RHSType.isCanonical() && "RHS not canonicalized!"); 6679 6680 QualType lhptee, rhptee; 6681 6682 // get the "pointed to" type (ignoring qualifiers at the top level) 6683 lhptee = cast<BlockPointerType>(LHSType)->getPointeeType(); 6684 rhptee = cast<BlockPointerType>(RHSType)->getPointeeType(); 6685 6686 // In C++, the types have to match exactly. 6687 if (S.getLangOpts().CPlusPlus) 6688 return Sema::IncompatibleBlockPointer; 6689 6690 Sema::AssignConvertType ConvTy = Sema::Compatible; 6691 6692 // For blocks we enforce that qualifiers are identical. 6693 if (lhptee.getLocalQualifiers() != rhptee.getLocalQualifiers()) 6694 ConvTy = Sema::CompatiblePointerDiscardsQualifiers; 6695 6696 if (!S.Context.typesAreBlockPointerCompatible(LHSType, RHSType)) 6697 return Sema::IncompatibleBlockPointer; 6698 6699 return ConvTy; 6700 } 6701 6702 /// checkObjCPointerTypesForAssignment - Compares two objective-c pointer types 6703 /// for assignment compatibility. 6704 static Sema::AssignConvertType 6705 checkObjCPointerTypesForAssignment(Sema &S, QualType LHSType, 6706 QualType RHSType) { 6707 assert(LHSType.isCanonical() && "LHS was not canonicalized!"); 6708 assert(RHSType.isCanonical() && "RHS was not canonicalized!"); 6709 6710 if (LHSType->isObjCBuiltinType()) { 6711 // Class is not compatible with ObjC object pointers. 6712 if (LHSType->isObjCClassType() && !RHSType->isObjCBuiltinType() && 6713 !RHSType->isObjCQualifiedClassType()) 6714 return Sema::IncompatiblePointer; 6715 return Sema::Compatible; 6716 } 6717 if (RHSType->isObjCBuiltinType()) { 6718 if (RHSType->isObjCClassType() && !LHSType->isObjCBuiltinType() && 6719 !LHSType->isObjCQualifiedClassType()) 6720 return Sema::IncompatiblePointer; 6721 return Sema::Compatible; 6722 } 6723 QualType lhptee = LHSType->getAs<ObjCObjectPointerType>()->getPointeeType(); 6724 QualType rhptee = RHSType->getAs<ObjCObjectPointerType>()->getPointeeType(); 6725 6726 if (!lhptee.isAtLeastAsQualifiedAs(rhptee) && 6727 // make an exception for id<P> 6728 !LHSType->isObjCQualifiedIdType()) 6729 return Sema::CompatiblePointerDiscardsQualifiers; 6730 6731 if (S.Context.typesAreCompatible(LHSType, RHSType)) 6732 return Sema::Compatible; 6733 if (LHSType->isObjCQualifiedIdType() || RHSType->isObjCQualifiedIdType()) 6734 return Sema::IncompatibleObjCQualifiedId; 6735 return Sema::IncompatiblePointer; 6736 } 6737 6738 Sema::AssignConvertType 6739 Sema::CheckAssignmentConstraints(SourceLocation Loc, 6740 QualType LHSType, QualType RHSType) { 6741 // Fake up an opaque expression. We don't actually care about what 6742 // cast operations are required, so if CheckAssignmentConstraints 6743 // adds casts to this they'll be wasted, but fortunately that doesn't 6744 // usually happen on valid code. 6745 OpaqueValueExpr RHSExpr(Loc, RHSType, VK_RValue); 6746 ExprResult RHSPtr = &RHSExpr; 6747 CastKind K = CK_Invalid; 6748 6749 return CheckAssignmentConstraints(LHSType, RHSPtr, K); 6750 } 6751 6752 /// CheckAssignmentConstraints (C99 6.5.16) - This routine currently 6753 /// has code to accommodate several GCC extensions when type checking 6754 /// pointers. Here are some objectionable examples that GCC considers warnings: 6755 /// 6756 /// int a, *pint; 6757 /// short *pshort; 6758 /// struct foo *pfoo; 6759 /// 6760 /// pint = pshort; // warning: assignment from incompatible pointer type 6761 /// a = pint; // warning: assignment makes integer from pointer without a cast 6762 /// pint = a; // warning: assignment makes pointer from integer without a cast 6763 /// pint = pfoo; // warning: assignment from incompatible pointer type 6764 /// 6765 /// As a result, the code for dealing with pointers is more complex than the 6766 /// C99 spec dictates. 6767 /// 6768 /// Sets 'Kind' for any result kind except Incompatible. 6769 Sema::AssignConvertType 6770 Sema::CheckAssignmentConstraints(QualType LHSType, ExprResult &RHS, 6771 CastKind &Kind) { 6772 QualType RHSType = RHS.get()->getType(); 6773 QualType OrigLHSType = LHSType; 6774 6775 // Get canonical types. We're not formatting these types, just comparing 6776 // them. 6777 LHSType = Context.getCanonicalType(LHSType).getUnqualifiedType(); 6778 RHSType = Context.getCanonicalType(RHSType).getUnqualifiedType(); 6779 6780 // Common case: no conversion required. 6781 if (LHSType == RHSType) { 6782 Kind = CK_NoOp; 6783 return Compatible; 6784 } 6785 6786 // If we have an atomic type, try a non-atomic assignment, then just add an 6787 // atomic qualification step. 6788 if (const AtomicType *AtomicTy = dyn_cast<AtomicType>(LHSType)) { 6789 Sema::AssignConvertType result = 6790 CheckAssignmentConstraints(AtomicTy->getValueType(), RHS, Kind); 6791 if (result != Compatible) 6792 return result; 6793 if (Kind != CK_NoOp) 6794 RHS = ImpCastExprToType(RHS.get(), AtomicTy->getValueType(), Kind); 6795 Kind = CK_NonAtomicToAtomic; 6796 return Compatible; 6797 } 6798 6799 // If the left-hand side is a reference type, then we are in a 6800 // (rare!) case where we've allowed the use of references in C, 6801 // e.g., as a parameter type in a built-in function. In this case, 6802 // just make sure that the type referenced is compatible with the 6803 // right-hand side type. The caller is responsible for adjusting 6804 // LHSType so that the resulting expression does not have reference 6805 // type. 6806 if (const ReferenceType *LHSTypeRef = LHSType->getAs<ReferenceType>()) { 6807 if (Context.typesAreCompatible(LHSTypeRef->getPointeeType(), RHSType)) { 6808 Kind = CK_LValueBitCast; 6809 return Compatible; 6810 } 6811 return Incompatible; 6812 } 6813 6814 // Allow scalar to ExtVector assignments, and assignments of an ExtVector type 6815 // to the same ExtVector type. 6816 if (LHSType->isExtVectorType()) { 6817 if (RHSType->isExtVectorType()) 6818 return Incompatible; 6819 if (RHSType->isArithmeticType()) { 6820 // CK_VectorSplat does T -> vector T, so first cast to the 6821 // element type. 6822 QualType elType = cast<ExtVectorType>(LHSType)->getElementType(); 6823 if (elType != RHSType) { 6824 Kind = PrepareScalarCast(RHS, elType); 6825 RHS = ImpCastExprToType(RHS.get(), elType, Kind); 6826 } 6827 Kind = CK_VectorSplat; 6828 return Compatible; 6829 } 6830 } 6831 6832 // Conversions to or from vector type. 6833 if (LHSType->isVectorType() || RHSType->isVectorType()) { 6834 if (LHSType->isVectorType() && RHSType->isVectorType()) { 6835 // Allow assignments of an AltiVec vector type to an equivalent GCC 6836 // vector type and vice versa 6837 if (Context.areCompatibleVectorTypes(LHSType, RHSType)) { 6838 Kind = CK_BitCast; 6839 return Compatible; 6840 } 6841 6842 // If we are allowing lax vector conversions, and LHS and RHS are both 6843 // vectors, the total size only needs to be the same. This is a bitcast; 6844 // no bits are changed but the result type is different. 6845 if (isLaxVectorConversion(RHSType, LHSType)) { 6846 Kind = CK_BitCast; 6847 return IncompatibleVectors; 6848 } 6849 } 6850 return Incompatible; 6851 } 6852 6853 // Arithmetic conversions. 6854 if (LHSType->isArithmeticType() && RHSType->isArithmeticType() && 6855 !(getLangOpts().CPlusPlus && LHSType->isEnumeralType())) { 6856 Kind = PrepareScalarCast(RHS, LHSType); 6857 return Compatible; 6858 } 6859 6860 // Conversions to normal pointers. 6861 if (const PointerType *LHSPointer = dyn_cast<PointerType>(LHSType)) { 6862 // U* -> T* 6863 if (isa<PointerType>(RHSType)) { 6864 unsigned AddrSpaceL = LHSPointer->getPointeeType().getAddressSpace(); 6865 unsigned AddrSpaceR = RHSType->getPointeeType().getAddressSpace(); 6866 Kind = AddrSpaceL != AddrSpaceR ? CK_AddressSpaceConversion : CK_BitCast; 6867 return checkPointerTypesForAssignment(*this, LHSType, RHSType); 6868 } 6869 6870 // int -> T* 6871 if (RHSType->isIntegerType()) { 6872 Kind = CK_IntegralToPointer; // FIXME: null? 6873 return IntToPointer; 6874 } 6875 6876 // C pointers are not compatible with ObjC object pointers, 6877 // with two exceptions: 6878 if (isa<ObjCObjectPointerType>(RHSType)) { 6879 // - conversions to void* 6880 if (LHSPointer->getPointeeType()->isVoidType()) { 6881 Kind = CK_BitCast; 6882 return Compatible; 6883 } 6884 6885 // - conversions from 'Class' to the redefinition type 6886 if (RHSType->isObjCClassType() && 6887 Context.hasSameType(LHSType, 6888 Context.getObjCClassRedefinitionType())) { 6889 Kind = CK_BitCast; 6890 return Compatible; 6891 } 6892 6893 Kind = CK_BitCast; 6894 return IncompatiblePointer; 6895 } 6896 6897 // U^ -> void* 6898 if (RHSType->getAs<BlockPointerType>()) { 6899 if (LHSPointer->getPointeeType()->isVoidType()) { 6900 Kind = CK_BitCast; 6901 return Compatible; 6902 } 6903 } 6904 6905 return Incompatible; 6906 } 6907 6908 // Conversions to block pointers. 6909 if (isa<BlockPointerType>(LHSType)) { 6910 // U^ -> T^ 6911 if (RHSType->isBlockPointerType()) { 6912 Kind = CK_BitCast; 6913 return checkBlockPointerTypesForAssignment(*this, LHSType, RHSType); 6914 } 6915 6916 // int or null -> T^ 6917 if (RHSType->isIntegerType()) { 6918 Kind = CK_IntegralToPointer; // FIXME: null 6919 return IntToBlockPointer; 6920 } 6921 6922 // id -> T^ 6923 if (getLangOpts().ObjC1 && RHSType->isObjCIdType()) { 6924 Kind = CK_AnyPointerToBlockPointerCast; 6925 return Compatible; 6926 } 6927 6928 // void* -> T^ 6929 if (const PointerType *RHSPT = RHSType->getAs<PointerType>()) 6930 if (RHSPT->getPointeeType()->isVoidType()) { 6931 Kind = CK_AnyPointerToBlockPointerCast; 6932 return Compatible; 6933 } 6934 6935 return Incompatible; 6936 } 6937 6938 // Conversions to Objective-C pointers. 6939 if (isa<ObjCObjectPointerType>(LHSType)) { 6940 // A* -> B* 6941 if (RHSType->isObjCObjectPointerType()) { 6942 Kind = CK_BitCast; 6943 Sema::AssignConvertType result = 6944 checkObjCPointerTypesForAssignment(*this, LHSType, RHSType); 6945 if (getLangOpts().ObjCAutoRefCount && 6946 result == Compatible && 6947 !CheckObjCARCUnavailableWeakConversion(OrigLHSType, RHSType)) 6948 result = IncompatibleObjCWeakRef; 6949 return result; 6950 } 6951 6952 // int or null -> A* 6953 if (RHSType->isIntegerType()) { 6954 Kind = CK_IntegralToPointer; // FIXME: null 6955 return IntToPointer; 6956 } 6957 6958 // In general, C pointers are not compatible with ObjC object pointers, 6959 // with two exceptions: 6960 if (isa<PointerType>(RHSType)) { 6961 Kind = CK_CPointerToObjCPointerCast; 6962 6963 // - conversions from 'void*' 6964 if (RHSType->isVoidPointerType()) { 6965 return Compatible; 6966 } 6967 6968 // - conversions to 'Class' from its redefinition type 6969 if (LHSType->isObjCClassType() && 6970 Context.hasSameType(RHSType, 6971 Context.getObjCClassRedefinitionType())) { 6972 return Compatible; 6973 } 6974 6975 return IncompatiblePointer; 6976 } 6977 6978 // Only under strict condition T^ is compatible with an Objective-C pointer. 6979 if (RHSType->isBlockPointerType() && 6980 LHSType->isBlockCompatibleObjCPointerType(Context)) { 6981 maybeExtendBlockObject(RHS); 6982 Kind = CK_BlockPointerToObjCPointerCast; 6983 return Compatible; 6984 } 6985 6986 return Incompatible; 6987 } 6988 6989 // Conversions from pointers that are not covered by the above. 6990 if (isa<PointerType>(RHSType)) { 6991 // T* -> _Bool 6992 if (LHSType == Context.BoolTy) { 6993 Kind = CK_PointerToBoolean; 6994 return Compatible; 6995 } 6996 6997 // T* -> int 6998 if (LHSType->isIntegerType()) { 6999 Kind = CK_PointerToIntegral; 7000 return PointerToInt; 7001 } 7002 7003 return Incompatible; 7004 } 7005 7006 // Conversions from Objective-C pointers that are not covered by the above. 7007 if (isa<ObjCObjectPointerType>(RHSType)) { 7008 // T* -> _Bool 7009 if (LHSType == Context.BoolTy) { 7010 Kind = CK_PointerToBoolean; 7011 return Compatible; 7012 } 7013 7014 // T* -> int 7015 if (LHSType->isIntegerType()) { 7016 Kind = CK_PointerToIntegral; 7017 return PointerToInt; 7018 } 7019 7020 return Incompatible; 7021 } 7022 7023 // struct A -> struct B 7024 if (isa<TagType>(LHSType) && isa<TagType>(RHSType)) { 7025 if (Context.typesAreCompatible(LHSType, RHSType)) { 7026 Kind = CK_NoOp; 7027 return Compatible; 7028 } 7029 } 7030 7031 return Incompatible; 7032 } 7033 7034 /// \brief Constructs a transparent union from an expression that is 7035 /// used to initialize the transparent union. 7036 static void ConstructTransparentUnion(Sema &S, ASTContext &C, 7037 ExprResult &EResult, QualType UnionType, 7038 FieldDecl *Field) { 7039 // Build an initializer list that designates the appropriate member 7040 // of the transparent union. 7041 Expr *E = EResult.get(); 7042 InitListExpr *Initializer = new (C) InitListExpr(C, SourceLocation(), 7043 E, SourceLocation()); 7044 Initializer->setType(UnionType); 7045 Initializer->setInitializedFieldInUnion(Field); 7046 7047 // Build a compound literal constructing a value of the transparent 7048 // union type from this initializer list. 7049 TypeSourceInfo *unionTInfo = C.getTrivialTypeSourceInfo(UnionType); 7050 EResult = new (C) CompoundLiteralExpr(SourceLocation(), unionTInfo, UnionType, 7051 VK_RValue, Initializer, false); 7052 } 7053 7054 Sema::AssignConvertType 7055 Sema::CheckTransparentUnionArgumentConstraints(QualType ArgType, 7056 ExprResult &RHS) { 7057 QualType RHSType = RHS.get()->getType(); 7058 7059 // If the ArgType is a Union type, we want to handle a potential 7060 // transparent_union GCC extension. 7061 const RecordType *UT = ArgType->getAsUnionType(); 7062 if (!UT || !UT->getDecl()->hasAttr<TransparentUnionAttr>()) 7063 return Incompatible; 7064 7065 // The field to initialize within the transparent union. 7066 RecordDecl *UD = UT->getDecl(); 7067 FieldDecl *InitField = nullptr; 7068 // It's compatible if the expression matches any of the fields. 7069 for (auto *it : UD->fields()) { 7070 if (it->getType()->isPointerType()) { 7071 // If the transparent union contains a pointer type, we allow: 7072 // 1) void pointer 7073 // 2) null pointer constant 7074 if (RHSType->isPointerType()) 7075 if (RHSType->castAs<PointerType>()->getPointeeType()->isVoidType()) { 7076 RHS = ImpCastExprToType(RHS.get(), it->getType(), CK_BitCast); 7077 InitField = it; 7078 break; 7079 } 7080 7081 if (RHS.get()->isNullPointerConstant(Context, 7082 Expr::NPC_ValueDependentIsNull)) { 7083 RHS = ImpCastExprToType(RHS.get(), it->getType(), 7084 CK_NullToPointer); 7085 InitField = it; 7086 break; 7087 } 7088 } 7089 7090 CastKind Kind = CK_Invalid; 7091 if (CheckAssignmentConstraints(it->getType(), RHS, Kind) 7092 == Compatible) { 7093 RHS = ImpCastExprToType(RHS.get(), it->getType(), Kind); 7094 InitField = it; 7095 break; 7096 } 7097 } 7098 7099 if (!InitField) 7100 return Incompatible; 7101 7102 ConstructTransparentUnion(*this, Context, RHS, ArgType, InitField); 7103 return Compatible; 7104 } 7105 7106 Sema::AssignConvertType 7107 Sema::CheckSingleAssignmentConstraints(QualType LHSType, ExprResult &RHS, 7108 bool Diagnose, 7109 bool DiagnoseCFAudited) { 7110 if (getLangOpts().CPlusPlus) { 7111 if (!LHSType->isRecordType() && !LHSType->isAtomicType()) { 7112 // C++ 5.17p3: If the left operand is not of class type, the 7113 // expression is implicitly converted (C++ 4) to the 7114 // cv-unqualified type of the left operand. 7115 ExprResult Res; 7116 if (Diagnose) { 7117 Res = PerformImplicitConversion(RHS.get(), LHSType.getUnqualifiedType(), 7118 AA_Assigning); 7119 } else { 7120 ImplicitConversionSequence ICS = 7121 TryImplicitConversion(RHS.get(), LHSType.getUnqualifiedType(), 7122 /*SuppressUserConversions=*/false, 7123 /*AllowExplicit=*/false, 7124 /*InOverloadResolution=*/false, 7125 /*CStyle=*/false, 7126 /*AllowObjCWritebackConversion=*/false); 7127 if (ICS.isFailure()) 7128 return Incompatible; 7129 Res = PerformImplicitConversion(RHS.get(), LHSType.getUnqualifiedType(), 7130 ICS, AA_Assigning); 7131 } 7132 if (Res.isInvalid()) 7133 return Incompatible; 7134 Sema::AssignConvertType result = Compatible; 7135 if (getLangOpts().ObjCAutoRefCount && 7136 !CheckObjCARCUnavailableWeakConversion(LHSType, 7137 RHS.get()->getType())) 7138 result = IncompatibleObjCWeakRef; 7139 RHS = Res; 7140 return result; 7141 } 7142 7143 // FIXME: Currently, we fall through and treat C++ classes like C 7144 // structures. 7145 // FIXME: We also fall through for atomics; not sure what should 7146 // happen there, though. 7147 } 7148 7149 // C99 6.5.16.1p1: the left operand is a pointer and the right is 7150 // a null pointer constant. 7151 if ((LHSType->isPointerType() || LHSType->isObjCObjectPointerType() || 7152 LHSType->isBlockPointerType()) && 7153 RHS.get()->isNullPointerConstant(Context, 7154 Expr::NPC_ValueDependentIsNull)) { 7155 CastKind Kind; 7156 CXXCastPath Path; 7157 CheckPointerConversion(RHS.get(), LHSType, Kind, Path, false); 7158 RHS = ImpCastExprToType(RHS.get(), LHSType, Kind, VK_RValue, &Path); 7159 return Compatible; 7160 } 7161 7162 // This check seems unnatural, however it is necessary to ensure the proper 7163 // conversion of functions/arrays. If the conversion were done for all 7164 // DeclExpr's (created by ActOnIdExpression), it would mess up the unary 7165 // expressions that suppress this implicit conversion (&, sizeof). 7166 // 7167 // Suppress this for references: C++ 8.5.3p5. 7168 if (!LHSType->isReferenceType()) { 7169 RHS = DefaultFunctionArrayLvalueConversion(RHS.get()); 7170 if (RHS.isInvalid()) 7171 return Incompatible; 7172 } 7173 7174 Expr *PRE = RHS.get()->IgnoreParenCasts(); 7175 if (ObjCProtocolExpr *OPE = dyn_cast<ObjCProtocolExpr>(PRE)) { 7176 ObjCProtocolDecl *PDecl = OPE->getProtocol(); 7177 if (PDecl && !PDecl->hasDefinition()) { 7178 Diag(PRE->getExprLoc(), diag::warn_atprotocol_protocol) << PDecl->getName(); 7179 Diag(PDecl->getLocation(), diag::note_entity_declared_at) << PDecl; 7180 } 7181 } 7182 7183 CastKind Kind = CK_Invalid; 7184 Sema::AssignConvertType result = 7185 CheckAssignmentConstraints(LHSType, RHS, Kind); 7186 7187 // C99 6.5.16.1p2: The value of the right operand is converted to the 7188 // type of the assignment expression. 7189 // CheckAssignmentConstraints allows the left-hand side to be a reference, 7190 // so that we can use references in built-in functions even in C. 7191 // The getNonReferenceType() call makes sure that the resulting expression 7192 // does not have reference type. 7193 if (result != Incompatible && RHS.get()->getType() != LHSType) { 7194 QualType Ty = LHSType.getNonLValueExprType(Context); 7195 Expr *E = RHS.get(); 7196 if (getLangOpts().ObjCAutoRefCount) 7197 CheckObjCARCConversion(SourceRange(), Ty, E, CCK_ImplicitConversion, 7198 DiagnoseCFAudited); 7199 if (getLangOpts().ObjC1 && 7200 (CheckObjCBridgeRelatedConversions(E->getLocStart(), 7201 LHSType, E->getType(), E) || 7202 ConversionToObjCStringLiteralCheck(LHSType, E))) { 7203 RHS = E; 7204 return Compatible; 7205 } 7206 7207 RHS = ImpCastExprToType(E, Ty, Kind); 7208 } 7209 return result; 7210 } 7211 7212 QualType Sema::InvalidOperands(SourceLocation Loc, ExprResult &LHS, 7213 ExprResult &RHS) { 7214 Diag(Loc, diag::err_typecheck_invalid_operands) 7215 << LHS.get()->getType() << RHS.get()->getType() 7216 << LHS.get()->getSourceRange() << RHS.get()->getSourceRange(); 7217 return QualType(); 7218 } 7219 7220 /// Try to convert a value of non-vector type to a vector type by converting 7221 /// the type to the element type of the vector and then performing a splat. 7222 /// If the language is OpenCL, we only use conversions that promote scalar 7223 /// rank; for C, Obj-C, and C++ we allow any real scalar conversion except 7224 /// for float->int. 7225 /// 7226 /// \param scalar - if non-null, actually perform the conversions 7227 /// \return true if the operation fails (but without diagnosing the failure) 7228 static bool tryVectorConvertAndSplat(Sema &S, ExprResult *scalar, 7229 QualType scalarTy, 7230 QualType vectorEltTy, 7231 QualType vectorTy) { 7232 // The conversion to apply to the scalar before splatting it, 7233 // if necessary. 7234 CastKind scalarCast = CK_Invalid; 7235 7236 if (vectorEltTy->isIntegralType(S.Context)) { 7237 if (!scalarTy->isIntegralType(S.Context)) 7238 return true; 7239 if (S.getLangOpts().OpenCL && 7240 S.Context.getIntegerTypeOrder(vectorEltTy, scalarTy) < 0) 7241 return true; 7242 scalarCast = CK_IntegralCast; 7243 } else if (vectorEltTy->isRealFloatingType()) { 7244 if (scalarTy->isRealFloatingType()) { 7245 if (S.getLangOpts().OpenCL && 7246 S.Context.getFloatingTypeOrder(vectorEltTy, scalarTy) < 0) 7247 return true; 7248 scalarCast = CK_FloatingCast; 7249 } 7250 else if (scalarTy->isIntegralType(S.Context)) 7251 scalarCast = CK_IntegralToFloating; 7252 else 7253 return true; 7254 } else { 7255 return true; 7256 } 7257 7258 // Adjust scalar if desired. 7259 if (scalar) { 7260 if (scalarCast != CK_Invalid) 7261 *scalar = S.ImpCastExprToType(scalar->get(), vectorEltTy, scalarCast); 7262 *scalar = S.ImpCastExprToType(scalar->get(), vectorTy, CK_VectorSplat); 7263 } 7264 return false; 7265 } 7266 7267 QualType Sema::CheckVectorOperands(ExprResult &LHS, ExprResult &RHS, 7268 SourceLocation Loc, bool IsCompAssign) { 7269 if (!IsCompAssign) { 7270 LHS = DefaultFunctionArrayLvalueConversion(LHS.get()); 7271 if (LHS.isInvalid()) 7272 return QualType(); 7273 } 7274 RHS = DefaultFunctionArrayLvalueConversion(RHS.get()); 7275 if (RHS.isInvalid()) 7276 return QualType(); 7277 7278 // For conversion purposes, we ignore any qualifiers. 7279 // For example, "const float" and "float" are equivalent. 7280 QualType LHSType = LHS.get()->getType().getUnqualifiedType(); 7281 QualType RHSType = RHS.get()->getType().getUnqualifiedType(); 7282 7283 // If the vector types are identical, return. 7284 if (Context.hasSameType(LHSType, RHSType)) 7285 return LHSType; 7286 7287 const VectorType *LHSVecType = LHSType->getAs<VectorType>(); 7288 const VectorType *RHSVecType = RHSType->getAs<VectorType>(); 7289 assert(LHSVecType || RHSVecType); 7290 7291 // If we have compatible AltiVec and GCC vector types, use the AltiVec type. 7292 if (LHSVecType && RHSVecType && 7293 Context.areCompatibleVectorTypes(LHSType, RHSType)) { 7294 if (isa<ExtVectorType>(LHSVecType)) { 7295 RHS = ImpCastExprToType(RHS.get(), LHSType, CK_BitCast); 7296 return LHSType; 7297 } 7298 7299 if (!IsCompAssign) 7300 LHS = ImpCastExprToType(LHS.get(), RHSType, CK_BitCast); 7301 return RHSType; 7302 } 7303 7304 // If there's an ext-vector type and a scalar, try to convert the scalar to 7305 // the vector element type and splat. 7306 if (!RHSVecType && isa<ExtVectorType>(LHSVecType)) { 7307 if (!tryVectorConvertAndSplat(*this, &RHS, RHSType, 7308 LHSVecType->getElementType(), LHSType)) 7309 return LHSType; 7310 } 7311 if (!LHSVecType && isa<ExtVectorType>(RHSVecType)) { 7312 if (!tryVectorConvertAndSplat(*this, (IsCompAssign ? nullptr : &LHS), 7313 LHSType, RHSVecType->getElementType(), 7314 RHSType)) 7315 return RHSType; 7316 } 7317 7318 // If we're allowing lax vector conversions, only the total (data) size 7319 // needs to be the same. 7320 // FIXME: Should we really be allowing this? 7321 // FIXME: We really just pick the LHS type arbitrarily? 7322 if (isLaxVectorConversion(RHSType, LHSType)) { 7323 QualType resultType = LHSType; 7324 RHS = ImpCastExprToType(RHS.get(), resultType, CK_BitCast); 7325 return resultType; 7326 } 7327 7328 // Okay, the expression is invalid. 7329 7330 // If there's a non-vector, non-real operand, diagnose that. 7331 if ((!RHSVecType && !RHSType->isRealType()) || 7332 (!LHSVecType && !LHSType->isRealType())) { 7333 Diag(Loc, diag::err_typecheck_vector_not_convertable_non_scalar) 7334 << LHSType << RHSType 7335 << LHS.get()->getSourceRange() << RHS.get()->getSourceRange(); 7336 return QualType(); 7337 } 7338 7339 // Otherwise, use the generic diagnostic. 7340 Diag(Loc, diag::err_typecheck_vector_not_convertable) 7341 << LHSType << RHSType 7342 << LHS.get()->getSourceRange() << RHS.get()->getSourceRange(); 7343 return QualType(); 7344 } 7345 7346 // checkArithmeticNull - Detect when a NULL constant is used improperly in an 7347 // expression. These are mainly cases where the null pointer is used as an 7348 // integer instead of a pointer. 7349 static void checkArithmeticNull(Sema &S, ExprResult &LHS, ExprResult &RHS, 7350 SourceLocation Loc, bool IsCompare) { 7351 // The canonical way to check for a GNU null is with isNullPointerConstant, 7352 // but we use a bit of a hack here for speed; this is a relatively 7353 // hot path, and isNullPointerConstant is slow. 7354 bool LHSNull = isa<GNUNullExpr>(LHS.get()->IgnoreParenImpCasts()); 7355 bool RHSNull = isa<GNUNullExpr>(RHS.get()->IgnoreParenImpCasts()); 7356 7357 QualType NonNullType = LHSNull ? RHS.get()->getType() : LHS.get()->getType(); 7358 7359 // Avoid analyzing cases where the result will either be invalid (and 7360 // diagnosed as such) or entirely valid and not something to warn about. 7361 if ((!LHSNull && !RHSNull) || NonNullType->isBlockPointerType() || 7362 NonNullType->isMemberPointerType() || NonNullType->isFunctionType()) 7363 return; 7364 7365 // Comparison operations would not make sense with a null pointer no matter 7366 // what the other expression is. 7367 if (!IsCompare) { 7368 S.Diag(Loc, diag::warn_null_in_arithmetic_operation) 7369 << (LHSNull ? LHS.get()->getSourceRange() : SourceRange()) 7370 << (RHSNull ? RHS.get()->getSourceRange() : SourceRange()); 7371 return; 7372 } 7373 7374 // The rest of the operations only make sense with a null pointer 7375 // if the other expression is a pointer. 7376 if (LHSNull == RHSNull || NonNullType->isAnyPointerType() || 7377 NonNullType->canDecayToPointerType()) 7378 return; 7379 7380 S.Diag(Loc, diag::warn_null_in_comparison_operation) 7381 << LHSNull /* LHS is NULL */ << NonNullType 7382 << LHS.get()->getSourceRange() << RHS.get()->getSourceRange(); 7383 } 7384 7385 QualType Sema::CheckMultiplyDivideOperands(ExprResult &LHS, ExprResult &RHS, 7386 SourceLocation Loc, 7387 bool IsCompAssign, bool IsDiv) { 7388 checkArithmeticNull(*this, LHS, RHS, Loc, /*isCompare=*/false); 7389 7390 if (LHS.get()->getType()->isVectorType() || 7391 RHS.get()->getType()->isVectorType()) 7392 return CheckVectorOperands(LHS, RHS, Loc, IsCompAssign); 7393 7394 QualType compType = UsualArithmeticConversions(LHS, RHS, IsCompAssign); 7395 if (LHS.isInvalid() || RHS.isInvalid()) 7396 return QualType(); 7397 7398 7399 if (compType.isNull() || !compType->isArithmeticType()) 7400 return InvalidOperands(Loc, LHS, RHS); 7401 7402 // Check for division by zero. 7403 llvm::APSInt RHSValue; 7404 if (IsDiv && !RHS.get()->isValueDependent() && 7405 RHS.get()->EvaluateAsInt(RHSValue, Context) && RHSValue == 0) 7406 DiagRuntimeBehavior(Loc, RHS.get(), 7407 PDiag(diag::warn_division_by_zero) 7408 << RHS.get()->getSourceRange()); 7409 7410 return compType; 7411 } 7412 7413 QualType Sema::CheckRemainderOperands( 7414 ExprResult &LHS, ExprResult &RHS, SourceLocation Loc, bool IsCompAssign) { 7415 checkArithmeticNull(*this, LHS, RHS, Loc, /*isCompare=*/false); 7416 7417 if (LHS.get()->getType()->isVectorType() || 7418 RHS.get()->getType()->isVectorType()) { 7419 if (LHS.get()->getType()->hasIntegerRepresentation() && 7420 RHS.get()->getType()->hasIntegerRepresentation()) 7421 return CheckVectorOperands(LHS, RHS, Loc, IsCompAssign); 7422 return InvalidOperands(Loc, LHS, RHS); 7423 } 7424 7425 QualType compType = UsualArithmeticConversions(LHS, RHS, IsCompAssign); 7426 if (LHS.isInvalid() || RHS.isInvalid()) 7427 return QualType(); 7428 7429 if (compType.isNull() || !compType->isIntegerType()) 7430 return InvalidOperands(Loc, LHS, RHS); 7431 7432 // Check for remainder by zero. 7433 llvm::APSInt RHSValue; 7434 if (!RHS.get()->isValueDependent() && 7435 RHS.get()->EvaluateAsInt(RHSValue, Context) && RHSValue == 0) 7436 DiagRuntimeBehavior(Loc, RHS.get(), 7437 PDiag(diag::warn_remainder_by_zero) 7438 << RHS.get()->getSourceRange()); 7439 7440 return compType; 7441 } 7442 7443 /// \brief Diagnose invalid arithmetic on two void pointers. 7444 static void diagnoseArithmeticOnTwoVoidPointers(Sema &S, SourceLocation Loc, 7445 Expr *LHSExpr, Expr *RHSExpr) { 7446 S.Diag(Loc, S.getLangOpts().CPlusPlus 7447 ? diag::err_typecheck_pointer_arith_void_type 7448 : diag::ext_gnu_void_ptr) 7449 << 1 /* two pointers */ << LHSExpr->getSourceRange() 7450 << RHSExpr->getSourceRange(); 7451 } 7452 7453 /// \brief Diagnose invalid arithmetic on a void pointer. 7454 static void diagnoseArithmeticOnVoidPointer(Sema &S, SourceLocation Loc, 7455 Expr *Pointer) { 7456 S.Diag(Loc, S.getLangOpts().CPlusPlus 7457 ? diag::err_typecheck_pointer_arith_void_type 7458 : diag::ext_gnu_void_ptr) 7459 << 0 /* one pointer */ << Pointer->getSourceRange(); 7460 } 7461 7462 /// \brief Diagnose invalid arithmetic on two function pointers. 7463 static void diagnoseArithmeticOnTwoFunctionPointers(Sema &S, SourceLocation Loc, 7464 Expr *LHS, Expr *RHS) { 7465 assert(LHS->getType()->isAnyPointerType()); 7466 assert(RHS->getType()->isAnyPointerType()); 7467 S.Diag(Loc, S.getLangOpts().CPlusPlus 7468 ? diag::err_typecheck_pointer_arith_function_type 7469 : diag::ext_gnu_ptr_func_arith) 7470 << 1 /* two pointers */ << LHS->getType()->getPointeeType() 7471 // We only show the second type if it differs from the first. 7472 << (unsigned)!S.Context.hasSameUnqualifiedType(LHS->getType(), 7473 RHS->getType()) 7474 << RHS->getType()->getPointeeType() 7475 << LHS->getSourceRange() << RHS->getSourceRange(); 7476 } 7477 7478 /// \brief Diagnose invalid arithmetic on a function pointer. 7479 static void diagnoseArithmeticOnFunctionPointer(Sema &S, SourceLocation Loc, 7480 Expr *Pointer) { 7481 assert(Pointer->getType()->isAnyPointerType()); 7482 S.Diag(Loc, S.getLangOpts().CPlusPlus 7483 ? diag::err_typecheck_pointer_arith_function_type 7484 : diag::ext_gnu_ptr_func_arith) 7485 << 0 /* one pointer */ << Pointer->getType()->getPointeeType() 7486 << 0 /* one pointer, so only one type */ 7487 << Pointer->getSourceRange(); 7488 } 7489 7490 /// \brief Emit error if Operand is incomplete pointer type 7491 /// 7492 /// \returns True if pointer has incomplete type 7493 static bool checkArithmeticIncompletePointerType(Sema &S, SourceLocation Loc, 7494 Expr *Operand) { 7495 QualType ResType = Operand->getType(); 7496 if (const AtomicType *ResAtomicType = ResType->getAs<AtomicType>()) 7497 ResType = ResAtomicType->getValueType(); 7498 7499 assert(ResType->isAnyPointerType() && !ResType->isDependentType()); 7500 QualType PointeeTy = ResType->getPointeeType(); 7501 return S.RequireCompleteType(Loc, PointeeTy, 7502 diag::err_typecheck_arithmetic_incomplete_type, 7503 PointeeTy, Operand->getSourceRange()); 7504 } 7505 7506 /// \brief Check the validity of an arithmetic pointer operand. 7507 /// 7508 /// If the operand has pointer type, this code will check for pointer types 7509 /// which are invalid in arithmetic operations. These will be diagnosed 7510 /// appropriately, including whether or not the use is supported as an 7511 /// extension. 7512 /// 7513 /// \returns True when the operand is valid to use (even if as an extension). 7514 static bool checkArithmeticOpPointerOperand(Sema &S, SourceLocation Loc, 7515 Expr *Operand) { 7516 QualType ResType = Operand->getType(); 7517 if (const AtomicType *ResAtomicType = ResType->getAs<AtomicType>()) 7518 ResType = ResAtomicType->getValueType(); 7519 7520 if (!ResType->isAnyPointerType()) return true; 7521 7522 QualType PointeeTy = ResType->getPointeeType(); 7523 if (PointeeTy->isVoidType()) { 7524 diagnoseArithmeticOnVoidPointer(S, Loc, Operand); 7525 return !S.getLangOpts().CPlusPlus; 7526 } 7527 if (PointeeTy->isFunctionType()) { 7528 diagnoseArithmeticOnFunctionPointer(S, Loc, Operand); 7529 return !S.getLangOpts().CPlusPlus; 7530 } 7531 7532 if (checkArithmeticIncompletePointerType(S, Loc, Operand)) return false; 7533 7534 return true; 7535 } 7536 7537 /// \brief Check the validity of a binary arithmetic operation w.r.t. pointer 7538 /// operands. 7539 /// 7540 /// This routine will diagnose any invalid arithmetic on pointer operands much 7541 /// like \see checkArithmeticOpPointerOperand. However, it has special logic 7542 /// for emitting a single diagnostic even for operations where both LHS and RHS 7543 /// are (potentially problematic) pointers. 7544 /// 7545 /// \returns True when the operand is valid to use (even if as an extension). 7546 static bool checkArithmeticBinOpPointerOperands(Sema &S, SourceLocation Loc, 7547 Expr *LHSExpr, Expr *RHSExpr) { 7548 bool isLHSPointer = LHSExpr->getType()->isAnyPointerType(); 7549 bool isRHSPointer = RHSExpr->getType()->isAnyPointerType(); 7550 if (!isLHSPointer && !isRHSPointer) return true; 7551 7552 QualType LHSPointeeTy, RHSPointeeTy; 7553 if (isLHSPointer) LHSPointeeTy = LHSExpr->getType()->getPointeeType(); 7554 if (isRHSPointer) RHSPointeeTy = RHSExpr->getType()->getPointeeType(); 7555 7556 // if both are pointers check if operation is valid wrt address spaces 7557 if (isLHSPointer && isRHSPointer) { 7558 const PointerType *lhsPtr = LHSExpr->getType()->getAs<PointerType>(); 7559 const PointerType *rhsPtr = RHSExpr->getType()->getAs<PointerType>(); 7560 if (!lhsPtr->isAddressSpaceOverlapping(*rhsPtr)) { 7561 S.Diag(Loc, 7562 diag::err_typecheck_op_on_nonoverlapping_address_space_pointers) 7563 << LHSExpr->getType() << RHSExpr->getType() << 1 /*arithmetic op*/ 7564 << LHSExpr->getSourceRange() << RHSExpr->getSourceRange(); 7565 return false; 7566 } 7567 } 7568 7569 // Check for arithmetic on pointers to incomplete types. 7570 bool isLHSVoidPtr = isLHSPointer && LHSPointeeTy->isVoidType(); 7571 bool isRHSVoidPtr = isRHSPointer && RHSPointeeTy->isVoidType(); 7572 if (isLHSVoidPtr || isRHSVoidPtr) { 7573 if (!isRHSVoidPtr) diagnoseArithmeticOnVoidPointer(S, Loc, LHSExpr); 7574 else if (!isLHSVoidPtr) diagnoseArithmeticOnVoidPointer(S, Loc, RHSExpr); 7575 else diagnoseArithmeticOnTwoVoidPointers(S, Loc, LHSExpr, RHSExpr); 7576 7577 return !S.getLangOpts().CPlusPlus; 7578 } 7579 7580 bool isLHSFuncPtr = isLHSPointer && LHSPointeeTy->isFunctionType(); 7581 bool isRHSFuncPtr = isRHSPointer && RHSPointeeTy->isFunctionType(); 7582 if (isLHSFuncPtr || isRHSFuncPtr) { 7583 if (!isRHSFuncPtr) diagnoseArithmeticOnFunctionPointer(S, Loc, LHSExpr); 7584 else if (!isLHSFuncPtr) diagnoseArithmeticOnFunctionPointer(S, Loc, 7585 RHSExpr); 7586 else diagnoseArithmeticOnTwoFunctionPointers(S, Loc, LHSExpr, RHSExpr); 7587 7588 return !S.getLangOpts().CPlusPlus; 7589 } 7590 7591 if (isLHSPointer && checkArithmeticIncompletePointerType(S, Loc, LHSExpr)) 7592 return false; 7593 if (isRHSPointer && checkArithmeticIncompletePointerType(S, Loc, RHSExpr)) 7594 return false; 7595 7596 return true; 7597 } 7598 7599 /// diagnoseStringPlusInt - Emit a warning when adding an integer to a string 7600 /// literal. 7601 static void diagnoseStringPlusInt(Sema &Self, SourceLocation OpLoc, 7602 Expr *LHSExpr, Expr *RHSExpr) { 7603 StringLiteral* StrExpr = dyn_cast<StringLiteral>(LHSExpr->IgnoreImpCasts()); 7604 Expr* IndexExpr = RHSExpr; 7605 if (!StrExpr) { 7606 StrExpr = dyn_cast<StringLiteral>(RHSExpr->IgnoreImpCasts()); 7607 IndexExpr = LHSExpr; 7608 } 7609 7610 bool IsStringPlusInt = StrExpr && 7611 IndexExpr->getType()->isIntegralOrUnscopedEnumerationType(); 7612 if (!IsStringPlusInt || IndexExpr->isValueDependent()) 7613 return; 7614 7615 llvm::APSInt index; 7616 if (IndexExpr->EvaluateAsInt(index, Self.getASTContext())) { 7617 unsigned StrLenWithNull = StrExpr->getLength() + 1; 7618 if (index.isNonNegative() && 7619 index <= llvm::APSInt(llvm::APInt(index.getBitWidth(), StrLenWithNull), 7620 index.isUnsigned())) 7621 return; 7622 } 7623 7624 SourceRange DiagRange(LHSExpr->getLocStart(), RHSExpr->getLocEnd()); 7625 Self.Diag(OpLoc, diag::warn_string_plus_int) 7626 << DiagRange << IndexExpr->IgnoreImpCasts()->getType(); 7627 7628 // Only print a fixit for "str" + int, not for int + "str". 7629 if (IndexExpr == RHSExpr) { 7630 SourceLocation EndLoc = Self.PP.getLocForEndOfToken(RHSExpr->getLocEnd()); 7631 Self.Diag(OpLoc, diag::note_string_plus_scalar_silence) 7632 << FixItHint::CreateInsertion(LHSExpr->getLocStart(), "&") 7633 << FixItHint::CreateReplacement(SourceRange(OpLoc), "[") 7634 << FixItHint::CreateInsertion(EndLoc, "]"); 7635 } else 7636 Self.Diag(OpLoc, diag::note_string_plus_scalar_silence); 7637 } 7638 7639 /// \brief Emit a warning when adding a char literal to a string. 7640 static void diagnoseStringPlusChar(Sema &Self, SourceLocation OpLoc, 7641 Expr *LHSExpr, Expr *RHSExpr) { 7642 const Expr *StringRefExpr = LHSExpr; 7643 const CharacterLiteral *CharExpr = 7644 dyn_cast<CharacterLiteral>(RHSExpr->IgnoreImpCasts()); 7645 7646 if (!CharExpr) { 7647 CharExpr = dyn_cast<CharacterLiteral>(LHSExpr->IgnoreImpCasts()); 7648 StringRefExpr = RHSExpr; 7649 } 7650 7651 if (!CharExpr || !StringRefExpr) 7652 return; 7653 7654 const QualType StringType = StringRefExpr->getType(); 7655 7656 // Return if not a PointerType. 7657 if (!StringType->isAnyPointerType()) 7658 return; 7659 7660 // Return if not a CharacterType. 7661 if (!StringType->getPointeeType()->isAnyCharacterType()) 7662 return; 7663 7664 ASTContext &Ctx = Self.getASTContext(); 7665 SourceRange DiagRange(LHSExpr->getLocStart(), RHSExpr->getLocEnd()); 7666 7667 const QualType CharType = CharExpr->getType(); 7668 if (!CharType->isAnyCharacterType() && 7669 CharType->isIntegerType() && 7670 llvm::isUIntN(Ctx.getCharWidth(), CharExpr->getValue())) { 7671 Self.Diag(OpLoc, diag::warn_string_plus_char) 7672 << DiagRange << Ctx.CharTy; 7673 } else { 7674 Self.Diag(OpLoc, diag::warn_string_plus_char) 7675 << DiagRange << CharExpr->getType(); 7676 } 7677 7678 // Only print a fixit for str + char, not for char + str. 7679 if (isa<CharacterLiteral>(RHSExpr->IgnoreImpCasts())) { 7680 SourceLocation EndLoc = Self.PP.getLocForEndOfToken(RHSExpr->getLocEnd()); 7681 Self.Diag(OpLoc, diag::note_string_plus_scalar_silence) 7682 << FixItHint::CreateInsertion(LHSExpr->getLocStart(), "&") 7683 << FixItHint::CreateReplacement(SourceRange(OpLoc), "[") 7684 << FixItHint::CreateInsertion(EndLoc, "]"); 7685 } else { 7686 Self.Diag(OpLoc, diag::note_string_plus_scalar_silence); 7687 } 7688 } 7689 7690 /// \brief Emit error when two pointers are incompatible. 7691 static void diagnosePointerIncompatibility(Sema &S, SourceLocation Loc, 7692 Expr *LHSExpr, Expr *RHSExpr) { 7693 assert(LHSExpr->getType()->isAnyPointerType()); 7694 assert(RHSExpr->getType()->isAnyPointerType()); 7695 S.Diag(Loc, diag::err_typecheck_sub_ptr_compatible) 7696 << LHSExpr->getType() << RHSExpr->getType() << LHSExpr->getSourceRange() 7697 << RHSExpr->getSourceRange(); 7698 } 7699 7700 QualType Sema::CheckAdditionOperands( // C99 6.5.6 7701 ExprResult &LHS, ExprResult &RHS, SourceLocation Loc, unsigned Opc, 7702 QualType* CompLHSTy) { 7703 checkArithmeticNull(*this, LHS, RHS, Loc, /*isCompare=*/false); 7704 7705 if (LHS.get()->getType()->isVectorType() || 7706 RHS.get()->getType()->isVectorType()) { 7707 QualType compType = CheckVectorOperands(LHS, RHS, Loc, CompLHSTy); 7708 if (CompLHSTy) *CompLHSTy = compType; 7709 return compType; 7710 } 7711 7712 QualType compType = UsualArithmeticConversions(LHS, RHS, CompLHSTy); 7713 if (LHS.isInvalid() || RHS.isInvalid()) 7714 return QualType(); 7715 7716 // Diagnose "string literal" '+' int and string '+' "char literal". 7717 if (Opc == BO_Add) { 7718 diagnoseStringPlusInt(*this, Loc, LHS.get(), RHS.get()); 7719 diagnoseStringPlusChar(*this, Loc, LHS.get(), RHS.get()); 7720 } 7721 7722 // handle the common case first (both operands are arithmetic). 7723 if (!compType.isNull() && compType->isArithmeticType()) { 7724 if (CompLHSTy) *CompLHSTy = compType; 7725 return compType; 7726 } 7727 7728 // Type-checking. Ultimately the pointer's going to be in PExp; 7729 // note that we bias towards the LHS being the pointer. 7730 Expr *PExp = LHS.get(), *IExp = RHS.get(); 7731 7732 bool isObjCPointer; 7733 if (PExp->getType()->isPointerType()) { 7734 isObjCPointer = false; 7735 } else if (PExp->getType()->isObjCObjectPointerType()) { 7736 isObjCPointer = true; 7737 } else { 7738 std::swap(PExp, IExp); 7739 if (PExp->getType()->isPointerType()) { 7740 isObjCPointer = false; 7741 } else if (PExp->getType()->isObjCObjectPointerType()) { 7742 isObjCPointer = true; 7743 } else { 7744 return InvalidOperands(Loc, LHS, RHS); 7745 } 7746 } 7747 assert(PExp->getType()->isAnyPointerType()); 7748 7749 if (!IExp->getType()->isIntegerType()) 7750 return InvalidOperands(Loc, LHS, RHS); 7751 7752 if (!checkArithmeticOpPointerOperand(*this, Loc, PExp)) 7753 return QualType(); 7754 7755 if (isObjCPointer && checkArithmeticOnObjCPointer(*this, Loc, PExp)) 7756 return QualType(); 7757 7758 // Check array bounds for pointer arithemtic 7759 CheckArrayAccess(PExp, IExp); 7760 7761 if (CompLHSTy) { 7762 QualType LHSTy = Context.isPromotableBitField(LHS.get()); 7763 if (LHSTy.isNull()) { 7764 LHSTy = LHS.get()->getType(); 7765 if (LHSTy->isPromotableIntegerType()) 7766 LHSTy = Context.getPromotedIntegerType(LHSTy); 7767 } 7768 *CompLHSTy = LHSTy; 7769 } 7770 7771 return PExp->getType(); 7772 } 7773 7774 // C99 6.5.6 7775 QualType Sema::CheckSubtractionOperands(ExprResult &LHS, ExprResult &RHS, 7776 SourceLocation Loc, 7777 QualType* CompLHSTy) { 7778 checkArithmeticNull(*this, LHS, RHS, Loc, /*isCompare=*/false); 7779 7780 if (LHS.get()->getType()->isVectorType() || 7781 RHS.get()->getType()->isVectorType()) { 7782 QualType compType = CheckVectorOperands(LHS, RHS, Loc, CompLHSTy); 7783 if (CompLHSTy) *CompLHSTy = compType; 7784 return compType; 7785 } 7786 7787 QualType compType = UsualArithmeticConversions(LHS, RHS, CompLHSTy); 7788 if (LHS.isInvalid() || RHS.isInvalid()) 7789 return QualType(); 7790 7791 // Enforce type constraints: C99 6.5.6p3. 7792 7793 // Handle the common case first (both operands are arithmetic). 7794 if (!compType.isNull() && compType->isArithmeticType()) { 7795 if (CompLHSTy) *CompLHSTy = compType; 7796 return compType; 7797 } 7798 7799 // Either ptr - int or ptr - ptr. 7800 if (LHS.get()->getType()->isAnyPointerType()) { 7801 QualType lpointee = LHS.get()->getType()->getPointeeType(); 7802 7803 // Diagnose bad cases where we step over interface counts. 7804 if (LHS.get()->getType()->isObjCObjectPointerType() && 7805 checkArithmeticOnObjCPointer(*this, Loc, LHS.get())) 7806 return QualType(); 7807 7808 // The result type of a pointer-int computation is the pointer type. 7809 if (RHS.get()->getType()->isIntegerType()) { 7810 if (!checkArithmeticOpPointerOperand(*this, Loc, LHS.get())) 7811 return QualType(); 7812 7813 // Check array bounds for pointer arithemtic 7814 CheckArrayAccess(LHS.get(), RHS.get(), /*ArraySubscriptExpr*/nullptr, 7815 /*AllowOnePastEnd*/true, /*IndexNegated*/true); 7816 7817 if (CompLHSTy) *CompLHSTy = LHS.get()->getType(); 7818 return LHS.get()->getType(); 7819 } 7820 7821 // Handle pointer-pointer subtractions. 7822 if (const PointerType *RHSPTy 7823 = RHS.get()->getType()->getAs<PointerType>()) { 7824 QualType rpointee = RHSPTy->getPointeeType(); 7825 7826 if (getLangOpts().CPlusPlus) { 7827 // Pointee types must be the same: C++ [expr.add] 7828 if (!Context.hasSameUnqualifiedType(lpointee, rpointee)) { 7829 diagnosePointerIncompatibility(*this, Loc, LHS.get(), RHS.get()); 7830 } 7831 } else { 7832 // Pointee types must be compatible C99 6.5.6p3 7833 if (!Context.typesAreCompatible( 7834 Context.getCanonicalType(lpointee).getUnqualifiedType(), 7835 Context.getCanonicalType(rpointee).getUnqualifiedType())) { 7836 diagnosePointerIncompatibility(*this, Loc, LHS.get(), RHS.get()); 7837 return QualType(); 7838 } 7839 } 7840 7841 if (!checkArithmeticBinOpPointerOperands(*this, Loc, 7842 LHS.get(), RHS.get())) 7843 return QualType(); 7844 7845 // The pointee type may have zero size. As an extension, a structure or 7846 // union may have zero size or an array may have zero length. In this 7847 // case subtraction does not make sense. 7848 if (!rpointee->isVoidType() && !rpointee->isFunctionType()) { 7849 CharUnits ElementSize = Context.getTypeSizeInChars(rpointee); 7850 if (ElementSize.isZero()) { 7851 Diag(Loc,diag::warn_sub_ptr_zero_size_types) 7852 << rpointee.getUnqualifiedType() 7853 << LHS.get()->getSourceRange() << RHS.get()->getSourceRange(); 7854 } 7855 } 7856 7857 if (CompLHSTy) *CompLHSTy = LHS.get()->getType(); 7858 return Context.getPointerDiffType(); 7859 } 7860 } 7861 7862 return InvalidOperands(Loc, LHS, RHS); 7863 } 7864 7865 static bool isScopedEnumerationType(QualType T) { 7866 if (const EnumType *ET = T->getAs<EnumType>()) 7867 return ET->getDecl()->isScoped(); 7868 return false; 7869 } 7870 7871 static void DiagnoseBadShiftValues(Sema& S, ExprResult &LHS, ExprResult &RHS, 7872 SourceLocation Loc, unsigned Opc, 7873 QualType LHSType) { 7874 // OpenCL 6.3j: shift values are effectively % word size of LHS (more defined), 7875 // so skip remaining warnings as we don't want to modify values within Sema. 7876 if (S.getLangOpts().OpenCL) 7877 return; 7878 7879 llvm::APSInt Right; 7880 // Check right/shifter operand 7881 if (RHS.get()->isValueDependent() || 7882 !RHS.get()->EvaluateAsInt(Right, S.Context)) 7883 return; 7884 7885 if (Right.isNegative()) { 7886 S.DiagRuntimeBehavior(Loc, RHS.get(), 7887 S.PDiag(diag::warn_shift_negative) 7888 << RHS.get()->getSourceRange()); 7889 return; 7890 } 7891 llvm::APInt LeftBits(Right.getBitWidth(), 7892 S.Context.getTypeSize(LHS.get()->getType())); 7893 if (Right.uge(LeftBits)) { 7894 S.DiagRuntimeBehavior(Loc, RHS.get(), 7895 S.PDiag(diag::warn_shift_gt_typewidth) 7896 << RHS.get()->getSourceRange()); 7897 return; 7898 } 7899 if (Opc != BO_Shl) 7900 return; 7901 7902 // When left shifting an ICE which is signed, we can check for overflow which 7903 // according to C++ has undefined behavior ([expr.shift] 5.8/2). Unsigned 7904 // integers have defined behavior modulo one more than the maximum value 7905 // representable in the result type, so never warn for those. 7906 llvm::APSInt Left; 7907 if (LHS.get()->isValueDependent() || 7908 LHSType->hasUnsignedIntegerRepresentation() || 7909 !LHS.get()->EvaluateAsInt(Left, S.Context)) 7910 return; 7911 7912 // If LHS does not have a signed type and non-negative value 7913 // then, the behavior is undefined. Warn about it. 7914 if (Left.isNegative()) { 7915 S.DiagRuntimeBehavior(Loc, LHS.get(), 7916 S.PDiag(diag::warn_shift_lhs_negative) 7917 << LHS.get()->getSourceRange()); 7918 return; 7919 } 7920 7921 llvm::APInt ResultBits = 7922 static_cast<llvm::APInt&>(Right) + Left.getMinSignedBits(); 7923 if (LeftBits.uge(ResultBits)) 7924 return; 7925 llvm::APSInt Result = Left.extend(ResultBits.getLimitedValue()); 7926 Result = Result.shl(Right); 7927 7928 // Print the bit representation of the signed integer as an unsigned 7929 // hexadecimal number. 7930 SmallString<40> HexResult; 7931 Result.toString(HexResult, 16, /*Signed =*/false, /*Literal =*/true); 7932 7933 // If we are only missing a sign bit, this is less likely to result in actual 7934 // bugs -- if the result is cast back to an unsigned type, it will have the 7935 // expected value. Thus we place this behind a different warning that can be 7936 // turned off separately if needed. 7937 if (LeftBits == ResultBits - 1) { 7938 S.Diag(Loc, diag::warn_shift_result_sets_sign_bit) 7939 << HexResult << LHSType 7940 << LHS.get()->getSourceRange() << RHS.get()->getSourceRange(); 7941 return; 7942 } 7943 7944 S.Diag(Loc, diag::warn_shift_result_gt_typewidth) 7945 << HexResult.str() << Result.getMinSignedBits() << LHSType 7946 << Left.getBitWidth() << LHS.get()->getSourceRange() 7947 << RHS.get()->getSourceRange(); 7948 } 7949 7950 /// \brief Return the resulting type when an OpenCL vector is shifted 7951 /// by a scalar or vector shift amount. 7952 static QualType checkOpenCLVectorShift(Sema &S, 7953 ExprResult &LHS, ExprResult &RHS, 7954 SourceLocation Loc, bool IsCompAssign) { 7955 // OpenCL v1.1 s6.3.j says RHS can be a vector only if LHS is a vector. 7956 if (!LHS.get()->getType()->isVectorType()) { 7957 S.Diag(Loc, diag::err_shift_rhs_only_vector) 7958 << RHS.get()->getType() << LHS.get()->getType() 7959 << LHS.get()->getSourceRange() << RHS.get()->getSourceRange(); 7960 return QualType(); 7961 } 7962 7963 if (!IsCompAssign) { 7964 LHS = S.UsualUnaryConversions(LHS.get()); 7965 if (LHS.isInvalid()) return QualType(); 7966 } 7967 7968 RHS = S.UsualUnaryConversions(RHS.get()); 7969 if (RHS.isInvalid()) return QualType(); 7970 7971 QualType LHSType = LHS.get()->getType(); 7972 const VectorType *LHSVecTy = LHSType->getAs<VectorType>(); 7973 QualType LHSEleType = LHSVecTy->getElementType(); 7974 7975 // Note that RHS might not be a vector. 7976 QualType RHSType = RHS.get()->getType(); 7977 const VectorType *RHSVecTy = RHSType->getAs<VectorType>(); 7978 QualType RHSEleType = RHSVecTy ? RHSVecTy->getElementType() : RHSType; 7979 7980 // OpenCL v1.1 s6.3.j says that the operands need to be integers. 7981 if (!LHSEleType->isIntegerType()) { 7982 S.Diag(Loc, diag::err_typecheck_expect_int) 7983 << LHS.get()->getType() << LHS.get()->getSourceRange(); 7984 return QualType(); 7985 } 7986 7987 if (!RHSEleType->isIntegerType()) { 7988 S.Diag(Loc, diag::err_typecheck_expect_int) 7989 << RHS.get()->getType() << RHS.get()->getSourceRange(); 7990 return QualType(); 7991 } 7992 7993 if (RHSVecTy) { 7994 // OpenCL v1.1 s6.3.j says that for vector types, the operators 7995 // are applied component-wise. So if RHS is a vector, then ensure 7996 // that the number of elements is the same as LHS... 7997 if (RHSVecTy->getNumElements() != LHSVecTy->getNumElements()) { 7998 S.Diag(Loc, diag::err_typecheck_vector_lengths_not_equal) 7999 << LHS.get()->getType() << RHS.get()->getType() 8000 << LHS.get()->getSourceRange() << RHS.get()->getSourceRange(); 8001 return QualType(); 8002 } 8003 } else { 8004 // ...else expand RHS to match the number of elements in LHS. 8005 QualType VecTy = 8006 S.Context.getExtVectorType(RHSEleType, LHSVecTy->getNumElements()); 8007 RHS = S.ImpCastExprToType(RHS.get(), VecTy, CK_VectorSplat); 8008 } 8009 8010 return LHSType; 8011 } 8012 8013 // C99 6.5.7 8014 QualType Sema::CheckShiftOperands(ExprResult &LHS, ExprResult &RHS, 8015 SourceLocation Loc, unsigned Opc, 8016 bool IsCompAssign) { 8017 checkArithmeticNull(*this, LHS, RHS, Loc, /*isCompare=*/false); 8018 8019 // Vector shifts promote their scalar inputs to vector type. 8020 if (LHS.get()->getType()->isVectorType() || 8021 RHS.get()->getType()->isVectorType()) { 8022 if (LangOpts.OpenCL) 8023 return checkOpenCLVectorShift(*this, LHS, RHS, Loc, IsCompAssign); 8024 return CheckVectorOperands(LHS, RHS, Loc, IsCompAssign); 8025 } 8026 8027 // Shifts don't perform usual arithmetic conversions, they just do integer 8028 // promotions on each operand. C99 6.5.7p3 8029 8030 // For the LHS, do usual unary conversions, but then reset them away 8031 // if this is a compound assignment. 8032 ExprResult OldLHS = LHS; 8033 LHS = UsualUnaryConversions(LHS.get()); 8034 if (LHS.isInvalid()) 8035 return QualType(); 8036 QualType LHSType = LHS.get()->getType(); 8037 if (IsCompAssign) LHS = OldLHS; 8038 8039 // The RHS is simpler. 8040 RHS = UsualUnaryConversions(RHS.get()); 8041 if (RHS.isInvalid()) 8042 return QualType(); 8043 QualType RHSType = RHS.get()->getType(); 8044 8045 // C99 6.5.7p2: Each of the operands shall have integer type. 8046 if (!LHSType->hasIntegerRepresentation() || 8047 !RHSType->hasIntegerRepresentation()) 8048 return InvalidOperands(Loc, LHS, RHS); 8049 8050 // C++0x: Don't allow scoped enums. FIXME: Use something better than 8051 // hasIntegerRepresentation() above instead of this. 8052 if (isScopedEnumerationType(LHSType) || 8053 isScopedEnumerationType(RHSType)) { 8054 return InvalidOperands(Loc, LHS, RHS); 8055 } 8056 // Sanity-check shift operands 8057 DiagnoseBadShiftValues(*this, LHS, RHS, Loc, Opc, LHSType); 8058 8059 // "The type of the result is that of the promoted left operand." 8060 return LHSType; 8061 } 8062 8063 static bool IsWithinTemplateSpecialization(Decl *D) { 8064 if (DeclContext *DC = D->getDeclContext()) { 8065 if (isa<ClassTemplateSpecializationDecl>(DC)) 8066 return true; 8067 if (FunctionDecl *FD = dyn_cast<FunctionDecl>(DC)) 8068 return FD->isFunctionTemplateSpecialization(); 8069 } 8070 return false; 8071 } 8072 8073 /// If two different enums are compared, raise a warning. 8074 static void checkEnumComparison(Sema &S, SourceLocation Loc, Expr *LHS, 8075 Expr *RHS) { 8076 QualType LHSStrippedType = LHS->IgnoreParenImpCasts()->getType(); 8077 QualType RHSStrippedType = RHS->IgnoreParenImpCasts()->getType(); 8078 8079 const EnumType *LHSEnumType = LHSStrippedType->getAs<EnumType>(); 8080 if (!LHSEnumType) 8081 return; 8082 const EnumType *RHSEnumType = RHSStrippedType->getAs<EnumType>(); 8083 if (!RHSEnumType) 8084 return; 8085 8086 // Ignore anonymous enums. 8087 if (!LHSEnumType->getDecl()->getIdentifier()) 8088 return; 8089 if (!RHSEnumType->getDecl()->getIdentifier()) 8090 return; 8091 8092 if (S.Context.hasSameUnqualifiedType(LHSStrippedType, RHSStrippedType)) 8093 return; 8094 8095 S.Diag(Loc, diag::warn_comparison_of_mixed_enum_types) 8096 << LHSStrippedType << RHSStrippedType 8097 << LHS->getSourceRange() << RHS->getSourceRange(); 8098 } 8099 8100 /// \brief Diagnose bad pointer comparisons. 8101 static void diagnoseDistinctPointerComparison(Sema &S, SourceLocation Loc, 8102 ExprResult &LHS, ExprResult &RHS, 8103 bool IsError) { 8104 S.Diag(Loc, IsError ? diag::err_typecheck_comparison_of_distinct_pointers 8105 : diag::ext_typecheck_comparison_of_distinct_pointers) 8106 << LHS.get()->getType() << RHS.get()->getType() 8107 << LHS.get()->getSourceRange() << RHS.get()->getSourceRange(); 8108 } 8109 8110 /// \brief Returns false if the pointers are converted to a composite type, 8111 /// true otherwise. 8112 static bool convertPointersToCompositeType(Sema &S, SourceLocation Loc, 8113 ExprResult &LHS, ExprResult &RHS) { 8114 // C++ [expr.rel]p2: 8115 // [...] Pointer conversions (4.10) and qualification 8116 // conversions (4.4) are performed on pointer operands (or on 8117 // a pointer operand and a null pointer constant) to bring 8118 // them to their composite pointer type. [...] 8119 // 8120 // C++ [expr.eq]p1 uses the same notion for (in)equality 8121 // comparisons of pointers. 8122 8123 // C++ [expr.eq]p2: 8124 // In addition, pointers to members can be compared, or a pointer to 8125 // member and a null pointer constant. Pointer to member conversions 8126 // (4.11) and qualification conversions (4.4) are performed to bring 8127 // them to a common type. If one operand is a null pointer constant, 8128 // the common type is the type of the other operand. Otherwise, the 8129 // common type is a pointer to member type similar (4.4) to the type 8130 // of one of the operands, with a cv-qualification signature (4.4) 8131 // that is the union of the cv-qualification signatures of the operand 8132 // types. 8133 8134 QualType LHSType = LHS.get()->getType(); 8135 QualType RHSType = RHS.get()->getType(); 8136 assert((LHSType->isPointerType() && RHSType->isPointerType()) || 8137 (LHSType->isMemberPointerType() && RHSType->isMemberPointerType())); 8138 8139 bool NonStandardCompositeType = false; 8140 bool *BoolPtr = S.isSFINAEContext() ? nullptr : &NonStandardCompositeType; 8141 QualType T = S.FindCompositePointerType(Loc, LHS, RHS, BoolPtr); 8142 if (T.isNull()) { 8143 diagnoseDistinctPointerComparison(S, Loc, LHS, RHS, /*isError*/true); 8144 return true; 8145 } 8146 8147 if (NonStandardCompositeType) 8148 S.Diag(Loc, diag::ext_typecheck_comparison_of_distinct_pointers_nonstandard) 8149 << LHSType << RHSType << T << LHS.get()->getSourceRange() 8150 << RHS.get()->getSourceRange(); 8151 8152 LHS = S.ImpCastExprToType(LHS.get(), T, CK_BitCast); 8153 RHS = S.ImpCastExprToType(RHS.get(), T, CK_BitCast); 8154 return false; 8155 } 8156 8157 static void diagnoseFunctionPointerToVoidComparison(Sema &S, SourceLocation Loc, 8158 ExprResult &LHS, 8159 ExprResult &RHS, 8160 bool IsError) { 8161 S.Diag(Loc, IsError ? diag::err_typecheck_comparison_of_fptr_to_void 8162 : diag::ext_typecheck_comparison_of_fptr_to_void) 8163 << LHS.get()->getType() << RHS.get()->getType() 8164 << LHS.get()->getSourceRange() << RHS.get()->getSourceRange(); 8165 } 8166 8167 static bool isObjCObjectLiteral(ExprResult &E) { 8168 switch (E.get()->IgnoreParenImpCasts()->getStmtClass()) { 8169 case Stmt::ObjCArrayLiteralClass: 8170 case Stmt::ObjCDictionaryLiteralClass: 8171 case Stmt::ObjCStringLiteralClass: 8172 case Stmt::ObjCBoxedExprClass: 8173 return true; 8174 default: 8175 // Note that ObjCBoolLiteral is NOT an object literal! 8176 return false; 8177 } 8178 } 8179 8180 static bool hasIsEqualMethod(Sema &S, const Expr *LHS, const Expr *RHS) { 8181 const ObjCObjectPointerType *Type = 8182 LHS->getType()->getAs<ObjCObjectPointerType>(); 8183 8184 // If this is not actually an Objective-C object, bail out. 8185 if (!Type) 8186 return false; 8187 8188 // Get the LHS object's interface type. 8189 QualType InterfaceType = Type->getPointeeType(); 8190 8191 // If the RHS isn't an Objective-C object, bail out. 8192 if (!RHS->getType()->isObjCObjectPointerType()) 8193 return false; 8194 8195 // Try to find the -isEqual: method. 8196 Selector IsEqualSel = S.NSAPIObj->getIsEqualSelector(); 8197 ObjCMethodDecl *Method = S.LookupMethodInObjectType(IsEqualSel, 8198 InterfaceType, 8199 /*instance=*/true); 8200 if (!Method) { 8201 if (Type->isObjCIdType()) { 8202 // For 'id', just check the global pool. 8203 Method = S.LookupInstanceMethodInGlobalPool(IsEqualSel, SourceRange(), 8204 /*receiverId=*/true); 8205 } else { 8206 // Check protocols. 8207 Method = S.LookupMethodInQualifiedType(IsEqualSel, Type, 8208 /*instance=*/true); 8209 } 8210 } 8211 8212 if (!Method) 8213 return false; 8214 8215 QualType T = Method->parameters()[0]->getType(); 8216 if (!T->isObjCObjectPointerType()) 8217 return false; 8218 8219 QualType R = Method->getReturnType(); 8220 if (!R->isScalarType()) 8221 return false; 8222 8223 return true; 8224 } 8225 8226 Sema::ObjCLiteralKind Sema::CheckLiteralKind(Expr *FromE) { 8227 FromE = FromE->IgnoreParenImpCasts(); 8228 switch (FromE->getStmtClass()) { 8229 default: 8230 break; 8231 case Stmt::ObjCStringLiteralClass: 8232 // "string literal" 8233 return LK_String; 8234 case Stmt::ObjCArrayLiteralClass: 8235 // "array literal" 8236 return LK_Array; 8237 case Stmt::ObjCDictionaryLiteralClass: 8238 // "dictionary literal" 8239 return LK_Dictionary; 8240 case Stmt::BlockExprClass: 8241 return LK_Block; 8242 case Stmt::ObjCBoxedExprClass: { 8243 Expr *Inner = cast<ObjCBoxedExpr>(FromE)->getSubExpr()->IgnoreParens(); 8244 switch (Inner->getStmtClass()) { 8245 case Stmt::IntegerLiteralClass: 8246 case Stmt::FloatingLiteralClass: 8247 case Stmt::CharacterLiteralClass: 8248 case Stmt::ObjCBoolLiteralExprClass: 8249 case Stmt::CXXBoolLiteralExprClass: 8250 // "numeric literal" 8251 return LK_Numeric; 8252 case Stmt::ImplicitCastExprClass: { 8253 CastKind CK = cast<CastExpr>(Inner)->getCastKind(); 8254 // Boolean literals can be represented by implicit casts. 8255 if (CK == CK_IntegralToBoolean || CK == CK_IntegralCast) 8256 return LK_Numeric; 8257 break; 8258 } 8259 default: 8260 break; 8261 } 8262 return LK_Boxed; 8263 } 8264 } 8265 return LK_None; 8266 } 8267 8268 static void diagnoseObjCLiteralComparison(Sema &S, SourceLocation Loc, 8269 ExprResult &LHS, ExprResult &RHS, 8270 BinaryOperator::Opcode Opc){ 8271 Expr *Literal; 8272 Expr *Other; 8273 if (isObjCObjectLiteral(LHS)) { 8274 Literal = LHS.get(); 8275 Other = RHS.get(); 8276 } else { 8277 Literal = RHS.get(); 8278 Other = LHS.get(); 8279 } 8280 8281 // Don't warn on comparisons against nil. 8282 Other = Other->IgnoreParenCasts(); 8283 if (Other->isNullPointerConstant(S.getASTContext(), 8284 Expr::NPC_ValueDependentIsNotNull)) 8285 return; 8286 8287 // This should be kept in sync with warn_objc_literal_comparison. 8288 // LK_String should always be after the other literals, since it has its own 8289 // warning flag. 8290 Sema::ObjCLiteralKind LiteralKind = S.CheckLiteralKind(Literal); 8291 assert(LiteralKind != Sema::LK_Block); 8292 if (LiteralKind == Sema::LK_None) { 8293 llvm_unreachable("Unknown Objective-C object literal kind"); 8294 } 8295 8296 if (LiteralKind == Sema::LK_String) 8297 S.Diag(Loc, diag::warn_objc_string_literal_comparison) 8298 << Literal->getSourceRange(); 8299 else 8300 S.Diag(Loc, diag::warn_objc_literal_comparison) 8301 << LiteralKind << Literal->getSourceRange(); 8302 8303 if (BinaryOperator::isEqualityOp(Opc) && 8304 hasIsEqualMethod(S, LHS.get(), RHS.get())) { 8305 SourceLocation Start = LHS.get()->getLocStart(); 8306 SourceLocation End = S.PP.getLocForEndOfToken(RHS.get()->getLocEnd()); 8307 CharSourceRange OpRange = 8308 CharSourceRange::getCharRange(Loc, S.PP.getLocForEndOfToken(Loc)); 8309 8310 S.Diag(Loc, diag::note_objc_literal_comparison_isequal) 8311 << FixItHint::CreateInsertion(Start, Opc == BO_EQ ? "[" : "![") 8312 << FixItHint::CreateReplacement(OpRange, " isEqual:") 8313 << FixItHint::CreateInsertion(End, "]"); 8314 } 8315 } 8316 8317 static void diagnoseLogicalNotOnLHSofComparison(Sema &S, ExprResult &LHS, 8318 ExprResult &RHS, 8319 SourceLocation Loc, 8320 unsigned OpaqueOpc) { 8321 // This checking requires bools. 8322 if (!S.getLangOpts().Bool) return; 8323 8324 // Check that left hand side is !something. 8325 UnaryOperator *UO = dyn_cast<UnaryOperator>(LHS.get()->IgnoreImpCasts()); 8326 if (!UO || UO->getOpcode() != UO_LNot) return; 8327 8328 // Only check if the right hand side is non-bool arithmetic type. 8329 if (RHS.get()->getType()->isBooleanType()) return; 8330 8331 // Make sure that the something in !something is not bool. 8332 Expr *SubExpr = UO->getSubExpr()->IgnoreImpCasts(); 8333 if (SubExpr->getType()->isBooleanType()) return; 8334 8335 // Emit warning. 8336 S.Diag(UO->getOperatorLoc(), diag::warn_logical_not_on_lhs_of_comparison) 8337 << Loc; 8338 8339 // First note suggest !(x < y) 8340 SourceLocation FirstOpen = SubExpr->getLocStart(); 8341 SourceLocation FirstClose = RHS.get()->getLocEnd(); 8342 FirstClose = S.getPreprocessor().getLocForEndOfToken(FirstClose); 8343 if (FirstClose.isInvalid()) 8344 FirstOpen = SourceLocation(); 8345 S.Diag(UO->getOperatorLoc(), diag::note_logical_not_fix) 8346 << FixItHint::CreateInsertion(FirstOpen, "(") 8347 << FixItHint::CreateInsertion(FirstClose, ")"); 8348 8349 // Second note suggests (!x) < y 8350 SourceLocation SecondOpen = LHS.get()->getLocStart(); 8351 SourceLocation SecondClose = LHS.get()->getLocEnd(); 8352 SecondClose = S.getPreprocessor().getLocForEndOfToken(SecondClose); 8353 if (SecondClose.isInvalid()) 8354 SecondOpen = SourceLocation(); 8355 S.Diag(UO->getOperatorLoc(), diag::note_logical_not_silence_with_parens) 8356 << FixItHint::CreateInsertion(SecondOpen, "(") 8357 << FixItHint::CreateInsertion(SecondClose, ")"); 8358 } 8359 8360 // Get the decl for a simple expression: a reference to a variable, 8361 // an implicit C++ field reference, or an implicit ObjC ivar reference. 8362 static ValueDecl *getCompareDecl(Expr *E) { 8363 if (DeclRefExpr* DR = dyn_cast<DeclRefExpr>(E)) 8364 return DR->getDecl(); 8365 if (ObjCIvarRefExpr* Ivar = dyn_cast<ObjCIvarRefExpr>(E)) { 8366 if (Ivar->isFreeIvar()) 8367 return Ivar->getDecl(); 8368 } 8369 if (MemberExpr* Mem = dyn_cast<MemberExpr>(E)) { 8370 if (Mem->isImplicitAccess()) 8371 return Mem->getMemberDecl(); 8372 } 8373 return nullptr; 8374 } 8375 8376 // C99 6.5.8, C++ [expr.rel] 8377 QualType Sema::CheckCompareOperands(ExprResult &LHS, ExprResult &RHS, 8378 SourceLocation Loc, unsigned OpaqueOpc, 8379 bool IsRelational) { 8380 checkArithmeticNull(*this, LHS, RHS, Loc, /*isCompare=*/true); 8381 8382 BinaryOperatorKind Opc = (BinaryOperatorKind) OpaqueOpc; 8383 8384 // Handle vector comparisons separately. 8385 if (LHS.get()->getType()->isVectorType() || 8386 RHS.get()->getType()->isVectorType()) 8387 return CheckVectorCompareOperands(LHS, RHS, Loc, IsRelational); 8388 8389 QualType LHSType = LHS.get()->getType(); 8390 QualType RHSType = RHS.get()->getType(); 8391 8392 Expr *LHSStripped = LHS.get()->IgnoreParenImpCasts(); 8393 Expr *RHSStripped = RHS.get()->IgnoreParenImpCasts(); 8394 8395 checkEnumComparison(*this, Loc, LHS.get(), RHS.get()); 8396 diagnoseLogicalNotOnLHSofComparison(*this, LHS, RHS, Loc, OpaqueOpc); 8397 8398 if (!LHSType->hasFloatingRepresentation() && 8399 !(LHSType->isBlockPointerType() && IsRelational) && 8400 !LHS.get()->getLocStart().isMacroID() && 8401 !RHS.get()->getLocStart().isMacroID() && 8402 ActiveTemplateInstantiations.empty()) { 8403 // For non-floating point types, check for self-comparisons of the form 8404 // x == x, x != x, x < x, etc. These always evaluate to a constant, and 8405 // often indicate logic errors in the program. 8406 // 8407 // NOTE: Don't warn about comparison expressions resulting from macro 8408 // expansion. Also don't warn about comparisons which are only self 8409 // comparisons within a template specialization. The warnings should catch 8410 // obvious cases in the definition of the template anyways. The idea is to 8411 // warn when the typed comparison operator will always evaluate to the same 8412 // result. 8413 ValueDecl *DL = getCompareDecl(LHSStripped); 8414 ValueDecl *DR = getCompareDecl(RHSStripped); 8415 if (DL && DR && DL == DR && !IsWithinTemplateSpecialization(DL)) { 8416 DiagRuntimeBehavior(Loc, nullptr, PDiag(diag::warn_comparison_always) 8417 << 0 // self- 8418 << (Opc == BO_EQ 8419 || Opc == BO_LE 8420 || Opc == BO_GE)); 8421 } else if (DL && DR && LHSType->isArrayType() && RHSType->isArrayType() && 8422 !DL->getType()->isReferenceType() && 8423 !DR->getType()->isReferenceType()) { 8424 // what is it always going to eval to? 8425 char always_evals_to; 8426 switch(Opc) { 8427 case BO_EQ: // e.g. array1 == array2 8428 always_evals_to = 0; // false 8429 break; 8430 case BO_NE: // e.g. array1 != array2 8431 always_evals_to = 1; // true 8432 break; 8433 default: 8434 // best we can say is 'a constant' 8435 always_evals_to = 2; // e.g. array1 <= array2 8436 break; 8437 } 8438 DiagRuntimeBehavior(Loc, nullptr, PDiag(diag::warn_comparison_always) 8439 << 1 // array 8440 << always_evals_to); 8441 } 8442 8443 if (isa<CastExpr>(LHSStripped)) 8444 LHSStripped = LHSStripped->IgnoreParenCasts(); 8445 if (isa<CastExpr>(RHSStripped)) 8446 RHSStripped = RHSStripped->IgnoreParenCasts(); 8447 8448 // Warn about comparisons against a string constant (unless the other 8449 // operand is null), the user probably wants strcmp. 8450 Expr *literalString = nullptr; 8451 Expr *literalStringStripped = nullptr; 8452 if ((isa<StringLiteral>(LHSStripped) || isa<ObjCEncodeExpr>(LHSStripped)) && 8453 !RHSStripped->isNullPointerConstant(Context, 8454 Expr::NPC_ValueDependentIsNull)) { 8455 literalString = LHS.get(); 8456 literalStringStripped = LHSStripped; 8457 } else if ((isa<StringLiteral>(RHSStripped) || 8458 isa<ObjCEncodeExpr>(RHSStripped)) && 8459 !LHSStripped->isNullPointerConstant(Context, 8460 Expr::NPC_ValueDependentIsNull)) { 8461 literalString = RHS.get(); 8462 literalStringStripped = RHSStripped; 8463 } 8464 8465 if (literalString) { 8466 DiagRuntimeBehavior(Loc, nullptr, 8467 PDiag(diag::warn_stringcompare) 8468 << isa<ObjCEncodeExpr>(literalStringStripped) 8469 << literalString->getSourceRange()); 8470 } 8471 } 8472 8473 // C99 6.5.8p3 / C99 6.5.9p4 8474 UsualArithmeticConversions(LHS, RHS); 8475 if (LHS.isInvalid() || RHS.isInvalid()) 8476 return QualType(); 8477 8478 LHSType = LHS.get()->getType(); 8479 RHSType = RHS.get()->getType(); 8480 8481 // The result of comparisons is 'bool' in C++, 'int' in C. 8482 QualType ResultTy = Context.getLogicalOperationType(); 8483 8484 if (IsRelational) { 8485 if (LHSType->isRealType() && RHSType->isRealType()) 8486 return ResultTy; 8487 } else { 8488 // Check for comparisons of floating point operands using != and ==. 8489 if (LHSType->hasFloatingRepresentation()) 8490 CheckFloatComparison(Loc, LHS.get(), RHS.get()); 8491 8492 if (LHSType->isArithmeticType() && RHSType->isArithmeticType()) 8493 return ResultTy; 8494 } 8495 8496 const Expr::NullPointerConstantKind LHSNullKind = 8497 LHS.get()->isNullPointerConstant(Context, Expr::NPC_ValueDependentIsNull); 8498 const Expr::NullPointerConstantKind RHSNullKind = 8499 RHS.get()->isNullPointerConstant(Context, Expr::NPC_ValueDependentIsNull); 8500 bool LHSIsNull = LHSNullKind != Expr::NPCK_NotNull; 8501 bool RHSIsNull = RHSNullKind != Expr::NPCK_NotNull; 8502 8503 if (!IsRelational && LHSIsNull != RHSIsNull) { 8504 bool IsEquality = Opc == BO_EQ; 8505 if (RHSIsNull) 8506 DiagnoseAlwaysNonNullPointer(LHS.get(), RHSNullKind, IsEquality, 8507 RHS.get()->getSourceRange()); 8508 else 8509 DiagnoseAlwaysNonNullPointer(RHS.get(), LHSNullKind, IsEquality, 8510 LHS.get()->getSourceRange()); 8511 } 8512 8513 // All of the following pointer-related warnings are GCC extensions, except 8514 // when handling null pointer constants. 8515 if (LHSType->isPointerType() && RHSType->isPointerType()) { // C99 6.5.8p2 8516 QualType LCanPointeeTy = 8517 LHSType->castAs<PointerType>()->getPointeeType().getCanonicalType(); 8518 QualType RCanPointeeTy = 8519 RHSType->castAs<PointerType>()->getPointeeType().getCanonicalType(); 8520 8521 if (getLangOpts().CPlusPlus) { 8522 if (LCanPointeeTy == RCanPointeeTy) 8523 return ResultTy; 8524 if (!IsRelational && 8525 (LCanPointeeTy->isVoidType() || RCanPointeeTy->isVoidType())) { 8526 // Valid unless comparison between non-null pointer and function pointer 8527 // This is a gcc extension compatibility comparison. 8528 // In a SFINAE context, we treat this as a hard error to maintain 8529 // conformance with the C++ standard. 8530 if ((LCanPointeeTy->isFunctionType() || RCanPointeeTy->isFunctionType()) 8531 && !LHSIsNull && !RHSIsNull) { 8532 diagnoseFunctionPointerToVoidComparison( 8533 *this, Loc, LHS, RHS, /*isError*/ (bool)isSFINAEContext()); 8534 8535 if (isSFINAEContext()) 8536 return QualType(); 8537 8538 RHS = ImpCastExprToType(RHS.get(), LHSType, CK_BitCast); 8539 return ResultTy; 8540 } 8541 } 8542 8543 if (convertPointersToCompositeType(*this, Loc, LHS, RHS)) 8544 return QualType(); 8545 else 8546 return ResultTy; 8547 } 8548 // C99 6.5.9p2 and C99 6.5.8p2 8549 if (Context.typesAreCompatible(LCanPointeeTy.getUnqualifiedType(), 8550 RCanPointeeTy.getUnqualifiedType())) { 8551 // Valid unless a relational comparison of function pointers 8552 if (IsRelational && LCanPointeeTy->isFunctionType()) { 8553 Diag(Loc, diag::ext_typecheck_ordered_comparison_of_function_pointers) 8554 << LHSType << RHSType << LHS.get()->getSourceRange() 8555 << RHS.get()->getSourceRange(); 8556 } 8557 } else if (!IsRelational && 8558 (LCanPointeeTy->isVoidType() || RCanPointeeTy->isVoidType())) { 8559 // Valid unless comparison between non-null pointer and function pointer 8560 if ((LCanPointeeTy->isFunctionType() || RCanPointeeTy->isFunctionType()) 8561 && !LHSIsNull && !RHSIsNull) 8562 diagnoseFunctionPointerToVoidComparison(*this, Loc, LHS, RHS, 8563 /*isError*/false); 8564 } else { 8565 // Invalid 8566 diagnoseDistinctPointerComparison(*this, Loc, LHS, RHS, /*isError*/false); 8567 } 8568 if (LCanPointeeTy != RCanPointeeTy) { 8569 const PointerType *lhsPtr = LHSType->getAs<PointerType>(); 8570 if (!lhsPtr->isAddressSpaceOverlapping(*RHSType->getAs<PointerType>())) { 8571 Diag(Loc, 8572 diag::err_typecheck_op_on_nonoverlapping_address_space_pointers) 8573 << LHSType << RHSType << 0 /* comparison */ 8574 << LHS.get()->getSourceRange() << RHS.get()->getSourceRange(); 8575 } 8576 unsigned AddrSpaceL = LCanPointeeTy.getAddressSpace(); 8577 unsigned AddrSpaceR = RCanPointeeTy.getAddressSpace(); 8578 CastKind Kind = AddrSpaceL != AddrSpaceR ? CK_AddressSpaceConversion 8579 : CK_BitCast; 8580 if (LHSIsNull && !RHSIsNull) 8581 LHS = ImpCastExprToType(LHS.get(), RHSType, Kind); 8582 else 8583 RHS = ImpCastExprToType(RHS.get(), LHSType, Kind); 8584 } 8585 return ResultTy; 8586 } 8587 8588 if (getLangOpts().CPlusPlus) { 8589 // Comparison of nullptr_t with itself. 8590 if (LHSType->isNullPtrType() && RHSType->isNullPtrType()) 8591 return ResultTy; 8592 8593 // Comparison of pointers with null pointer constants and equality 8594 // comparisons of member pointers to null pointer constants. 8595 if (RHSIsNull && 8596 ((LHSType->isAnyPointerType() || LHSType->isNullPtrType()) || 8597 (!IsRelational && 8598 (LHSType->isMemberPointerType() || LHSType->isBlockPointerType())))) { 8599 RHS = ImpCastExprToType(RHS.get(), LHSType, 8600 LHSType->isMemberPointerType() 8601 ? CK_NullToMemberPointer 8602 : CK_NullToPointer); 8603 return ResultTy; 8604 } 8605 if (LHSIsNull && 8606 ((RHSType->isAnyPointerType() || RHSType->isNullPtrType()) || 8607 (!IsRelational && 8608 (RHSType->isMemberPointerType() || RHSType->isBlockPointerType())))) { 8609 LHS = ImpCastExprToType(LHS.get(), RHSType, 8610 RHSType->isMemberPointerType() 8611 ? CK_NullToMemberPointer 8612 : CK_NullToPointer); 8613 return ResultTy; 8614 } 8615 8616 // Comparison of member pointers. 8617 if (!IsRelational && 8618 LHSType->isMemberPointerType() && RHSType->isMemberPointerType()) { 8619 if (convertPointersToCompositeType(*this, Loc, LHS, RHS)) 8620 return QualType(); 8621 else 8622 return ResultTy; 8623 } 8624 8625 // Handle scoped enumeration types specifically, since they don't promote 8626 // to integers. 8627 if (LHS.get()->getType()->isEnumeralType() && 8628 Context.hasSameUnqualifiedType(LHS.get()->getType(), 8629 RHS.get()->getType())) 8630 return ResultTy; 8631 } 8632 8633 // Handle block pointer types. 8634 if (!IsRelational && LHSType->isBlockPointerType() && 8635 RHSType->isBlockPointerType()) { 8636 QualType lpointee = LHSType->castAs<BlockPointerType>()->getPointeeType(); 8637 QualType rpointee = RHSType->castAs<BlockPointerType>()->getPointeeType(); 8638 8639 if (!LHSIsNull && !RHSIsNull && 8640 !Context.typesAreCompatible(lpointee, rpointee)) { 8641 Diag(Loc, diag::err_typecheck_comparison_of_distinct_blocks) 8642 << LHSType << RHSType << LHS.get()->getSourceRange() 8643 << RHS.get()->getSourceRange(); 8644 } 8645 RHS = ImpCastExprToType(RHS.get(), LHSType, CK_BitCast); 8646 return ResultTy; 8647 } 8648 8649 // Allow block pointers to be compared with null pointer constants. 8650 if (!IsRelational 8651 && ((LHSType->isBlockPointerType() && RHSType->isPointerType()) 8652 || (LHSType->isPointerType() && RHSType->isBlockPointerType()))) { 8653 if (!LHSIsNull && !RHSIsNull) { 8654 if (!((RHSType->isPointerType() && RHSType->castAs<PointerType>() 8655 ->getPointeeType()->isVoidType()) 8656 || (LHSType->isPointerType() && LHSType->castAs<PointerType>() 8657 ->getPointeeType()->isVoidType()))) 8658 Diag(Loc, diag::err_typecheck_comparison_of_distinct_blocks) 8659 << LHSType << RHSType << LHS.get()->getSourceRange() 8660 << RHS.get()->getSourceRange(); 8661 } 8662 if (LHSIsNull && !RHSIsNull) 8663 LHS = ImpCastExprToType(LHS.get(), RHSType, 8664 RHSType->isPointerType() ? CK_BitCast 8665 : CK_AnyPointerToBlockPointerCast); 8666 else 8667 RHS = ImpCastExprToType(RHS.get(), LHSType, 8668 LHSType->isPointerType() ? CK_BitCast 8669 : CK_AnyPointerToBlockPointerCast); 8670 return ResultTy; 8671 } 8672 8673 if (LHSType->isObjCObjectPointerType() || 8674 RHSType->isObjCObjectPointerType()) { 8675 const PointerType *LPT = LHSType->getAs<PointerType>(); 8676 const PointerType *RPT = RHSType->getAs<PointerType>(); 8677 if (LPT || RPT) { 8678 bool LPtrToVoid = LPT ? LPT->getPointeeType()->isVoidType() : false; 8679 bool RPtrToVoid = RPT ? RPT->getPointeeType()->isVoidType() : false; 8680 8681 if (!LPtrToVoid && !RPtrToVoid && 8682 !Context.typesAreCompatible(LHSType, RHSType)) { 8683 diagnoseDistinctPointerComparison(*this, Loc, LHS, RHS, 8684 /*isError*/false); 8685 } 8686 if (LHSIsNull && !RHSIsNull) { 8687 Expr *E = LHS.get(); 8688 if (getLangOpts().ObjCAutoRefCount) 8689 CheckObjCARCConversion(SourceRange(), RHSType, E, CCK_ImplicitConversion); 8690 LHS = ImpCastExprToType(E, RHSType, 8691 RPT ? CK_BitCast :CK_CPointerToObjCPointerCast); 8692 } 8693 else { 8694 Expr *E = RHS.get(); 8695 if (getLangOpts().ObjCAutoRefCount) 8696 CheckObjCARCConversion(SourceRange(), LHSType, E, CCK_ImplicitConversion, false, 8697 Opc); 8698 RHS = ImpCastExprToType(E, LHSType, 8699 LPT ? CK_BitCast :CK_CPointerToObjCPointerCast); 8700 } 8701 return ResultTy; 8702 } 8703 if (LHSType->isObjCObjectPointerType() && 8704 RHSType->isObjCObjectPointerType()) { 8705 if (!Context.areComparableObjCPointerTypes(LHSType, RHSType)) 8706 diagnoseDistinctPointerComparison(*this, Loc, LHS, RHS, 8707 /*isError*/false); 8708 if (isObjCObjectLiteral(LHS) || isObjCObjectLiteral(RHS)) 8709 diagnoseObjCLiteralComparison(*this, Loc, LHS, RHS, Opc); 8710 8711 if (LHSIsNull && !RHSIsNull) 8712 LHS = ImpCastExprToType(LHS.get(), RHSType, CK_BitCast); 8713 else 8714 RHS = ImpCastExprToType(RHS.get(), LHSType, CK_BitCast); 8715 return ResultTy; 8716 } 8717 } 8718 if ((LHSType->isAnyPointerType() && RHSType->isIntegerType()) || 8719 (LHSType->isIntegerType() && RHSType->isAnyPointerType())) { 8720 unsigned DiagID = 0; 8721 bool isError = false; 8722 if (LangOpts.DebuggerSupport) { 8723 // Under a debugger, allow the comparison of pointers to integers, 8724 // since users tend to want to compare addresses. 8725 } else if ((LHSIsNull && LHSType->isIntegerType()) || 8726 (RHSIsNull && RHSType->isIntegerType())) { 8727 if (IsRelational && !getLangOpts().CPlusPlus) 8728 DiagID = diag::ext_typecheck_ordered_comparison_of_pointer_and_zero; 8729 } else if (IsRelational && !getLangOpts().CPlusPlus) 8730 DiagID = diag::ext_typecheck_ordered_comparison_of_pointer_integer; 8731 else if (getLangOpts().CPlusPlus) { 8732 DiagID = diag::err_typecheck_comparison_of_pointer_integer; 8733 isError = true; 8734 } else 8735 DiagID = diag::ext_typecheck_comparison_of_pointer_integer; 8736 8737 if (DiagID) { 8738 Diag(Loc, DiagID) 8739 << LHSType << RHSType << LHS.get()->getSourceRange() 8740 << RHS.get()->getSourceRange(); 8741 if (isError) 8742 return QualType(); 8743 } 8744 8745 if (LHSType->isIntegerType()) 8746 LHS = ImpCastExprToType(LHS.get(), RHSType, 8747 LHSIsNull ? CK_NullToPointer : CK_IntegralToPointer); 8748 else 8749 RHS = ImpCastExprToType(RHS.get(), LHSType, 8750 RHSIsNull ? CK_NullToPointer : CK_IntegralToPointer); 8751 return ResultTy; 8752 } 8753 8754 // Handle block pointers. 8755 if (!IsRelational && RHSIsNull 8756 && LHSType->isBlockPointerType() && RHSType->isIntegerType()) { 8757 RHS = ImpCastExprToType(RHS.get(), LHSType, CK_NullToPointer); 8758 return ResultTy; 8759 } 8760 if (!IsRelational && LHSIsNull 8761 && LHSType->isIntegerType() && RHSType->isBlockPointerType()) { 8762 LHS = ImpCastExprToType(LHS.get(), RHSType, CK_NullToPointer); 8763 return ResultTy; 8764 } 8765 8766 return InvalidOperands(Loc, LHS, RHS); 8767 } 8768 8769 8770 // Return a signed type that is of identical size and number of elements. 8771 // For floating point vectors, return an integer type of identical size 8772 // and number of elements. 8773 QualType Sema::GetSignedVectorType(QualType V) { 8774 const VectorType *VTy = V->getAs<VectorType>(); 8775 unsigned TypeSize = Context.getTypeSize(VTy->getElementType()); 8776 if (TypeSize == Context.getTypeSize(Context.CharTy)) 8777 return Context.getExtVectorType(Context.CharTy, VTy->getNumElements()); 8778 else if (TypeSize == Context.getTypeSize(Context.ShortTy)) 8779 return Context.getExtVectorType(Context.ShortTy, VTy->getNumElements()); 8780 else if (TypeSize == Context.getTypeSize(Context.IntTy)) 8781 return Context.getExtVectorType(Context.IntTy, VTy->getNumElements()); 8782 else if (TypeSize == Context.getTypeSize(Context.LongTy)) 8783 return Context.getExtVectorType(Context.LongTy, VTy->getNumElements()); 8784 assert(TypeSize == Context.getTypeSize(Context.LongLongTy) && 8785 "Unhandled vector element size in vector compare"); 8786 return Context.getExtVectorType(Context.LongLongTy, VTy->getNumElements()); 8787 } 8788 8789 /// CheckVectorCompareOperands - vector comparisons are a clang extension that 8790 /// operates on extended vector types. Instead of producing an IntTy result, 8791 /// like a scalar comparison, a vector comparison produces a vector of integer 8792 /// types. 8793 QualType Sema::CheckVectorCompareOperands(ExprResult &LHS, ExprResult &RHS, 8794 SourceLocation Loc, 8795 bool IsRelational) { 8796 // Check to make sure we're operating on vectors of the same type and width, 8797 // Allowing one side to be a scalar of element type. 8798 QualType vType = CheckVectorOperands(LHS, RHS, Loc, /*isCompAssign*/false); 8799 if (vType.isNull()) 8800 return vType; 8801 8802 QualType LHSType = LHS.get()->getType(); 8803 8804 // If AltiVec, the comparison results in a numeric type, i.e. 8805 // bool for C++, int for C 8806 if (vType->getAs<VectorType>()->getVectorKind() == VectorType::AltiVecVector) 8807 return Context.getLogicalOperationType(); 8808 8809 // For non-floating point types, check for self-comparisons of the form 8810 // x == x, x != x, x < x, etc. These always evaluate to a constant, and 8811 // often indicate logic errors in the program. 8812 if (!LHSType->hasFloatingRepresentation() && 8813 ActiveTemplateInstantiations.empty()) { 8814 if (DeclRefExpr* DRL 8815 = dyn_cast<DeclRefExpr>(LHS.get()->IgnoreParenImpCasts())) 8816 if (DeclRefExpr* DRR 8817 = dyn_cast<DeclRefExpr>(RHS.get()->IgnoreParenImpCasts())) 8818 if (DRL->getDecl() == DRR->getDecl()) 8819 DiagRuntimeBehavior(Loc, nullptr, 8820 PDiag(diag::warn_comparison_always) 8821 << 0 // self- 8822 << 2 // "a constant" 8823 ); 8824 } 8825 8826 // Check for comparisons of floating point operands using != and ==. 8827 if (!IsRelational && LHSType->hasFloatingRepresentation()) { 8828 assert (RHS.get()->getType()->hasFloatingRepresentation()); 8829 CheckFloatComparison(Loc, LHS.get(), RHS.get()); 8830 } 8831 8832 // Return a signed type for the vector. 8833 return GetSignedVectorType(LHSType); 8834 } 8835 8836 QualType Sema::CheckVectorLogicalOperands(ExprResult &LHS, ExprResult &RHS, 8837 SourceLocation Loc) { 8838 // Ensure that either both operands are of the same vector type, or 8839 // one operand is of a vector type and the other is of its element type. 8840 QualType vType = CheckVectorOperands(LHS, RHS, Loc, false); 8841 if (vType.isNull()) 8842 return InvalidOperands(Loc, LHS, RHS); 8843 if (getLangOpts().OpenCL && getLangOpts().OpenCLVersion < 120 && 8844 vType->hasFloatingRepresentation()) 8845 return InvalidOperands(Loc, LHS, RHS); 8846 8847 return GetSignedVectorType(LHS.get()->getType()); 8848 } 8849 8850 inline QualType Sema::CheckBitwiseOperands( 8851 ExprResult &LHS, ExprResult &RHS, SourceLocation Loc, bool IsCompAssign) { 8852 checkArithmeticNull(*this, LHS, RHS, Loc, /*isCompare=*/false); 8853 8854 if (LHS.get()->getType()->isVectorType() || 8855 RHS.get()->getType()->isVectorType()) { 8856 if (LHS.get()->getType()->hasIntegerRepresentation() && 8857 RHS.get()->getType()->hasIntegerRepresentation()) 8858 return CheckVectorOperands(LHS, RHS, Loc, IsCompAssign); 8859 8860 return InvalidOperands(Loc, LHS, RHS); 8861 } 8862 8863 ExprResult LHSResult = LHS, RHSResult = RHS; 8864 QualType compType = UsualArithmeticConversions(LHSResult, RHSResult, 8865 IsCompAssign); 8866 if (LHSResult.isInvalid() || RHSResult.isInvalid()) 8867 return QualType(); 8868 LHS = LHSResult.get(); 8869 RHS = RHSResult.get(); 8870 8871 if (!compType.isNull() && compType->isIntegralOrUnscopedEnumerationType()) 8872 return compType; 8873 return InvalidOperands(Loc, LHS, RHS); 8874 } 8875 8876 inline QualType Sema::CheckLogicalOperands( // C99 6.5.[13,14] 8877 ExprResult &LHS, ExprResult &RHS, SourceLocation Loc, unsigned Opc) { 8878 8879 // Check vector operands differently. 8880 if (LHS.get()->getType()->isVectorType() || RHS.get()->getType()->isVectorType()) 8881 return CheckVectorLogicalOperands(LHS, RHS, Loc); 8882 8883 // Diagnose cases where the user write a logical and/or but probably meant a 8884 // bitwise one. We do this when the LHS is a non-bool integer and the RHS 8885 // is a constant. 8886 if (LHS.get()->getType()->isIntegerType() && 8887 !LHS.get()->getType()->isBooleanType() && 8888 RHS.get()->getType()->isIntegerType() && !RHS.get()->isValueDependent() && 8889 // Don't warn in macros or template instantiations. 8890 !Loc.isMacroID() && ActiveTemplateInstantiations.empty()) { 8891 // If the RHS can be constant folded, and if it constant folds to something 8892 // that isn't 0 or 1 (which indicate a potential logical operation that 8893 // happened to fold to true/false) then warn. 8894 // Parens on the RHS are ignored. 8895 llvm::APSInt Result; 8896 if (RHS.get()->EvaluateAsInt(Result, Context)) 8897 if ((getLangOpts().Bool && !RHS.get()->getType()->isBooleanType() && 8898 !RHS.get()->getExprLoc().isMacroID()) || 8899 (Result != 0 && Result != 1)) { 8900 Diag(Loc, diag::warn_logical_instead_of_bitwise) 8901 << RHS.get()->getSourceRange() 8902 << (Opc == BO_LAnd ? "&&" : "||"); 8903 // Suggest replacing the logical operator with the bitwise version 8904 Diag(Loc, diag::note_logical_instead_of_bitwise_change_operator) 8905 << (Opc == BO_LAnd ? "&" : "|") 8906 << FixItHint::CreateReplacement(SourceRange( 8907 Loc, Lexer::getLocForEndOfToken(Loc, 0, getSourceManager(), 8908 getLangOpts())), 8909 Opc == BO_LAnd ? "&" : "|"); 8910 if (Opc == BO_LAnd) 8911 // Suggest replacing "Foo() && kNonZero" with "Foo()" 8912 Diag(Loc, diag::note_logical_instead_of_bitwise_remove_constant) 8913 << FixItHint::CreateRemoval( 8914 SourceRange( 8915 Lexer::getLocForEndOfToken(LHS.get()->getLocEnd(), 8916 0, getSourceManager(), 8917 getLangOpts()), 8918 RHS.get()->getLocEnd())); 8919 } 8920 } 8921 8922 if (!Context.getLangOpts().CPlusPlus) { 8923 // OpenCL v1.1 s6.3.g: The logical operators and (&&), or (||) do 8924 // not operate on the built-in scalar and vector float types. 8925 if (Context.getLangOpts().OpenCL && 8926 Context.getLangOpts().OpenCLVersion < 120) { 8927 if (LHS.get()->getType()->isFloatingType() || 8928 RHS.get()->getType()->isFloatingType()) 8929 return InvalidOperands(Loc, LHS, RHS); 8930 } 8931 8932 LHS = UsualUnaryConversions(LHS.get()); 8933 if (LHS.isInvalid()) 8934 return QualType(); 8935 8936 RHS = UsualUnaryConversions(RHS.get()); 8937 if (RHS.isInvalid()) 8938 return QualType(); 8939 8940 if (!LHS.get()->getType()->isScalarType() || 8941 !RHS.get()->getType()->isScalarType()) 8942 return InvalidOperands(Loc, LHS, RHS); 8943 8944 return Context.IntTy; 8945 } 8946 8947 // The following is safe because we only use this method for 8948 // non-overloadable operands. 8949 8950 // C++ [expr.log.and]p1 8951 // C++ [expr.log.or]p1 8952 // The operands are both contextually converted to type bool. 8953 ExprResult LHSRes = PerformContextuallyConvertToBool(LHS.get()); 8954 if (LHSRes.isInvalid()) 8955 return InvalidOperands(Loc, LHS, RHS); 8956 LHS = LHSRes; 8957 8958 ExprResult RHSRes = PerformContextuallyConvertToBool(RHS.get()); 8959 if (RHSRes.isInvalid()) 8960 return InvalidOperands(Loc, LHS, RHS); 8961 RHS = RHSRes; 8962 8963 // C++ [expr.log.and]p2 8964 // C++ [expr.log.or]p2 8965 // The result is a bool. 8966 return Context.BoolTy; 8967 } 8968 8969 static bool IsReadonlyMessage(Expr *E, Sema &S) { 8970 const MemberExpr *ME = dyn_cast<MemberExpr>(E); 8971 if (!ME) return false; 8972 if (!isa<FieldDecl>(ME->getMemberDecl())) return false; 8973 ObjCMessageExpr *Base = 8974 dyn_cast<ObjCMessageExpr>(ME->getBase()->IgnoreParenImpCasts()); 8975 if (!Base) return false; 8976 return Base->getMethodDecl() != nullptr; 8977 } 8978 8979 /// Is the given expression (which must be 'const') a reference to a 8980 /// variable which was originally non-const, but which has become 8981 /// 'const' due to being captured within a block? 8982 enum NonConstCaptureKind { NCCK_None, NCCK_Block, NCCK_Lambda }; 8983 static NonConstCaptureKind isReferenceToNonConstCapture(Sema &S, Expr *E) { 8984 assert(E->isLValue() && E->getType().isConstQualified()); 8985 E = E->IgnoreParens(); 8986 8987 // Must be a reference to a declaration from an enclosing scope. 8988 DeclRefExpr *DRE = dyn_cast<DeclRefExpr>(E); 8989 if (!DRE) return NCCK_None; 8990 if (!DRE->refersToEnclosingVariableOrCapture()) return NCCK_None; 8991 8992 // The declaration must be a variable which is not declared 'const'. 8993 VarDecl *var = dyn_cast<VarDecl>(DRE->getDecl()); 8994 if (!var) return NCCK_None; 8995 if (var->getType().isConstQualified()) return NCCK_None; 8996 assert(var->hasLocalStorage() && "capture added 'const' to non-local?"); 8997 8998 // Decide whether the first capture was for a block or a lambda. 8999 DeclContext *DC = S.CurContext, *Prev = nullptr; 9000 while (DC != var->getDeclContext()) { 9001 Prev = DC; 9002 DC = DC->getParent(); 9003 } 9004 // Unless we have an init-capture, we've gone one step too far. 9005 if (!var->isInitCapture()) 9006 DC = Prev; 9007 return (isa<BlockDecl>(DC) ? NCCK_Block : NCCK_Lambda); 9008 } 9009 9010 static bool IsTypeModifiable(QualType Ty, bool IsDereference) { 9011 Ty = Ty.getNonReferenceType(); 9012 if (IsDereference && Ty->isPointerType()) 9013 Ty = Ty->getPointeeType(); 9014 return !Ty.isConstQualified(); 9015 } 9016 9017 /// Emit the "read-only variable not assignable" error and print notes to give 9018 /// more information about why the variable is not assignable, such as pointing 9019 /// to the declaration of a const variable, showing that a method is const, or 9020 /// that the function is returning a const reference. 9021 static void DiagnoseConstAssignment(Sema &S, const Expr *E, 9022 SourceLocation Loc) { 9023 // Update err_typecheck_assign_const and note_typecheck_assign_const 9024 // when this enum is changed. 9025 enum { 9026 ConstFunction, 9027 ConstVariable, 9028 ConstMember, 9029 ConstMethod, 9030 ConstUnknown, // Keep as last element 9031 }; 9032 9033 SourceRange ExprRange = E->getSourceRange(); 9034 9035 // Only emit one error on the first const found. All other consts will emit 9036 // a note to the error. 9037 bool DiagnosticEmitted = false; 9038 9039 // Track if the current expression is the result of a derefence, and if the 9040 // next checked expression is the result of a derefence. 9041 bool IsDereference = false; 9042 bool NextIsDereference = false; 9043 9044 // Loop to process MemberExpr chains. 9045 while (true) { 9046 IsDereference = NextIsDereference; 9047 NextIsDereference = false; 9048 9049 E = E->IgnoreParenImpCasts(); 9050 if (const MemberExpr *ME = dyn_cast<MemberExpr>(E)) { 9051 NextIsDereference = ME->isArrow(); 9052 const ValueDecl *VD = ME->getMemberDecl(); 9053 if (const FieldDecl *Field = dyn_cast<FieldDecl>(VD)) { 9054 // Mutable fields can be modified even if the class is const. 9055 if (Field->isMutable()) { 9056 assert(DiagnosticEmitted && "Expected diagnostic not emitted."); 9057 break; 9058 } 9059 9060 if (!IsTypeModifiable(Field->getType(), IsDereference)) { 9061 if (!DiagnosticEmitted) { 9062 S.Diag(Loc, diag::err_typecheck_assign_const) 9063 << ExprRange << ConstMember << false /*static*/ << Field 9064 << Field->getType(); 9065 DiagnosticEmitted = true; 9066 } 9067 S.Diag(VD->getLocation(), diag::note_typecheck_assign_const) 9068 << ConstMember << false /*static*/ << Field << Field->getType() 9069 << Field->getSourceRange(); 9070 } 9071 E = ME->getBase(); 9072 continue; 9073 } else if (const VarDecl *VDecl = dyn_cast<VarDecl>(VD)) { 9074 if (VDecl->getType().isConstQualified()) { 9075 if (!DiagnosticEmitted) { 9076 S.Diag(Loc, diag::err_typecheck_assign_const) 9077 << ExprRange << ConstMember << true /*static*/ << VDecl 9078 << VDecl->getType(); 9079 DiagnosticEmitted = true; 9080 } 9081 S.Diag(VD->getLocation(), diag::note_typecheck_assign_const) 9082 << ConstMember << true /*static*/ << VDecl << VDecl->getType() 9083 << VDecl->getSourceRange(); 9084 } 9085 // Static fields do not inherit constness from parents. 9086 break; 9087 } 9088 break; 9089 } // End MemberExpr 9090 break; 9091 } 9092 9093 if (const CallExpr *CE = dyn_cast<CallExpr>(E)) { 9094 // Function calls 9095 const FunctionDecl *FD = CE->getDirectCallee(); 9096 if (!IsTypeModifiable(FD->getReturnType(), IsDereference)) { 9097 if (!DiagnosticEmitted) { 9098 S.Diag(Loc, diag::err_typecheck_assign_const) << ExprRange 9099 << ConstFunction << FD; 9100 DiagnosticEmitted = true; 9101 } 9102 S.Diag(FD->getReturnTypeSourceRange().getBegin(), 9103 diag::note_typecheck_assign_const) 9104 << ConstFunction << FD << FD->getReturnType() 9105 << FD->getReturnTypeSourceRange(); 9106 } 9107 } else if (const DeclRefExpr *DRE = dyn_cast<DeclRefExpr>(E)) { 9108 // Point to variable declaration. 9109 if (const ValueDecl *VD = DRE->getDecl()) { 9110 if (!IsTypeModifiable(VD->getType(), IsDereference)) { 9111 if (!DiagnosticEmitted) { 9112 S.Diag(Loc, diag::err_typecheck_assign_const) 9113 << ExprRange << ConstVariable << VD << VD->getType(); 9114 DiagnosticEmitted = true; 9115 } 9116 S.Diag(VD->getLocation(), diag::note_typecheck_assign_const) 9117 << ConstVariable << VD << VD->getType() << VD->getSourceRange(); 9118 } 9119 } 9120 } else if (isa<CXXThisExpr>(E)) { 9121 if (const DeclContext *DC = S.getFunctionLevelDeclContext()) { 9122 if (const CXXMethodDecl *MD = dyn_cast<CXXMethodDecl>(DC)) { 9123 if (MD->isConst()) { 9124 if (!DiagnosticEmitted) { 9125 S.Diag(Loc, diag::err_typecheck_assign_const) << ExprRange 9126 << ConstMethod << MD; 9127 DiagnosticEmitted = true; 9128 } 9129 S.Diag(MD->getLocation(), diag::note_typecheck_assign_const) 9130 << ConstMethod << MD << MD->getSourceRange(); 9131 } 9132 } 9133 } 9134 } 9135 9136 if (DiagnosticEmitted) 9137 return; 9138 9139 // Can't determine a more specific message, so display the generic error. 9140 S.Diag(Loc, diag::err_typecheck_assign_const) << ExprRange << ConstUnknown; 9141 } 9142 9143 /// CheckForModifiableLvalue - Verify that E is a modifiable lvalue. If not, 9144 /// emit an error and return true. If so, return false. 9145 static bool CheckForModifiableLvalue(Expr *E, SourceLocation Loc, Sema &S) { 9146 assert(!E->hasPlaceholderType(BuiltinType::PseudoObject)); 9147 SourceLocation OrigLoc = Loc; 9148 Expr::isModifiableLvalueResult IsLV = E->isModifiableLvalue(S.Context, 9149 &Loc); 9150 if (IsLV == Expr::MLV_ClassTemporary && IsReadonlyMessage(E, S)) 9151 IsLV = Expr::MLV_InvalidMessageExpression; 9152 if (IsLV == Expr::MLV_Valid) 9153 return false; 9154 9155 unsigned DiagID = 0; 9156 bool NeedType = false; 9157 switch (IsLV) { // C99 6.5.16p2 9158 case Expr::MLV_ConstQualified: 9159 // Use a specialized diagnostic when we're assigning to an object 9160 // from an enclosing function or block. 9161 if (NonConstCaptureKind NCCK = isReferenceToNonConstCapture(S, E)) { 9162 if (NCCK == NCCK_Block) 9163 DiagID = diag::err_block_decl_ref_not_modifiable_lvalue; 9164 else 9165 DiagID = diag::err_lambda_decl_ref_not_modifiable_lvalue; 9166 break; 9167 } 9168 9169 // In ARC, use some specialized diagnostics for occasions where we 9170 // infer 'const'. These are always pseudo-strong variables. 9171 if (S.getLangOpts().ObjCAutoRefCount) { 9172 DeclRefExpr *declRef = dyn_cast<DeclRefExpr>(E->IgnoreParenCasts()); 9173 if (declRef && isa<VarDecl>(declRef->getDecl())) { 9174 VarDecl *var = cast<VarDecl>(declRef->getDecl()); 9175 9176 // Use the normal diagnostic if it's pseudo-__strong but the 9177 // user actually wrote 'const'. 9178 if (var->isARCPseudoStrong() && 9179 (!var->getTypeSourceInfo() || 9180 !var->getTypeSourceInfo()->getType().isConstQualified())) { 9181 // There are two pseudo-strong cases: 9182 // - self 9183 ObjCMethodDecl *method = S.getCurMethodDecl(); 9184 if (method && var == method->getSelfDecl()) 9185 DiagID = method->isClassMethod() 9186 ? diag::err_typecheck_arc_assign_self_class_method 9187 : diag::err_typecheck_arc_assign_self; 9188 9189 // - fast enumeration variables 9190 else 9191 DiagID = diag::err_typecheck_arr_assign_enumeration; 9192 9193 SourceRange Assign; 9194 if (Loc != OrigLoc) 9195 Assign = SourceRange(OrigLoc, OrigLoc); 9196 S.Diag(Loc, DiagID) << E->getSourceRange() << Assign; 9197 // We need to preserve the AST regardless, so migration tool 9198 // can do its job. 9199 return false; 9200 } 9201 } 9202 } 9203 9204 // If none of the special cases above are triggered, then this is a 9205 // simple const assignment. 9206 if (DiagID == 0) { 9207 DiagnoseConstAssignment(S, E, Loc); 9208 return true; 9209 } 9210 9211 break; 9212 case Expr::MLV_ConstAddrSpace: 9213 DiagnoseConstAssignment(S, E, Loc); 9214 return true; 9215 case Expr::MLV_ArrayType: 9216 case Expr::MLV_ArrayTemporary: 9217 DiagID = diag::err_typecheck_array_not_modifiable_lvalue; 9218 NeedType = true; 9219 break; 9220 case Expr::MLV_NotObjectType: 9221 DiagID = diag::err_typecheck_non_object_not_modifiable_lvalue; 9222 NeedType = true; 9223 break; 9224 case Expr::MLV_LValueCast: 9225 DiagID = diag::err_typecheck_lvalue_casts_not_supported; 9226 break; 9227 case Expr::MLV_Valid: 9228 llvm_unreachable("did not take early return for MLV_Valid"); 9229 case Expr::MLV_InvalidExpression: 9230 case Expr::MLV_MemberFunction: 9231 case Expr::MLV_ClassTemporary: 9232 DiagID = diag::err_typecheck_expression_not_modifiable_lvalue; 9233 break; 9234 case Expr::MLV_IncompleteType: 9235 case Expr::MLV_IncompleteVoidType: 9236 return S.RequireCompleteType(Loc, E->getType(), 9237 diag::err_typecheck_incomplete_type_not_modifiable_lvalue, E); 9238 case Expr::MLV_DuplicateVectorComponents: 9239 DiagID = diag::err_typecheck_duplicate_vector_components_not_mlvalue; 9240 break; 9241 case Expr::MLV_NoSetterProperty: 9242 llvm_unreachable("readonly properties should be processed differently"); 9243 case Expr::MLV_InvalidMessageExpression: 9244 DiagID = diag::error_readonly_message_assignment; 9245 break; 9246 case Expr::MLV_SubObjCPropertySetting: 9247 DiagID = diag::error_no_subobject_property_setting; 9248 break; 9249 } 9250 9251 SourceRange Assign; 9252 if (Loc != OrigLoc) 9253 Assign = SourceRange(OrigLoc, OrigLoc); 9254 if (NeedType) 9255 S.Diag(Loc, DiagID) << E->getType() << E->getSourceRange() << Assign; 9256 else 9257 S.Diag(Loc, DiagID) << E->getSourceRange() << Assign; 9258 return true; 9259 } 9260 9261 static void CheckIdentityFieldAssignment(Expr *LHSExpr, Expr *RHSExpr, 9262 SourceLocation Loc, 9263 Sema &Sema) { 9264 // C / C++ fields 9265 MemberExpr *ML = dyn_cast<MemberExpr>(LHSExpr); 9266 MemberExpr *MR = dyn_cast<MemberExpr>(RHSExpr); 9267 if (ML && MR && ML->getMemberDecl() == MR->getMemberDecl()) { 9268 if (isa<CXXThisExpr>(ML->getBase()) && isa<CXXThisExpr>(MR->getBase())) 9269 Sema.Diag(Loc, diag::warn_identity_field_assign) << 0; 9270 } 9271 9272 // Objective-C instance variables 9273 ObjCIvarRefExpr *OL = dyn_cast<ObjCIvarRefExpr>(LHSExpr); 9274 ObjCIvarRefExpr *OR = dyn_cast<ObjCIvarRefExpr>(RHSExpr); 9275 if (OL && OR && OL->getDecl() == OR->getDecl()) { 9276 DeclRefExpr *RL = dyn_cast<DeclRefExpr>(OL->getBase()->IgnoreImpCasts()); 9277 DeclRefExpr *RR = dyn_cast<DeclRefExpr>(OR->getBase()->IgnoreImpCasts()); 9278 if (RL && RR && RL->getDecl() == RR->getDecl()) 9279 Sema.Diag(Loc, diag::warn_identity_field_assign) << 1; 9280 } 9281 } 9282 9283 // C99 6.5.16.1 9284 QualType Sema::CheckAssignmentOperands(Expr *LHSExpr, ExprResult &RHS, 9285 SourceLocation Loc, 9286 QualType CompoundType) { 9287 assert(!LHSExpr->hasPlaceholderType(BuiltinType::PseudoObject)); 9288 9289 // Verify that LHS is a modifiable lvalue, and emit error if not. 9290 if (CheckForModifiableLvalue(LHSExpr, Loc, *this)) 9291 return QualType(); 9292 9293 QualType LHSType = LHSExpr->getType(); 9294 QualType RHSType = CompoundType.isNull() ? RHS.get()->getType() : 9295 CompoundType; 9296 AssignConvertType ConvTy; 9297 if (CompoundType.isNull()) { 9298 Expr *RHSCheck = RHS.get(); 9299 9300 CheckIdentityFieldAssignment(LHSExpr, RHSCheck, Loc, *this); 9301 9302 QualType LHSTy(LHSType); 9303 ConvTy = CheckSingleAssignmentConstraints(LHSTy, RHS); 9304 if (RHS.isInvalid()) 9305 return QualType(); 9306 // Special case of NSObject attributes on c-style pointer types. 9307 if (ConvTy == IncompatiblePointer && 9308 ((Context.isObjCNSObjectType(LHSType) && 9309 RHSType->isObjCObjectPointerType()) || 9310 (Context.isObjCNSObjectType(RHSType) && 9311 LHSType->isObjCObjectPointerType()))) 9312 ConvTy = Compatible; 9313 9314 if (ConvTy == Compatible && 9315 LHSType->isObjCObjectType()) 9316 Diag(Loc, diag::err_objc_object_assignment) 9317 << LHSType; 9318 9319 // If the RHS is a unary plus or minus, check to see if they = and + are 9320 // right next to each other. If so, the user may have typo'd "x =+ 4" 9321 // instead of "x += 4". 9322 if (ImplicitCastExpr *ICE = dyn_cast<ImplicitCastExpr>(RHSCheck)) 9323 RHSCheck = ICE->getSubExpr(); 9324 if (UnaryOperator *UO = dyn_cast<UnaryOperator>(RHSCheck)) { 9325 if ((UO->getOpcode() == UO_Plus || 9326 UO->getOpcode() == UO_Minus) && 9327 Loc.isFileID() && UO->getOperatorLoc().isFileID() && 9328 // Only if the two operators are exactly adjacent. 9329 Loc.getLocWithOffset(1) == UO->getOperatorLoc() && 9330 // And there is a space or other character before the subexpr of the 9331 // unary +/-. We don't want to warn on "x=-1". 9332 Loc.getLocWithOffset(2) != UO->getSubExpr()->getLocStart() && 9333 UO->getSubExpr()->getLocStart().isFileID()) { 9334 Diag(Loc, diag::warn_not_compound_assign) 9335 << (UO->getOpcode() == UO_Plus ? "+" : "-") 9336 << SourceRange(UO->getOperatorLoc(), UO->getOperatorLoc()); 9337 } 9338 } 9339 9340 if (ConvTy == Compatible) { 9341 if (LHSType.getObjCLifetime() == Qualifiers::OCL_Strong) { 9342 // Warn about retain cycles where a block captures the LHS, but 9343 // not if the LHS is a simple variable into which the block is 9344 // being stored...unless that variable can be captured by reference! 9345 const Expr *InnerLHS = LHSExpr->IgnoreParenCasts(); 9346 const DeclRefExpr *DRE = dyn_cast<DeclRefExpr>(InnerLHS); 9347 if (!DRE || DRE->getDecl()->hasAttr<BlocksAttr>()) 9348 checkRetainCycles(LHSExpr, RHS.get()); 9349 9350 // It is safe to assign a weak reference into a strong variable. 9351 // Although this code can still have problems: 9352 // id x = self.weakProp; 9353 // id y = self.weakProp; 9354 // we do not warn to warn spuriously when 'x' and 'y' are on separate 9355 // paths through the function. This should be revisited if 9356 // -Wrepeated-use-of-weak is made flow-sensitive. 9357 if (!Diags.isIgnored(diag::warn_arc_repeated_use_of_weak, 9358 RHS.get()->getLocStart())) 9359 getCurFunction()->markSafeWeakUse(RHS.get()); 9360 9361 } else if (getLangOpts().ObjCAutoRefCount) { 9362 checkUnsafeExprAssigns(Loc, LHSExpr, RHS.get()); 9363 } 9364 } 9365 } else { 9366 // Compound assignment "x += y" 9367 ConvTy = CheckAssignmentConstraints(Loc, LHSType, RHSType); 9368 } 9369 9370 if (DiagnoseAssignmentResult(ConvTy, Loc, LHSType, RHSType, 9371 RHS.get(), AA_Assigning)) 9372 return QualType(); 9373 9374 CheckForNullPointerDereference(*this, LHSExpr); 9375 9376 // C99 6.5.16p3: The type of an assignment expression is the type of the 9377 // left operand unless the left operand has qualified type, in which case 9378 // it is the unqualified version of the type of the left operand. 9379 // C99 6.5.16.1p2: In simple assignment, the value of the right operand 9380 // is converted to the type of the assignment expression (above). 9381 // C++ 5.17p1: the type of the assignment expression is that of its left 9382 // operand. 9383 return (getLangOpts().CPlusPlus 9384 ? LHSType : LHSType.getUnqualifiedType()); 9385 } 9386 9387 // C99 6.5.17 9388 static QualType CheckCommaOperands(Sema &S, ExprResult &LHS, ExprResult &RHS, 9389 SourceLocation Loc) { 9390 LHS = S.CheckPlaceholderExpr(LHS.get()); 9391 RHS = S.CheckPlaceholderExpr(RHS.get()); 9392 if (LHS.isInvalid() || RHS.isInvalid()) 9393 return QualType(); 9394 9395 // C's comma performs lvalue conversion (C99 6.3.2.1) on both its 9396 // operands, but not unary promotions. 9397 // C++'s comma does not do any conversions at all (C++ [expr.comma]p1). 9398 9399 // So we treat the LHS as a ignored value, and in C++ we allow the 9400 // containing site to determine what should be done with the RHS. 9401 LHS = S.IgnoredValueConversions(LHS.get()); 9402 if (LHS.isInvalid()) 9403 return QualType(); 9404 9405 S.DiagnoseUnusedExprResult(LHS.get()); 9406 9407 if (!S.getLangOpts().CPlusPlus) { 9408 RHS = S.DefaultFunctionArrayLvalueConversion(RHS.get()); 9409 if (RHS.isInvalid()) 9410 return QualType(); 9411 if (!RHS.get()->getType()->isVoidType()) 9412 S.RequireCompleteType(Loc, RHS.get()->getType(), 9413 diag::err_incomplete_type); 9414 } 9415 9416 return RHS.get()->getType(); 9417 } 9418 9419 /// CheckIncrementDecrementOperand - unlike most "Check" methods, this routine 9420 /// doesn't need to call UsualUnaryConversions or UsualArithmeticConversions. 9421 static QualType CheckIncrementDecrementOperand(Sema &S, Expr *Op, 9422 ExprValueKind &VK, 9423 ExprObjectKind &OK, 9424 SourceLocation OpLoc, 9425 bool IsInc, bool IsPrefix) { 9426 if (Op->isTypeDependent()) 9427 return S.Context.DependentTy; 9428 9429 QualType ResType = Op->getType(); 9430 // Atomic types can be used for increment / decrement where the non-atomic 9431 // versions can, so ignore the _Atomic() specifier for the purpose of 9432 // checking. 9433 if (const AtomicType *ResAtomicType = ResType->getAs<AtomicType>()) 9434 ResType = ResAtomicType->getValueType(); 9435 9436 assert(!ResType.isNull() && "no type for increment/decrement expression"); 9437 9438 if (S.getLangOpts().CPlusPlus && ResType->isBooleanType()) { 9439 // Decrement of bool is not allowed. 9440 if (!IsInc) { 9441 S.Diag(OpLoc, diag::err_decrement_bool) << Op->getSourceRange(); 9442 return QualType(); 9443 } 9444 // Increment of bool sets it to true, but is deprecated. 9445 S.Diag(OpLoc, diag::warn_increment_bool) << Op->getSourceRange(); 9446 } else if (S.getLangOpts().CPlusPlus && ResType->isEnumeralType()) { 9447 // Error on enum increments and decrements in C++ mode 9448 S.Diag(OpLoc, diag::err_increment_decrement_enum) << IsInc << ResType; 9449 return QualType(); 9450 } else if (ResType->isRealType()) { 9451 // OK! 9452 } else if (ResType->isPointerType()) { 9453 // C99 6.5.2.4p2, 6.5.6p2 9454 if (!checkArithmeticOpPointerOperand(S, OpLoc, Op)) 9455 return QualType(); 9456 } else if (ResType->isObjCObjectPointerType()) { 9457 // On modern runtimes, ObjC pointer arithmetic is forbidden. 9458 // Otherwise, we just need a complete type. 9459 if (checkArithmeticIncompletePointerType(S, OpLoc, Op) || 9460 checkArithmeticOnObjCPointer(S, OpLoc, Op)) 9461 return QualType(); 9462 } else if (ResType->isAnyComplexType()) { 9463 // C99 does not support ++/-- on complex types, we allow as an extension. 9464 S.Diag(OpLoc, diag::ext_integer_increment_complex) 9465 << ResType << Op->getSourceRange(); 9466 } else if (ResType->isPlaceholderType()) { 9467 ExprResult PR = S.CheckPlaceholderExpr(Op); 9468 if (PR.isInvalid()) return QualType(); 9469 return CheckIncrementDecrementOperand(S, PR.get(), VK, OK, OpLoc, 9470 IsInc, IsPrefix); 9471 } else if (S.getLangOpts().AltiVec && ResType->isVectorType()) { 9472 // OK! ( C/C++ Language Extensions for CBEA(Version 2.6) 10.3 ) 9473 } else if(S.getLangOpts().OpenCL && ResType->isVectorType() && 9474 ResType->getAs<VectorType>()->getElementType()->isIntegerType()) { 9475 // OpenCL V1.2 6.3 says dec/inc ops operate on integer vector types. 9476 } else { 9477 S.Diag(OpLoc, diag::err_typecheck_illegal_increment_decrement) 9478 << ResType << int(IsInc) << Op->getSourceRange(); 9479 return QualType(); 9480 } 9481 // At this point, we know we have a real, complex or pointer type. 9482 // Now make sure the operand is a modifiable lvalue. 9483 if (CheckForModifiableLvalue(Op, OpLoc, S)) 9484 return QualType(); 9485 // In C++, a prefix increment is the same type as the operand. Otherwise 9486 // (in C or with postfix), the increment is the unqualified type of the 9487 // operand. 9488 if (IsPrefix && S.getLangOpts().CPlusPlus) { 9489 VK = VK_LValue; 9490 OK = Op->getObjectKind(); 9491 return ResType; 9492 } else { 9493 VK = VK_RValue; 9494 return ResType.getUnqualifiedType(); 9495 } 9496 } 9497 9498 9499 /// getPrimaryDecl - Helper function for CheckAddressOfOperand(). 9500 /// This routine allows us to typecheck complex/recursive expressions 9501 /// where the declaration is needed for type checking. We only need to 9502 /// handle cases when the expression references a function designator 9503 /// or is an lvalue. Here are some examples: 9504 /// - &(x) => x 9505 /// - &*****f => f for f a function designator. 9506 /// - &s.xx => s 9507 /// - &s.zz[1].yy -> s, if zz is an array 9508 /// - *(x + 1) -> x, if x is an array 9509 /// - &"123"[2] -> 0 9510 /// - & __real__ x -> x 9511 static ValueDecl *getPrimaryDecl(Expr *E) { 9512 switch (E->getStmtClass()) { 9513 case Stmt::DeclRefExprClass: 9514 return cast<DeclRefExpr>(E)->getDecl(); 9515 case Stmt::MemberExprClass: 9516 // If this is an arrow operator, the address is an offset from 9517 // the base's value, so the object the base refers to is 9518 // irrelevant. 9519 if (cast<MemberExpr>(E)->isArrow()) 9520 return nullptr; 9521 // Otherwise, the expression refers to a part of the base 9522 return getPrimaryDecl(cast<MemberExpr>(E)->getBase()); 9523 case Stmt::ArraySubscriptExprClass: { 9524 // FIXME: This code shouldn't be necessary! We should catch the implicit 9525 // promotion of register arrays earlier. 9526 Expr* Base = cast<ArraySubscriptExpr>(E)->getBase(); 9527 if (ImplicitCastExpr* ICE = dyn_cast<ImplicitCastExpr>(Base)) { 9528 if (ICE->getSubExpr()->getType()->isArrayType()) 9529 return getPrimaryDecl(ICE->getSubExpr()); 9530 } 9531 return nullptr; 9532 } 9533 case Stmt::UnaryOperatorClass: { 9534 UnaryOperator *UO = cast<UnaryOperator>(E); 9535 9536 switch(UO->getOpcode()) { 9537 case UO_Real: 9538 case UO_Imag: 9539 case UO_Extension: 9540 return getPrimaryDecl(UO->getSubExpr()); 9541 default: 9542 return nullptr; 9543 } 9544 } 9545 case Stmt::ParenExprClass: 9546 return getPrimaryDecl(cast<ParenExpr>(E)->getSubExpr()); 9547 case Stmt::ImplicitCastExprClass: 9548 // If the result of an implicit cast is an l-value, we care about 9549 // the sub-expression; otherwise, the result here doesn't matter. 9550 return getPrimaryDecl(cast<ImplicitCastExpr>(E)->getSubExpr()); 9551 default: 9552 return nullptr; 9553 } 9554 } 9555 9556 namespace { 9557 enum { 9558 AO_Bit_Field = 0, 9559 AO_Vector_Element = 1, 9560 AO_Property_Expansion = 2, 9561 AO_Register_Variable = 3, 9562 AO_No_Error = 4 9563 }; 9564 } 9565 /// \brief Diagnose invalid operand for address of operations. 9566 /// 9567 /// \param Type The type of operand which cannot have its address taken. 9568 static void diagnoseAddressOfInvalidType(Sema &S, SourceLocation Loc, 9569 Expr *E, unsigned Type) { 9570 S.Diag(Loc, diag::err_typecheck_address_of) << Type << E->getSourceRange(); 9571 } 9572 9573 /// CheckAddressOfOperand - The operand of & must be either a function 9574 /// designator or an lvalue designating an object. If it is an lvalue, the 9575 /// object cannot be declared with storage class register or be a bit field. 9576 /// Note: The usual conversions are *not* applied to the operand of the & 9577 /// operator (C99 6.3.2.1p[2-4]), and its result is never an lvalue. 9578 /// In C++, the operand might be an overloaded function name, in which case 9579 /// we allow the '&' but retain the overloaded-function type. 9580 QualType Sema::CheckAddressOfOperand(ExprResult &OrigOp, SourceLocation OpLoc) { 9581 if (const BuiltinType *PTy = OrigOp.get()->getType()->getAsPlaceholderType()){ 9582 if (PTy->getKind() == BuiltinType::Overload) { 9583 Expr *E = OrigOp.get()->IgnoreParens(); 9584 if (!isa<OverloadExpr>(E)) { 9585 assert(cast<UnaryOperator>(E)->getOpcode() == UO_AddrOf); 9586 Diag(OpLoc, diag::err_typecheck_invalid_lvalue_addrof_addrof_function) 9587 << OrigOp.get()->getSourceRange(); 9588 return QualType(); 9589 } 9590 9591 OverloadExpr *Ovl = cast<OverloadExpr>(E); 9592 if (isa<UnresolvedMemberExpr>(Ovl)) 9593 if (!ResolveSingleFunctionTemplateSpecialization(Ovl)) { 9594 Diag(OpLoc, diag::err_invalid_form_pointer_member_function) 9595 << OrigOp.get()->getSourceRange(); 9596 return QualType(); 9597 } 9598 9599 return Context.OverloadTy; 9600 } 9601 9602 if (PTy->getKind() == BuiltinType::UnknownAny) 9603 return Context.UnknownAnyTy; 9604 9605 if (PTy->getKind() == BuiltinType::BoundMember) { 9606 Diag(OpLoc, diag::err_invalid_form_pointer_member_function) 9607 << OrigOp.get()->getSourceRange(); 9608 return QualType(); 9609 } 9610 9611 OrigOp = CheckPlaceholderExpr(OrigOp.get()); 9612 if (OrigOp.isInvalid()) return QualType(); 9613 } 9614 9615 if (OrigOp.get()->isTypeDependent()) 9616 return Context.DependentTy; 9617 9618 assert(!OrigOp.get()->getType()->isPlaceholderType()); 9619 9620 // Make sure to ignore parentheses in subsequent checks 9621 Expr *op = OrigOp.get()->IgnoreParens(); 9622 9623 // OpenCL v1.0 s6.8.a.3: Pointers to functions are not allowed. 9624 if (LangOpts.OpenCL && op->getType()->isFunctionType()) { 9625 Diag(op->getExprLoc(), diag::err_opencl_taking_function_address); 9626 return QualType(); 9627 } 9628 9629 if (getLangOpts().C99) { 9630 // Implement C99-only parts of addressof rules. 9631 if (UnaryOperator* uOp = dyn_cast<UnaryOperator>(op)) { 9632 if (uOp->getOpcode() == UO_Deref) 9633 // Per C99 6.5.3.2, the address of a deref always returns a valid result 9634 // (assuming the deref expression is valid). 9635 return uOp->getSubExpr()->getType(); 9636 } 9637 // Technically, there should be a check for array subscript 9638 // expressions here, but the result of one is always an lvalue anyway. 9639 } 9640 ValueDecl *dcl = getPrimaryDecl(op); 9641 Expr::LValueClassification lval = op->ClassifyLValue(Context); 9642 unsigned AddressOfError = AO_No_Error; 9643 9644 if (lval == Expr::LV_ClassTemporary || lval == Expr::LV_ArrayTemporary) { 9645 bool sfinae = (bool)isSFINAEContext(); 9646 Diag(OpLoc, isSFINAEContext() ? diag::err_typecheck_addrof_temporary 9647 : diag::ext_typecheck_addrof_temporary) 9648 << op->getType() << op->getSourceRange(); 9649 if (sfinae) 9650 return QualType(); 9651 // Materialize the temporary as an lvalue so that we can take its address. 9652 OrigOp = op = new (Context) 9653 MaterializeTemporaryExpr(op->getType(), OrigOp.get(), true); 9654 } else if (isa<ObjCSelectorExpr>(op)) { 9655 return Context.getPointerType(op->getType()); 9656 } else if (lval == Expr::LV_MemberFunction) { 9657 // If it's an instance method, make a member pointer. 9658 // The expression must have exactly the form &A::foo. 9659 9660 // If the underlying expression isn't a decl ref, give up. 9661 if (!isa<DeclRefExpr>(op)) { 9662 Diag(OpLoc, diag::err_invalid_form_pointer_member_function) 9663 << OrigOp.get()->getSourceRange(); 9664 return QualType(); 9665 } 9666 DeclRefExpr *DRE = cast<DeclRefExpr>(op); 9667 CXXMethodDecl *MD = cast<CXXMethodDecl>(DRE->getDecl()); 9668 9669 // The id-expression was parenthesized. 9670 if (OrigOp.get() != DRE) { 9671 Diag(OpLoc, diag::err_parens_pointer_member_function) 9672 << OrigOp.get()->getSourceRange(); 9673 9674 // The method was named without a qualifier. 9675 } else if (!DRE->getQualifier()) { 9676 if (MD->getParent()->getName().empty()) 9677 Diag(OpLoc, diag::err_unqualified_pointer_member_function) 9678 << op->getSourceRange(); 9679 else { 9680 SmallString<32> Str; 9681 StringRef Qual = (MD->getParent()->getName() + "::").toStringRef(Str); 9682 Diag(OpLoc, diag::err_unqualified_pointer_member_function) 9683 << op->getSourceRange() 9684 << FixItHint::CreateInsertion(op->getSourceRange().getBegin(), Qual); 9685 } 9686 } 9687 9688 // Taking the address of a dtor is illegal per C++ [class.dtor]p2. 9689 if (isa<CXXDestructorDecl>(MD)) 9690 Diag(OpLoc, diag::err_typecheck_addrof_dtor) << op->getSourceRange(); 9691 9692 QualType MPTy = Context.getMemberPointerType( 9693 op->getType(), Context.getTypeDeclType(MD->getParent()).getTypePtr()); 9694 if (Context.getTargetInfo().getCXXABI().isMicrosoft()) 9695 RequireCompleteType(OpLoc, MPTy, 0); 9696 return MPTy; 9697 } else if (lval != Expr::LV_Valid && lval != Expr::LV_IncompleteVoidType) { 9698 // C99 6.5.3.2p1 9699 // The operand must be either an l-value or a function designator 9700 if (!op->getType()->isFunctionType()) { 9701 // Use a special diagnostic for loads from property references. 9702 if (isa<PseudoObjectExpr>(op)) { 9703 AddressOfError = AO_Property_Expansion; 9704 } else { 9705 Diag(OpLoc, diag::err_typecheck_invalid_lvalue_addrof) 9706 << op->getType() << op->getSourceRange(); 9707 return QualType(); 9708 } 9709 } 9710 } else if (op->getObjectKind() == OK_BitField) { // C99 6.5.3.2p1 9711 // The operand cannot be a bit-field 9712 AddressOfError = AO_Bit_Field; 9713 } else if (op->getObjectKind() == OK_VectorComponent) { 9714 // The operand cannot be an element of a vector 9715 AddressOfError = AO_Vector_Element; 9716 } else if (dcl) { // C99 6.5.3.2p1 9717 // We have an lvalue with a decl. Make sure the decl is not declared 9718 // with the register storage-class specifier. 9719 if (const VarDecl *vd = dyn_cast<VarDecl>(dcl)) { 9720 // in C++ it is not error to take address of a register 9721 // variable (c++03 7.1.1P3) 9722 if (vd->getStorageClass() == SC_Register && 9723 !getLangOpts().CPlusPlus) { 9724 AddressOfError = AO_Register_Variable; 9725 } 9726 } else if (isa<MSPropertyDecl>(dcl)) { 9727 AddressOfError = AO_Property_Expansion; 9728 } else if (isa<FunctionTemplateDecl>(dcl)) { 9729 return Context.OverloadTy; 9730 } else if (isa<FieldDecl>(dcl) || isa<IndirectFieldDecl>(dcl)) { 9731 // Okay: we can take the address of a field. 9732 // Could be a pointer to member, though, if there is an explicit 9733 // scope qualifier for the class. 9734 if (isa<DeclRefExpr>(op) && cast<DeclRefExpr>(op)->getQualifier()) { 9735 DeclContext *Ctx = dcl->getDeclContext(); 9736 if (Ctx && Ctx->isRecord()) { 9737 if (dcl->getType()->isReferenceType()) { 9738 Diag(OpLoc, 9739 diag::err_cannot_form_pointer_to_member_of_reference_type) 9740 << dcl->getDeclName() << dcl->getType(); 9741 return QualType(); 9742 } 9743 9744 while (cast<RecordDecl>(Ctx)->isAnonymousStructOrUnion()) 9745 Ctx = Ctx->getParent(); 9746 9747 QualType MPTy = Context.getMemberPointerType( 9748 op->getType(), 9749 Context.getTypeDeclType(cast<RecordDecl>(Ctx)).getTypePtr()); 9750 if (Context.getTargetInfo().getCXXABI().isMicrosoft()) 9751 RequireCompleteType(OpLoc, MPTy, 0); 9752 return MPTy; 9753 } 9754 } 9755 } else if (!isa<FunctionDecl>(dcl) && !isa<NonTypeTemplateParmDecl>(dcl)) 9756 llvm_unreachable("Unknown/unexpected decl type"); 9757 } 9758 9759 if (AddressOfError != AO_No_Error) { 9760 diagnoseAddressOfInvalidType(*this, OpLoc, op, AddressOfError); 9761 return QualType(); 9762 } 9763 9764 if (lval == Expr::LV_IncompleteVoidType) { 9765 // Taking the address of a void variable is technically illegal, but we 9766 // allow it in cases which are otherwise valid. 9767 // Example: "extern void x; void* y = &x;". 9768 Diag(OpLoc, diag::ext_typecheck_addrof_void) << op->getSourceRange(); 9769 } 9770 9771 // If the operand has type "type", the result has type "pointer to type". 9772 if (op->getType()->isObjCObjectType()) 9773 return Context.getObjCObjectPointerType(op->getType()); 9774 return Context.getPointerType(op->getType()); 9775 } 9776 9777 static void RecordModifiableNonNullParam(Sema &S, const Expr *Exp) { 9778 const DeclRefExpr *DRE = dyn_cast<DeclRefExpr>(Exp); 9779 if (!DRE) 9780 return; 9781 const Decl *D = DRE->getDecl(); 9782 if (!D) 9783 return; 9784 const ParmVarDecl *Param = dyn_cast<ParmVarDecl>(D); 9785 if (!Param) 9786 return; 9787 if (const FunctionDecl* FD = dyn_cast<FunctionDecl>(Param->getDeclContext())) 9788 if (!FD->hasAttr<NonNullAttr>() && !Param->hasAttr<NonNullAttr>()) 9789 return; 9790 if (FunctionScopeInfo *FD = S.getCurFunction()) 9791 if (!FD->ModifiedNonNullParams.count(Param)) 9792 FD->ModifiedNonNullParams.insert(Param); 9793 } 9794 9795 /// CheckIndirectionOperand - Type check unary indirection (prefix '*'). 9796 static QualType CheckIndirectionOperand(Sema &S, Expr *Op, ExprValueKind &VK, 9797 SourceLocation OpLoc) { 9798 if (Op->isTypeDependent()) 9799 return S.Context.DependentTy; 9800 9801 ExprResult ConvResult = S.UsualUnaryConversions(Op); 9802 if (ConvResult.isInvalid()) 9803 return QualType(); 9804 Op = ConvResult.get(); 9805 QualType OpTy = Op->getType(); 9806 QualType Result; 9807 9808 if (isa<CXXReinterpretCastExpr>(Op)) { 9809 QualType OpOrigType = Op->IgnoreParenCasts()->getType(); 9810 S.CheckCompatibleReinterpretCast(OpOrigType, OpTy, /*IsDereference*/true, 9811 Op->getSourceRange()); 9812 } 9813 9814 if (const PointerType *PT = OpTy->getAs<PointerType>()) 9815 Result = PT->getPointeeType(); 9816 else if (const ObjCObjectPointerType *OPT = 9817 OpTy->getAs<ObjCObjectPointerType>()) 9818 Result = OPT->getPointeeType(); 9819 else { 9820 ExprResult PR = S.CheckPlaceholderExpr(Op); 9821 if (PR.isInvalid()) return QualType(); 9822 if (PR.get() != Op) 9823 return CheckIndirectionOperand(S, PR.get(), VK, OpLoc); 9824 } 9825 9826 if (Result.isNull()) { 9827 S.Diag(OpLoc, diag::err_typecheck_indirection_requires_pointer) 9828 << OpTy << Op->getSourceRange(); 9829 return QualType(); 9830 } 9831 9832 // Note that per both C89 and C99, indirection is always legal, even if Result 9833 // is an incomplete type or void. It would be possible to warn about 9834 // dereferencing a void pointer, but it's completely well-defined, and such a 9835 // warning is unlikely to catch any mistakes. In C++, indirection is not valid 9836 // for pointers to 'void' but is fine for any other pointer type: 9837 // 9838 // C++ [expr.unary.op]p1: 9839 // [...] the expression to which [the unary * operator] is applied shall 9840 // be a pointer to an object type, or a pointer to a function type 9841 if (S.getLangOpts().CPlusPlus && Result->isVoidType()) 9842 S.Diag(OpLoc, diag::ext_typecheck_indirection_through_void_pointer) 9843 << OpTy << Op->getSourceRange(); 9844 9845 // Dereferences are usually l-values... 9846 VK = VK_LValue; 9847 9848 // ...except that certain expressions are never l-values in C. 9849 if (!S.getLangOpts().CPlusPlus && Result.isCForbiddenLValueType()) 9850 VK = VK_RValue; 9851 9852 return Result; 9853 } 9854 9855 BinaryOperatorKind Sema::ConvertTokenKindToBinaryOpcode(tok::TokenKind Kind) { 9856 BinaryOperatorKind Opc; 9857 switch (Kind) { 9858 default: llvm_unreachable("Unknown binop!"); 9859 case tok::periodstar: Opc = BO_PtrMemD; break; 9860 case tok::arrowstar: Opc = BO_PtrMemI; break; 9861 case tok::star: Opc = BO_Mul; break; 9862 case tok::slash: Opc = BO_Div; break; 9863 case tok::percent: Opc = BO_Rem; break; 9864 case tok::plus: Opc = BO_Add; break; 9865 case tok::minus: Opc = BO_Sub; break; 9866 case tok::lessless: Opc = BO_Shl; break; 9867 case tok::greatergreater: Opc = BO_Shr; break; 9868 case tok::lessequal: Opc = BO_LE; break; 9869 case tok::less: Opc = BO_LT; break; 9870 case tok::greaterequal: Opc = BO_GE; break; 9871 case tok::greater: Opc = BO_GT; break; 9872 case tok::exclaimequal: Opc = BO_NE; break; 9873 case tok::equalequal: Opc = BO_EQ; break; 9874 case tok::amp: Opc = BO_And; break; 9875 case tok::caret: Opc = BO_Xor; break; 9876 case tok::pipe: Opc = BO_Or; break; 9877 case tok::ampamp: Opc = BO_LAnd; break; 9878 case tok::pipepipe: Opc = BO_LOr; break; 9879 case tok::equal: Opc = BO_Assign; break; 9880 case tok::starequal: Opc = BO_MulAssign; break; 9881 case tok::slashequal: Opc = BO_DivAssign; break; 9882 case tok::percentequal: Opc = BO_RemAssign; break; 9883 case tok::plusequal: Opc = BO_AddAssign; break; 9884 case tok::minusequal: Opc = BO_SubAssign; break; 9885 case tok::lesslessequal: Opc = BO_ShlAssign; break; 9886 case tok::greatergreaterequal: Opc = BO_ShrAssign; break; 9887 case tok::ampequal: Opc = BO_AndAssign; break; 9888 case tok::caretequal: Opc = BO_XorAssign; break; 9889 case tok::pipeequal: Opc = BO_OrAssign; break; 9890 case tok::comma: Opc = BO_Comma; break; 9891 } 9892 return Opc; 9893 } 9894 9895 static inline UnaryOperatorKind ConvertTokenKindToUnaryOpcode( 9896 tok::TokenKind Kind) { 9897 UnaryOperatorKind Opc; 9898 switch (Kind) { 9899 default: llvm_unreachable("Unknown unary op!"); 9900 case tok::plusplus: Opc = UO_PreInc; break; 9901 case tok::minusminus: Opc = UO_PreDec; break; 9902 case tok::amp: Opc = UO_AddrOf; break; 9903 case tok::star: Opc = UO_Deref; break; 9904 case tok::plus: Opc = UO_Plus; break; 9905 case tok::minus: Opc = UO_Minus; break; 9906 case tok::tilde: Opc = UO_Not; break; 9907 case tok::exclaim: Opc = UO_LNot; break; 9908 case tok::kw___real: Opc = UO_Real; break; 9909 case tok::kw___imag: Opc = UO_Imag; break; 9910 case tok::kw___extension__: Opc = UO_Extension; break; 9911 } 9912 return Opc; 9913 } 9914 9915 /// DiagnoseSelfAssignment - Emits a warning if a value is assigned to itself. 9916 /// This warning is only emitted for builtin assignment operations. It is also 9917 /// suppressed in the event of macro expansions. 9918 static void DiagnoseSelfAssignment(Sema &S, Expr *LHSExpr, Expr *RHSExpr, 9919 SourceLocation OpLoc) { 9920 if (!S.ActiveTemplateInstantiations.empty()) 9921 return; 9922 if (OpLoc.isInvalid() || OpLoc.isMacroID()) 9923 return; 9924 LHSExpr = LHSExpr->IgnoreParenImpCasts(); 9925 RHSExpr = RHSExpr->IgnoreParenImpCasts(); 9926 const DeclRefExpr *LHSDeclRef = dyn_cast<DeclRefExpr>(LHSExpr); 9927 const DeclRefExpr *RHSDeclRef = dyn_cast<DeclRefExpr>(RHSExpr); 9928 if (!LHSDeclRef || !RHSDeclRef || 9929 LHSDeclRef->getLocation().isMacroID() || 9930 RHSDeclRef->getLocation().isMacroID()) 9931 return; 9932 const ValueDecl *LHSDecl = 9933 cast<ValueDecl>(LHSDeclRef->getDecl()->getCanonicalDecl()); 9934 const ValueDecl *RHSDecl = 9935 cast<ValueDecl>(RHSDeclRef->getDecl()->getCanonicalDecl()); 9936 if (LHSDecl != RHSDecl) 9937 return; 9938 if (LHSDecl->getType().isVolatileQualified()) 9939 return; 9940 if (const ReferenceType *RefTy = LHSDecl->getType()->getAs<ReferenceType>()) 9941 if (RefTy->getPointeeType().isVolatileQualified()) 9942 return; 9943 9944 S.Diag(OpLoc, diag::warn_self_assignment) 9945 << LHSDeclRef->getType() 9946 << LHSExpr->getSourceRange() << RHSExpr->getSourceRange(); 9947 } 9948 9949 /// Check if a bitwise-& is performed on an Objective-C pointer. This 9950 /// is usually indicative of introspection within the Objective-C pointer. 9951 static void checkObjCPointerIntrospection(Sema &S, ExprResult &L, ExprResult &R, 9952 SourceLocation OpLoc) { 9953 if (!S.getLangOpts().ObjC1) 9954 return; 9955 9956 const Expr *ObjCPointerExpr = nullptr, *OtherExpr = nullptr; 9957 const Expr *LHS = L.get(); 9958 const Expr *RHS = R.get(); 9959 9960 if (LHS->IgnoreParenCasts()->getType()->isObjCObjectPointerType()) { 9961 ObjCPointerExpr = LHS; 9962 OtherExpr = RHS; 9963 } 9964 else if (RHS->IgnoreParenCasts()->getType()->isObjCObjectPointerType()) { 9965 ObjCPointerExpr = RHS; 9966 OtherExpr = LHS; 9967 } 9968 9969 // This warning is deliberately made very specific to reduce false 9970 // positives with logic that uses '&' for hashing. This logic mainly 9971 // looks for code trying to introspect into tagged pointers, which 9972 // code should generally never do. 9973 if (ObjCPointerExpr && isa<IntegerLiteral>(OtherExpr->IgnoreParenCasts())) { 9974 unsigned Diag = diag::warn_objc_pointer_masking; 9975 // Determine if we are introspecting the result of performSelectorXXX. 9976 const Expr *Ex = ObjCPointerExpr->IgnoreParenCasts(); 9977 // Special case messages to -performSelector and friends, which 9978 // can return non-pointer values boxed in a pointer value. 9979 // Some clients may wish to silence warnings in this subcase. 9980 if (const ObjCMessageExpr *ME = dyn_cast<ObjCMessageExpr>(Ex)) { 9981 Selector S = ME->getSelector(); 9982 StringRef SelArg0 = S.getNameForSlot(0); 9983 if (SelArg0.startswith("performSelector")) 9984 Diag = diag::warn_objc_pointer_masking_performSelector; 9985 } 9986 9987 S.Diag(OpLoc, Diag) 9988 << ObjCPointerExpr->getSourceRange(); 9989 } 9990 } 9991 9992 static NamedDecl *getDeclFromExpr(Expr *E) { 9993 if (!E) 9994 return nullptr; 9995 if (auto *DRE = dyn_cast<DeclRefExpr>(E)) 9996 return DRE->getDecl(); 9997 if (auto *ME = dyn_cast<MemberExpr>(E)) 9998 return ME->getMemberDecl(); 9999 if (auto *IRE = dyn_cast<ObjCIvarRefExpr>(E)) 10000 return IRE->getDecl(); 10001 return nullptr; 10002 } 10003 10004 /// CreateBuiltinBinOp - Creates a new built-in binary operation with 10005 /// operator @p Opc at location @c TokLoc. This routine only supports 10006 /// built-in operations; ActOnBinOp handles overloaded operators. 10007 ExprResult Sema::CreateBuiltinBinOp(SourceLocation OpLoc, 10008 BinaryOperatorKind Opc, 10009 Expr *LHSExpr, Expr *RHSExpr) { 10010 if (getLangOpts().CPlusPlus11 && isa<InitListExpr>(RHSExpr)) { 10011 // The syntax only allows initializer lists on the RHS of assignment, 10012 // so we don't need to worry about accepting invalid code for 10013 // non-assignment operators. 10014 // C++11 5.17p9: 10015 // The meaning of x = {v} [...] is that of x = T(v) [...]. The meaning 10016 // of x = {} is x = T(). 10017 InitializationKind Kind = 10018 InitializationKind::CreateDirectList(RHSExpr->getLocStart()); 10019 InitializedEntity Entity = 10020 InitializedEntity::InitializeTemporary(LHSExpr->getType()); 10021 InitializationSequence InitSeq(*this, Entity, Kind, RHSExpr); 10022 ExprResult Init = InitSeq.Perform(*this, Entity, Kind, RHSExpr); 10023 if (Init.isInvalid()) 10024 return Init; 10025 RHSExpr = Init.get(); 10026 } 10027 10028 ExprResult LHS = LHSExpr, RHS = RHSExpr; 10029 QualType ResultTy; // Result type of the binary operator. 10030 // The following two variables are used for compound assignment operators 10031 QualType CompLHSTy; // Type of LHS after promotions for computation 10032 QualType CompResultTy; // Type of computation result 10033 ExprValueKind VK = VK_RValue; 10034 ExprObjectKind OK = OK_Ordinary; 10035 10036 if (!getLangOpts().CPlusPlus) { 10037 // C cannot handle TypoExpr nodes on either side of a binop because it 10038 // doesn't handle dependent types properly, so make sure any TypoExprs have 10039 // been dealt with before checking the operands. 10040 LHS = CorrectDelayedTyposInExpr(LHSExpr); 10041 RHS = CorrectDelayedTyposInExpr(RHSExpr, [Opc, LHS](Expr *E) { 10042 if (Opc != BO_Assign) 10043 return ExprResult(E); 10044 // Avoid correcting the RHS to the same Expr as the LHS. 10045 Decl *D = getDeclFromExpr(E); 10046 return (D && D == getDeclFromExpr(LHS.get())) ? ExprError() : E; 10047 }); 10048 if (!LHS.isUsable() || !RHS.isUsable()) 10049 return ExprError(); 10050 } 10051 10052 switch (Opc) { 10053 case BO_Assign: 10054 ResultTy = CheckAssignmentOperands(LHS.get(), RHS, OpLoc, QualType()); 10055 if (getLangOpts().CPlusPlus && 10056 LHS.get()->getObjectKind() != OK_ObjCProperty) { 10057 VK = LHS.get()->getValueKind(); 10058 OK = LHS.get()->getObjectKind(); 10059 } 10060 if (!ResultTy.isNull()) { 10061 DiagnoseSelfAssignment(*this, LHS.get(), RHS.get(), OpLoc); 10062 DiagnoseSelfMove(LHS.get(), RHS.get(), OpLoc); 10063 } 10064 RecordModifiableNonNullParam(*this, LHS.get()); 10065 break; 10066 case BO_PtrMemD: 10067 case BO_PtrMemI: 10068 ResultTy = CheckPointerToMemberOperands(LHS, RHS, VK, OpLoc, 10069 Opc == BO_PtrMemI); 10070 break; 10071 case BO_Mul: 10072 case BO_Div: 10073 ResultTy = CheckMultiplyDivideOperands(LHS, RHS, OpLoc, false, 10074 Opc == BO_Div); 10075 break; 10076 case BO_Rem: 10077 ResultTy = CheckRemainderOperands(LHS, RHS, OpLoc); 10078 break; 10079 case BO_Add: 10080 ResultTy = CheckAdditionOperands(LHS, RHS, OpLoc, Opc); 10081 break; 10082 case BO_Sub: 10083 ResultTy = CheckSubtractionOperands(LHS, RHS, OpLoc); 10084 break; 10085 case BO_Shl: 10086 case BO_Shr: 10087 ResultTy = CheckShiftOperands(LHS, RHS, OpLoc, Opc); 10088 break; 10089 case BO_LE: 10090 case BO_LT: 10091 case BO_GE: 10092 case BO_GT: 10093 ResultTy = CheckCompareOperands(LHS, RHS, OpLoc, Opc, true); 10094 break; 10095 case BO_EQ: 10096 case BO_NE: 10097 ResultTy = CheckCompareOperands(LHS, RHS, OpLoc, Opc, false); 10098 break; 10099 case BO_And: 10100 checkObjCPointerIntrospection(*this, LHS, RHS, OpLoc); 10101 case BO_Xor: 10102 case BO_Or: 10103 ResultTy = CheckBitwiseOperands(LHS, RHS, OpLoc); 10104 break; 10105 case BO_LAnd: 10106 case BO_LOr: 10107 ResultTy = CheckLogicalOperands(LHS, RHS, OpLoc, Opc); 10108 break; 10109 case BO_MulAssign: 10110 case BO_DivAssign: 10111 CompResultTy = CheckMultiplyDivideOperands(LHS, RHS, OpLoc, true, 10112 Opc == BO_DivAssign); 10113 CompLHSTy = CompResultTy; 10114 if (!CompResultTy.isNull() && !LHS.isInvalid() && !RHS.isInvalid()) 10115 ResultTy = CheckAssignmentOperands(LHS.get(), RHS, OpLoc, CompResultTy); 10116 break; 10117 case BO_RemAssign: 10118 CompResultTy = CheckRemainderOperands(LHS, RHS, OpLoc, true); 10119 CompLHSTy = CompResultTy; 10120 if (!CompResultTy.isNull() && !LHS.isInvalid() && !RHS.isInvalid()) 10121 ResultTy = CheckAssignmentOperands(LHS.get(), RHS, OpLoc, CompResultTy); 10122 break; 10123 case BO_AddAssign: 10124 CompResultTy = CheckAdditionOperands(LHS, RHS, OpLoc, Opc, &CompLHSTy); 10125 if (!CompResultTy.isNull() && !LHS.isInvalid() && !RHS.isInvalid()) 10126 ResultTy = CheckAssignmentOperands(LHS.get(), RHS, OpLoc, CompResultTy); 10127 break; 10128 case BO_SubAssign: 10129 CompResultTy = CheckSubtractionOperands(LHS, RHS, OpLoc, &CompLHSTy); 10130 if (!CompResultTy.isNull() && !LHS.isInvalid() && !RHS.isInvalid()) 10131 ResultTy = CheckAssignmentOperands(LHS.get(), RHS, OpLoc, CompResultTy); 10132 break; 10133 case BO_ShlAssign: 10134 case BO_ShrAssign: 10135 CompResultTy = CheckShiftOperands(LHS, RHS, OpLoc, Opc, true); 10136 CompLHSTy = CompResultTy; 10137 if (!CompResultTy.isNull() && !LHS.isInvalid() && !RHS.isInvalid()) 10138 ResultTy = CheckAssignmentOperands(LHS.get(), RHS, OpLoc, CompResultTy); 10139 break; 10140 case BO_AndAssign: 10141 case BO_OrAssign: // fallthrough 10142 DiagnoseSelfAssignment(*this, LHS.get(), RHS.get(), OpLoc); 10143 case BO_XorAssign: 10144 CompResultTy = CheckBitwiseOperands(LHS, RHS, OpLoc, true); 10145 CompLHSTy = CompResultTy; 10146 if (!CompResultTy.isNull() && !LHS.isInvalid() && !RHS.isInvalid()) 10147 ResultTy = CheckAssignmentOperands(LHS.get(), RHS, OpLoc, CompResultTy); 10148 break; 10149 case BO_Comma: 10150 ResultTy = CheckCommaOperands(*this, LHS, RHS, OpLoc); 10151 if (getLangOpts().CPlusPlus && !RHS.isInvalid()) { 10152 VK = RHS.get()->getValueKind(); 10153 OK = RHS.get()->getObjectKind(); 10154 } 10155 break; 10156 } 10157 if (ResultTy.isNull() || LHS.isInvalid() || RHS.isInvalid()) 10158 return ExprError(); 10159 10160 // Check for array bounds violations for both sides of the BinaryOperator 10161 CheckArrayAccess(LHS.get()); 10162 CheckArrayAccess(RHS.get()); 10163 10164 if (const ObjCIsaExpr *OISA = dyn_cast<ObjCIsaExpr>(LHS.get()->IgnoreParenCasts())) { 10165 NamedDecl *ObjectSetClass = LookupSingleName(TUScope, 10166 &Context.Idents.get("object_setClass"), 10167 SourceLocation(), LookupOrdinaryName); 10168 if (ObjectSetClass && isa<ObjCIsaExpr>(LHS.get())) { 10169 SourceLocation RHSLocEnd = PP.getLocForEndOfToken(RHS.get()->getLocEnd()); 10170 Diag(LHS.get()->getExprLoc(), diag::warn_objc_isa_assign) << 10171 FixItHint::CreateInsertion(LHS.get()->getLocStart(), "object_setClass(") << 10172 FixItHint::CreateReplacement(SourceRange(OISA->getOpLoc(), OpLoc), ",") << 10173 FixItHint::CreateInsertion(RHSLocEnd, ")"); 10174 } 10175 else 10176 Diag(LHS.get()->getExprLoc(), diag::warn_objc_isa_assign); 10177 } 10178 else if (const ObjCIvarRefExpr *OIRE = 10179 dyn_cast<ObjCIvarRefExpr>(LHS.get()->IgnoreParenCasts())) 10180 DiagnoseDirectIsaAccess(*this, OIRE, OpLoc, RHS.get()); 10181 10182 if (CompResultTy.isNull()) 10183 return new (Context) BinaryOperator(LHS.get(), RHS.get(), Opc, ResultTy, VK, 10184 OK, OpLoc, FPFeatures.fp_contract); 10185 if (getLangOpts().CPlusPlus && LHS.get()->getObjectKind() != 10186 OK_ObjCProperty) { 10187 VK = VK_LValue; 10188 OK = LHS.get()->getObjectKind(); 10189 } 10190 return new (Context) CompoundAssignOperator( 10191 LHS.get(), RHS.get(), Opc, ResultTy, VK, OK, CompLHSTy, CompResultTy, 10192 OpLoc, FPFeatures.fp_contract); 10193 } 10194 10195 /// DiagnoseBitwisePrecedence - Emit a warning when bitwise and comparison 10196 /// operators are mixed in a way that suggests that the programmer forgot that 10197 /// comparison operators have higher precedence. The most typical example of 10198 /// such code is "flags & 0x0020 != 0", which is equivalent to "flags & 1". 10199 static void DiagnoseBitwisePrecedence(Sema &Self, BinaryOperatorKind Opc, 10200 SourceLocation OpLoc, Expr *LHSExpr, 10201 Expr *RHSExpr) { 10202 BinaryOperator *LHSBO = dyn_cast<BinaryOperator>(LHSExpr); 10203 BinaryOperator *RHSBO = dyn_cast<BinaryOperator>(RHSExpr); 10204 10205 // Check that one of the sides is a comparison operator. 10206 bool isLeftComp = LHSBO && LHSBO->isComparisonOp(); 10207 bool isRightComp = RHSBO && RHSBO->isComparisonOp(); 10208 if (!isLeftComp && !isRightComp) 10209 return; 10210 10211 // Bitwise operations are sometimes used as eager logical ops. 10212 // Don't diagnose this. 10213 bool isLeftBitwise = LHSBO && LHSBO->isBitwiseOp(); 10214 bool isRightBitwise = RHSBO && RHSBO->isBitwiseOp(); 10215 if ((isLeftComp || isLeftBitwise) && (isRightComp || isRightBitwise)) 10216 return; 10217 10218 SourceRange DiagRange = isLeftComp ? SourceRange(LHSExpr->getLocStart(), 10219 OpLoc) 10220 : SourceRange(OpLoc, RHSExpr->getLocEnd()); 10221 StringRef OpStr = isLeftComp ? LHSBO->getOpcodeStr() : RHSBO->getOpcodeStr(); 10222 SourceRange ParensRange = isLeftComp ? 10223 SourceRange(LHSBO->getRHS()->getLocStart(), RHSExpr->getLocEnd()) 10224 : SourceRange(LHSExpr->getLocStart(), RHSBO->getLHS()->getLocEnd()); 10225 10226 Self.Diag(OpLoc, diag::warn_precedence_bitwise_rel) 10227 << DiagRange << BinaryOperator::getOpcodeStr(Opc) << OpStr; 10228 SuggestParentheses(Self, OpLoc, 10229 Self.PDiag(diag::note_precedence_silence) << OpStr, 10230 (isLeftComp ? LHSExpr : RHSExpr)->getSourceRange()); 10231 SuggestParentheses(Self, OpLoc, 10232 Self.PDiag(diag::note_precedence_bitwise_first) 10233 << BinaryOperator::getOpcodeStr(Opc), 10234 ParensRange); 10235 } 10236 10237 /// \brief It accepts a '&' expr that is inside a '|' one. 10238 /// Emit a diagnostic together with a fixit hint that wraps the '&' expression 10239 /// in parentheses. 10240 static void 10241 EmitDiagnosticForBitwiseAndInBitwiseOr(Sema &Self, SourceLocation OpLoc, 10242 BinaryOperator *Bop) { 10243 assert(Bop->getOpcode() == BO_And); 10244 Self.Diag(Bop->getOperatorLoc(), diag::warn_bitwise_and_in_bitwise_or) 10245 << Bop->getSourceRange() << OpLoc; 10246 SuggestParentheses(Self, Bop->getOperatorLoc(), 10247 Self.PDiag(diag::note_precedence_silence) 10248 << Bop->getOpcodeStr(), 10249 Bop->getSourceRange()); 10250 } 10251 10252 /// \brief It accepts a '&&' expr that is inside a '||' one. 10253 /// Emit a diagnostic together with a fixit hint that wraps the '&&' expression 10254 /// in parentheses. 10255 static void 10256 EmitDiagnosticForLogicalAndInLogicalOr(Sema &Self, SourceLocation OpLoc, 10257 BinaryOperator *Bop) { 10258 assert(Bop->getOpcode() == BO_LAnd); 10259 Self.Diag(Bop->getOperatorLoc(), diag::warn_logical_and_in_logical_or) 10260 << Bop->getSourceRange() << OpLoc; 10261 SuggestParentheses(Self, Bop->getOperatorLoc(), 10262 Self.PDiag(diag::note_precedence_silence) 10263 << Bop->getOpcodeStr(), 10264 Bop->getSourceRange()); 10265 } 10266 10267 /// \brief Returns true if the given expression can be evaluated as a constant 10268 /// 'true'. 10269 static bool EvaluatesAsTrue(Sema &S, Expr *E) { 10270 bool Res; 10271 return !E->isValueDependent() && 10272 E->EvaluateAsBooleanCondition(Res, S.getASTContext()) && Res; 10273 } 10274 10275 /// \brief Returns true if the given expression can be evaluated as a constant 10276 /// 'false'. 10277 static bool EvaluatesAsFalse(Sema &S, Expr *E) { 10278 bool Res; 10279 return !E->isValueDependent() && 10280 E->EvaluateAsBooleanCondition(Res, S.getASTContext()) && !Res; 10281 } 10282 10283 /// \brief Look for '&&' in the left hand of a '||' expr. 10284 static void DiagnoseLogicalAndInLogicalOrLHS(Sema &S, SourceLocation OpLoc, 10285 Expr *LHSExpr, Expr *RHSExpr) { 10286 if (BinaryOperator *Bop = dyn_cast<BinaryOperator>(LHSExpr)) { 10287 if (Bop->getOpcode() == BO_LAnd) { 10288 // If it's "a && b || 0" don't warn since the precedence doesn't matter. 10289 if (EvaluatesAsFalse(S, RHSExpr)) 10290 return; 10291 // If it's "1 && a || b" don't warn since the precedence doesn't matter. 10292 if (!EvaluatesAsTrue(S, Bop->getLHS())) 10293 return EmitDiagnosticForLogicalAndInLogicalOr(S, OpLoc, Bop); 10294 } else if (Bop->getOpcode() == BO_LOr) { 10295 if (BinaryOperator *RBop = dyn_cast<BinaryOperator>(Bop->getRHS())) { 10296 // If it's "a || b && 1 || c" we didn't warn earlier for 10297 // "a || b && 1", but warn now. 10298 if (RBop->getOpcode() == BO_LAnd && EvaluatesAsTrue(S, RBop->getRHS())) 10299 return EmitDiagnosticForLogicalAndInLogicalOr(S, OpLoc, RBop); 10300 } 10301 } 10302 } 10303 } 10304 10305 /// \brief Look for '&&' in the right hand of a '||' expr. 10306 static void DiagnoseLogicalAndInLogicalOrRHS(Sema &S, SourceLocation OpLoc, 10307 Expr *LHSExpr, Expr *RHSExpr) { 10308 if (BinaryOperator *Bop = dyn_cast<BinaryOperator>(RHSExpr)) { 10309 if (Bop->getOpcode() == BO_LAnd) { 10310 // If it's "0 || a && b" don't warn since the precedence doesn't matter. 10311 if (EvaluatesAsFalse(S, LHSExpr)) 10312 return; 10313 // If it's "a || b && 1" don't warn since the precedence doesn't matter. 10314 if (!EvaluatesAsTrue(S, Bop->getRHS())) 10315 return EmitDiagnosticForLogicalAndInLogicalOr(S, OpLoc, Bop); 10316 } 10317 } 10318 } 10319 10320 /// \brief Look for '&' in the left or right hand of a '|' expr. 10321 static void DiagnoseBitwiseAndInBitwiseOr(Sema &S, SourceLocation OpLoc, 10322 Expr *OrArg) { 10323 if (BinaryOperator *Bop = dyn_cast<BinaryOperator>(OrArg)) { 10324 if (Bop->getOpcode() == BO_And) 10325 return EmitDiagnosticForBitwiseAndInBitwiseOr(S, OpLoc, Bop); 10326 } 10327 } 10328 10329 static void DiagnoseAdditionInShift(Sema &S, SourceLocation OpLoc, 10330 Expr *SubExpr, StringRef Shift) { 10331 if (BinaryOperator *Bop = dyn_cast<BinaryOperator>(SubExpr)) { 10332 if (Bop->getOpcode() == BO_Add || Bop->getOpcode() == BO_Sub) { 10333 StringRef Op = Bop->getOpcodeStr(); 10334 S.Diag(Bop->getOperatorLoc(), diag::warn_addition_in_bitshift) 10335 << Bop->getSourceRange() << OpLoc << Shift << Op; 10336 SuggestParentheses(S, Bop->getOperatorLoc(), 10337 S.PDiag(diag::note_precedence_silence) << Op, 10338 Bop->getSourceRange()); 10339 } 10340 } 10341 } 10342 10343 static void DiagnoseShiftCompare(Sema &S, SourceLocation OpLoc, 10344 Expr *LHSExpr, Expr *RHSExpr) { 10345 CXXOperatorCallExpr *OCE = dyn_cast<CXXOperatorCallExpr>(LHSExpr); 10346 if (!OCE) 10347 return; 10348 10349 FunctionDecl *FD = OCE->getDirectCallee(); 10350 if (!FD || !FD->isOverloadedOperator()) 10351 return; 10352 10353 OverloadedOperatorKind Kind = FD->getOverloadedOperator(); 10354 if (Kind != OO_LessLess && Kind != OO_GreaterGreater) 10355 return; 10356 10357 S.Diag(OpLoc, diag::warn_overloaded_shift_in_comparison) 10358 << LHSExpr->getSourceRange() << RHSExpr->getSourceRange() 10359 << (Kind == OO_LessLess); 10360 SuggestParentheses(S, OCE->getOperatorLoc(), 10361 S.PDiag(diag::note_precedence_silence) 10362 << (Kind == OO_LessLess ? "<<" : ">>"), 10363 OCE->getSourceRange()); 10364 SuggestParentheses(S, OpLoc, 10365 S.PDiag(diag::note_evaluate_comparison_first), 10366 SourceRange(OCE->getArg(1)->getLocStart(), 10367 RHSExpr->getLocEnd())); 10368 } 10369 10370 /// DiagnoseBinOpPrecedence - Emit warnings for expressions with tricky 10371 /// precedence. 10372 static void DiagnoseBinOpPrecedence(Sema &Self, BinaryOperatorKind Opc, 10373 SourceLocation OpLoc, Expr *LHSExpr, 10374 Expr *RHSExpr){ 10375 // Diagnose "arg1 'bitwise' arg2 'eq' arg3". 10376 if (BinaryOperator::isBitwiseOp(Opc)) 10377 DiagnoseBitwisePrecedence(Self, Opc, OpLoc, LHSExpr, RHSExpr); 10378 10379 // Diagnose "arg1 & arg2 | arg3" 10380 if (Opc == BO_Or && !OpLoc.isMacroID()/* Don't warn in macros. */) { 10381 DiagnoseBitwiseAndInBitwiseOr(Self, OpLoc, LHSExpr); 10382 DiagnoseBitwiseAndInBitwiseOr(Self, OpLoc, RHSExpr); 10383 } 10384 10385 // Warn about arg1 || arg2 && arg3, as GCC 4.3+ does. 10386 // We don't warn for 'assert(a || b && "bad")' since this is safe. 10387 if (Opc == BO_LOr && !OpLoc.isMacroID()/* Don't warn in macros. */) { 10388 DiagnoseLogicalAndInLogicalOrLHS(Self, OpLoc, LHSExpr, RHSExpr); 10389 DiagnoseLogicalAndInLogicalOrRHS(Self, OpLoc, LHSExpr, RHSExpr); 10390 } 10391 10392 if ((Opc == BO_Shl && LHSExpr->getType()->isIntegralType(Self.getASTContext())) 10393 || Opc == BO_Shr) { 10394 StringRef Shift = BinaryOperator::getOpcodeStr(Opc); 10395 DiagnoseAdditionInShift(Self, OpLoc, LHSExpr, Shift); 10396 DiagnoseAdditionInShift(Self, OpLoc, RHSExpr, Shift); 10397 } 10398 10399 // Warn on overloaded shift operators and comparisons, such as: 10400 // cout << 5 == 4; 10401 if (BinaryOperator::isComparisonOp(Opc)) 10402 DiagnoseShiftCompare(Self, OpLoc, LHSExpr, RHSExpr); 10403 } 10404 10405 // Binary Operators. 'Tok' is the token for the operator. 10406 ExprResult Sema::ActOnBinOp(Scope *S, SourceLocation TokLoc, 10407 tok::TokenKind Kind, 10408 Expr *LHSExpr, Expr *RHSExpr) { 10409 BinaryOperatorKind Opc = ConvertTokenKindToBinaryOpcode(Kind); 10410 assert(LHSExpr && "ActOnBinOp(): missing left expression"); 10411 assert(RHSExpr && "ActOnBinOp(): missing right expression"); 10412 10413 // Emit warnings for tricky precedence issues, e.g. "bitfield & 0x4 == 0" 10414 DiagnoseBinOpPrecedence(*this, Opc, TokLoc, LHSExpr, RHSExpr); 10415 10416 return BuildBinOp(S, TokLoc, Opc, LHSExpr, RHSExpr); 10417 } 10418 10419 /// Build an overloaded binary operator expression in the given scope. 10420 static ExprResult BuildOverloadedBinOp(Sema &S, Scope *Sc, SourceLocation OpLoc, 10421 BinaryOperatorKind Opc, 10422 Expr *LHS, Expr *RHS) { 10423 // Find all of the overloaded operators visible from this 10424 // point. We perform both an operator-name lookup from the local 10425 // scope and an argument-dependent lookup based on the types of 10426 // the arguments. 10427 UnresolvedSet<16> Functions; 10428 OverloadedOperatorKind OverOp 10429 = BinaryOperator::getOverloadedOperator(Opc); 10430 if (Sc && OverOp != OO_None && OverOp != OO_Equal) 10431 S.LookupOverloadedOperatorName(OverOp, Sc, LHS->getType(), 10432 RHS->getType(), Functions); 10433 10434 // Build the (potentially-overloaded, potentially-dependent) 10435 // binary operation. 10436 return S.CreateOverloadedBinOp(OpLoc, Opc, Functions, LHS, RHS); 10437 } 10438 10439 ExprResult Sema::BuildBinOp(Scope *S, SourceLocation OpLoc, 10440 BinaryOperatorKind Opc, 10441 Expr *LHSExpr, Expr *RHSExpr) { 10442 // We want to end up calling one of checkPseudoObjectAssignment 10443 // (if the LHS is a pseudo-object), BuildOverloadedBinOp (if 10444 // both expressions are overloadable or either is type-dependent), 10445 // or CreateBuiltinBinOp (in any other case). We also want to get 10446 // any placeholder types out of the way. 10447 10448 // Handle pseudo-objects in the LHS. 10449 if (const BuiltinType *pty = LHSExpr->getType()->getAsPlaceholderType()) { 10450 // Assignments with a pseudo-object l-value need special analysis. 10451 if (pty->getKind() == BuiltinType::PseudoObject && 10452 BinaryOperator::isAssignmentOp(Opc)) 10453 return checkPseudoObjectAssignment(S, OpLoc, Opc, LHSExpr, RHSExpr); 10454 10455 // Don't resolve overloads if the other type is overloadable. 10456 if (pty->getKind() == BuiltinType::Overload) { 10457 // We can't actually test that if we still have a placeholder, 10458 // though. Fortunately, none of the exceptions we see in that 10459 // code below are valid when the LHS is an overload set. Note 10460 // that an overload set can be dependently-typed, but it never 10461 // instantiates to having an overloadable type. 10462 ExprResult resolvedRHS = CheckPlaceholderExpr(RHSExpr); 10463 if (resolvedRHS.isInvalid()) return ExprError(); 10464 RHSExpr = resolvedRHS.get(); 10465 10466 if (RHSExpr->isTypeDependent() || 10467 RHSExpr->getType()->isOverloadableType()) 10468 return BuildOverloadedBinOp(*this, S, OpLoc, Opc, LHSExpr, RHSExpr); 10469 } 10470 10471 ExprResult LHS = CheckPlaceholderExpr(LHSExpr); 10472 if (LHS.isInvalid()) return ExprError(); 10473 LHSExpr = LHS.get(); 10474 } 10475 10476 // Handle pseudo-objects in the RHS. 10477 if (const BuiltinType *pty = RHSExpr->getType()->getAsPlaceholderType()) { 10478 // An overload in the RHS can potentially be resolved by the type 10479 // being assigned to. 10480 if (Opc == BO_Assign && pty->getKind() == BuiltinType::Overload) { 10481 if (LHSExpr->isTypeDependent() || RHSExpr->isTypeDependent()) 10482 return BuildOverloadedBinOp(*this, S, OpLoc, Opc, LHSExpr, RHSExpr); 10483 10484 if (LHSExpr->getType()->isOverloadableType()) 10485 return BuildOverloadedBinOp(*this, S, OpLoc, Opc, LHSExpr, RHSExpr); 10486 10487 return CreateBuiltinBinOp(OpLoc, Opc, LHSExpr, RHSExpr); 10488 } 10489 10490 // Don't resolve overloads if the other type is overloadable. 10491 if (pty->getKind() == BuiltinType::Overload && 10492 LHSExpr->getType()->isOverloadableType()) 10493 return BuildOverloadedBinOp(*this, S, OpLoc, Opc, LHSExpr, RHSExpr); 10494 10495 ExprResult resolvedRHS = CheckPlaceholderExpr(RHSExpr); 10496 if (!resolvedRHS.isUsable()) return ExprError(); 10497 RHSExpr = resolvedRHS.get(); 10498 } 10499 10500 if (getLangOpts().CPlusPlus) { 10501 // If either expression is type-dependent, always build an 10502 // overloaded op. 10503 if (LHSExpr->isTypeDependent() || RHSExpr->isTypeDependent()) 10504 return BuildOverloadedBinOp(*this, S, OpLoc, Opc, LHSExpr, RHSExpr); 10505 10506 // Otherwise, build an overloaded op if either expression has an 10507 // overloadable type. 10508 if (LHSExpr->getType()->isOverloadableType() || 10509 RHSExpr->getType()->isOverloadableType()) 10510 return BuildOverloadedBinOp(*this, S, OpLoc, Opc, LHSExpr, RHSExpr); 10511 } 10512 10513 // Build a built-in binary operation. 10514 return CreateBuiltinBinOp(OpLoc, Opc, LHSExpr, RHSExpr); 10515 } 10516 10517 ExprResult Sema::CreateBuiltinUnaryOp(SourceLocation OpLoc, 10518 UnaryOperatorKind Opc, 10519 Expr *InputExpr) { 10520 ExprResult Input = InputExpr; 10521 ExprValueKind VK = VK_RValue; 10522 ExprObjectKind OK = OK_Ordinary; 10523 QualType resultType; 10524 switch (Opc) { 10525 case UO_PreInc: 10526 case UO_PreDec: 10527 case UO_PostInc: 10528 case UO_PostDec: 10529 resultType = CheckIncrementDecrementOperand(*this, Input.get(), VK, OK, 10530 OpLoc, 10531 Opc == UO_PreInc || 10532 Opc == UO_PostInc, 10533 Opc == UO_PreInc || 10534 Opc == UO_PreDec); 10535 break; 10536 case UO_AddrOf: 10537 resultType = CheckAddressOfOperand(Input, OpLoc); 10538 RecordModifiableNonNullParam(*this, InputExpr); 10539 break; 10540 case UO_Deref: { 10541 Input = DefaultFunctionArrayLvalueConversion(Input.get()); 10542 if (Input.isInvalid()) return ExprError(); 10543 resultType = CheckIndirectionOperand(*this, Input.get(), VK, OpLoc); 10544 break; 10545 } 10546 case UO_Plus: 10547 case UO_Minus: 10548 Input = UsualUnaryConversions(Input.get()); 10549 if (Input.isInvalid()) return ExprError(); 10550 resultType = Input.get()->getType(); 10551 if (resultType->isDependentType()) 10552 break; 10553 if (resultType->isArithmeticType() || // C99 6.5.3.3p1 10554 resultType->isVectorType()) 10555 break; 10556 else if (getLangOpts().CPlusPlus && // C++ [expr.unary.op]p6 10557 Opc == UO_Plus && 10558 resultType->isPointerType()) 10559 break; 10560 10561 return ExprError(Diag(OpLoc, diag::err_typecheck_unary_expr) 10562 << resultType << Input.get()->getSourceRange()); 10563 10564 case UO_Not: // bitwise complement 10565 Input = UsualUnaryConversions(Input.get()); 10566 if (Input.isInvalid()) 10567 return ExprError(); 10568 resultType = Input.get()->getType(); 10569 if (resultType->isDependentType()) 10570 break; 10571 // C99 6.5.3.3p1. We allow complex int and float as a GCC extension. 10572 if (resultType->isComplexType() || resultType->isComplexIntegerType()) 10573 // C99 does not support '~' for complex conjugation. 10574 Diag(OpLoc, diag::ext_integer_complement_complex) 10575 << resultType << Input.get()->getSourceRange(); 10576 else if (resultType->hasIntegerRepresentation()) 10577 break; 10578 else if (resultType->isExtVectorType()) { 10579 if (Context.getLangOpts().OpenCL) { 10580 // OpenCL v1.1 s6.3.f: The bitwise operator not (~) does not operate 10581 // on vector float types. 10582 QualType T = resultType->getAs<ExtVectorType>()->getElementType(); 10583 if (!T->isIntegerType()) 10584 return ExprError(Diag(OpLoc, diag::err_typecheck_unary_expr) 10585 << resultType << Input.get()->getSourceRange()); 10586 } 10587 break; 10588 } else { 10589 return ExprError(Diag(OpLoc, diag::err_typecheck_unary_expr) 10590 << resultType << Input.get()->getSourceRange()); 10591 } 10592 break; 10593 10594 case UO_LNot: // logical negation 10595 // Unlike +/-/~, integer promotions aren't done here (C99 6.5.3.3p5). 10596 Input = DefaultFunctionArrayLvalueConversion(Input.get()); 10597 if (Input.isInvalid()) return ExprError(); 10598 resultType = Input.get()->getType(); 10599 10600 // Though we still have to promote half FP to float... 10601 if (resultType->isHalfType() && !Context.getLangOpts().NativeHalfType) { 10602 Input = ImpCastExprToType(Input.get(), Context.FloatTy, CK_FloatingCast).get(); 10603 resultType = Context.FloatTy; 10604 } 10605 10606 if (resultType->isDependentType()) 10607 break; 10608 if (resultType->isScalarType() && !isScopedEnumerationType(resultType)) { 10609 // C99 6.5.3.3p1: ok, fallthrough; 10610 if (Context.getLangOpts().CPlusPlus) { 10611 // C++03 [expr.unary.op]p8, C++0x [expr.unary.op]p9: 10612 // operand contextually converted to bool. 10613 Input = ImpCastExprToType(Input.get(), Context.BoolTy, 10614 ScalarTypeToBooleanCastKind(resultType)); 10615 } else if (Context.getLangOpts().OpenCL && 10616 Context.getLangOpts().OpenCLVersion < 120) { 10617 // OpenCL v1.1 6.3.h: The logical operator not (!) does not 10618 // operate on scalar float types. 10619 if (!resultType->isIntegerType()) 10620 return ExprError(Diag(OpLoc, diag::err_typecheck_unary_expr) 10621 << resultType << Input.get()->getSourceRange()); 10622 } 10623 } else if (resultType->isExtVectorType()) { 10624 if (Context.getLangOpts().OpenCL && 10625 Context.getLangOpts().OpenCLVersion < 120) { 10626 // OpenCL v1.1 6.3.h: The logical operator not (!) does not 10627 // operate on vector float types. 10628 QualType T = resultType->getAs<ExtVectorType>()->getElementType(); 10629 if (!T->isIntegerType()) 10630 return ExprError(Diag(OpLoc, diag::err_typecheck_unary_expr) 10631 << resultType << Input.get()->getSourceRange()); 10632 } 10633 // Vector logical not returns the signed variant of the operand type. 10634 resultType = GetSignedVectorType(resultType); 10635 break; 10636 } else { 10637 return ExprError(Diag(OpLoc, diag::err_typecheck_unary_expr) 10638 << resultType << Input.get()->getSourceRange()); 10639 } 10640 10641 // LNot always has type int. C99 6.5.3.3p5. 10642 // In C++, it's bool. C++ 5.3.1p8 10643 resultType = Context.getLogicalOperationType(); 10644 break; 10645 case UO_Real: 10646 case UO_Imag: 10647 resultType = CheckRealImagOperand(*this, Input, OpLoc, Opc == UO_Real); 10648 // _Real maps ordinary l-values into ordinary l-values. _Imag maps ordinary 10649 // complex l-values to ordinary l-values and all other values to r-values. 10650 if (Input.isInvalid()) return ExprError(); 10651 if (Opc == UO_Real || Input.get()->getType()->isAnyComplexType()) { 10652 if (Input.get()->getValueKind() != VK_RValue && 10653 Input.get()->getObjectKind() == OK_Ordinary) 10654 VK = Input.get()->getValueKind(); 10655 } else if (!getLangOpts().CPlusPlus) { 10656 // In C, a volatile scalar is read by __imag. In C++, it is not. 10657 Input = DefaultLvalueConversion(Input.get()); 10658 } 10659 break; 10660 case UO_Extension: 10661 resultType = Input.get()->getType(); 10662 VK = Input.get()->getValueKind(); 10663 OK = Input.get()->getObjectKind(); 10664 break; 10665 } 10666 if (resultType.isNull() || Input.isInvalid()) 10667 return ExprError(); 10668 10669 // Check for array bounds violations in the operand of the UnaryOperator, 10670 // except for the '*' and '&' operators that have to be handled specially 10671 // by CheckArrayAccess (as there are special cases like &array[arraysize] 10672 // that are explicitly defined as valid by the standard). 10673 if (Opc != UO_AddrOf && Opc != UO_Deref) 10674 CheckArrayAccess(Input.get()); 10675 10676 return new (Context) 10677 UnaryOperator(Input.get(), Opc, resultType, VK, OK, OpLoc); 10678 } 10679 10680 /// \brief Determine whether the given expression is a qualified member 10681 /// access expression, of a form that could be turned into a pointer to member 10682 /// with the address-of operator. 10683 static bool isQualifiedMemberAccess(Expr *E) { 10684 if (DeclRefExpr *DRE = dyn_cast<DeclRefExpr>(E)) { 10685 if (!DRE->getQualifier()) 10686 return false; 10687 10688 ValueDecl *VD = DRE->getDecl(); 10689 if (!VD->isCXXClassMember()) 10690 return false; 10691 10692 if (isa<FieldDecl>(VD) || isa<IndirectFieldDecl>(VD)) 10693 return true; 10694 if (CXXMethodDecl *Method = dyn_cast<CXXMethodDecl>(VD)) 10695 return Method->isInstance(); 10696 10697 return false; 10698 } 10699 10700 if (UnresolvedLookupExpr *ULE = dyn_cast<UnresolvedLookupExpr>(E)) { 10701 if (!ULE->getQualifier()) 10702 return false; 10703 10704 for (UnresolvedLookupExpr::decls_iterator D = ULE->decls_begin(), 10705 DEnd = ULE->decls_end(); 10706 D != DEnd; ++D) { 10707 if (CXXMethodDecl *Method = dyn_cast<CXXMethodDecl>(*D)) { 10708 if (Method->isInstance()) 10709 return true; 10710 } else { 10711 // Overload set does not contain methods. 10712 break; 10713 } 10714 } 10715 10716 return false; 10717 } 10718 10719 return false; 10720 } 10721 10722 ExprResult Sema::BuildUnaryOp(Scope *S, SourceLocation OpLoc, 10723 UnaryOperatorKind Opc, Expr *Input) { 10724 // First things first: handle placeholders so that the 10725 // overloaded-operator check considers the right type. 10726 if (const BuiltinType *pty = Input->getType()->getAsPlaceholderType()) { 10727 // Increment and decrement of pseudo-object references. 10728 if (pty->getKind() == BuiltinType::PseudoObject && 10729 UnaryOperator::isIncrementDecrementOp(Opc)) 10730 return checkPseudoObjectIncDec(S, OpLoc, Opc, Input); 10731 10732 // extension is always a builtin operator. 10733 if (Opc == UO_Extension) 10734 return CreateBuiltinUnaryOp(OpLoc, Opc, Input); 10735 10736 // & gets special logic for several kinds of placeholder. 10737 // The builtin code knows what to do. 10738 if (Opc == UO_AddrOf && 10739 (pty->getKind() == BuiltinType::Overload || 10740 pty->getKind() == BuiltinType::UnknownAny || 10741 pty->getKind() == BuiltinType::BoundMember)) 10742 return CreateBuiltinUnaryOp(OpLoc, Opc, Input); 10743 10744 // Anything else needs to be handled now. 10745 ExprResult Result = CheckPlaceholderExpr(Input); 10746 if (Result.isInvalid()) return ExprError(); 10747 Input = Result.get(); 10748 } 10749 10750 if (getLangOpts().CPlusPlus && Input->getType()->isOverloadableType() && 10751 UnaryOperator::getOverloadedOperator(Opc) != OO_None && 10752 !(Opc == UO_AddrOf && isQualifiedMemberAccess(Input))) { 10753 // Find all of the overloaded operators visible from this 10754 // point. We perform both an operator-name lookup from the local 10755 // scope and an argument-dependent lookup based on the types of 10756 // the arguments. 10757 UnresolvedSet<16> Functions; 10758 OverloadedOperatorKind OverOp = UnaryOperator::getOverloadedOperator(Opc); 10759 if (S && OverOp != OO_None) 10760 LookupOverloadedOperatorName(OverOp, S, Input->getType(), QualType(), 10761 Functions); 10762 10763 return CreateOverloadedUnaryOp(OpLoc, Opc, Functions, Input); 10764 } 10765 10766 return CreateBuiltinUnaryOp(OpLoc, Opc, Input); 10767 } 10768 10769 // Unary Operators. 'Tok' is the token for the operator. 10770 ExprResult Sema::ActOnUnaryOp(Scope *S, SourceLocation OpLoc, 10771 tok::TokenKind Op, Expr *Input) { 10772 return BuildUnaryOp(S, OpLoc, ConvertTokenKindToUnaryOpcode(Op), Input); 10773 } 10774 10775 /// ActOnAddrLabel - Parse the GNU address of label extension: "&&foo". 10776 ExprResult Sema::ActOnAddrLabel(SourceLocation OpLoc, SourceLocation LabLoc, 10777 LabelDecl *TheDecl) { 10778 TheDecl->markUsed(Context); 10779 // Create the AST node. The address of a label always has type 'void*'. 10780 return new (Context) AddrLabelExpr(OpLoc, LabLoc, TheDecl, 10781 Context.getPointerType(Context.VoidTy)); 10782 } 10783 10784 /// Given the last statement in a statement-expression, check whether 10785 /// the result is a producing expression (like a call to an 10786 /// ns_returns_retained function) and, if so, rebuild it to hoist the 10787 /// release out of the full-expression. Otherwise, return null. 10788 /// Cannot fail. 10789 static Expr *maybeRebuildARCConsumingStmt(Stmt *Statement) { 10790 // Should always be wrapped with one of these. 10791 ExprWithCleanups *cleanups = dyn_cast<ExprWithCleanups>(Statement); 10792 if (!cleanups) return nullptr; 10793 10794 ImplicitCastExpr *cast = dyn_cast<ImplicitCastExpr>(cleanups->getSubExpr()); 10795 if (!cast || cast->getCastKind() != CK_ARCConsumeObject) 10796 return nullptr; 10797 10798 // Splice out the cast. This shouldn't modify any interesting 10799 // features of the statement. 10800 Expr *producer = cast->getSubExpr(); 10801 assert(producer->getType() == cast->getType()); 10802 assert(producer->getValueKind() == cast->getValueKind()); 10803 cleanups->setSubExpr(producer); 10804 return cleanups; 10805 } 10806 10807 void Sema::ActOnStartStmtExpr() { 10808 PushExpressionEvaluationContext(ExprEvalContexts.back().Context); 10809 } 10810 10811 void Sema::ActOnStmtExprError() { 10812 // Note that function is also called by TreeTransform when leaving a 10813 // StmtExpr scope without rebuilding anything. 10814 10815 DiscardCleanupsInEvaluationContext(); 10816 PopExpressionEvaluationContext(); 10817 } 10818 10819 ExprResult 10820 Sema::ActOnStmtExpr(SourceLocation LPLoc, Stmt *SubStmt, 10821 SourceLocation RPLoc) { // "({..})" 10822 assert(SubStmt && isa<CompoundStmt>(SubStmt) && "Invalid action invocation!"); 10823 CompoundStmt *Compound = cast<CompoundStmt>(SubStmt); 10824 10825 if (hasAnyUnrecoverableErrorsInThisFunction()) 10826 DiscardCleanupsInEvaluationContext(); 10827 assert(!ExprNeedsCleanups && "cleanups within StmtExpr not correctly bound!"); 10828 PopExpressionEvaluationContext(); 10829 10830 // FIXME: there are a variety of strange constraints to enforce here, for 10831 // example, it is not possible to goto into a stmt expression apparently. 10832 // More semantic analysis is needed. 10833 10834 // If there are sub-stmts in the compound stmt, take the type of the last one 10835 // as the type of the stmtexpr. 10836 QualType Ty = Context.VoidTy; 10837 bool StmtExprMayBindToTemp = false; 10838 if (!Compound->body_empty()) { 10839 Stmt *LastStmt = Compound->body_back(); 10840 LabelStmt *LastLabelStmt = nullptr; 10841 // If LastStmt is a label, skip down through into the body. 10842 while (LabelStmt *Label = dyn_cast<LabelStmt>(LastStmt)) { 10843 LastLabelStmt = Label; 10844 LastStmt = Label->getSubStmt(); 10845 } 10846 10847 if (Expr *LastE = dyn_cast<Expr>(LastStmt)) { 10848 // Do function/array conversion on the last expression, but not 10849 // lvalue-to-rvalue. However, initialize an unqualified type. 10850 ExprResult LastExpr = DefaultFunctionArrayConversion(LastE); 10851 if (LastExpr.isInvalid()) 10852 return ExprError(); 10853 Ty = LastExpr.get()->getType().getUnqualifiedType(); 10854 10855 if (!Ty->isDependentType() && !LastExpr.get()->isTypeDependent()) { 10856 // In ARC, if the final expression ends in a consume, splice 10857 // the consume out and bind it later. In the alternate case 10858 // (when dealing with a retainable type), the result 10859 // initialization will create a produce. In both cases the 10860 // result will be +1, and we'll need to balance that out with 10861 // a bind. 10862 if (Expr *rebuiltLastStmt 10863 = maybeRebuildARCConsumingStmt(LastExpr.get())) { 10864 LastExpr = rebuiltLastStmt; 10865 } else { 10866 LastExpr = PerformCopyInitialization( 10867 InitializedEntity::InitializeResult(LPLoc, 10868 Ty, 10869 false), 10870 SourceLocation(), 10871 LastExpr); 10872 } 10873 10874 if (LastExpr.isInvalid()) 10875 return ExprError(); 10876 if (LastExpr.get() != nullptr) { 10877 if (!LastLabelStmt) 10878 Compound->setLastStmt(LastExpr.get()); 10879 else 10880 LastLabelStmt->setSubStmt(LastExpr.get()); 10881 StmtExprMayBindToTemp = true; 10882 } 10883 } 10884 } 10885 } 10886 10887 // FIXME: Check that expression type is complete/non-abstract; statement 10888 // expressions are not lvalues. 10889 Expr *ResStmtExpr = new (Context) StmtExpr(Compound, Ty, LPLoc, RPLoc); 10890 if (StmtExprMayBindToTemp) 10891 return MaybeBindToTemporary(ResStmtExpr); 10892 return ResStmtExpr; 10893 } 10894 10895 ExprResult Sema::BuildBuiltinOffsetOf(SourceLocation BuiltinLoc, 10896 TypeSourceInfo *TInfo, 10897 OffsetOfComponent *CompPtr, 10898 unsigned NumComponents, 10899 SourceLocation RParenLoc) { 10900 QualType ArgTy = TInfo->getType(); 10901 bool Dependent = ArgTy->isDependentType(); 10902 SourceRange TypeRange = TInfo->getTypeLoc().getLocalSourceRange(); 10903 10904 // We must have at least one component that refers to the type, and the first 10905 // one is known to be a field designator. Verify that the ArgTy represents 10906 // a struct/union/class. 10907 if (!Dependent && !ArgTy->isRecordType()) 10908 return ExprError(Diag(BuiltinLoc, diag::err_offsetof_record_type) 10909 << ArgTy << TypeRange); 10910 10911 // Type must be complete per C99 7.17p3 because a declaring a variable 10912 // with an incomplete type would be ill-formed. 10913 if (!Dependent 10914 && RequireCompleteType(BuiltinLoc, ArgTy, 10915 diag::err_offsetof_incomplete_type, TypeRange)) 10916 return ExprError(); 10917 10918 // offsetof with non-identifier designators (e.g. "offsetof(x, a.b[c])") are a 10919 // GCC extension, diagnose them. 10920 // FIXME: This diagnostic isn't actually visible because the location is in 10921 // a system header! 10922 if (NumComponents != 1) 10923 Diag(BuiltinLoc, diag::ext_offsetof_extended_field_designator) 10924 << SourceRange(CompPtr[1].LocStart, CompPtr[NumComponents-1].LocEnd); 10925 10926 bool DidWarnAboutNonPOD = false; 10927 QualType CurrentType = ArgTy; 10928 typedef OffsetOfExpr::OffsetOfNode OffsetOfNode; 10929 SmallVector<OffsetOfNode, 4> Comps; 10930 SmallVector<Expr*, 4> Exprs; 10931 for (unsigned i = 0; i != NumComponents; ++i) { 10932 const OffsetOfComponent &OC = CompPtr[i]; 10933 if (OC.isBrackets) { 10934 // Offset of an array sub-field. TODO: Should we allow vector elements? 10935 if (!CurrentType->isDependentType()) { 10936 const ArrayType *AT = Context.getAsArrayType(CurrentType); 10937 if(!AT) 10938 return ExprError(Diag(OC.LocEnd, diag::err_offsetof_array_type) 10939 << CurrentType); 10940 CurrentType = AT->getElementType(); 10941 } else 10942 CurrentType = Context.DependentTy; 10943 10944 ExprResult IdxRval = DefaultLvalueConversion(static_cast<Expr*>(OC.U.E)); 10945 if (IdxRval.isInvalid()) 10946 return ExprError(); 10947 Expr *Idx = IdxRval.get(); 10948 10949 // The expression must be an integral expression. 10950 // FIXME: An integral constant expression? 10951 if (!Idx->isTypeDependent() && !Idx->isValueDependent() && 10952 !Idx->getType()->isIntegerType()) 10953 return ExprError(Diag(Idx->getLocStart(), 10954 diag::err_typecheck_subscript_not_integer) 10955 << Idx->getSourceRange()); 10956 10957 // Record this array index. 10958 Comps.push_back(OffsetOfNode(OC.LocStart, Exprs.size(), OC.LocEnd)); 10959 Exprs.push_back(Idx); 10960 continue; 10961 } 10962 10963 // Offset of a field. 10964 if (CurrentType->isDependentType()) { 10965 // We have the offset of a field, but we can't look into the dependent 10966 // type. Just record the identifier of the field. 10967 Comps.push_back(OffsetOfNode(OC.LocStart, OC.U.IdentInfo, OC.LocEnd)); 10968 CurrentType = Context.DependentTy; 10969 continue; 10970 } 10971 10972 // We need to have a complete type to look into. 10973 if (RequireCompleteType(OC.LocStart, CurrentType, 10974 diag::err_offsetof_incomplete_type)) 10975 return ExprError(); 10976 10977 // Look for the designated field. 10978 const RecordType *RC = CurrentType->getAs<RecordType>(); 10979 if (!RC) 10980 return ExprError(Diag(OC.LocEnd, diag::err_offsetof_record_type) 10981 << CurrentType); 10982 RecordDecl *RD = RC->getDecl(); 10983 10984 // C++ [lib.support.types]p5: 10985 // The macro offsetof accepts a restricted set of type arguments in this 10986 // International Standard. type shall be a POD structure or a POD union 10987 // (clause 9). 10988 // C++11 [support.types]p4: 10989 // If type is not a standard-layout class (Clause 9), the results are 10990 // undefined. 10991 if (CXXRecordDecl *CRD = dyn_cast<CXXRecordDecl>(RD)) { 10992 bool IsSafe = LangOpts.CPlusPlus11? CRD->isStandardLayout() : CRD->isPOD(); 10993 unsigned DiagID = 10994 LangOpts.CPlusPlus11? diag::ext_offsetof_non_standardlayout_type 10995 : diag::ext_offsetof_non_pod_type; 10996 10997 if (!IsSafe && !DidWarnAboutNonPOD && 10998 DiagRuntimeBehavior(BuiltinLoc, nullptr, 10999 PDiag(DiagID) 11000 << SourceRange(CompPtr[0].LocStart, OC.LocEnd) 11001 << CurrentType)) 11002 DidWarnAboutNonPOD = true; 11003 } 11004 11005 // Look for the field. 11006 LookupResult R(*this, OC.U.IdentInfo, OC.LocStart, LookupMemberName); 11007 LookupQualifiedName(R, RD); 11008 FieldDecl *MemberDecl = R.getAsSingle<FieldDecl>(); 11009 IndirectFieldDecl *IndirectMemberDecl = nullptr; 11010 if (!MemberDecl) { 11011 if ((IndirectMemberDecl = R.getAsSingle<IndirectFieldDecl>())) 11012 MemberDecl = IndirectMemberDecl->getAnonField(); 11013 } 11014 11015 if (!MemberDecl) 11016 return ExprError(Diag(BuiltinLoc, diag::err_no_member) 11017 << OC.U.IdentInfo << RD << SourceRange(OC.LocStart, 11018 OC.LocEnd)); 11019 11020 // C99 7.17p3: 11021 // (If the specified member is a bit-field, the behavior is undefined.) 11022 // 11023 // We diagnose this as an error. 11024 if (MemberDecl->isBitField()) { 11025 Diag(OC.LocEnd, diag::err_offsetof_bitfield) 11026 << MemberDecl->getDeclName() 11027 << SourceRange(BuiltinLoc, RParenLoc); 11028 Diag(MemberDecl->getLocation(), diag::note_bitfield_decl); 11029 return ExprError(); 11030 } 11031 11032 RecordDecl *Parent = MemberDecl->getParent(); 11033 if (IndirectMemberDecl) 11034 Parent = cast<RecordDecl>(IndirectMemberDecl->getDeclContext()); 11035 11036 // If the member was found in a base class, introduce OffsetOfNodes for 11037 // the base class indirections. 11038 CXXBasePaths Paths; 11039 if (IsDerivedFrom(CurrentType, Context.getTypeDeclType(Parent), Paths)) { 11040 if (Paths.getDetectedVirtual()) { 11041 Diag(OC.LocEnd, diag::err_offsetof_field_of_virtual_base) 11042 << MemberDecl->getDeclName() 11043 << SourceRange(BuiltinLoc, RParenLoc); 11044 return ExprError(); 11045 } 11046 11047 CXXBasePath &Path = Paths.front(); 11048 for (CXXBasePath::iterator B = Path.begin(), BEnd = Path.end(); 11049 B != BEnd; ++B) 11050 Comps.push_back(OffsetOfNode(B->Base)); 11051 } 11052 11053 if (IndirectMemberDecl) { 11054 for (auto *FI : IndirectMemberDecl->chain()) { 11055 assert(isa<FieldDecl>(FI)); 11056 Comps.push_back(OffsetOfNode(OC.LocStart, 11057 cast<FieldDecl>(FI), OC.LocEnd)); 11058 } 11059 } else 11060 Comps.push_back(OffsetOfNode(OC.LocStart, MemberDecl, OC.LocEnd)); 11061 11062 CurrentType = MemberDecl->getType().getNonReferenceType(); 11063 } 11064 11065 return OffsetOfExpr::Create(Context, Context.getSizeType(), BuiltinLoc, TInfo, 11066 Comps, Exprs, RParenLoc); 11067 } 11068 11069 ExprResult Sema::ActOnBuiltinOffsetOf(Scope *S, 11070 SourceLocation BuiltinLoc, 11071 SourceLocation TypeLoc, 11072 ParsedType ParsedArgTy, 11073 OffsetOfComponent *CompPtr, 11074 unsigned NumComponents, 11075 SourceLocation RParenLoc) { 11076 11077 TypeSourceInfo *ArgTInfo; 11078 QualType ArgTy = GetTypeFromParser(ParsedArgTy, &ArgTInfo); 11079 if (ArgTy.isNull()) 11080 return ExprError(); 11081 11082 if (!ArgTInfo) 11083 ArgTInfo = Context.getTrivialTypeSourceInfo(ArgTy, TypeLoc); 11084 11085 return BuildBuiltinOffsetOf(BuiltinLoc, ArgTInfo, CompPtr, NumComponents, 11086 RParenLoc); 11087 } 11088 11089 11090 ExprResult Sema::ActOnChooseExpr(SourceLocation BuiltinLoc, 11091 Expr *CondExpr, 11092 Expr *LHSExpr, Expr *RHSExpr, 11093 SourceLocation RPLoc) { 11094 assert((CondExpr && LHSExpr && RHSExpr) && "Missing type argument(s)"); 11095 11096 ExprValueKind VK = VK_RValue; 11097 ExprObjectKind OK = OK_Ordinary; 11098 QualType resType; 11099 bool ValueDependent = false; 11100 bool CondIsTrue = false; 11101 if (CondExpr->isTypeDependent() || CondExpr->isValueDependent()) { 11102 resType = Context.DependentTy; 11103 ValueDependent = true; 11104 } else { 11105 // The conditional expression is required to be a constant expression. 11106 llvm::APSInt condEval(32); 11107 ExprResult CondICE 11108 = VerifyIntegerConstantExpression(CondExpr, &condEval, 11109 diag::err_typecheck_choose_expr_requires_constant, false); 11110 if (CondICE.isInvalid()) 11111 return ExprError(); 11112 CondExpr = CondICE.get(); 11113 CondIsTrue = condEval.getZExtValue(); 11114 11115 // If the condition is > zero, then the AST type is the same as the LSHExpr. 11116 Expr *ActiveExpr = CondIsTrue ? LHSExpr : RHSExpr; 11117 11118 resType = ActiveExpr->getType(); 11119 ValueDependent = ActiveExpr->isValueDependent(); 11120 VK = ActiveExpr->getValueKind(); 11121 OK = ActiveExpr->getObjectKind(); 11122 } 11123 11124 return new (Context) 11125 ChooseExpr(BuiltinLoc, CondExpr, LHSExpr, RHSExpr, resType, VK, OK, RPLoc, 11126 CondIsTrue, resType->isDependentType(), ValueDependent); 11127 } 11128 11129 //===----------------------------------------------------------------------===// 11130 // Clang Extensions. 11131 //===----------------------------------------------------------------------===// 11132 11133 /// ActOnBlockStart - This callback is invoked when a block literal is started. 11134 void Sema::ActOnBlockStart(SourceLocation CaretLoc, Scope *CurScope) { 11135 BlockDecl *Block = BlockDecl::Create(Context, CurContext, CaretLoc); 11136 11137 if (LangOpts.CPlusPlus) { 11138 Decl *ManglingContextDecl; 11139 if (MangleNumberingContext *MCtx = 11140 getCurrentMangleNumberContext(Block->getDeclContext(), 11141 ManglingContextDecl)) { 11142 unsigned ManglingNumber = MCtx->getManglingNumber(Block); 11143 Block->setBlockMangling(ManglingNumber, ManglingContextDecl); 11144 } 11145 } 11146 11147 PushBlockScope(CurScope, Block); 11148 CurContext->addDecl(Block); 11149 if (CurScope) 11150 PushDeclContext(CurScope, Block); 11151 else 11152 CurContext = Block; 11153 11154 getCurBlock()->HasImplicitReturnType = true; 11155 11156 // Enter a new evaluation context to insulate the block from any 11157 // cleanups from the enclosing full-expression. 11158 PushExpressionEvaluationContext(PotentiallyEvaluated); 11159 } 11160 11161 void Sema::ActOnBlockArguments(SourceLocation CaretLoc, Declarator &ParamInfo, 11162 Scope *CurScope) { 11163 assert(ParamInfo.getIdentifier() == nullptr && 11164 "block-id should have no identifier!"); 11165 assert(ParamInfo.getContext() == Declarator::BlockLiteralContext); 11166 BlockScopeInfo *CurBlock = getCurBlock(); 11167 11168 TypeSourceInfo *Sig = GetTypeForDeclarator(ParamInfo, CurScope); 11169 QualType T = Sig->getType(); 11170 11171 // FIXME: We should allow unexpanded parameter packs here, but that would, 11172 // in turn, make the block expression contain unexpanded parameter packs. 11173 if (DiagnoseUnexpandedParameterPack(CaretLoc, Sig, UPPC_Block)) { 11174 // Drop the parameters. 11175 FunctionProtoType::ExtProtoInfo EPI; 11176 EPI.HasTrailingReturn = false; 11177 EPI.TypeQuals |= DeclSpec::TQ_const; 11178 T = Context.getFunctionType(Context.DependentTy, None, EPI); 11179 Sig = Context.getTrivialTypeSourceInfo(T); 11180 } 11181 11182 // GetTypeForDeclarator always produces a function type for a block 11183 // literal signature. Furthermore, it is always a FunctionProtoType 11184 // unless the function was written with a typedef. 11185 assert(T->isFunctionType() && 11186 "GetTypeForDeclarator made a non-function block signature"); 11187 11188 // Look for an explicit signature in that function type. 11189 FunctionProtoTypeLoc ExplicitSignature; 11190 11191 TypeLoc tmp = Sig->getTypeLoc().IgnoreParens(); 11192 if ((ExplicitSignature = tmp.getAs<FunctionProtoTypeLoc>())) { 11193 11194 // Check whether that explicit signature was synthesized by 11195 // GetTypeForDeclarator. If so, don't save that as part of the 11196 // written signature. 11197 if (ExplicitSignature.getLocalRangeBegin() == 11198 ExplicitSignature.getLocalRangeEnd()) { 11199 // This would be much cheaper if we stored TypeLocs instead of 11200 // TypeSourceInfos. 11201 TypeLoc Result = ExplicitSignature.getReturnLoc(); 11202 unsigned Size = Result.getFullDataSize(); 11203 Sig = Context.CreateTypeSourceInfo(Result.getType(), Size); 11204 Sig->getTypeLoc().initializeFullCopy(Result, Size); 11205 11206 ExplicitSignature = FunctionProtoTypeLoc(); 11207 } 11208 } 11209 11210 CurBlock->TheDecl->setSignatureAsWritten(Sig); 11211 CurBlock->FunctionType = T; 11212 11213 const FunctionType *Fn = T->getAs<FunctionType>(); 11214 QualType RetTy = Fn->getReturnType(); 11215 bool isVariadic = 11216 (isa<FunctionProtoType>(Fn) && cast<FunctionProtoType>(Fn)->isVariadic()); 11217 11218 CurBlock->TheDecl->setIsVariadic(isVariadic); 11219 11220 // Context.DependentTy is used as a placeholder for a missing block 11221 // return type. TODO: what should we do with declarators like: 11222 // ^ * { ... } 11223 // If the answer is "apply template argument deduction".... 11224 if (RetTy != Context.DependentTy) { 11225 CurBlock->ReturnType = RetTy; 11226 CurBlock->TheDecl->setBlockMissingReturnType(false); 11227 CurBlock->HasImplicitReturnType = false; 11228 } 11229 11230 // Push block parameters from the declarator if we had them. 11231 SmallVector<ParmVarDecl*, 8> Params; 11232 if (ExplicitSignature) { 11233 for (unsigned I = 0, E = ExplicitSignature.getNumParams(); I != E; ++I) { 11234 ParmVarDecl *Param = ExplicitSignature.getParam(I); 11235 if (Param->getIdentifier() == nullptr && 11236 !Param->isImplicit() && 11237 !Param->isInvalidDecl() && 11238 !getLangOpts().CPlusPlus) 11239 Diag(Param->getLocation(), diag::err_parameter_name_omitted); 11240 Params.push_back(Param); 11241 } 11242 11243 // Fake up parameter variables if we have a typedef, like 11244 // ^ fntype { ... } 11245 } else if (const FunctionProtoType *Fn = T->getAs<FunctionProtoType>()) { 11246 for (const auto &I : Fn->param_types()) { 11247 ParmVarDecl *Param = BuildParmVarDeclForTypedef( 11248 CurBlock->TheDecl, ParamInfo.getLocStart(), I); 11249 Params.push_back(Param); 11250 } 11251 } 11252 11253 // Set the parameters on the block decl. 11254 if (!Params.empty()) { 11255 CurBlock->TheDecl->setParams(Params); 11256 CheckParmsForFunctionDef(CurBlock->TheDecl->param_begin(), 11257 CurBlock->TheDecl->param_end(), 11258 /*CheckParameterNames=*/false); 11259 } 11260 11261 // Finally we can process decl attributes. 11262 ProcessDeclAttributes(CurScope, CurBlock->TheDecl, ParamInfo); 11263 11264 // Put the parameter variables in scope. 11265 for (auto AI : CurBlock->TheDecl->params()) { 11266 AI->setOwningFunction(CurBlock->TheDecl); 11267 11268 // If this has an identifier, add it to the scope stack. 11269 if (AI->getIdentifier()) { 11270 CheckShadow(CurBlock->TheScope, AI); 11271 11272 PushOnScopeChains(AI, CurBlock->TheScope); 11273 } 11274 } 11275 } 11276 11277 /// ActOnBlockError - If there is an error parsing a block, this callback 11278 /// is invoked to pop the information about the block from the action impl. 11279 void Sema::ActOnBlockError(SourceLocation CaretLoc, Scope *CurScope) { 11280 // Leave the expression-evaluation context. 11281 DiscardCleanupsInEvaluationContext(); 11282 PopExpressionEvaluationContext(); 11283 11284 // Pop off CurBlock, handle nested blocks. 11285 PopDeclContext(); 11286 PopFunctionScopeInfo(); 11287 } 11288 11289 /// ActOnBlockStmtExpr - This is called when the body of a block statement 11290 /// literal was successfully completed. ^(int x){...} 11291 ExprResult Sema::ActOnBlockStmtExpr(SourceLocation CaretLoc, 11292 Stmt *Body, Scope *CurScope) { 11293 // If blocks are disabled, emit an error. 11294 if (!LangOpts.Blocks) 11295 Diag(CaretLoc, diag::err_blocks_disable); 11296 11297 // Leave the expression-evaluation context. 11298 if (hasAnyUnrecoverableErrorsInThisFunction()) 11299 DiscardCleanupsInEvaluationContext(); 11300 assert(!ExprNeedsCleanups && "cleanups within block not correctly bound!"); 11301 PopExpressionEvaluationContext(); 11302 11303 BlockScopeInfo *BSI = cast<BlockScopeInfo>(FunctionScopes.back()); 11304 11305 if (BSI->HasImplicitReturnType) 11306 deduceClosureReturnType(*BSI); 11307 11308 PopDeclContext(); 11309 11310 QualType RetTy = Context.VoidTy; 11311 if (!BSI->ReturnType.isNull()) 11312 RetTy = BSI->ReturnType; 11313 11314 bool NoReturn = BSI->TheDecl->hasAttr<NoReturnAttr>(); 11315 QualType BlockTy; 11316 11317 // Set the captured variables on the block. 11318 // FIXME: Share capture structure between BlockDecl and CapturingScopeInfo! 11319 SmallVector<BlockDecl::Capture, 4> Captures; 11320 for (unsigned i = 0, e = BSI->Captures.size(); i != e; i++) { 11321 CapturingScopeInfo::Capture &Cap = BSI->Captures[i]; 11322 if (Cap.isThisCapture()) 11323 continue; 11324 BlockDecl::Capture NewCap(Cap.getVariable(), Cap.isBlockCapture(), 11325 Cap.isNested(), Cap.getInitExpr()); 11326 Captures.push_back(NewCap); 11327 } 11328 BSI->TheDecl->setCaptures(Context, Captures.begin(), Captures.end(), 11329 BSI->CXXThisCaptureIndex != 0); 11330 11331 // If the user wrote a function type in some form, try to use that. 11332 if (!BSI->FunctionType.isNull()) { 11333 const FunctionType *FTy = BSI->FunctionType->getAs<FunctionType>(); 11334 11335 FunctionType::ExtInfo Ext = FTy->getExtInfo(); 11336 if (NoReturn && !Ext.getNoReturn()) Ext = Ext.withNoReturn(true); 11337 11338 // Turn protoless block types into nullary block types. 11339 if (isa<FunctionNoProtoType>(FTy)) { 11340 FunctionProtoType::ExtProtoInfo EPI; 11341 EPI.ExtInfo = Ext; 11342 BlockTy = Context.getFunctionType(RetTy, None, EPI); 11343 11344 // Otherwise, if we don't need to change anything about the function type, 11345 // preserve its sugar structure. 11346 } else if (FTy->getReturnType() == RetTy && 11347 (!NoReturn || FTy->getNoReturnAttr())) { 11348 BlockTy = BSI->FunctionType; 11349 11350 // Otherwise, make the minimal modifications to the function type. 11351 } else { 11352 const FunctionProtoType *FPT = cast<FunctionProtoType>(FTy); 11353 FunctionProtoType::ExtProtoInfo EPI = FPT->getExtProtoInfo(); 11354 EPI.TypeQuals = 0; // FIXME: silently? 11355 EPI.ExtInfo = Ext; 11356 BlockTy = Context.getFunctionType(RetTy, FPT->getParamTypes(), EPI); 11357 } 11358 11359 // If we don't have a function type, just build one from nothing. 11360 } else { 11361 FunctionProtoType::ExtProtoInfo EPI; 11362 EPI.ExtInfo = FunctionType::ExtInfo().withNoReturn(NoReturn); 11363 BlockTy = Context.getFunctionType(RetTy, None, EPI); 11364 } 11365 11366 DiagnoseUnusedParameters(BSI->TheDecl->param_begin(), 11367 BSI->TheDecl->param_end()); 11368 BlockTy = Context.getBlockPointerType(BlockTy); 11369 11370 // If needed, diagnose invalid gotos and switches in the block. 11371 if (getCurFunction()->NeedsScopeChecking() && 11372 !PP.isCodeCompletionEnabled()) 11373 DiagnoseInvalidJumps(cast<CompoundStmt>(Body)); 11374 11375 BSI->TheDecl->setBody(cast<CompoundStmt>(Body)); 11376 11377 // Try to apply the named return value optimization. We have to check again 11378 // if we can do this, though, because blocks keep return statements around 11379 // to deduce an implicit return type. 11380 if (getLangOpts().CPlusPlus && RetTy->isRecordType() && 11381 !BSI->TheDecl->isDependentContext()) 11382 computeNRVO(Body, BSI); 11383 11384 BlockExpr *Result = new (Context) BlockExpr(BSI->TheDecl, BlockTy); 11385 AnalysisBasedWarnings::Policy WP = AnalysisWarnings.getDefaultPolicy(); 11386 PopFunctionScopeInfo(&WP, Result->getBlockDecl(), Result); 11387 11388 // If the block isn't obviously global, i.e. it captures anything at 11389 // all, then we need to do a few things in the surrounding context: 11390 if (Result->getBlockDecl()->hasCaptures()) { 11391 // First, this expression has a new cleanup object. 11392 ExprCleanupObjects.push_back(Result->getBlockDecl()); 11393 ExprNeedsCleanups = true; 11394 11395 // It also gets a branch-protected scope if any of the captured 11396 // variables needs destruction. 11397 for (const auto &CI : Result->getBlockDecl()->captures()) { 11398 const VarDecl *var = CI.getVariable(); 11399 if (var->getType().isDestructedType() != QualType::DK_none) { 11400 getCurFunction()->setHasBranchProtectedScope(); 11401 break; 11402 } 11403 } 11404 } 11405 11406 return Result; 11407 } 11408 11409 ExprResult Sema::ActOnVAArg(SourceLocation BuiltinLoc, 11410 Expr *E, ParsedType Ty, 11411 SourceLocation RPLoc) { 11412 TypeSourceInfo *TInfo; 11413 GetTypeFromParser(Ty, &TInfo); 11414 return BuildVAArgExpr(BuiltinLoc, E, TInfo, RPLoc); 11415 } 11416 11417 ExprResult Sema::BuildVAArgExpr(SourceLocation BuiltinLoc, 11418 Expr *E, TypeSourceInfo *TInfo, 11419 SourceLocation RPLoc) { 11420 Expr *OrigExpr = E; 11421 11422 // Get the va_list type 11423 QualType VaListType = Context.getBuiltinVaListType(); 11424 if (VaListType->isArrayType()) { 11425 // Deal with implicit array decay; for example, on x86-64, 11426 // va_list is an array, but it's supposed to decay to 11427 // a pointer for va_arg. 11428 VaListType = Context.getArrayDecayedType(VaListType); 11429 // Make sure the input expression also decays appropriately. 11430 ExprResult Result = UsualUnaryConversions(E); 11431 if (Result.isInvalid()) 11432 return ExprError(); 11433 E = Result.get(); 11434 } else if (VaListType->isRecordType() && getLangOpts().CPlusPlus) { 11435 // If va_list is a record type and we are compiling in C++ mode, 11436 // check the argument using reference binding. 11437 InitializedEntity Entity 11438 = InitializedEntity::InitializeParameter(Context, 11439 Context.getLValueReferenceType(VaListType), false); 11440 ExprResult Init = PerformCopyInitialization(Entity, SourceLocation(), E); 11441 if (Init.isInvalid()) 11442 return ExprError(); 11443 E = Init.getAs<Expr>(); 11444 } else { 11445 // Otherwise, the va_list argument must be an l-value because 11446 // it is modified by va_arg. 11447 if (!E->isTypeDependent() && 11448 CheckForModifiableLvalue(E, BuiltinLoc, *this)) 11449 return ExprError(); 11450 } 11451 11452 if (!E->isTypeDependent() && 11453 !Context.hasSameType(VaListType, E->getType())) { 11454 return ExprError(Diag(E->getLocStart(), 11455 diag::err_first_argument_to_va_arg_not_of_type_va_list) 11456 << OrigExpr->getType() << E->getSourceRange()); 11457 } 11458 11459 if (!TInfo->getType()->isDependentType()) { 11460 if (RequireCompleteType(TInfo->getTypeLoc().getBeginLoc(), TInfo->getType(), 11461 diag::err_second_parameter_to_va_arg_incomplete, 11462 TInfo->getTypeLoc())) 11463 return ExprError(); 11464 11465 if (RequireNonAbstractType(TInfo->getTypeLoc().getBeginLoc(), 11466 TInfo->getType(), 11467 diag::err_second_parameter_to_va_arg_abstract, 11468 TInfo->getTypeLoc())) 11469 return ExprError(); 11470 11471 if (!TInfo->getType().isPODType(Context)) { 11472 Diag(TInfo->getTypeLoc().getBeginLoc(), 11473 TInfo->getType()->isObjCLifetimeType() 11474 ? diag::warn_second_parameter_to_va_arg_ownership_qualified 11475 : diag::warn_second_parameter_to_va_arg_not_pod) 11476 << TInfo->getType() 11477 << TInfo->getTypeLoc().getSourceRange(); 11478 } 11479 11480 // Check for va_arg where arguments of the given type will be promoted 11481 // (i.e. this va_arg is guaranteed to have undefined behavior). 11482 QualType PromoteType; 11483 if (TInfo->getType()->isPromotableIntegerType()) { 11484 PromoteType = Context.getPromotedIntegerType(TInfo->getType()); 11485 if (Context.typesAreCompatible(PromoteType, TInfo->getType())) 11486 PromoteType = QualType(); 11487 } 11488 if (TInfo->getType()->isSpecificBuiltinType(BuiltinType::Float)) 11489 PromoteType = Context.DoubleTy; 11490 if (!PromoteType.isNull()) 11491 DiagRuntimeBehavior(TInfo->getTypeLoc().getBeginLoc(), E, 11492 PDiag(diag::warn_second_parameter_to_va_arg_never_compatible) 11493 << TInfo->getType() 11494 << PromoteType 11495 << TInfo->getTypeLoc().getSourceRange()); 11496 } 11497 11498 QualType T = TInfo->getType().getNonLValueExprType(Context); 11499 return new (Context) VAArgExpr(BuiltinLoc, E, TInfo, RPLoc, T); 11500 } 11501 11502 ExprResult Sema::ActOnGNUNullExpr(SourceLocation TokenLoc) { 11503 // The type of __null will be int or long, depending on the size of 11504 // pointers on the target. 11505 QualType Ty; 11506 unsigned pw = Context.getTargetInfo().getPointerWidth(0); 11507 if (pw == Context.getTargetInfo().getIntWidth()) 11508 Ty = Context.IntTy; 11509 else if (pw == Context.getTargetInfo().getLongWidth()) 11510 Ty = Context.LongTy; 11511 else if (pw == Context.getTargetInfo().getLongLongWidth()) 11512 Ty = Context.LongLongTy; 11513 else { 11514 llvm_unreachable("I don't know size of pointer!"); 11515 } 11516 11517 return new (Context) GNUNullExpr(Ty, TokenLoc); 11518 } 11519 11520 bool 11521 Sema::ConversionToObjCStringLiteralCheck(QualType DstType, Expr *&Exp) { 11522 if (!getLangOpts().ObjC1) 11523 return false; 11524 11525 const ObjCObjectPointerType *PT = DstType->getAs<ObjCObjectPointerType>(); 11526 if (!PT) 11527 return false; 11528 11529 if (!PT->isObjCIdType()) { 11530 // Check if the destination is the 'NSString' interface. 11531 const ObjCInterfaceDecl *ID = PT->getInterfaceDecl(); 11532 if (!ID || !ID->getIdentifier()->isStr("NSString")) 11533 return false; 11534 } 11535 11536 // Ignore any parens, implicit casts (should only be 11537 // array-to-pointer decays), and not-so-opaque values. The last is 11538 // important for making this trigger for property assignments. 11539 Expr *SrcExpr = Exp->IgnoreParenImpCasts(); 11540 if (OpaqueValueExpr *OV = dyn_cast<OpaqueValueExpr>(SrcExpr)) 11541 if (OV->getSourceExpr()) 11542 SrcExpr = OV->getSourceExpr()->IgnoreParenImpCasts(); 11543 11544 StringLiteral *SL = dyn_cast<StringLiteral>(SrcExpr); 11545 if (!SL || !SL->isAscii()) 11546 return false; 11547 Diag(SL->getLocStart(), diag::err_missing_atsign_prefix) 11548 << FixItHint::CreateInsertion(SL->getLocStart(), "@"); 11549 Exp = BuildObjCStringLiteral(SL->getLocStart(), SL).get(); 11550 return true; 11551 } 11552 11553 bool Sema::DiagnoseAssignmentResult(AssignConvertType ConvTy, 11554 SourceLocation Loc, 11555 QualType DstType, QualType SrcType, 11556 Expr *SrcExpr, AssignmentAction Action, 11557 bool *Complained) { 11558 if (Complained) 11559 *Complained = false; 11560 11561 // Decode the result (notice that AST's are still created for extensions). 11562 bool CheckInferredResultType = false; 11563 bool isInvalid = false; 11564 unsigned DiagKind = 0; 11565 FixItHint Hint; 11566 ConversionFixItGenerator ConvHints; 11567 bool MayHaveConvFixit = false; 11568 bool MayHaveFunctionDiff = false; 11569 const ObjCInterfaceDecl *IFace = nullptr; 11570 const ObjCProtocolDecl *PDecl = nullptr; 11571 11572 switch (ConvTy) { 11573 case Compatible: 11574 DiagnoseAssignmentEnum(DstType, SrcType, SrcExpr); 11575 return false; 11576 11577 case PointerToInt: 11578 DiagKind = diag::ext_typecheck_convert_pointer_int; 11579 ConvHints.tryToFixConversion(SrcExpr, SrcType, DstType, *this); 11580 MayHaveConvFixit = true; 11581 break; 11582 case IntToPointer: 11583 DiagKind = diag::ext_typecheck_convert_int_pointer; 11584 ConvHints.tryToFixConversion(SrcExpr, SrcType, DstType, *this); 11585 MayHaveConvFixit = true; 11586 break; 11587 case IncompatiblePointer: 11588 DiagKind = 11589 (Action == AA_Passing_CFAudited ? 11590 diag::err_arc_typecheck_convert_incompatible_pointer : 11591 diag::ext_typecheck_convert_incompatible_pointer); 11592 CheckInferredResultType = DstType->isObjCObjectPointerType() && 11593 SrcType->isObjCObjectPointerType(); 11594 if (Hint.isNull() && !CheckInferredResultType) { 11595 ConvHints.tryToFixConversion(SrcExpr, SrcType, DstType, *this); 11596 } 11597 else if (CheckInferredResultType) { 11598 SrcType = SrcType.getUnqualifiedType(); 11599 DstType = DstType.getUnqualifiedType(); 11600 } 11601 MayHaveConvFixit = true; 11602 break; 11603 case IncompatiblePointerSign: 11604 DiagKind = diag::ext_typecheck_convert_incompatible_pointer_sign; 11605 break; 11606 case FunctionVoidPointer: 11607 DiagKind = diag::ext_typecheck_convert_pointer_void_func; 11608 break; 11609 case IncompatiblePointerDiscardsQualifiers: { 11610 // Perform array-to-pointer decay if necessary. 11611 if (SrcType->isArrayType()) SrcType = Context.getArrayDecayedType(SrcType); 11612 11613 Qualifiers lhq = SrcType->getPointeeType().getQualifiers(); 11614 Qualifiers rhq = DstType->getPointeeType().getQualifiers(); 11615 if (lhq.getAddressSpace() != rhq.getAddressSpace()) { 11616 DiagKind = diag::err_typecheck_incompatible_address_space; 11617 break; 11618 11619 11620 } else if (lhq.getObjCLifetime() != rhq.getObjCLifetime()) { 11621 DiagKind = diag::err_typecheck_incompatible_ownership; 11622 break; 11623 } 11624 11625 llvm_unreachable("unknown error case for discarding qualifiers!"); 11626 // fallthrough 11627 } 11628 case CompatiblePointerDiscardsQualifiers: 11629 // If the qualifiers lost were because we were applying the 11630 // (deprecated) C++ conversion from a string literal to a char* 11631 // (or wchar_t*), then there was no error (C++ 4.2p2). FIXME: 11632 // Ideally, this check would be performed in 11633 // checkPointerTypesForAssignment. However, that would require a 11634 // bit of refactoring (so that the second argument is an 11635 // expression, rather than a type), which should be done as part 11636 // of a larger effort to fix checkPointerTypesForAssignment for 11637 // C++ semantics. 11638 if (getLangOpts().CPlusPlus && 11639 IsStringLiteralToNonConstPointerConversion(SrcExpr, DstType)) 11640 return false; 11641 DiagKind = diag::ext_typecheck_convert_discards_qualifiers; 11642 break; 11643 case IncompatibleNestedPointerQualifiers: 11644 DiagKind = diag::ext_nested_pointer_qualifier_mismatch; 11645 break; 11646 case IntToBlockPointer: 11647 DiagKind = diag::err_int_to_block_pointer; 11648 break; 11649 case IncompatibleBlockPointer: 11650 DiagKind = diag::err_typecheck_convert_incompatible_block_pointer; 11651 break; 11652 case IncompatibleObjCQualifiedId: { 11653 if (SrcType->isObjCQualifiedIdType()) { 11654 const ObjCObjectPointerType *srcOPT = 11655 SrcType->getAs<ObjCObjectPointerType>(); 11656 for (auto *srcProto : srcOPT->quals()) { 11657 PDecl = srcProto; 11658 break; 11659 } 11660 if (const ObjCInterfaceType *IFaceT = 11661 DstType->getAs<ObjCObjectPointerType>()->getInterfaceType()) 11662 IFace = IFaceT->getDecl(); 11663 } 11664 else if (DstType->isObjCQualifiedIdType()) { 11665 const ObjCObjectPointerType *dstOPT = 11666 DstType->getAs<ObjCObjectPointerType>(); 11667 for (auto *dstProto : dstOPT->quals()) { 11668 PDecl = dstProto; 11669 break; 11670 } 11671 if (const ObjCInterfaceType *IFaceT = 11672 SrcType->getAs<ObjCObjectPointerType>()->getInterfaceType()) 11673 IFace = IFaceT->getDecl(); 11674 } 11675 DiagKind = diag::warn_incompatible_qualified_id; 11676 break; 11677 } 11678 case IncompatibleVectors: 11679 DiagKind = diag::warn_incompatible_vectors; 11680 break; 11681 case IncompatibleObjCWeakRef: 11682 DiagKind = diag::err_arc_weak_unavailable_assign; 11683 break; 11684 case Incompatible: 11685 DiagKind = diag::err_typecheck_convert_incompatible; 11686 ConvHints.tryToFixConversion(SrcExpr, SrcType, DstType, *this); 11687 MayHaveConvFixit = true; 11688 isInvalid = true; 11689 MayHaveFunctionDiff = true; 11690 break; 11691 } 11692 11693 QualType FirstType, SecondType; 11694 switch (Action) { 11695 case AA_Assigning: 11696 case AA_Initializing: 11697 // The destination type comes first. 11698 FirstType = DstType; 11699 SecondType = SrcType; 11700 break; 11701 11702 case AA_Returning: 11703 case AA_Passing: 11704 case AA_Passing_CFAudited: 11705 case AA_Converting: 11706 case AA_Sending: 11707 case AA_Casting: 11708 // The source type comes first. 11709 FirstType = SrcType; 11710 SecondType = DstType; 11711 break; 11712 } 11713 11714 PartialDiagnostic FDiag = PDiag(DiagKind); 11715 if (Action == AA_Passing_CFAudited) 11716 FDiag << FirstType << SecondType << AA_Passing << SrcExpr->getSourceRange(); 11717 else 11718 FDiag << FirstType << SecondType << Action << SrcExpr->getSourceRange(); 11719 11720 // If we can fix the conversion, suggest the FixIts. 11721 assert(ConvHints.isNull() || Hint.isNull()); 11722 if (!ConvHints.isNull()) { 11723 for (std::vector<FixItHint>::iterator HI = ConvHints.Hints.begin(), 11724 HE = ConvHints.Hints.end(); HI != HE; ++HI) 11725 FDiag << *HI; 11726 } else { 11727 FDiag << Hint; 11728 } 11729 if (MayHaveConvFixit) { FDiag << (unsigned) (ConvHints.Kind); } 11730 11731 if (MayHaveFunctionDiff) 11732 HandleFunctionTypeMismatch(FDiag, SecondType, FirstType); 11733 11734 Diag(Loc, FDiag); 11735 if (DiagKind == diag::warn_incompatible_qualified_id && 11736 PDecl && IFace && !IFace->hasDefinition()) 11737 Diag(IFace->getLocation(), diag::not_incomplete_class_and_qualified_id) 11738 << IFace->getName() << PDecl->getName(); 11739 11740 if (SecondType == Context.OverloadTy) 11741 NoteAllOverloadCandidates(OverloadExpr::find(SrcExpr).Expression, 11742 FirstType); 11743 11744 if (CheckInferredResultType) 11745 EmitRelatedResultTypeNote(SrcExpr); 11746 11747 if (Action == AA_Returning && ConvTy == IncompatiblePointer) 11748 EmitRelatedResultTypeNoteForReturn(DstType); 11749 11750 if (Complained) 11751 *Complained = true; 11752 return isInvalid; 11753 } 11754 11755 ExprResult Sema::VerifyIntegerConstantExpression(Expr *E, 11756 llvm::APSInt *Result) { 11757 class SimpleICEDiagnoser : public VerifyICEDiagnoser { 11758 public: 11759 void diagnoseNotICE(Sema &S, SourceLocation Loc, SourceRange SR) override { 11760 S.Diag(Loc, diag::err_expr_not_ice) << S.LangOpts.CPlusPlus << SR; 11761 } 11762 } Diagnoser; 11763 11764 return VerifyIntegerConstantExpression(E, Result, Diagnoser); 11765 } 11766 11767 ExprResult Sema::VerifyIntegerConstantExpression(Expr *E, 11768 llvm::APSInt *Result, 11769 unsigned DiagID, 11770 bool AllowFold) { 11771 class IDDiagnoser : public VerifyICEDiagnoser { 11772 unsigned DiagID; 11773 11774 public: 11775 IDDiagnoser(unsigned DiagID) 11776 : VerifyICEDiagnoser(DiagID == 0), DiagID(DiagID) { } 11777 11778 void diagnoseNotICE(Sema &S, SourceLocation Loc, SourceRange SR) override { 11779 S.Diag(Loc, DiagID) << SR; 11780 } 11781 } Diagnoser(DiagID); 11782 11783 return VerifyIntegerConstantExpression(E, Result, Diagnoser, AllowFold); 11784 } 11785 11786 void Sema::VerifyICEDiagnoser::diagnoseFold(Sema &S, SourceLocation Loc, 11787 SourceRange SR) { 11788 S.Diag(Loc, diag::ext_expr_not_ice) << SR << S.LangOpts.CPlusPlus; 11789 } 11790 11791 ExprResult 11792 Sema::VerifyIntegerConstantExpression(Expr *E, llvm::APSInt *Result, 11793 VerifyICEDiagnoser &Diagnoser, 11794 bool AllowFold) { 11795 SourceLocation DiagLoc = E->getLocStart(); 11796 11797 if (getLangOpts().CPlusPlus11) { 11798 // C++11 [expr.const]p5: 11799 // If an expression of literal class type is used in a context where an 11800 // integral constant expression is required, then that class type shall 11801 // have a single non-explicit conversion function to an integral or 11802 // unscoped enumeration type 11803 ExprResult Converted; 11804 class CXX11ConvertDiagnoser : public ICEConvertDiagnoser { 11805 public: 11806 CXX11ConvertDiagnoser(bool Silent) 11807 : ICEConvertDiagnoser(/*AllowScopedEnumerations*/false, 11808 Silent, true) {} 11809 11810 SemaDiagnosticBuilder diagnoseNotInt(Sema &S, SourceLocation Loc, 11811 QualType T) override { 11812 return S.Diag(Loc, diag::err_ice_not_integral) << T; 11813 } 11814 11815 SemaDiagnosticBuilder diagnoseIncomplete( 11816 Sema &S, SourceLocation Loc, QualType T) override { 11817 return S.Diag(Loc, diag::err_ice_incomplete_type) << T; 11818 } 11819 11820 SemaDiagnosticBuilder diagnoseExplicitConv( 11821 Sema &S, SourceLocation Loc, QualType T, QualType ConvTy) override { 11822 return S.Diag(Loc, diag::err_ice_explicit_conversion) << T << ConvTy; 11823 } 11824 11825 SemaDiagnosticBuilder noteExplicitConv( 11826 Sema &S, CXXConversionDecl *Conv, QualType ConvTy) override { 11827 return S.Diag(Conv->getLocation(), diag::note_ice_conversion_here) 11828 << ConvTy->isEnumeralType() << ConvTy; 11829 } 11830 11831 SemaDiagnosticBuilder diagnoseAmbiguous( 11832 Sema &S, SourceLocation Loc, QualType T) override { 11833 return S.Diag(Loc, diag::err_ice_ambiguous_conversion) << T; 11834 } 11835 11836 SemaDiagnosticBuilder noteAmbiguous( 11837 Sema &S, CXXConversionDecl *Conv, QualType ConvTy) override { 11838 return S.Diag(Conv->getLocation(), diag::note_ice_conversion_here) 11839 << ConvTy->isEnumeralType() << ConvTy; 11840 } 11841 11842 SemaDiagnosticBuilder diagnoseConversion( 11843 Sema &S, SourceLocation Loc, QualType T, QualType ConvTy) override { 11844 llvm_unreachable("conversion functions are permitted"); 11845 } 11846 } ConvertDiagnoser(Diagnoser.Suppress); 11847 11848 Converted = PerformContextualImplicitConversion(DiagLoc, E, 11849 ConvertDiagnoser); 11850 if (Converted.isInvalid()) 11851 return Converted; 11852 E = Converted.get(); 11853 if (!E->getType()->isIntegralOrUnscopedEnumerationType()) 11854 return ExprError(); 11855 } else if (!E->getType()->isIntegralOrUnscopedEnumerationType()) { 11856 // An ICE must be of integral or unscoped enumeration type. 11857 if (!Diagnoser.Suppress) 11858 Diagnoser.diagnoseNotICE(*this, DiagLoc, E->getSourceRange()); 11859 return ExprError(); 11860 } 11861 11862 // Circumvent ICE checking in C++11 to avoid evaluating the expression twice 11863 // in the non-ICE case. 11864 if (!getLangOpts().CPlusPlus11 && E->isIntegerConstantExpr(Context)) { 11865 if (Result) 11866 *Result = E->EvaluateKnownConstInt(Context); 11867 return E; 11868 } 11869 11870 Expr::EvalResult EvalResult; 11871 SmallVector<PartialDiagnosticAt, 8> Notes; 11872 EvalResult.Diag = &Notes; 11873 11874 // Try to evaluate the expression, and produce diagnostics explaining why it's 11875 // not a constant expression as a side-effect. 11876 bool Folded = E->EvaluateAsRValue(EvalResult, Context) && 11877 EvalResult.Val.isInt() && !EvalResult.HasSideEffects; 11878 11879 // In C++11, we can rely on diagnostics being produced for any expression 11880 // which is not a constant expression. If no diagnostics were produced, then 11881 // this is a constant expression. 11882 if (Folded && getLangOpts().CPlusPlus11 && Notes.empty()) { 11883 if (Result) 11884 *Result = EvalResult.Val.getInt(); 11885 return E; 11886 } 11887 11888 // If our only note is the usual "invalid subexpression" note, just point 11889 // the caret at its location rather than producing an essentially 11890 // redundant note. 11891 if (Notes.size() == 1 && Notes[0].second.getDiagID() == 11892 diag::note_invalid_subexpr_in_const_expr) { 11893 DiagLoc = Notes[0].first; 11894 Notes.clear(); 11895 } 11896 11897 if (!Folded || !AllowFold) { 11898 if (!Diagnoser.Suppress) { 11899 Diagnoser.diagnoseNotICE(*this, DiagLoc, E->getSourceRange()); 11900 for (unsigned I = 0, N = Notes.size(); I != N; ++I) 11901 Diag(Notes[I].first, Notes[I].second); 11902 } 11903 11904 return ExprError(); 11905 } 11906 11907 Diagnoser.diagnoseFold(*this, DiagLoc, E->getSourceRange()); 11908 for (unsigned I = 0, N = Notes.size(); I != N; ++I) 11909 Diag(Notes[I].first, Notes[I].second); 11910 11911 if (Result) 11912 *Result = EvalResult.Val.getInt(); 11913 return E; 11914 } 11915 11916 namespace { 11917 // Handle the case where we conclude a expression which we speculatively 11918 // considered to be unevaluated is actually evaluated. 11919 class TransformToPE : public TreeTransform<TransformToPE> { 11920 typedef TreeTransform<TransformToPE> BaseTransform; 11921 11922 public: 11923 TransformToPE(Sema &SemaRef) : BaseTransform(SemaRef) { } 11924 11925 // Make sure we redo semantic analysis 11926 bool AlwaysRebuild() { return true; } 11927 11928 // Make sure we handle LabelStmts correctly. 11929 // FIXME: This does the right thing, but maybe we need a more general 11930 // fix to TreeTransform? 11931 StmtResult TransformLabelStmt(LabelStmt *S) { 11932 S->getDecl()->setStmt(nullptr); 11933 return BaseTransform::TransformLabelStmt(S); 11934 } 11935 11936 // We need to special-case DeclRefExprs referring to FieldDecls which 11937 // are not part of a member pointer formation; normal TreeTransforming 11938 // doesn't catch this case because of the way we represent them in the AST. 11939 // FIXME: This is a bit ugly; is it really the best way to handle this 11940 // case? 11941 // 11942 // Error on DeclRefExprs referring to FieldDecls. 11943 ExprResult TransformDeclRefExpr(DeclRefExpr *E) { 11944 if (isa<FieldDecl>(E->getDecl()) && 11945 !SemaRef.isUnevaluatedContext()) 11946 return SemaRef.Diag(E->getLocation(), 11947 diag::err_invalid_non_static_member_use) 11948 << E->getDecl() << E->getSourceRange(); 11949 11950 return BaseTransform::TransformDeclRefExpr(E); 11951 } 11952 11953 // Exception: filter out member pointer formation 11954 ExprResult TransformUnaryOperator(UnaryOperator *E) { 11955 if (E->getOpcode() == UO_AddrOf && E->getType()->isMemberPointerType()) 11956 return E; 11957 11958 return BaseTransform::TransformUnaryOperator(E); 11959 } 11960 11961 ExprResult TransformLambdaExpr(LambdaExpr *E) { 11962 // Lambdas never need to be transformed. 11963 return E; 11964 } 11965 }; 11966 } 11967 11968 ExprResult Sema::TransformToPotentiallyEvaluated(Expr *E) { 11969 assert(isUnevaluatedContext() && 11970 "Should only transform unevaluated expressions"); 11971 ExprEvalContexts.back().Context = 11972 ExprEvalContexts[ExprEvalContexts.size()-2].Context; 11973 if (isUnevaluatedContext()) 11974 return E; 11975 return TransformToPE(*this).TransformExpr(E); 11976 } 11977 11978 void 11979 Sema::PushExpressionEvaluationContext(ExpressionEvaluationContext NewContext, 11980 Decl *LambdaContextDecl, 11981 bool IsDecltype) { 11982 ExprEvalContexts.emplace_back(NewContext, ExprCleanupObjects.size(), 11983 ExprNeedsCleanups, LambdaContextDecl, 11984 IsDecltype); 11985 ExprNeedsCleanups = false; 11986 if (!MaybeODRUseExprs.empty()) 11987 std::swap(MaybeODRUseExprs, ExprEvalContexts.back().SavedMaybeODRUseExprs); 11988 } 11989 11990 void 11991 Sema::PushExpressionEvaluationContext(ExpressionEvaluationContext NewContext, 11992 ReuseLambdaContextDecl_t, 11993 bool IsDecltype) { 11994 Decl *ClosureContextDecl = ExprEvalContexts.back().ManglingContextDecl; 11995 PushExpressionEvaluationContext(NewContext, ClosureContextDecl, IsDecltype); 11996 } 11997 11998 void Sema::PopExpressionEvaluationContext() { 11999 ExpressionEvaluationContextRecord& Rec = ExprEvalContexts.back(); 12000 unsigned NumTypos = Rec.NumTypos; 12001 12002 if (!Rec.Lambdas.empty()) { 12003 if (Rec.isUnevaluated() || Rec.Context == ConstantEvaluated) { 12004 unsigned D; 12005 if (Rec.isUnevaluated()) { 12006 // C++11 [expr.prim.lambda]p2: 12007 // A lambda-expression shall not appear in an unevaluated operand 12008 // (Clause 5). 12009 D = diag::err_lambda_unevaluated_operand; 12010 } else { 12011 // C++1y [expr.const]p2: 12012 // A conditional-expression e is a core constant expression unless the 12013 // evaluation of e, following the rules of the abstract machine, would 12014 // evaluate [...] a lambda-expression. 12015 D = diag::err_lambda_in_constant_expression; 12016 } 12017 for (const auto *L : Rec.Lambdas) 12018 Diag(L->getLocStart(), D); 12019 } else { 12020 // Mark the capture expressions odr-used. This was deferred 12021 // during lambda expression creation. 12022 for (auto *Lambda : Rec.Lambdas) { 12023 for (auto *C : Lambda->capture_inits()) 12024 MarkDeclarationsReferencedInExpr(C); 12025 } 12026 } 12027 } 12028 12029 // When are coming out of an unevaluated context, clear out any 12030 // temporaries that we may have created as part of the evaluation of 12031 // the expression in that context: they aren't relevant because they 12032 // will never be constructed. 12033 if (Rec.isUnevaluated() || Rec.Context == ConstantEvaluated) { 12034 ExprCleanupObjects.erase(ExprCleanupObjects.begin() + Rec.NumCleanupObjects, 12035 ExprCleanupObjects.end()); 12036 ExprNeedsCleanups = Rec.ParentNeedsCleanups; 12037 CleanupVarDeclMarking(); 12038 std::swap(MaybeODRUseExprs, Rec.SavedMaybeODRUseExprs); 12039 // Otherwise, merge the contexts together. 12040 } else { 12041 ExprNeedsCleanups |= Rec.ParentNeedsCleanups; 12042 MaybeODRUseExprs.insert(Rec.SavedMaybeODRUseExprs.begin(), 12043 Rec.SavedMaybeODRUseExprs.end()); 12044 } 12045 12046 // Pop the current expression evaluation context off the stack. 12047 ExprEvalContexts.pop_back(); 12048 12049 if (!ExprEvalContexts.empty()) 12050 ExprEvalContexts.back().NumTypos += NumTypos; 12051 else 12052 assert(NumTypos == 0 && "There are outstanding typos after popping the " 12053 "last ExpressionEvaluationContextRecord"); 12054 } 12055 12056 void Sema::DiscardCleanupsInEvaluationContext() { 12057 ExprCleanupObjects.erase( 12058 ExprCleanupObjects.begin() + ExprEvalContexts.back().NumCleanupObjects, 12059 ExprCleanupObjects.end()); 12060 ExprNeedsCleanups = false; 12061 MaybeODRUseExprs.clear(); 12062 } 12063 12064 ExprResult Sema::HandleExprEvaluationContextForTypeof(Expr *E) { 12065 if (!E->getType()->isVariablyModifiedType()) 12066 return E; 12067 return TransformToPotentiallyEvaluated(E); 12068 } 12069 12070 static bool IsPotentiallyEvaluatedContext(Sema &SemaRef) { 12071 // Do not mark anything as "used" within a dependent context; wait for 12072 // an instantiation. 12073 if (SemaRef.CurContext->isDependentContext()) 12074 return false; 12075 12076 switch (SemaRef.ExprEvalContexts.back().Context) { 12077 case Sema::Unevaluated: 12078 case Sema::UnevaluatedAbstract: 12079 // We are in an expression that is not potentially evaluated; do nothing. 12080 // (Depending on how you read the standard, we actually do need to do 12081 // something here for null pointer constants, but the standard's 12082 // definition of a null pointer constant is completely crazy.) 12083 return false; 12084 12085 case Sema::ConstantEvaluated: 12086 case Sema::PotentiallyEvaluated: 12087 // We are in a potentially evaluated expression (or a constant-expression 12088 // in C++03); we need to do implicit template instantiation, implicitly 12089 // define class members, and mark most declarations as used. 12090 return true; 12091 12092 case Sema::PotentiallyEvaluatedIfUsed: 12093 // Referenced declarations will only be used if the construct in the 12094 // containing expression is used. 12095 return false; 12096 } 12097 llvm_unreachable("Invalid context"); 12098 } 12099 12100 /// \brief Mark a function referenced, and check whether it is odr-used 12101 /// (C++ [basic.def.odr]p2, C99 6.9p3) 12102 void Sema::MarkFunctionReferenced(SourceLocation Loc, FunctionDecl *Func, 12103 bool OdrUse) { 12104 assert(Func && "No function?"); 12105 12106 Func->setReferenced(); 12107 12108 // C++11 [basic.def.odr]p3: 12109 // A function whose name appears as a potentially-evaluated expression is 12110 // odr-used if it is the unique lookup result or the selected member of a 12111 // set of overloaded functions [...]. 12112 // 12113 // We (incorrectly) mark overload resolution as an unevaluated context, so we 12114 // can just check that here. Skip the rest of this function if we've already 12115 // marked the function as used. 12116 if (Func->isUsed(/*CheckUsedAttr=*/false) || 12117 !IsPotentiallyEvaluatedContext(*this)) { 12118 // C++11 [temp.inst]p3: 12119 // Unless a function template specialization has been explicitly 12120 // instantiated or explicitly specialized, the function template 12121 // specialization is implicitly instantiated when the specialization is 12122 // referenced in a context that requires a function definition to exist. 12123 // 12124 // We consider constexpr function templates to be referenced in a context 12125 // that requires a definition to exist whenever they are referenced. 12126 // 12127 // FIXME: This instantiates constexpr functions too frequently. If this is 12128 // really an unevaluated context (and we're not just in the definition of a 12129 // function template or overload resolution or other cases which we 12130 // incorrectly consider to be unevaluated contexts), and we're not in a 12131 // subexpression which we actually need to evaluate (for instance, a 12132 // template argument, array bound or an expression in a braced-init-list), 12133 // we are not permitted to instantiate this constexpr function definition. 12134 // 12135 // FIXME: This also implicitly defines special members too frequently. They 12136 // are only supposed to be implicitly defined if they are odr-used, but they 12137 // are not odr-used from constant expressions in unevaluated contexts. 12138 // However, they cannot be referenced if they are deleted, and they are 12139 // deleted whenever the implicit definition of the special member would 12140 // fail. 12141 if (!Func->isConstexpr() || Func->getBody()) 12142 return; 12143 CXXMethodDecl *MD = dyn_cast<CXXMethodDecl>(Func); 12144 if (!Func->isImplicitlyInstantiable() && (!MD || MD->isUserProvided())) 12145 return; 12146 } 12147 12148 // Note that this declaration has been used. 12149 if (CXXConstructorDecl *Constructor = dyn_cast<CXXConstructorDecl>(Func)) { 12150 Constructor = cast<CXXConstructorDecl>(Constructor->getFirstDecl()); 12151 if (Constructor->isDefaulted() && !Constructor->isDeleted()) { 12152 if (Constructor->isDefaultConstructor()) { 12153 if (Constructor->isTrivial() && !Constructor->hasAttr<DLLExportAttr>()) 12154 return; 12155 DefineImplicitDefaultConstructor(Loc, Constructor); 12156 } else if (Constructor->isCopyConstructor()) { 12157 DefineImplicitCopyConstructor(Loc, Constructor); 12158 } else if (Constructor->isMoveConstructor()) { 12159 DefineImplicitMoveConstructor(Loc, Constructor); 12160 } 12161 } else if (Constructor->getInheritedConstructor()) { 12162 DefineInheritingConstructor(Loc, Constructor); 12163 } 12164 } else if (CXXDestructorDecl *Destructor = 12165 dyn_cast<CXXDestructorDecl>(Func)) { 12166 Destructor = cast<CXXDestructorDecl>(Destructor->getFirstDecl()); 12167 if (Destructor->isDefaulted() && !Destructor->isDeleted()) { 12168 if (Destructor->isTrivial() && !Destructor->hasAttr<DLLExportAttr>()) 12169 return; 12170 DefineImplicitDestructor(Loc, Destructor); 12171 } 12172 if (Destructor->isVirtual() && getLangOpts().AppleKext) 12173 MarkVTableUsed(Loc, Destructor->getParent()); 12174 } else if (CXXMethodDecl *MethodDecl = dyn_cast<CXXMethodDecl>(Func)) { 12175 if (MethodDecl->isOverloadedOperator() && 12176 MethodDecl->getOverloadedOperator() == OO_Equal) { 12177 MethodDecl = cast<CXXMethodDecl>(MethodDecl->getFirstDecl()); 12178 if (MethodDecl->isDefaulted() && !MethodDecl->isDeleted()) { 12179 if (MethodDecl->isCopyAssignmentOperator()) 12180 DefineImplicitCopyAssignment(Loc, MethodDecl); 12181 else 12182 DefineImplicitMoveAssignment(Loc, MethodDecl); 12183 } 12184 } else if (isa<CXXConversionDecl>(MethodDecl) && 12185 MethodDecl->getParent()->isLambda()) { 12186 CXXConversionDecl *Conversion = 12187 cast<CXXConversionDecl>(MethodDecl->getFirstDecl()); 12188 if (Conversion->isLambdaToBlockPointerConversion()) 12189 DefineImplicitLambdaToBlockPointerConversion(Loc, Conversion); 12190 else 12191 DefineImplicitLambdaToFunctionPointerConversion(Loc, Conversion); 12192 } else if (MethodDecl->isVirtual() && getLangOpts().AppleKext) 12193 MarkVTableUsed(Loc, MethodDecl->getParent()); 12194 } 12195 12196 // Recursive functions should be marked when used from another function. 12197 // FIXME: Is this really right? 12198 if (CurContext == Func) return; 12199 12200 // Resolve the exception specification for any function which is 12201 // used: CodeGen will need it. 12202 const FunctionProtoType *FPT = Func->getType()->getAs<FunctionProtoType>(); 12203 if (FPT && isUnresolvedExceptionSpec(FPT->getExceptionSpecType())) 12204 ResolveExceptionSpec(Loc, FPT); 12205 12206 if (!OdrUse) return; 12207 12208 // Implicit instantiation of function templates and member functions of 12209 // class templates. 12210 if (Func->isImplicitlyInstantiable()) { 12211 bool AlreadyInstantiated = false; 12212 SourceLocation PointOfInstantiation = Loc; 12213 if (FunctionTemplateSpecializationInfo *SpecInfo 12214 = Func->getTemplateSpecializationInfo()) { 12215 if (SpecInfo->getPointOfInstantiation().isInvalid()) 12216 SpecInfo->setPointOfInstantiation(Loc); 12217 else if (SpecInfo->getTemplateSpecializationKind() 12218 == TSK_ImplicitInstantiation) { 12219 AlreadyInstantiated = true; 12220 PointOfInstantiation = SpecInfo->getPointOfInstantiation(); 12221 } 12222 } else if (MemberSpecializationInfo *MSInfo 12223 = Func->getMemberSpecializationInfo()) { 12224 if (MSInfo->getPointOfInstantiation().isInvalid()) 12225 MSInfo->setPointOfInstantiation(Loc); 12226 else if (MSInfo->getTemplateSpecializationKind() 12227 == TSK_ImplicitInstantiation) { 12228 AlreadyInstantiated = true; 12229 PointOfInstantiation = MSInfo->getPointOfInstantiation(); 12230 } 12231 } 12232 12233 if (!AlreadyInstantiated || Func->isConstexpr()) { 12234 if (isa<CXXRecordDecl>(Func->getDeclContext()) && 12235 cast<CXXRecordDecl>(Func->getDeclContext())->isLocalClass() && 12236 ActiveTemplateInstantiations.size()) 12237 PendingLocalImplicitInstantiations.push_back( 12238 std::make_pair(Func, PointOfInstantiation)); 12239 else if (Func->isConstexpr()) 12240 // Do not defer instantiations of constexpr functions, to avoid the 12241 // expression evaluator needing to call back into Sema if it sees a 12242 // call to such a function. 12243 InstantiateFunctionDefinition(PointOfInstantiation, Func); 12244 else { 12245 PendingInstantiations.push_back(std::make_pair(Func, 12246 PointOfInstantiation)); 12247 // Notify the consumer that a function was implicitly instantiated. 12248 Consumer.HandleCXXImplicitFunctionInstantiation(Func); 12249 } 12250 } 12251 } else { 12252 // Walk redefinitions, as some of them may be instantiable. 12253 for (auto i : Func->redecls()) { 12254 if (!i->isUsed(false) && i->isImplicitlyInstantiable()) 12255 MarkFunctionReferenced(Loc, i); 12256 } 12257 } 12258 12259 // Keep track of used but undefined functions. 12260 if (!Func->isDefined()) { 12261 if (mightHaveNonExternalLinkage(Func)) 12262 UndefinedButUsed.insert(std::make_pair(Func->getCanonicalDecl(), Loc)); 12263 else if (Func->getMostRecentDecl()->isInlined() && 12264 !LangOpts.GNUInline && 12265 !Func->getMostRecentDecl()->hasAttr<GNUInlineAttr>()) 12266 UndefinedButUsed.insert(std::make_pair(Func->getCanonicalDecl(), Loc)); 12267 } 12268 12269 // Normally the most current decl is marked used while processing the use and 12270 // any subsequent decls are marked used by decl merging. This fails with 12271 // template instantiation since marking can happen at the end of the file 12272 // and, because of the two phase lookup, this function is called with at 12273 // decl in the middle of a decl chain. We loop to maintain the invariant 12274 // that once a decl is used, all decls after it are also used. 12275 for (FunctionDecl *F = Func->getMostRecentDecl();; F = F->getPreviousDecl()) { 12276 F->markUsed(Context); 12277 if (F == Func) 12278 break; 12279 } 12280 } 12281 12282 static void 12283 diagnoseUncapturableValueReference(Sema &S, SourceLocation loc, 12284 VarDecl *var, DeclContext *DC) { 12285 DeclContext *VarDC = var->getDeclContext(); 12286 12287 // If the parameter still belongs to the translation unit, then 12288 // we're actually just using one parameter in the declaration of 12289 // the next. 12290 if (isa<ParmVarDecl>(var) && 12291 isa<TranslationUnitDecl>(VarDC)) 12292 return; 12293 12294 // For C code, don't diagnose about capture if we're not actually in code 12295 // right now; it's impossible to write a non-constant expression outside of 12296 // function context, so we'll get other (more useful) diagnostics later. 12297 // 12298 // For C++, things get a bit more nasty... it would be nice to suppress this 12299 // diagnostic for certain cases like using a local variable in an array bound 12300 // for a member of a local class, but the correct predicate is not obvious. 12301 if (!S.getLangOpts().CPlusPlus && !S.CurContext->isFunctionOrMethod()) 12302 return; 12303 12304 if (isa<CXXMethodDecl>(VarDC) && 12305 cast<CXXRecordDecl>(VarDC->getParent())->isLambda()) { 12306 S.Diag(loc, diag::err_reference_to_local_var_in_enclosing_lambda) 12307 << var->getIdentifier(); 12308 } else if (FunctionDecl *fn = dyn_cast<FunctionDecl>(VarDC)) { 12309 S.Diag(loc, diag::err_reference_to_local_var_in_enclosing_function) 12310 << var->getIdentifier() << fn->getDeclName(); 12311 } else if (isa<BlockDecl>(VarDC)) { 12312 S.Diag(loc, diag::err_reference_to_local_var_in_enclosing_block) 12313 << var->getIdentifier(); 12314 } else { 12315 // FIXME: Is there any other context where a local variable can be 12316 // declared? 12317 S.Diag(loc, diag::err_reference_to_local_var_in_enclosing_context) 12318 << var->getIdentifier(); 12319 } 12320 12321 S.Diag(var->getLocation(), diag::note_entity_declared_at) 12322 << var->getIdentifier(); 12323 12324 // FIXME: Add additional diagnostic info about class etc. which prevents 12325 // capture. 12326 } 12327 12328 12329 static bool isVariableAlreadyCapturedInScopeInfo(CapturingScopeInfo *CSI, VarDecl *Var, 12330 bool &SubCapturesAreNested, 12331 QualType &CaptureType, 12332 QualType &DeclRefType) { 12333 // Check whether we've already captured it. 12334 if (CSI->CaptureMap.count(Var)) { 12335 // If we found a capture, any subcaptures are nested. 12336 SubCapturesAreNested = true; 12337 12338 // Retrieve the capture type for this variable. 12339 CaptureType = CSI->getCapture(Var).getCaptureType(); 12340 12341 // Compute the type of an expression that refers to this variable. 12342 DeclRefType = CaptureType.getNonReferenceType(); 12343 12344 const CapturingScopeInfo::Capture &Cap = CSI->getCapture(Var); 12345 if (Cap.isCopyCapture() && 12346 !(isa<LambdaScopeInfo>(CSI) && cast<LambdaScopeInfo>(CSI)->Mutable)) 12347 DeclRefType.addConst(); 12348 return true; 12349 } 12350 return false; 12351 } 12352 12353 // Only block literals, captured statements, and lambda expressions can 12354 // capture; other scopes don't work. 12355 static DeclContext *getParentOfCapturingContextOrNull(DeclContext *DC, VarDecl *Var, 12356 SourceLocation Loc, 12357 const bool Diagnose, Sema &S) { 12358 if (isa<BlockDecl>(DC) || isa<CapturedDecl>(DC) || isLambdaCallOperator(DC)) 12359 return getLambdaAwareParentOfDeclContext(DC); 12360 else if (Var->hasLocalStorage()) { 12361 if (Diagnose) 12362 diagnoseUncapturableValueReference(S, Loc, Var, DC); 12363 } 12364 return nullptr; 12365 } 12366 12367 // Certain capturing entities (lambdas, blocks etc.) are not allowed to capture 12368 // certain types of variables (unnamed, variably modified types etc.) 12369 // so check for eligibility. 12370 static bool isVariableCapturable(CapturingScopeInfo *CSI, VarDecl *Var, 12371 SourceLocation Loc, 12372 const bool Diagnose, Sema &S) { 12373 12374 bool IsBlock = isa<BlockScopeInfo>(CSI); 12375 bool IsLambda = isa<LambdaScopeInfo>(CSI); 12376 12377 // Lambdas are not allowed to capture unnamed variables 12378 // (e.g. anonymous unions). 12379 // FIXME: The C++11 rule don't actually state this explicitly, but I'm 12380 // assuming that's the intent. 12381 if (IsLambda && !Var->getDeclName()) { 12382 if (Diagnose) { 12383 S.Diag(Loc, diag::err_lambda_capture_anonymous_var); 12384 S.Diag(Var->getLocation(), diag::note_declared_at); 12385 } 12386 return false; 12387 } 12388 12389 // Prohibit variably-modified types in blocks; they're difficult to deal with. 12390 if (Var->getType()->isVariablyModifiedType() && IsBlock) { 12391 if (Diagnose) { 12392 S.Diag(Loc, diag::err_ref_vm_type); 12393 S.Diag(Var->getLocation(), diag::note_previous_decl) 12394 << Var->getDeclName(); 12395 } 12396 return false; 12397 } 12398 // Prohibit structs with flexible array members too. 12399 // We cannot capture what is in the tail end of the struct. 12400 if (const RecordType *VTTy = Var->getType()->getAs<RecordType>()) { 12401 if (VTTy->getDecl()->hasFlexibleArrayMember()) { 12402 if (Diagnose) { 12403 if (IsBlock) 12404 S.Diag(Loc, diag::err_ref_flexarray_type); 12405 else 12406 S.Diag(Loc, diag::err_lambda_capture_flexarray_type) 12407 << Var->getDeclName(); 12408 S.Diag(Var->getLocation(), diag::note_previous_decl) 12409 << Var->getDeclName(); 12410 } 12411 return false; 12412 } 12413 } 12414 const bool HasBlocksAttr = Var->hasAttr<BlocksAttr>(); 12415 // Lambdas and captured statements are not allowed to capture __block 12416 // variables; they don't support the expected semantics. 12417 if (HasBlocksAttr && (IsLambda || isa<CapturedRegionScopeInfo>(CSI))) { 12418 if (Diagnose) { 12419 S.Diag(Loc, diag::err_capture_block_variable) 12420 << Var->getDeclName() << !IsLambda; 12421 S.Diag(Var->getLocation(), diag::note_previous_decl) 12422 << Var->getDeclName(); 12423 } 12424 return false; 12425 } 12426 12427 return true; 12428 } 12429 12430 // Returns true if the capture by block was successful. 12431 static bool captureInBlock(BlockScopeInfo *BSI, VarDecl *Var, 12432 SourceLocation Loc, 12433 const bool BuildAndDiagnose, 12434 QualType &CaptureType, 12435 QualType &DeclRefType, 12436 const bool Nested, 12437 Sema &S) { 12438 Expr *CopyExpr = nullptr; 12439 bool ByRef = false; 12440 12441 // Blocks are not allowed to capture arrays. 12442 if (CaptureType->isArrayType()) { 12443 if (BuildAndDiagnose) { 12444 S.Diag(Loc, diag::err_ref_array_type); 12445 S.Diag(Var->getLocation(), diag::note_previous_decl) 12446 << Var->getDeclName(); 12447 } 12448 return false; 12449 } 12450 12451 // Forbid the block-capture of autoreleasing variables. 12452 if (CaptureType.getObjCLifetime() == Qualifiers::OCL_Autoreleasing) { 12453 if (BuildAndDiagnose) { 12454 S.Diag(Loc, diag::err_arc_autoreleasing_capture) 12455 << /*block*/ 0; 12456 S.Diag(Var->getLocation(), diag::note_previous_decl) 12457 << Var->getDeclName(); 12458 } 12459 return false; 12460 } 12461 const bool HasBlocksAttr = Var->hasAttr<BlocksAttr>(); 12462 if (HasBlocksAttr || CaptureType->isReferenceType()) { 12463 // Block capture by reference does not change the capture or 12464 // declaration reference types. 12465 ByRef = true; 12466 } else { 12467 // Block capture by copy introduces 'const'. 12468 CaptureType = CaptureType.getNonReferenceType().withConst(); 12469 DeclRefType = CaptureType; 12470 12471 if (S.getLangOpts().CPlusPlus && BuildAndDiagnose) { 12472 if (const RecordType *Record = DeclRefType->getAs<RecordType>()) { 12473 // The capture logic needs the destructor, so make sure we mark it. 12474 // Usually this is unnecessary because most local variables have 12475 // their destructors marked at declaration time, but parameters are 12476 // an exception because it's technically only the call site that 12477 // actually requires the destructor. 12478 if (isa<ParmVarDecl>(Var)) 12479 S.FinalizeVarWithDestructor(Var, Record); 12480 12481 // Enter a new evaluation context to insulate the copy 12482 // full-expression. 12483 EnterExpressionEvaluationContext scope(S, S.PotentiallyEvaluated); 12484 12485 // According to the blocks spec, the capture of a variable from 12486 // the stack requires a const copy constructor. This is not true 12487 // of the copy/move done to move a __block variable to the heap. 12488 Expr *DeclRef = new (S.Context) DeclRefExpr(Var, Nested, 12489 DeclRefType.withConst(), 12490 VK_LValue, Loc); 12491 12492 ExprResult Result 12493 = S.PerformCopyInitialization( 12494 InitializedEntity::InitializeBlock(Var->getLocation(), 12495 CaptureType, false), 12496 Loc, DeclRef); 12497 12498 // Build a full-expression copy expression if initialization 12499 // succeeded and used a non-trivial constructor. Recover from 12500 // errors by pretending that the copy isn't necessary. 12501 if (!Result.isInvalid() && 12502 !cast<CXXConstructExpr>(Result.get())->getConstructor() 12503 ->isTrivial()) { 12504 Result = S.MaybeCreateExprWithCleanups(Result); 12505 CopyExpr = Result.get(); 12506 } 12507 } 12508 } 12509 } 12510 12511 // Actually capture the variable. 12512 if (BuildAndDiagnose) 12513 BSI->addCapture(Var, HasBlocksAttr, ByRef, Nested, Loc, 12514 SourceLocation(), CaptureType, CopyExpr); 12515 12516 return true; 12517 12518 } 12519 12520 12521 /// \brief Capture the given variable in the captured region. 12522 static bool captureInCapturedRegion(CapturedRegionScopeInfo *RSI, 12523 VarDecl *Var, 12524 SourceLocation Loc, 12525 const bool BuildAndDiagnose, 12526 QualType &CaptureType, 12527 QualType &DeclRefType, 12528 const bool RefersToCapturedVariable, 12529 Sema &S) { 12530 12531 // By default, capture variables by reference. 12532 bool ByRef = true; 12533 // Using an LValue reference type is consistent with Lambdas (see below). 12534 if (S.getLangOpts().OpenMP && S.IsOpenMPCapturedVar(Var)) 12535 DeclRefType = DeclRefType.getUnqualifiedType(); 12536 CaptureType = S.Context.getLValueReferenceType(DeclRefType); 12537 Expr *CopyExpr = nullptr; 12538 if (BuildAndDiagnose) { 12539 // The current implementation assumes that all variables are captured 12540 // by references. Since there is no capture by copy, no expression 12541 // evaluation will be needed. 12542 RecordDecl *RD = RSI->TheRecordDecl; 12543 12544 FieldDecl *Field 12545 = FieldDecl::Create(S.Context, RD, Loc, Loc, nullptr, CaptureType, 12546 S.Context.getTrivialTypeSourceInfo(CaptureType, Loc), 12547 nullptr, false, ICIS_NoInit); 12548 Field->setImplicit(true); 12549 Field->setAccess(AS_private); 12550 RD->addDecl(Field); 12551 12552 CopyExpr = new (S.Context) DeclRefExpr(Var, RefersToCapturedVariable, 12553 DeclRefType, VK_LValue, Loc); 12554 Var->setReferenced(true); 12555 Var->markUsed(S.Context); 12556 } 12557 12558 // Actually capture the variable. 12559 if (BuildAndDiagnose) 12560 RSI->addCapture(Var, /*isBlock*/false, ByRef, RefersToCapturedVariable, Loc, 12561 SourceLocation(), CaptureType, CopyExpr); 12562 12563 12564 return true; 12565 } 12566 12567 /// \brief Create a field within the lambda class for the variable 12568 /// being captured. 12569 static void addAsFieldToClosureType(Sema &S, LambdaScopeInfo *LSI, VarDecl *Var, 12570 QualType FieldType, QualType DeclRefType, 12571 SourceLocation Loc, 12572 bool RefersToCapturedVariable) { 12573 CXXRecordDecl *Lambda = LSI->Lambda; 12574 12575 // Build the non-static data member. 12576 FieldDecl *Field 12577 = FieldDecl::Create(S.Context, Lambda, Loc, Loc, nullptr, FieldType, 12578 S.Context.getTrivialTypeSourceInfo(FieldType, Loc), 12579 nullptr, false, ICIS_NoInit); 12580 Field->setImplicit(true); 12581 Field->setAccess(AS_private); 12582 Lambda->addDecl(Field); 12583 } 12584 12585 /// \brief Capture the given variable in the lambda. 12586 static bool captureInLambda(LambdaScopeInfo *LSI, 12587 VarDecl *Var, 12588 SourceLocation Loc, 12589 const bool BuildAndDiagnose, 12590 QualType &CaptureType, 12591 QualType &DeclRefType, 12592 const bool RefersToCapturedVariable, 12593 const Sema::TryCaptureKind Kind, 12594 SourceLocation EllipsisLoc, 12595 const bool IsTopScope, 12596 Sema &S) { 12597 12598 // Determine whether we are capturing by reference or by value. 12599 bool ByRef = false; 12600 if (IsTopScope && Kind != Sema::TryCapture_Implicit) { 12601 ByRef = (Kind == Sema::TryCapture_ExplicitByRef); 12602 } else { 12603 ByRef = (LSI->ImpCaptureStyle == LambdaScopeInfo::ImpCap_LambdaByref); 12604 } 12605 12606 // Compute the type of the field that will capture this variable. 12607 if (ByRef) { 12608 // C++11 [expr.prim.lambda]p15: 12609 // An entity is captured by reference if it is implicitly or 12610 // explicitly captured but not captured by copy. It is 12611 // unspecified whether additional unnamed non-static data 12612 // members are declared in the closure type for entities 12613 // captured by reference. 12614 // 12615 // FIXME: It is not clear whether we want to build an lvalue reference 12616 // to the DeclRefType or to CaptureType.getNonReferenceType(). GCC appears 12617 // to do the former, while EDG does the latter. Core issue 1249 will 12618 // clarify, but for now we follow GCC because it's a more permissive and 12619 // easily defensible position. 12620 CaptureType = S.Context.getLValueReferenceType(DeclRefType); 12621 } else { 12622 // C++11 [expr.prim.lambda]p14: 12623 // For each entity captured by copy, an unnamed non-static 12624 // data member is declared in the closure type. The 12625 // declaration order of these members is unspecified. The type 12626 // of such a data member is the type of the corresponding 12627 // captured entity if the entity is not a reference to an 12628 // object, or the referenced type otherwise. [Note: If the 12629 // captured entity is a reference to a function, the 12630 // corresponding data member is also a reference to a 12631 // function. - end note ] 12632 if (const ReferenceType *RefType = CaptureType->getAs<ReferenceType>()){ 12633 if (!RefType->getPointeeType()->isFunctionType()) 12634 CaptureType = RefType->getPointeeType(); 12635 } 12636 12637 // Forbid the lambda copy-capture of autoreleasing variables. 12638 if (CaptureType.getObjCLifetime() == Qualifiers::OCL_Autoreleasing) { 12639 if (BuildAndDiagnose) { 12640 S.Diag(Loc, diag::err_arc_autoreleasing_capture) << /*lambda*/ 1; 12641 S.Diag(Var->getLocation(), diag::note_previous_decl) 12642 << Var->getDeclName(); 12643 } 12644 return false; 12645 } 12646 12647 // Make sure that by-copy captures are of a complete and non-abstract type. 12648 if (BuildAndDiagnose) { 12649 if (!CaptureType->isDependentType() && 12650 S.RequireCompleteType(Loc, CaptureType, 12651 diag::err_capture_of_incomplete_type, 12652 Var->getDeclName())) 12653 return false; 12654 12655 if (S.RequireNonAbstractType(Loc, CaptureType, 12656 diag::err_capture_of_abstract_type)) 12657 return false; 12658 } 12659 } 12660 12661 // Capture this variable in the lambda. 12662 if (BuildAndDiagnose) 12663 addAsFieldToClosureType(S, LSI, Var, CaptureType, DeclRefType, Loc, 12664 RefersToCapturedVariable); 12665 12666 // Compute the type of a reference to this captured variable. 12667 if (ByRef) 12668 DeclRefType = CaptureType.getNonReferenceType(); 12669 else { 12670 // C++ [expr.prim.lambda]p5: 12671 // The closure type for a lambda-expression has a public inline 12672 // function call operator [...]. This function call operator is 12673 // declared const (9.3.1) if and only if the lambda-expression’s 12674 // parameter-declaration-clause is not followed by mutable. 12675 DeclRefType = CaptureType.getNonReferenceType(); 12676 if (!LSI->Mutable && !CaptureType->isReferenceType()) 12677 DeclRefType.addConst(); 12678 } 12679 12680 // Add the capture. 12681 if (BuildAndDiagnose) 12682 LSI->addCapture(Var, /*IsBlock=*/false, ByRef, RefersToCapturedVariable, 12683 Loc, EllipsisLoc, CaptureType, /*CopyExpr=*/nullptr); 12684 12685 return true; 12686 } 12687 12688 bool Sema::tryCaptureVariable( 12689 VarDecl *Var, SourceLocation ExprLoc, TryCaptureKind Kind, 12690 SourceLocation EllipsisLoc, bool BuildAndDiagnose, QualType &CaptureType, 12691 QualType &DeclRefType, const unsigned *const FunctionScopeIndexToStopAt) { 12692 // An init-capture is notionally from the context surrounding its 12693 // declaration, but its parent DC is the lambda class. 12694 DeclContext *VarDC = Var->getDeclContext(); 12695 if (Var->isInitCapture()) 12696 VarDC = VarDC->getParent(); 12697 12698 DeclContext *DC = CurContext; 12699 const unsigned MaxFunctionScopesIndex = FunctionScopeIndexToStopAt 12700 ? *FunctionScopeIndexToStopAt : FunctionScopes.size() - 1; 12701 // We need to sync up the Declaration Context with the 12702 // FunctionScopeIndexToStopAt 12703 if (FunctionScopeIndexToStopAt) { 12704 unsigned FSIndex = FunctionScopes.size() - 1; 12705 while (FSIndex != MaxFunctionScopesIndex) { 12706 DC = getLambdaAwareParentOfDeclContext(DC); 12707 --FSIndex; 12708 } 12709 } 12710 12711 12712 // If the variable is declared in the current context, there is no need to 12713 // capture it. 12714 if (VarDC == DC) return true; 12715 12716 // Capture global variables if it is required to use private copy of this 12717 // variable. 12718 bool IsGlobal = !Var->hasLocalStorage(); 12719 if (IsGlobal && !(LangOpts.OpenMP && IsOpenMPCapturedVar(Var))) 12720 return true; 12721 12722 // Walk up the stack to determine whether we can capture the variable, 12723 // performing the "simple" checks that don't depend on type. We stop when 12724 // we've either hit the declared scope of the variable or find an existing 12725 // capture of that variable. We start from the innermost capturing-entity 12726 // (the DC) and ensure that all intervening capturing-entities 12727 // (blocks/lambdas etc.) between the innermost capturer and the variable`s 12728 // declcontext can either capture the variable or have already captured 12729 // the variable. 12730 CaptureType = Var->getType(); 12731 DeclRefType = CaptureType.getNonReferenceType(); 12732 bool Nested = false; 12733 bool Explicit = (Kind != TryCapture_Implicit); 12734 unsigned FunctionScopesIndex = MaxFunctionScopesIndex; 12735 unsigned OpenMPLevel = 0; 12736 do { 12737 // Only block literals, captured statements, and lambda expressions can 12738 // capture; other scopes don't work. 12739 DeclContext *ParentDC = getParentOfCapturingContextOrNull(DC, Var, 12740 ExprLoc, 12741 BuildAndDiagnose, 12742 *this); 12743 // We need to check for the parent *first* because, if we *have* 12744 // private-captured a global variable, we need to recursively capture it in 12745 // intermediate blocks, lambdas, etc. 12746 if (!ParentDC) { 12747 if (IsGlobal) { 12748 FunctionScopesIndex = MaxFunctionScopesIndex - 1; 12749 break; 12750 } 12751 return true; 12752 } 12753 12754 FunctionScopeInfo *FSI = FunctionScopes[FunctionScopesIndex]; 12755 CapturingScopeInfo *CSI = cast<CapturingScopeInfo>(FSI); 12756 12757 12758 // Check whether we've already captured it. 12759 if (isVariableAlreadyCapturedInScopeInfo(CSI, Var, Nested, CaptureType, 12760 DeclRefType)) 12761 break; 12762 if (getLangOpts().OpenMP) { 12763 if (auto *RSI = dyn_cast<CapturedRegionScopeInfo>(CSI)) { 12764 // OpenMP private variables should not be captured in outer scope, so 12765 // just break here. 12766 if (RSI->CapRegionKind == CR_OpenMP) { 12767 if (isOpenMPPrivateVar(Var, OpenMPLevel)) { 12768 Nested = true; 12769 DeclRefType = DeclRefType.getUnqualifiedType(); 12770 CaptureType = Context.getLValueReferenceType(DeclRefType); 12771 break; 12772 } 12773 ++OpenMPLevel; 12774 } 12775 } 12776 } 12777 // If we are instantiating a generic lambda call operator body, 12778 // we do not want to capture new variables. What was captured 12779 // during either a lambdas transformation or initial parsing 12780 // should be used. 12781 if (isGenericLambdaCallOperatorSpecialization(DC)) { 12782 if (BuildAndDiagnose) { 12783 LambdaScopeInfo *LSI = cast<LambdaScopeInfo>(CSI); 12784 if (LSI->ImpCaptureStyle == CapturingScopeInfo::ImpCap_None) { 12785 Diag(ExprLoc, diag::err_lambda_impcap) << Var->getDeclName(); 12786 Diag(Var->getLocation(), diag::note_previous_decl) 12787 << Var->getDeclName(); 12788 Diag(LSI->Lambda->getLocStart(), diag::note_lambda_decl); 12789 } else 12790 diagnoseUncapturableValueReference(*this, ExprLoc, Var, DC); 12791 } 12792 return true; 12793 } 12794 // Certain capturing entities (lambdas, blocks etc.) are not allowed to capture 12795 // certain types of variables (unnamed, variably modified types etc.) 12796 // so check for eligibility. 12797 if (!isVariableCapturable(CSI, Var, ExprLoc, BuildAndDiagnose, *this)) 12798 return true; 12799 12800 // Try to capture variable-length arrays types. 12801 if (Var->getType()->isVariablyModifiedType()) { 12802 // We're going to walk down into the type and look for VLA 12803 // expressions. 12804 QualType QTy = Var->getType(); 12805 if (ParmVarDecl *PVD = dyn_cast_or_null<ParmVarDecl>(Var)) 12806 QTy = PVD->getOriginalType(); 12807 do { 12808 const Type *Ty = QTy.getTypePtr(); 12809 switch (Ty->getTypeClass()) { 12810 #define TYPE(Class, Base) 12811 #define ABSTRACT_TYPE(Class, Base) 12812 #define NON_CANONICAL_TYPE(Class, Base) 12813 #define DEPENDENT_TYPE(Class, Base) case Type::Class: 12814 #define NON_CANONICAL_UNLESS_DEPENDENT_TYPE(Class, Base) 12815 #include "clang/AST/TypeNodes.def" 12816 QTy = QualType(); 12817 break; 12818 // These types are never variably-modified. 12819 case Type::Builtin: 12820 case Type::Complex: 12821 case Type::Vector: 12822 case Type::ExtVector: 12823 case Type::Record: 12824 case Type::Enum: 12825 case Type::Elaborated: 12826 case Type::TemplateSpecialization: 12827 case Type::ObjCObject: 12828 case Type::ObjCInterface: 12829 case Type::ObjCObjectPointer: 12830 llvm_unreachable("type class is never variably-modified!"); 12831 case Type::Adjusted: 12832 QTy = cast<AdjustedType>(Ty)->getOriginalType(); 12833 break; 12834 case Type::Decayed: 12835 QTy = cast<DecayedType>(Ty)->getPointeeType(); 12836 break; 12837 case Type::Pointer: 12838 QTy = cast<PointerType>(Ty)->getPointeeType(); 12839 break; 12840 case Type::BlockPointer: 12841 QTy = cast<BlockPointerType>(Ty)->getPointeeType(); 12842 break; 12843 case Type::LValueReference: 12844 case Type::RValueReference: 12845 QTy = cast<ReferenceType>(Ty)->getPointeeType(); 12846 break; 12847 case Type::MemberPointer: 12848 QTy = cast<MemberPointerType>(Ty)->getPointeeType(); 12849 break; 12850 case Type::ConstantArray: 12851 case Type::IncompleteArray: 12852 // Losing element qualification here is fine. 12853 QTy = cast<ArrayType>(Ty)->getElementType(); 12854 break; 12855 case Type::VariableArray: { 12856 // Losing element qualification here is fine. 12857 const VariableArrayType *VAT = cast<VariableArrayType>(Ty); 12858 12859 // Unknown size indication requires no size computation. 12860 // Otherwise, evaluate and record it. 12861 if (auto Size = VAT->getSizeExpr()) { 12862 if (!CSI->isVLATypeCaptured(VAT)) { 12863 RecordDecl *CapRecord = nullptr; 12864 if (auto LSI = dyn_cast<LambdaScopeInfo>(CSI)) { 12865 CapRecord = LSI->Lambda; 12866 } else if (auto CRSI = dyn_cast<CapturedRegionScopeInfo>(CSI)) { 12867 CapRecord = CRSI->TheRecordDecl; 12868 } 12869 if (CapRecord) { 12870 auto ExprLoc = Size->getExprLoc(); 12871 auto SizeType = Context.getSizeType(); 12872 // Build the non-static data member. 12873 auto Field = FieldDecl::Create( 12874 Context, CapRecord, ExprLoc, ExprLoc, 12875 /*Id*/ nullptr, SizeType, /*TInfo*/ nullptr, 12876 /*BW*/ nullptr, /*Mutable*/ false, 12877 /*InitStyle*/ ICIS_NoInit); 12878 Field->setImplicit(true); 12879 Field->setAccess(AS_private); 12880 Field->setCapturedVLAType(VAT); 12881 CapRecord->addDecl(Field); 12882 12883 CSI->addVLATypeCapture(ExprLoc, SizeType); 12884 } 12885 } 12886 } 12887 QTy = VAT->getElementType(); 12888 break; 12889 } 12890 case Type::FunctionProto: 12891 case Type::FunctionNoProto: 12892 QTy = cast<FunctionType>(Ty)->getReturnType(); 12893 break; 12894 case Type::Paren: 12895 case Type::TypeOf: 12896 case Type::UnaryTransform: 12897 case Type::Attributed: 12898 case Type::SubstTemplateTypeParm: 12899 case Type::PackExpansion: 12900 // Keep walking after single level desugaring. 12901 QTy = QTy.getSingleStepDesugaredType(getASTContext()); 12902 break; 12903 case Type::Typedef: 12904 QTy = cast<TypedefType>(Ty)->desugar(); 12905 break; 12906 case Type::Decltype: 12907 QTy = cast<DecltypeType>(Ty)->desugar(); 12908 break; 12909 case Type::Auto: 12910 QTy = cast<AutoType>(Ty)->getDeducedType(); 12911 break; 12912 case Type::TypeOfExpr: 12913 QTy = cast<TypeOfExprType>(Ty)->getUnderlyingExpr()->getType(); 12914 break; 12915 case Type::Atomic: 12916 QTy = cast<AtomicType>(Ty)->getValueType(); 12917 break; 12918 } 12919 } while (!QTy.isNull() && QTy->isVariablyModifiedType()); 12920 } 12921 12922 if (CSI->ImpCaptureStyle == CapturingScopeInfo::ImpCap_None && !Explicit) { 12923 // No capture-default, and this is not an explicit capture 12924 // so cannot capture this variable. 12925 if (BuildAndDiagnose) { 12926 Diag(ExprLoc, diag::err_lambda_impcap) << Var->getDeclName(); 12927 Diag(Var->getLocation(), diag::note_previous_decl) 12928 << Var->getDeclName(); 12929 Diag(cast<LambdaScopeInfo>(CSI)->Lambda->getLocStart(), 12930 diag::note_lambda_decl); 12931 // FIXME: If we error out because an outer lambda can not implicitly 12932 // capture a variable that an inner lambda explicitly captures, we 12933 // should have the inner lambda do the explicit capture - because 12934 // it makes for cleaner diagnostics later. This would purely be done 12935 // so that the diagnostic does not misleadingly claim that a variable 12936 // can not be captured by a lambda implicitly even though it is captured 12937 // explicitly. Suggestion: 12938 // - create const bool VariableCaptureWasInitiallyExplicit = Explicit 12939 // at the function head 12940 // - cache the StartingDeclContext - this must be a lambda 12941 // - captureInLambda in the innermost lambda the variable. 12942 } 12943 return true; 12944 } 12945 12946 FunctionScopesIndex--; 12947 DC = ParentDC; 12948 Explicit = false; 12949 } while (!VarDC->Equals(DC)); 12950 12951 // Walk back down the scope stack, (e.g. from outer lambda to inner lambda) 12952 // computing the type of the capture at each step, checking type-specific 12953 // requirements, and adding captures if requested. 12954 // If the variable had already been captured previously, we start capturing 12955 // at the lambda nested within that one. 12956 for (unsigned I = ++FunctionScopesIndex, N = MaxFunctionScopesIndex + 1; I != N; 12957 ++I) { 12958 CapturingScopeInfo *CSI = cast<CapturingScopeInfo>(FunctionScopes[I]); 12959 12960 if (BlockScopeInfo *BSI = dyn_cast<BlockScopeInfo>(CSI)) { 12961 if (!captureInBlock(BSI, Var, ExprLoc, 12962 BuildAndDiagnose, CaptureType, 12963 DeclRefType, Nested, *this)) 12964 return true; 12965 Nested = true; 12966 } else if (CapturedRegionScopeInfo *RSI = dyn_cast<CapturedRegionScopeInfo>(CSI)) { 12967 if (!captureInCapturedRegion(RSI, Var, ExprLoc, 12968 BuildAndDiagnose, CaptureType, 12969 DeclRefType, Nested, *this)) 12970 return true; 12971 Nested = true; 12972 } else { 12973 LambdaScopeInfo *LSI = cast<LambdaScopeInfo>(CSI); 12974 if (!captureInLambda(LSI, Var, ExprLoc, 12975 BuildAndDiagnose, CaptureType, 12976 DeclRefType, Nested, Kind, EllipsisLoc, 12977 /*IsTopScope*/I == N - 1, *this)) 12978 return true; 12979 Nested = true; 12980 } 12981 } 12982 return false; 12983 } 12984 12985 bool Sema::tryCaptureVariable(VarDecl *Var, SourceLocation Loc, 12986 TryCaptureKind Kind, SourceLocation EllipsisLoc) { 12987 QualType CaptureType; 12988 QualType DeclRefType; 12989 return tryCaptureVariable(Var, Loc, Kind, EllipsisLoc, 12990 /*BuildAndDiagnose=*/true, CaptureType, 12991 DeclRefType, nullptr); 12992 } 12993 12994 bool Sema::NeedToCaptureVariable(VarDecl *Var, SourceLocation Loc) { 12995 QualType CaptureType; 12996 QualType DeclRefType; 12997 return !tryCaptureVariable(Var, Loc, TryCapture_Implicit, SourceLocation(), 12998 /*BuildAndDiagnose=*/false, CaptureType, 12999 DeclRefType, nullptr); 13000 } 13001 13002 QualType Sema::getCapturedDeclRefType(VarDecl *Var, SourceLocation Loc) { 13003 QualType CaptureType; 13004 QualType DeclRefType; 13005 13006 // Determine whether we can capture this variable. 13007 if (tryCaptureVariable(Var, Loc, TryCapture_Implicit, SourceLocation(), 13008 /*BuildAndDiagnose=*/false, CaptureType, 13009 DeclRefType, nullptr)) 13010 return QualType(); 13011 13012 return DeclRefType; 13013 } 13014 13015 13016 13017 // If either the type of the variable or the initializer is dependent, 13018 // return false. Otherwise, determine whether the variable is a constant 13019 // expression. Use this if you need to know if a variable that might or 13020 // might not be dependent is truly a constant expression. 13021 static inline bool IsVariableNonDependentAndAConstantExpression(VarDecl *Var, 13022 ASTContext &Context) { 13023 13024 if (Var->getType()->isDependentType()) 13025 return false; 13026 const VarDecl *DefVD = nullptr; 13027 Var->getAnyInitializer(DefVD); 13028 if (!DefVD) 13029 return false; 13030 EvaluatedStmt *Eval = DefVD->ensureEvaluatedStmt(); 13031 Expr *Init = cast<Expr>(Eval->Value); 13032 if (Init->isValueDependent()) 13033 return false; 13034 return IsVariableAConstantExpression(Var, Context); 13035 } 13036 13037 13038 void Sema::UpdateMarkingForLValueToRValue(Expr *E) { 13039 // Per C++11 [basic.def.odr], a variable is odr-used "unless it is 13040 // an object that satisfies the requirements for appearing in a 13041 // constant expression (5.19) and the lvalue-to-rvalue conversion (4.1) 13042 // is immediately applied." This function handles the lvalue-to-rvalue 13043 // conversion part. 13044 MaybeODRUseExprs.erase(E->IgnoreParens()); 13045 13046 // If we are in a lambda, check if this DeclRefExpr or MemberExpr refers 13047 // to a variable that is a constant expression, and if so, identify it as 13048 // a reference to a variable that does not involve an odr-use of that 13049 // variable. 13050 if (LambdaScopeInfo *LSI = getCurLambda()) { 13051 Expr *SansParensExpr = E->IgnoreParens(); 13052 VarDecl *Var = nullptr; 13053 if (DeclRefExpr *DRE = dyn_cast<DeclRefExpr>(SansParensExpr)) 13054 Var = dyn_cast<VarDecl>(DRE->getFoundDecl()); 13055 else if (MemberExpr *ME = dyn_cast<MemberExpr>(SansParensExpr)) 13056 Var = dyn_cast<VarDecl>(ME->getMemberDecl()); 13057 13058 if (Var && IsVariableNonDependentAndAConstantExpression(Var, Context)) 13059 LSI->markVariableExprAsNonODRUsed(SansParensExpr); 13060 } 13061 } 13062 13063 ExprResult Sema::ActOnConstantExpression(ExprResult Res) { 13064 Res = CorrectDelayedTyposInExpr(Res); 13065 13066 if (!Res.isUsable()) 13067 return Res; 13068 13069 // If a constant-expression is a reference to a variable where we delay 13070 // deciding whether it is an odr-use, just assume we will apply the 13071 // lvalue-to-rvalue conversion. In the one case where this doesn't happen 13072 // (a non-type template argument), we have special handling anyway. 13073 UpdateMarkingForLValueToRValue(Res.get()); 13074 return Res; 13075 } 13076 13077 void Sema::CleanupVarDeclMarking() { 13078 for (llvm::SmallPtrSetIterator<Expr*> i = MaybeODRUseExprs.begin(), 13079 e = MaybeODRUseExprs.end(); 13080 i != e; ++i) { 13081 VarDecl *Var; 13082 SourceLocation Loc; 13083 if (DeclRefExpr *DRE = dyn_cast<DeclRefExpr>(*i)) { 13084 Var = cast<VarDecl>(DRE->getDecl()); 13085 Loc = DRE->getLocation(); 13086 } else if (MemberExpr *ME = dyn_cast<MemberExpr>(*i)) { 13087 Var = cast<VarDecl>(ME->getMemberDecl()); 13088 Loc = ME->getMemberLoc(); 13089 } else { 13090 llvm_unreachable("Unexpected expression"); 13091 } 13092 13093 MarkVarDeclODRUsed(Var, Loc, *this, 13094 /*MaxFunctionScopeIndex Pointer*/ nullptr); 13095 } 13096 13097 MaybeODRUseExprs.clear(); 13098 } 13099 13100 13101 static void DoMarkVarDeclReferenced(Sema &SemaRef, SourceLocation Loc, 13102 VarDecl *Var, Expr *E) { 13103 assert((!E || isa<DeclRefExpr>(E) || isa<MemberExpr>(E)) && 13104 "Invalid Expr argument to DoMarkVarDeclReferenced"); 13105 Var->setReferenced(); 13106 13107 TemplateSpecializationKind TSK = Var->getTemplateSpecializationKind(); 13108 bool MarkODRUsed = true; 13109 13110 // If the context is not potentially evaluated, this is not an odr-use and 13111 // does not trigger instantiation. 13112 if (!IsPotentiallyEvaluatedContext(SemaRef)) { 13113 if (SemaRef.isUnevaluatedContext()) 13114 return; 13115 13116 // If we don't yet know whether this context is going to end up being an 13117 // evaluated context, and we're referencing a variable from an enclosing 13118 // scope, add a potential capture. 13119 // 13120 // FIXME: Is this necessary? These contexts are only used for default 13121 // arguments, where local variables can't be used. 13122 const bool RefersToEnclosingScope = 13123 (SemaRef.CurContext != Var->getDeclContext() && 13124 Var->getDeclContext()->isFunctionOrMethod() && Var->hasLocalStorage()); 13125 if (RefersToEnclosingScope) { 13126 if (LambdaScopeInfo *const LSI = SemaRef.getCurLambda()) { 13127 // If a variable could potentially be odr-used, defer marking it so 13128 // until we finish analyzing the full expression for any 13129 // lvalue-to-rvalue 13130 // or discarded value conversions that would obviate odr-use. 13131 // Add it to the list of potential captures that will be analyzed 13132 // later (ActOnFinishFullExpr) for eventual capture and odr-use marking 13133 // unless the variable is a reference that was initialized by a constant 13134 // expression (this will never need to be captured or odr-used). 13135 assert(E && "Capture variable should be used in an expression."); 13136 if (!Var->getType()->isReferenceType() || 13137 !IsVariableNonDependentAndAConstantExpression(Var, SemaRef.Context)) 13138 LSI->addPotentialCapture(E->IgnoreParens()); 13139 } 13140 } 13141 13142 if (!isTemplateInstantiation(TSK)) 13143 return; 13144 13145 // Instantiate, but do not mark as odr-used, variable templates. 13146 MarkODRUsed = false; 13147 } 13148 13149 VarTemplateSpecializationDecl *VarSpec = 13150 dyn_cast<VarTemplateSpecializationDecl>(Var); 13151 assert(!isa<VarTemplatePartialSpecializationDecl>(Var) && 13152 "Can't instantiate a partial template specialization."); 13153 13154 // Perform implicit instantiation of static data members, static data member 13155 // templates of class templates, and variable template specializations. Delay 13156 // instantiations of variable templates, except for those that could be used 13157 // in a constant expression. 13158 if (isTemplateInstantiation(TSK)) { 13159 bool TryInstantiating = TSK == TSK_ImplicitInstantiation; 13160 13161 if (TryInstantiating && !isa<VarTemplateSpecializationDecl>(Var)) { 13162 if (Var->getPointOfInstantiation().isInvalid()) { 13163 // This is a modification of an existing AST node. Notify listeners. 13164 if (ASTMutationListener *L = SemaRef.getASTMutationListener()) 13165 L->StaticDataMemberInstantiated(Var); 13166 } else if (!Var->isUsableInConstantExpressions(SemaRef.Context)) 13167 // Don't bother trying to instantiate it again, unless we might need 13168 // its initializer before we get to the end of the TU. 13169 TryInstantiating = false; 13170 } 13171 13172 if (Var->getPointOfInstantiation().isInvalid()) 13173 Var->setTemplateSpecializationKind(TSK, Loc); 13174 13175 if (TryInstantiating) { 13176 SourceLocation PointOfInstantiation = Var->getPointOfInstantiation(); 13177 bool InstantiationDependent = false; 13178 bool IsNonDependent = 13179 VarSpec ? !TemplateSpecializationType::anyDependentTemplateArguments( 13180 VarSpec->getTemplateArgsInfo(), InstantiationDependent) 13181 : true; 13182 13183 // Do not instantiate specializations that are still type-dependent. 13184 if (IsNonDependent) { 13185 if (Var->isUsableInConstantExpressions(SemaRef.Context)) { 13186 // Do not defer instantiations of variables which could be used in a 13187 // constant expression. 13188 SemaRef.InstantiateVariableDefinition(PointOfInstantiation, Var); 13189 } else { 13190 SemaRef.PendingInstantiations 13191 .push_back(std::make_pair(Var, PointOfInstantiation)); 13192 } 13193 } 13194 } 13195 } 13196 13197 if(!MarkODRUsed) return; 13198 13199 // Per C++11 [basic.def.odr], a variable is odr-used "unless it satisfies 13200 // the requirements for appearing in a constant expression (5.19) and, if 13201 // it is an object, the lvalue-to-rvalue conversion (4.1) 13202 // is immediately applied." We check the first part here, and 13203 // Sema::UpdateMarkingForLValueToRValue deals with the second part. 13204 // Note that we use the C++11 definition everywhere because nothing in 13205 // C++03 depends on whether we get the C++03 version correct. The second 13206 // part does not apply to references, since they are not objects. 13207 if (E && IsVariableAConstantExpression(Var, SemaRef.Context)) { 13208 // A reference initialized by a constant expression can never be 13209 // odr-used, so simply ignore it. 13210 if (!Var->getType()->isReferenceType()) 13211 SemaRef.MaybeODRUseExprs.insert(E); 13212 } else 13213 MarkVarDeclODRUsed(Var, Loc, SemaRef, 13214 /*MaxFunctionScopeIndex ptr*/ nullptr); 13215 } 13216 13217 /// \brief Mark a variable referenced, and check whether it is odr-used 13218 /// (C++ [basic.def.odr]p2, C99 6.9p3). Note that this should not be 13219 /// used directly for normal expressions referring to VarDecl. 13220 void Sema::MarkVariableReferenced(SourceLocation Loc, VarDecl *Var) { 13221 DoMarkVarDeclReferenced(*this, Loc, Var, nullptr); 13222 } 13223 13224 static void MarkExprReferenced(Sema &SemaRef, SourceLocation Loc, 13225 Decl *D, Expr *E, bool OdrUse) { 13226 if (VarDecl *Var = dyn_cast<VarDecl>(D)) { 13227 DoMarkVarDeclReferenced(SemaRef, Loc, Var, E); 13228 return; 13229 } 13230 13231 SemaRef.MarkAnyDeclReferenced(Loc, D, OdrUse); 13232 13233 // If this is a call to a method via a cast, also mark the method in the 13234 // derived class used in case codegen can devirtualize the call. 13235 const MemberExpr *ME = dyn_cast<MemberExpr>(E); 13236 if (!ME) 13237 return; 13238 CXXMethodDecl *MD = dyn_cast<CXXMethodDecl>(ME->getMemberDecl()); 13239 if (!MD) 13240 return; 13241 // Only attempt to devirtualize if this is truly a virtual call. 13242 bool IsVirtualCall = MD->isVirtual() && 13243 ME->performsVirtualDispatch(SemaRef.getLangOpts()); 13244 if (!IsVirtualCall) 13245 return; 13246 const Expr *Base = ME->getBase(); 13247 const CXXRecordDecl *MostDerivedClassDecl = Base->getBestDynamicClassType(); 13248 if (!MostDerivedClassDecl) 13249 return; 13250 CXXMethodDecl *DM = MD->getCorrespondingMethodInClass(MostDerivedClassDecl); 13251 if (!DM || DM->isPure()) 13252 return; 13253 SemaRef.MarkAnyDeclReferenced(Loc, DM, OdrUse); 13254 } 13255 13256 /// \brief Perform reference-marking and odr-use handling for a DeclRefExpr. 13257 void Sema::MarkDeclRefReferenced(DeclRefExpr *E) { 13258 // TODO: update this with DR# once a defect report is filed. 13259 // C++11 defect. The address of a pure member should not be an ODR use, even 13260 // if it's a qualified reference. 13261 bool OdrUse = true; 13262 if (CXXMethodDecl *Method = dyn_cast<CXXMethodDecl>(E->getDecl())) 13263 if (Method->isVirtual()) 13264 OdrUse = false; 13265 MarkExprReferenced(*this, E->getLocation(), E->getDecl(), E, OdrUse); 13266 } 13267 13268 /// \brief Perform reference-marking and odr-use handling for a MemberExpr. 13269 void Sema::MarkMemberReferenced(MemberExpr *E) { 13270 // C++11 [basic.def.odr]p2: 13271 // A non-overloaded function whose name appears as a potentially-evaluated 13272 // expression or a member of a set of candidate functions, if selected by 13273 // overload resolution when referred to from a potentially-evaluated 13274 // expression, is odr-used, unless it is a pure virtual function and its 13275 // name is not explicitly qualified. 13276 bool OdrUse = true; 13277 if (E->performsVirtualDispatch(getLangOpts())) { 13278 if (CXXMethodDecl *Method = dyn_cast<CXXMethodDecl>(E->getMemberDecl())) 13279 if (Method->isPure()) 13280 OdrUse = false; 13281 } 13282 SourceLocation Loc = E->getMemberLoc().isValid() ? 13283 E->getMemberLoc() : E->getLocStart(); 13284 MarkExprReferenced(*this, Loc, E->getMemberDecl(), E, OdrUse); 13285 } 13286 13287 /// \brief Perform marking for a reference to an arbitrary declaration. It 13288 /// marks the declaration referenced, and performs odr-use checking for 13289 /// functions and variables. This method should not be used when building a 13290 /// normal expression which refers to a variable. 13291 void Sema::MarkAnyDeclReferenced(SourceLocation Loc, Decl *D, bool OdrUse) { 13292 if (OdrUse) { 13293 if (auto *VD = dyn_cast<VarDecl>(D)) { 13294 MarkVariableReferenced(Loc, VD); 13295 return; 13296 } 13297 } 13298 if (auto *FD = dyn_cast<FunctionDecl>(D)) { 13299 MarkFunctionReferenced(Loc, FD, OdrUse); 13300 return; 13301 } 13302 D->setReferenced(); 13303 } 13304 13305 namespace { 13306 // Mark all of the declarations referenced 13307 // FIXME: Not fully implemented yet! We need to have a better understanding 13308 // of when we're entering 13309 class MarkReferencedDecls : public RecursiveASTVisitor<MarkReferencedDecls> { 13310 Sema &S; 13311 SourceLocation Loc; 13312 13313 public: 13314 typedef RecursiveASTVisitor<MarkReferencedDecls> Inherited; 13315 13316 MarkReferencedDecls(Sema &S, SourceLocation Loc) : S(S), Loc(Loc) { } 13317 13318 bool TraverseTemplateArgument(const TemplateArgument &Arg); 13319 bool TraverseRecordType(RecordType *T); 13320 }; 13321 } 13322 13323 bool MarkReferencedDecls::TraverseTemplateArgument( 13324 const TemplateArgument &Arg) { 13325 if (Arg.getKind() == TemplateArgument::Declaration) { 13326 if (Decl *D = Arg.getAsDecl()) 13327 S.MarkAnyDeclReferenced(Loc, D, true); 13328 } 13329 13330 return Inherited::TraverseTemplateArgument(Arg); 13331 } 13332 13333 bool MarkReferencedDecls::TraverseRecordType(RecordType *T) { 13334 if (ClassTemplateSpecializationDecl *Spec 13335 = dyn_cast<ClassTemplateSpecializationDecl>(T->getDecl())) { 13336 const TemplateArgumentList &Args = Spec->getTemplateArgs(); 13337 return TraverseTemplateArguments(Args.data(), Args.size()); 13338 } 13339 13340 return true; 13341 } 13342 13343 void Sema::MarkDeclarationsReferencedInType(SourceLocation Loc, QualType T) { 13344 MarkReferencedDecls Marker(*this, Loc); 13345 Marker.TraverseType(Context.getCanonicalType(T)); 13346 } 13347 13348 namespace { 13349 /// \brief Helper class that marks all of the declarations referenced by 13350 /// potentially-evaluated subexpressions as "referenced". 13351 class EvaluatedExprMarker : public EvaluatedExprVisitor<EvaluatedExprMarker> { 13352 Sema &S; 13353 bool SkipLocalVariables; 13354 13355 public: 13356 typedef EvaluatedExprVisitor<EvaluatedExprMarker> Inherited; 13357 13358 EvaluatedExprMarker(Sema &S, bool SkipLocalVariables) 13359 : Inherited(S.Context), S(S), SkipLocalVariables(SkipLocalVariables) { } 13360 13361 void VisitDeclRefExpr(DeclRefExpr *E) { 13362 // If we were asked not to visit local variables, don't. 13363 if (SkipLocalVariables) { 13364 if (VarDecl *VD = dyn_cast<VarDecl>(E->getDecl())) 13365 if (VD->hasLocalStorage()) 13366 return; 13367 } 13368 13369 S.MarkDeclRefReferenced(E); 13370 } 13371 13372 void VisitMemberExpr(MemberExpr *E) { 13373 S.MarkMemberReferenced(E); 13374 Inherited::VisitMemberExpr(E); 13375 } 13376 13377 void VisitCXXBindTemporaryExpr(CXXBindTemporaryExpr *E) { 13378 S.MarkFunctionReferenced(E->getLocStart(), 13379 const_cast<CXXDestructorDecl*>(E->getTemporary()->getDestructor())); 13380 Visit(E->getSubExpr()); 13381 } 13382 13383 void VisitCXXNewExpr(CXXNewExpr *E) { 13384 if (E->getOperatorNew()) 13385 S.MarkFunctionReferenced(E->getLocStart(), E->getOperatorNew()); 13386 if (E->getOperatorDelete()) 13387 S.MarkFunctionReferenced(E->getLocStart(), E->getOperatorDelete()); 13388 Inherited::VisitCXXNewExpr(E); 13389 } 13390 13391 void VisitCXXDeleteExpr(CXXDeleteExpr *E) { 13392 if (E->getOperatorDelete()) 13393 S.MarkFunctionReferenced(E->getLocStart(), E->getOperatorDelete()); 13394 QualType Destroyed = S.Context.getBaseElementType(E->getDestroyedType()); 13395 if (const RecordType *DestroyedRec = Destroyed->getAs<RecordType>()) { 13396 CXXRecordDecl *Record = cast<CXXRecordDecl>(DestroyedRec->getDecl()); 13397 S.MarkFunctionReferenced(E->getLocStart(), 13398 S.LookupDestructor(Record)); 13399 } 13400 13401 Inherited::VisitCXXDeleteExpr(E); 13402 } 13403 13404 void VisitCXXConstructExpr(CXXConstructExpr *E) { 13405 S.MarkFunctionReferenced(E->getLocStart(), E->getConstructor()); 13406 Inherited::VisitCXXConstructExpr(E); 13407 } 13408 13409 void VisitCXXDefaultArgExpr(CXXDefaultArgExpr *E) { 13410 Visit(E->getExpr()); 13411 } 13412 13413 void VisitImplicitCastExpr(ImplicitCastExpr *E) { 13414 Inherited::VisitImplicitCastExpr(E); 13415 13416 if (E->getCastKind() == CK_LValueToRValue) 13417 S.UpdateMarkingForLValueToRValue(E->getSubExpr()); 13418 } 13419 }; 13420 } 13421 13422 /// \brief Mark any declarations that appear within this expression or any 13423 /// potentially-evaluated subexpressions as "referenced". 13424 /// 13425 /// \param SkipLocalVariables If true, don't mark local variables as 13426 /// 'referenced'. 13427 void Sema::MarkDeclarationsReferencedInExpr(Expr *E, 13428 bool SkipLocalVariables) { 13429 EvaluatedExprMarker(*this, SkipLocalVariables).Visit(E); 13430 } 13431 13432 /// \brief Emit a diagnostic that describes an effect on the run-time behavior 13433 /// of the program being compiled. 13434 /// 13435 /// This routine emits the given diagnostic when the code currently being 13436 /// type-checked is "potentially evaluated", meaning that there is a 13437 /// possibility that the code will actually be executable. Code in sizeof() 13438 /// expressions, code used only during overload resolution, etc., are not 13439 /// potentially evaluated. This routine will suppress such diagnostics or, 13440 /// in the absolutely nutty case of potentially potentially evaluated 13441 /// expressions (C++ typeid), queue the diagnostic to potentially emit it 13442 /// later. 13443 /// 13444 /// This routine should be used for all diagnostics that describe the run-time 13445 /// behavior of a program, such as passing a non-POD value through an ellipsis. 13446 /// Failure to do so will likely result in spurious diagnostics or failures 13447 /// during overload resolution or within sizeof/alignof/typeof/typeid. 13448 bool Sema::DiagRuntimeBehavior(SourceLocation Loc, const Stmt *Statement, 13449 const PartialDiagnostic &PD) { 13450 switch (ExprEvalContexts.back().Context) { 13451 case Unevaluated: 13452 case UnevaluatedAbstract: 13453 // The argument will never be evaluated, so don't complain. 13454 break; 13455 13456 case ConstantEvaluated: 13457 // Relevant diagnostics should be produced by constant evaluation. 13458 break; 13459 13460 case PotentiallyEvaluated: 13461 case PotentiallyEvaluatedIfUsed: 13462 if (Statement && getCurFunctionOrMethodDecl()) { 13463 FunctionScopes.back()->PossiblyUnreachableDiags. 13464 push_back(sema::PossiblyUnreachableDiag(PD, Loc, Statement)); 13465 } 13466 else 13467 Diag(Loc, PD); 13468 13469 return true; 13470 } 13471 13472 return false; 13473 } 13474 13475 bool Sema::CheckCallReturnType(QualType ReturnType, SourceLocation Loc, 13476 CallExpr *CE, FunctionDecl *FD) { 13477 if (ReturnType->isVoidType() || !ReturnType->isIncompleteType()) 13478 return false; 13479 13480 // If we're inside a decltype's expression, don't check for a valid return 13481 // type or construct temporaries until we know whether this is the last call. 13482 if (ExprEvalContexts.back().IsDecltype) { 13483 ExprEvalContexts.back().DelayedDecltypeCalls.push_back(CE); 13484 return false; 13485 } 13486 13487 class CallReturnIncompleteDiagnoser : public TypeDiagnoser { 13488 FunctionDecl *FD; 13489 CallExpr *CE; 13490 13491 public: 13492 CallReturnIncompleteDiagnoser(FunctionDecl *FD, CallExpr *CE) 13493 : FD(FD), CE(CE) { } 13494 13495 void diagnose(Sema &S, SourceLocation Loc, QualType T) override { 13496 if (!FD) { 13497 S.Diag(Loc, diag::err_call_incomplete_return) 13498 << T << CE->getSourceRange(); 13499 return; 13500 } 13501 13502 S.Diag(Loc, diag::err_call_function_incomplete_return) 13503 << CE->getSourceRange() << FD->getDeclName() << T; 13504 S.Diag(FD->getLocation(), diag::note_entity_declared_at) 13505 << FD->getDeclName(); 13506 } 13507 } Diagnoser(FD, CE); 13508 13509 if (RequireCompleteType(Loc, ReturnType, Diagnoser)) 13510 return true; 13511 13512 return false; 13513 } 13514 13515 // Diagnose the s/=/==/ and s/\|=/!=/ typos. Note that adding parentheses 13516 // will prevent this condition from triggering, which is what we want. 13517 void Sema::DiagnoseAssignmentAsCondition(Expr *E) { 13518 SourceLocation Loc; 13519 13520 unsigned diagnostic = diag::warn_condition_is_assignment; 13521 bool IsOrAssign = false; 13522 13523 if (BinaryOperator *Op = dyn_cast<BinaryOperator>(E)) { 13524 if (Op->getOpcode() != BO_Assign && Op->getOpcode() != BO_OrAssign) 13525 return; 13526 13527 IsOrAssign = Op->getOpcode() == BO_OrAssign; 13528 13529 // Greylist some idioms by putting them into a warning subcategory. 13530 if (ObjCMessageExpr *ME 13531 = dyn_cast<ObjCMessageExpr>(Op->getRHS()->IgnoreParenCasts())) { 13532 Selector Sel = ME->getSelector(); 13533 13534 // self = [<foo> init...] 13535 if (isSelfExpr(Op->getLHS()) && ME->getMethodFamily() == OMF_init) 13536 diagnostic = diag::warn_condition_is_idiomatic_assignment; 13537 13538 // <foo> = [<bar> nextObject] 13539 else if (Sel.isUnarySelector() && Sel.getNameForSlot(0) == "nextObject") 13540 diagnostic = diag::warn_condition_is_idiomatic_assignment; 13541 } 13542 13543 Loc = Op->getOperatorLoc(); 13544 } else if (CXXOperatorCallExpr *Op = dyn_cast<CXXOperatorCallExpr>(E)) { 13545 if (Op->getOperator() != OO_Equal && Op->getOperator() != OO_PipeEqual) 13546 return; 13547 13548 IsOrAssign = Op->getOperator() == OO_PipeEqual; 13549 Loc = Op->getOperatorLoc(); 13550 } else if (PseudoObjectExpr *POE = dyn_cast<PseudoObjectExpr>(E)) 13551 return DiagnoseAssignmentAsCondition(POE->getSyntacticForm()); 13552 else { 13553 // Not an assignment. 13554 return; 13555 } 13556 13557 Diag(Loc, diagnostic) << E->getSourceRange(); 13558 13559 SourceLocation Open = E->getLocStart(); 13560 SourceLocation Close = PP.getLocForEndOfToken(E->getSourceRange().getEnd()); 13561 Diag(Loc, diag::note_condition_assign_silence) 13562 << FixItHint::CreateInsertion(Open, "(") 13563 << FixItHint::CreateInsertion(Close, ")"); 13564 13565 if (IsOrAssign) 13566 Diag(Loc, diag::note_condition_or_assign_to_comparison) 13567 << FixItHint::CreateReplacement(Loc, "!="); 13568 else 13569 Diag(Loc, diag::note_condition_assign_to_comparison) 13570 << FixItHint::CreateReplacement(Loc, "=="); 13571 } 13572 13573 /// \brief Redundant parentheses over an equality comparison can indicate 13574 /// that the user intended an assignment used as condition. 13575 void Sema::DiagnoseEqualityWithExtraParens(ParenExpr *ParenE) { 13576 // Don't warn if the parens came from a macro. 13577 SourceLocation parenLoc = ParenE->getLocStart(); 13578 if (parenLoc.isInvalid() || parenLoc.isMacroID()) 13579 return; 13580 // Don't warn for dependent expressions. 13581 if (ParenE->isTypeDependent()) 13582 return; 13583 13584 Expr *E = ParenE->IgnoreParens(); 13585 13586 if (BinaryOperator *opE = dyn_cast<BinaryOperator>(E)) 13587 if (opE->getOpcode() == BO_EQ && 13588 opE->getLHS()->IgnoreParenImpCasts()->isModifiableLvalue(Context) 13589 == Expr::MLV_Valid) { 13590 SourceLocation Loc = opE->getOperatorLoc(); 13591 13592 Diag(Loc, diag::warn_equality_with_extra_parens) << E->getSourceRange(); 13593 SourceRange ParenERange = ParenE->getSourceRange(); 13594 Diag(Loc, diag::note_equality_comparison_silence) 13595 << FixItHint::CreateRemoval(ParenERange.getBegin()) 13596 << FixItHint::CreateRemoval(ParenERange.getEnd()); 13597 Diag(Loc, diag::note_equality_comparison_to_assign) 13598 << FixItHint::CreateReplacement(Loc, "="); 13599 } 13600 } 13601 13602 ExprResult Sema::CheckBooleanCondition(Expr *E, SourceLocation Loc) { 13603 DiagnoseAssignmentAsCondition(E); 13604 if (ParenExpr *parenE = dyn_cast<ParenExpr>(E)) 13605 DiagnoseEqualityWithExtraParens(parenE); 13606 13607 ExprResult result = CheckPlaceholderExpr(E); 13608 if (result.isInvalid()) return ExprError(); 13609 E = result.get(); 13610 13611 if (!E->isTypeDependent()) { 13612 if (getLangOpts().CPlusPlus) 13613 return CheckCXXBooleanCondition(E); // C++ 6.4p4 13614 13615 ExprResult ERes = DefaultFunctionArrayLvalueConversion(E); 13616 if (ERes.isInvalid()) 13617 return ExprError(); 13618 E = ERes.get(); 13619 13620 QualType T = E->getType(); 13621 if (!T->isScalarType()) { // C99 6.8.4.1p1 13622 Diag(Loc, diag::err_typecheck_statement_requires_scalar) 13623 << T << E->getSourceRange(); 13624 return ExprError(); 13625 } 13626 CheckBoolLikeConversion(E, Loc); 13627 } 13628 13629 return E; 13630 } 13631 13632 ExprResult Sema::ActOnBooleanCondition(Scope *S, SourceLocation Loc, 13633 Expr *SubExpr) { 13634 if (!SubExpr) 13635 return ExprError(); 13636 13637 return CheckBooleanCondition(SubExpr, Loc); 13638 } 13639 13640 namespace { 13641 /// A visitor for rebuilding a call to an __unknown_any expression 13642 /// to have an appropriate type. 13643 struct RebuildUnknownAnyFunction 13644 : StmtVisitor<RebuildUnknownAnyFunction, ExprResult> { 13645 13646 Sema &S; 13647 13648 RebuildUnknownAnyFunction(Sema &S) : S(S) {} 13649 13650 ExprResult VisitStmt(Stmt *S) { 13651 llvm_unreachable("unexpected statement!"); 13652 } 13653 13654 ExprResult VisitExpr(Expr *E) { 13655 S.Diag(E->getExprLoc(), diag::err_unsupported_unknown_any_call) 13656 << E->getSourceRange(); 13657 return ExprError(); 13658 } 13659 13660 /// Rebuild an expression which simply semantically wraps another 13661 /// expression which it shares the type and value kind of. 13662 template <class T> ExprResult rebuildSugarExpr(T *E) { 13663 ExprResult SubResult = Visit(E->getSubExpr()); 13664 if (SubResult.isInvalid()) return ExprError(); 13665 13666 Expr *SubExpr = SubResult.get(); 13667 E->setSubExpr(SubExpr); 13668 E->setType(SubExpr->getType()); 13669 E->setValueKind(SubExpr->getValueKind()); 13670 assert(E->getObjectKind() == OK_Ordinary); 13671 return E; 13672 } 13673 13674 ExprResult VisitParenExpr(ParenExpr *E) { 13675 return rebuildSugarExpr(E); 13676 } 13677 13678 ExprResult VisitUnaryExtension(UnaryOperator *E) { 13679 return rebuildSugarExpr(E); 13680 } 13681 13682 ExprResult VisitUnaryAddrOf(UnaryOperator *E) { 13683 ExprResult SubResult = Visit(E->getSubExpr()); 13684 if (SubResult.isInvalid()) return ExprError(); 13685 13686 Expr *SubExpr = SubResult.get(); 13687 E->setSubExpr(SubExpr); 13688 E->setType(S.Context.getPointerType(SubExpr->getType())); 13689 assert(E->getValueKind() == VK_RValue); 13690 assert(E->getObjectKind() == OK_Ordinary); 13691 return E; 13692 } 13693 13694 ExprResult resolveDecl(Expr *E, ValueDecl *VD) { 13695 if (!isa<FunctionDecl>(VD)) return VisitExpr(E); 13696 13697 E->setType(VD->getType()); 13698 13699 assert(E->getValueKind() == VK_RValue); 13700 if (S.getLangOpts().CPlusPlus && 13701 !(isa<CXXMethodDecl>(VD) && 13702 cast<CXXMethodDecl>(VD)->isInstance())) 13703 E->setValueKind(VK_LValue); 13704 13705 return E; 13706 } 13707 13708 ExprResult VisitMemberExpr(MemberExpr *E) { 13709 return resolveDecl(E, E->getMemberDecl()); 13710 } 13711 13712 ExprResult VisitDeclRefExpr(DeclRefExpr *E) { 13713 return resolveDecl(E, E->getDecl()); 13714 } 13715 }; 13716 } 13717 13718 /// Given a function expression of unknown-any type, try to rebuild it 13719 /// to have a function type. 13720 static ExprResult rebuildUnknownAnyFunction(Sema &S, Expr *FunctionExpr) { 13721 ExprResult Result = RebuildUnknownAnyFunction(S).Visit(FunctionExpr); 13722 if (Result.isInvalid()) return ExprError(); 13723 return S.DefaultFunctionArrayConversion(Result.get()); 13724 } 13725 13726 namespace { 13727 /// A visitor for rebuilding an expression of type __unknown_anytype 13728 /// into one which resolves the type directly on the referring 13729 /// expression. Strict preservation of the original source 13730 /// structure is not a goal. 13731 struct RebuildUnknownAnyExpr 13732 : StmtVisitor<RebuildUnknownAnyExpr, ExprResult> { 13733 13734 Sema &S; 13735 13736 /// The current destination type. 13737 QualType DestType; 13738 13739 RebuildUnknownAnyExpr(Sema &S, QualType CastType) 13740 : S(S), DestType(CastType) {} 13741 13742 ExprResult VisitStmt(Stmt *S) { 13743 llvm_unreachable("unexpected statement!"); 13744 } 13745 13746 ExprResult VisitExpr(Expr *E) { 13747 S.Diag(E->getExprLoc(), diag::err_unsupported_unknown_any_expr) 13748 << E->getSourceRange(); 13749 return ExprError(); 13750 } 13751 13752 ExprResult VisitCallExpr(CallExpr *E); 13753 ExprResult VisitObjCMessageExpr(ObjCMessageExpr *E); 13754 13755 /// Rebuild an expression which simply semantically wraps another 13756 /// expression which it shares the type and value kind of. 13757 template <class T> ExprResult rebuildSugarExpr(T *E) { 13758 ExprResult SubResult = Visit(E->getSubExpr()); 13759 if (SubResult.isInvalid()) return ExprError(); 13760 Expr *SubExpr = SubResult.get(); 13761 E->setSubExpr(SubExpr); 13762 E->setType(SubExpr->getType()); 13763 E->setValueKind(SubExpr->getValueKind()); 13764 assert(E->getObjectKind() == OK_Ordinary); 13765 return E; 13766 } 13767 13768 ExprResult VisitParenExpr(ParenExpr *E) { 13769 return rebuildSugarExpr(E); 13770 } 13771 13772 ExprResult VisitUnaryExtension(UnaryOperator *E) { 13773 return rebuildSugarExpr(E); 13774 } 13775 13776 ExprResult VisitUnaryAddrOf(UnaryOperator *E) { 13777 const PointerType *Ptr = DestType->getAs<PointerType>(); 13778 if (!Ptr) { 13779 S.Diag(E->getOperatorLoc(), diag::err_unknown_any_addrof) 13780 << E->getSourceRange(); 13781 return ExprError(); 13782 } 13783 assert(E->getValueKind() == VK_RValue); 13784 assert(E->getObjectKind() == OK_Ordinary); 13785 E->setType(DestType); 13786 13787 // Build the sub-expression as if it were an object of the pointee type. 13788 DestType = Ptr->getPointeeType(); 13789 ExprResult SubResult = Visit(E->getSubExpr()); 13790 if (SubResult.isInvalid()) return ExprError(); 13791 E->setSubExpr(SubResult.get()); 13792 return E; 13793 } 13794 13795 ExprResult VisitImplicitCastExpr(ImplicitCastExpr *E); 13796 13797 ExprResult resolveDecl(Expr *E, ValueDecl *VD); 13798 13799 ExprResult VisitMemberExpr(MemberExpr *E) { 13800 return resolveDecl(E, E->getMemberDecl()); 13801 } 13802 13803 ExprResult VisitDeclRefExpr(DeclRefExpr *E) { 13804 return resolveDecl(E, E->getDecl()); 13805 } 13806 }; 13807 } 13808 13809 /// Rebuilds a call expression which yielded __unknown_anytype. 13810 ExprResult RebuildUnknownAnyExpr::VisitCallExpr(CallExpr *E) { 13811 Expr *CalleeExpr = E->getCallee(); 13812 13813 enum FnKind { 13814 FK_MemberFunction, 13815 FK_FunctionPointer, 13816 FK_BlockPointer 13817 }; 13818 13819 FnKind Kind; 13820 QualType CalleeType = CalleeExpr->getType(); 13821 if (CalleeType == S.Context.BoundMemberTy) { 13822 assert(isa<CXXMemberCallExpr>(E) || isa<CXXOperatorCallExpr>(E)); 13823 Kind = FK_MemberFunction; 13824 CalleeType = Expr::findBoundMemberType(CalleeExpr); 13825 } else if (const PointerType *Ptr = CalleeType->getAs<PointerType>()) { 13826 CalleeType = Ptr->getPointeeType(); 13827 Kind = FK_FunctionPointer; 13828 } else { 13829 CalleeType = CalleeType->castAs<BlockPointerType>()->getPointeeType(); 13830 Kind = FK_BlockPointer; 13831 } 13832 const FunctionType *FnType = CalleeType->castAs<FunctionType>(); 13833 13834 // Verify that this is a legal result type of a function. 13835 if (DestType->isArrayType() || DestType->isFunctionType()) { 13836 unsigned diagID = diag::err_func_returning_array_function; 13837 if (Kind == FK_BlockPointer) 13838 diagID = diag::err_block_returning_array_function; 13839 13840 S.Diag(E->getExprLoc(), diagID) 13841 << DestType->isFunctionType() << DestType; 13842 return ExprError(); 13843 } 13844 13845 // Otherwise, go ahead and set DestType as the call's result. 13846 E->setType(DestType.getNonLValueExprType(S.Context)); 13847 E->setValueKind(Expr::getValueKindForType(DestType)); 13848 assert(E->getObjectKind() == OK_Ordinary); 13849 13850 // Rebuild the function type, replacing the result type with DestType. 13851 const FunctionProtoType *Proto = dyn_cast<FunctionProtoType>(FnType); 13852 if (Proto) { 13853 // __unknown_anytype(...) is a special case used by the debugger when 13854 // it has no idea what a function's signature is. 13855 // 13856 // We want to build this call essentially under the K&R 13857 // unprototyped rules, but making a FunctionNoProtoType in C++ 13858 // would foul up all sorts of assumptions. However, we cannot 13859 // simply pass all arguments as variadic arguments, nor can we 13860 // portably just call the function under a non-variadic type; see 13861 // the comment on IR-gen's TargetInfo::isNoProtoCallVariadic. 13862 // However, it turns out that in practice it is generally safe to 13863 // call a function declared as "A foo(B,C,D);" under the prototype 13864 // "A foo(B,C,D,...);". The only known exception is with the 13865 // Windows ABI, where any variadic function is implicitly cdecl 13866 // regardless of its normal CC. Therefore we change the parameter 13867 // types to match the types of the arguments. 13868 // 13869 // This is a hack, but it is far superior to moving the 13870 // corresponding target-specific code from IR-gen to Sema/AST. 13871 13872 ArrayRef<QualType> ParamTypes = Proto->getParamTypes(); 13873 SmallVector<QualType, 8> ArgTypes; 13874 if (ParamTypes.empty() && Proto->isVariadic()) { // the special case 13875 ArgTypes.reserve(E->getNumArgs()); 13876 for (unsigned i = 0, e = E->getNumArgs(); i != e; ++i) { 13877 Expr *Arg = E->getArg(i); 13878 QualType ArgType = Arg->getType(); 13879 if (E->isLValue()) { 13880 ArgType = S.Context.getLValueReferenceType(ArgType); 13881 } else if (E->isXValue()) { 13882 ArgType = S.Context.getRValueReferenceType(ArgType); 13883 } 13884 ArgTypes.push_back(ArgType); 13885 } 13886 ParamTypes = ArgTypes; 13887 } 13888 DestType = S.Context.getFunctionType(DestType, ParamTypes, 13889 Proto->getExtProtoInfo()); 13890 } else { 13891 DestType = S.Context.getFunctionNoProtoType(DestType, 13892 FnType->getExtInfo()); 13893 } 13894 13895 // Rebuild the appropriate pointer-to-function type. 13896 switch (Kind) { 13897 case FK_MemberFunction: 13898 // Nothing to do. 13899 break; 13900 13901 case FK_FunctionPointer: 13902 DestType = S.Context.getPointerType(DestType); 13903 break; 13904 13905 case FK_BlockPointer: 13906 DestType = S.Context.getBlockPointerType(DestType); 13907 break; 13908 } 13909 13910 // Finally, we can recurse. 13911 ExprResult CalleeResult = Visit(CalleeExpr); 13912 if (!CalleeResult.isUsable()) return ExprError(); 13913 E->setCallee(CalleeResult.get()); 13914 13915 // Bind a temporary if necessary. 13916 return S.MaybeBindToTemporary(E); 13917 } 13918 13919 ExprResult RebuildUnknownAnyExpr::VisitObjCMessageExpr(ObjCMessageExpr *E) { 13920 // Verify that this is a legal result type of a call. 13921 if (DestType->isArrayType() || DestType->isFunctionType()) { 13922 S.Diag(E->getExprLoc(), diag::err_func_returning_array_function) 13923 << DestType->isFunctionType() << DestType; 13924 return ExprError(); 13925 } 13926 13927 // Rewrite the method result type if available. 13928 if (ObjCMethodDecl *Method = E->getMethodDecl()) { 13929 assert(Method->getReturnType() == S.Context.UnknownAnyTy); 13930 Method->setReturnType(DestType); 13931 } 13932 13933 // Change the type of the message. 13934 E->setType(DestType.getNonReferenceType()); 13935 E->setValueKind(Expr::getValueKindForType(DestType)); 13936 13937 return S.MaybeBindToTemporary(E); 13938 } 13939 13940 ExprResult RebuildUnknownAnyExpr::VisitImplicitCastExpr(ImplicitCastExpr *E) { 13941 // The only case we should ever see here is a function-to-pointer decay. 13942 if (E->getCastKind() == CK_FunctionToPointerDecay) { 13943 assert(E->getValueKind() == VK_RValue); 13944 assert(E->getObjectKind() == OK_Ordinary); 13945 13946 E->setType(DestType); 13947 13948 // Rebuild the sub-expression as the pointee (function) type. 13949 DestType = DestType->castAs<PointerType>()->getPointeeType(); 13950 13951 ExprResult Result = Visit(E->getSubExpr()); 13952 if (!Result.isUsable()) return ExprError(); 13953 13954 E->setSubExpr(Result.get()); 13955 return E; 13956 } else if (E->getCastKind() == CK_LValueToRValue) { 13957 assert(E->getValueKind() == VK_RValue); 13958 assert(E->getObjectKind() == OK_Ordinary); 13959 13960 assert(isa<BlockPointerType>(E->getType())); 13961 13962 E->setType(DestType); 13963 13964 // The sub-expression has to be a lvalue reference, so rebuild it as such. 13965 DestType = S.Context.getLValueReferenceType(DestType); 13966 13967 ExprResult Result = Visit(E->getSubExpr()); 13968 if (!Result.isUsable()) return ExprError(); 13969 13970 E->setSubExpr(Result.get()); 13971 return E; 13972 } else { 13973 llvm_unreachable("Unhandled cast type!"); 13974 } 13975 } 13976 13977 ExprResult RebuildUnknownAnyExpr::resolveDecl(Expr *E, ValueDecl *VD) { 13978 ExprValueKind ValueKind = VK_LValue; 13979 QualType Type = DestType; 13980 13981 // We know how to make this work for certain kinds of decls: 13982 13983 // - functions 13984 if (FunctionDecl *FD = dyn_cast<FunctionDecl>(VD)) { 13985 if (const PointerType *Ptr = Type->getAs<PointerType>()) { 13986 DestType = Ptr->getPointeeType(); 13987 ExprResult Result = resolveDecl(E, VD); 13988 if (Result.isInvalid()) return ExprError(); 13989 return S.ImpCastExprToType(Result.get(), Type, 13990 CK_FunctionToPointerDecay, VK_RValue); 13991 } 13992 13993 if (!Type->isFunctionType()) { 13994 S.Diag(E->getExprLoc(), diag::err_unknown_any_function) 13995 << VD << E->getSourceRange(); 13996 return ExprError(); 13997 } 13998 if (const FunctionProtoType *FT = Type->getAs<FunctionProtoType>()) { 13999 // We must match the FunctionDecl's type to the hack introduced in 14000 // RebuildUnknownAnyExpr::VisitCallExpr to vararg functions of unknown 14001 // type. See the lengthy commentary in that routine. 14002 QualType FDT = FD->getType(); 14003 const FunctionType *FnType = FDT->castAs<FunctionType>(); 14004 const FunctionProtoType *Proto = dyn_cast_or_null<FunctionProtoType>(FnType); 14005 DeclRefExpr *DRE = dyn_cast<DeclRefExpr>(E); 14006 if (DRE && Proto && Proto->getParamTypes().empty() && Proto->isVariadic()) { 14007 SourceLocation Loc = FD->getLocation(); 14008 FunctionDecl *NewFD = FunctionDecl::Create(FD->getASTContext(), 14009 FD->getDeclContext(), 14010 Loc, Loc, FD->getNameInfo().getName(), 14011 DestType, FD->getTypeSourceInfo(), 14012 SC_None, false/*isInlineSpecified*/, 14013 FD->hasPrototype(), 14014 false/*isConstexprSpecified*/); 14015 14016 if (FD->getQualifier()) 14017 NewFD->setQualifierInfo(FD->getQualifierLoc()); 14018 14019 SmallVector<ParmVarDecl*, 16> Params; 14020 for (const auto &AI : FT->param_types()) { 14021 ParmVarDecl *Param = 14022 S.BuildParmVarDeclForTypedef(FD, Loc, AI); 14023 Param->setScopeInfo(0, Params.size()); 14024 Params.push_back(Param); 14025 } 14026 NewFD->setParams(Params); 14027 DRE->setDecl(NewFD); 14028 VD = DRE->getDecl(); 14029 } 14030 } 14031 14032 if (CXXMethodDecl *MD = dyn_cast<CXXMethodDecl>(FD)) 14033 if (MD->isInstance()) { 14034 ValueKind = VK_RValue; 14035 Type = S.Context.BoundMemberTy; 14036 } 14037 14038 // Function references aren't l-values in C. 14039 if (!S.getLangOpts().CPlusPlus) 14040 ValueKind = VK_RValue; 14041 14042 // - variables 14043 } else if (isa<VarDecl>(VD)) { 14044 if (const ReferenceType *RefTy = Type->getAs<ReferenceType>()) { 14045 Type = RefTy->getPointeeType(); 14046 } else if (Type->isFunctionType()) { 14047 S.Diag(E->getExprLoc(), diag::err_unknown_any_var_function_type) 14048 << VD << E->getSourceRange(); 14049 return ExprError(); 14050 } 14051 14052 // - nothing else 14053 } else { 14054 S.Diag(E->getExprLoc(), diag::err_unsupported_unknown_any_decl) 14055 << VD << E->getSourceRange(); 14056 return ExprError(); 14057 } 14058 14059 // Modifying the declaration like this is friendly to IR-gen but 14060 // also really dangerous. 14061 VD->setType(DestType); 14062 E->setType(Type); 14063 E->setValueKind(ValueKind); 14064 return E; 14065 } 14066 14067 /// Check a cast of an unknown-any type. We intentionally only 14068 /// trigger this for C-style casts. 14069 ExprResult Sema::checkUnknownAnyCast(SourceRange TypeRange, QualType CastType, 14070 Expr *CastExpr, CastKind &CastKind, 14071 ExprValueKind &VK, CXXCastPath &Path) { 14072 // Rewrite the casted expression from scratch. 14073 ExprResult result = RebuildUnknownAnyExpr(*this, CastType).Visit(CastExpr); 14074 if (!result.isUsable()) return ExprError(); 14075 14076 CastExpr = result.get(); 14077 VK = CastExpr->getValueKind(); 14078 CastKind = CK_NoOp; 14079 14080 return CastExpr; 14081 } 14082 14083 ExprResult Sema::forceUnknownAnyToType(Expr *E, QualType ToType) { 14084 return RebuildUnknownAnyExpr(*this, ToType).Visit(E); 14085 } 14086 14087 ExprResult Sema::checkUnknownAnyArg(SourceLocation callLoc, 14088 Expr *arg, QualType ¶mType) { 14089 // If the syntactic form of the argument is not an explicit cast of 14090 // any sort, just do default argument promotion. 14091 ExplicitCastExpr *castArg = dyn_cast<ExplicitCastExpr>(arg->IgnoreParens()); 14092 if (!castArg) { 14093 ExprResult result = DefaultArgumentPromotion(arg); 14094 if (result.isInvalid()) return ExprError(); 14095 paramType = result.get()->getType(); 14096 return result; 14097 } 14098 14099 // Otherwise, use the type that was written in the explicit cast. 14100 assert(!arg->hasPlaceholderType()); 14101 paramType = castArg->getTypeAsWritten(); 14102 14103 // Copy-initialize a parameter of that type. 14104 InitializedEntity entity = 14105 InitializedEntity::InitializeParameter(Context, paramType, 14106 /*consumed*/ false); 14107 return PerformCopyInitialization(entity, callLoc, arg); 14108 } 14109 14110 static ExprResult diagnoseUnknownAnyExpr(Sema &S, Expr *E) { 14111 Expr *orig = E; 14112 unsigned diagID = diag::err_uncasted_use_of_unknown_any; 14113 while (true) { 14114 E = E->IgnoreParenImpCasts(); 14115 if (CallExpr *call = dyn_cast<CallExpr>(E)) { 14116 E = call->getCallee(); 14117 diagID = diag::err_uncasted_call_of_unknown_any; 14118 } else { 14119 break; 14120 } 14121 } 14122 14123 SourceLocation loc; 14124 NamedDecl *d; 14125 if (DeclRefExpr *ref = dyn_cast<DeclRefExpr>(E)) { 14126 loc = ref->getLocation(); 14127 d = ref->getDecl(); 14128 } else if (MemberExpr *mem = dyn_cast<MemberExpr>(E)) { 14129 loc = mem->getMemberLoc(); 14130 d = mem->getMemberDecl(); 14131 } else if (ObjCMessageExpr *msg = dyn_cast<ObjCMessageExpr>(E)) { 14132 diagID = diag::err_uncasted_call_of_unknown_any; 14133 loc = msg->getSelectorStartLoc(); 14134 d = msg->getMethodDecl(); 14135 if (!d) { 14136 S.Diag(loc, diag::err_uncasted_send_to_unknown_any_method) 14137 << static_cast<unsigned>(msg->isClassMessage()) << msg->getSelector() 14138 << orig->getSourceRange(); 14139 return ExprError(); 14140 } 14141 } else { 14142 S.Diag(E->getExprLoc(), diag::err_unsupported_unknown_any_expr) 14143 << E->getSourceRange(); 14144 return ExprError(); 14145 } 14146 14147 S.Diag(loc, diagID) << d << orig->getSourceRange(); 14148 14149 // Never recoverable. 14150 return ExprError(); 14151 } 14152 14153 /// Check for operands with placeholder types and complain if found. 14154 /// Returns true if there was an error and no recovery was possible. 14155 ExprResult Sema::CheckPlaceholderExpr(Expr *E) { 14156 if (!getLangOpts().CPlusPlus) { 14157 // C cannot handle TypoExpr nodes on either side of a binop because it 14158 // doesn't handle dependent types properly, so make sure any TypoExprs have 14159 // been dealt with before checking the operands. 14160 ExprResult Result = CorrectDelayedTyposInExpr(E); 14161 if (!Result.isUsable()) return ExprError(); 14162 E = Result.get(); 14163 } 14164 14165 const BuiltinType *placeholderType = E->getType()->getAsPlaceholderType(); 14166 if (!placeholderType) return E; 14167 14168 switch (placeholderType->getKind()) { 14169 14170 // Overloaded expressions. 14171 case BuiltinType::Overload: { 14172 // Try to resolve a single function template specialization. 14173 // This is obligatory. 14174 ExprResult result = E; 14175 if (ResolveAndFixSingleFunctionTemplateSpecialization(result, false)) { 14176 return result; 14177 14178 // If that failed, try to recover with a call. 14179 } else { 14180 tryToRecoverWithCall(result, PDiag(diag::err_ovl_unresolvable), 14181 /*complain*/ true); 14182 return result; 14183 } 14184 } 14185 14186 // Bound member functions. 14187 case BuiltinType::BoundMember: { 14188 ExprResult result = E; 14189 const Expr *BME = E->IgnoreParens(); 14190 PartialDiagnostic PD = PDiag(diag::err_bound_member_function); 14191 // Try to give a nicer diagnostic if it is a bound member that we recognize. 14192 if (isa<CXXPseudoDestructorExpr>(BME)) { 14193 PD = PDiag(diag::err_dtor_expr_without_call) << /*pseudo-destructor*/ 1; 14194 } else if (const auto *ME = dyn_cast<MemberExpr>(BME)) { 14195 if (ME->getMemberNameInfo().getName().getNameKind() == 14196 DeclarationName::CXXDestructorName) 14197 PD = PDiag(diag::err_dtor_expr_without_call) << /*destructor*/ 0; 14198 } 14199 tryToRecoverWithCall(result, PD, 14200 /*complain*/ true); 14201 return result; 14202 } 14203 14204 // ARC unbridged casts. 14205 case BuiltinType::ARCUnbridgedCast: { 14206 Expr *realCast = stripARCUnbridgedCast(E); 14207 diagnoseARCUnbridgedCast(realCast); 14208 return realCast; 14209 } 14210 14211 // Expressions of unknown type. 14212 case BuiltinType::UnknownAny: 14213 return diagnoseUnknownAnyExpr(*this, E); 14214 14215 // Pseudo-objects. 14216 case BuiltinType::PseudoObject: 14217 return checkPseudoObjectRValue(E); 14218 14219 case BuiltinType::BuiltinFn: { 14220 // Accept __noop without parens by implicitly converting it to a call expr. 14221 auto *DRE = dyn_cast<DeclRefExpr>(E->IgnoreParenImpCasts()); 14222 if (DRE) { 14223 auto *FD = cast<FunctionDecl>(DRE->getDecl()); 14224 if (FD->getBuiltinID() == Builtin::BI__noop) { 14225 E = ImpCastExprToType(E, Context.getPointerType(FD->getType()), 14226 CK_BuiltinFnToFnPtr).get(); 14227 return new (Context) CallExpr(Context, E, None, Context.IntTy, 14228 VK_RValue, SourceLocation()); 14229 } 14230 } 14231 14232 Diag(E->getLocStart(), diag::err_builtin_fn_use); 14233 return ExprError(); 14234 } 14235 14236 // Everything else should be impossible. 14237 #define BUILTIN_TYPE(Id, SingletonId) \ 14238 case BuiltinType::Id: 14239 #define PLACEHOLDER_TYPE(Id, SingletonId) 14240 #include "clang/AST/BuiltinTypes.def" 14241 break; 14242 } 14243 14244 llvm_unreachable("invalid placeholder type!"); 14245 } 14246 14247 bool Sema::CheckCaseExpression(Expr *E) { 14248 if (E->isTypeDependent()) 14249 return true; 14250 if (E->isValueDependent() || E->isIntegerConstantExpr(Context)) 14251 return E->getType()->isIntegralOrEnumerationType(); 14252 return false; 14253 } 14254 14255 /// ActOnObjCBoolLiteral - Parse {__objc_yes,__objc_no} literals. 14256 ExprResult 14257 Sema::ActOnObjCBoolLiteral(SourceLocation OpLoc, tok::TokenKind Kind) { 14258 assert((Kind == tok::kw___objc_yes || Kind == tok::kw___objc_no) && 14259 "Unknown Objective-C Boolean value!"); 14260 QualType BoolT = Context.ObjCBuiltinBoolTy; 14261 if (!Context.getBOOLDecl()) { 14262 LookupResult Result(*this, &Context.Idents.get("BOOL"), OpLoc, 14263 Sema::LookupOrdinaryName); 14264 if (LookupName(Result, getCurScope()) && Result.isSingleResult()) { 14265 NamedDecl *ND = Result.getFoundDecl(); 14266 if (TypedefDecl *TD = dyn_cast<TypedefDecl>(ND)) 14267 Context.setBOOLDecl(TD); 14268 } 14269 } 14270 if (Context.getBOOLDecl()) 14271 BoolT = Context.getBOOLType(); 14272 return new (Context) 14273 ObjCBoolLiteralExpr(Kind == tok::kw___objc_yes, BoolT, OpLoc); 14274 } 14275