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 using namespace clang; 46 using namespace sema; 47 48 /// \brief Determine whether the use of this declaration is valid, without 49 /// emitting diagnostics. 50 bool Sema::CanUseDecl(NamedDecl *D) { 51 // See if this is an auto-typed variable whose initializer we are parsing. 52 if (ParsingInitForAutoVars.count(D)) 53 return false; 54 55 // See if this is a deleted function. 56 if (FunctionDecl *FD = dyn_cast<FunctionDecl>(D)) { 57 if (FD->isDeleted()) 58 return false; 59 60 // If the function has a deduced return type, and we can't deduce it, 61 // then we can't use it either. 62 if (getLangOpts().CPlusPlus1y && FD->getReturnType()->isUndeducedType() && 63 DeduceReturnType(FD, SourceLocation(), /*Diagnose*/ false)) 64 return false; 65 } 66 67 // See if this function is unavailable. 68 if (D->getAvailability() == AR_Unavailable && 69 cast<Decl>(CurContext)->getAvailability() != AR_Unavailable) 70 return false; 71 72 return true; 73 } 74 75 static void DiagnoseUnusedOfDecl(Sema &S, NamedDecl *D, SourceLocation Loc) { 76 // Warn if this is used but marked unused. 77 if (D->hasAttr<UnusedAttr>()) { 78 const Decl *DC = cast<Decl>(S.getCurObjCLexicalContext()); 79 if (!DC->hasAttr<UnusedAttr>()) 80 S.Diag(Loc, diag::warn_used_but_marked_unused) << D->getDeclName(); 81 } 82 } 83 84 static AvailabilityResult DiagnoseAvailabilityOfDecl(Sema &S, 85 NamedDecl *D, SourceLocation Loc, 86 const ObjCInterfaceDecl *UnknownObjCClass, 87 bool ObjCPropertyAccess) { 88 // See if this declaration is unavailable or deprecated. 89 std::string Message; 90 91 // Forward class declarations get their attributes from their definition. 92 if (ObjCInterfaceDecl *IDecl = dyn_cast<ObjCInterfaceDecl>(D)) { 93 if (IDecl->getDefinition()) 94 D = IDecl->getDefinition(); 95 } 96 AvailabilityResult Result = D->getAvailability(&Message); 97 if (const EnumConstantDecl *ECD = dyn_cast<EnumConstantDecl>(D)) 98 if (Result == AR_Available) { 99 const DeclContext *DC = ECD->getDeclContext(); 100 if (const EnumDecl *TheEnumDecl = dyn_cast<EnumDecl>(DC)) 101 Result = TheEnumDecl->getAvailability(&Message); 102 } 103 104 const ObjCPropertyDecl *ObjCPDecl = nullptr; 105 if (Result == AR_Deprecated || Result == AR_Unavailable) { 106 if (const ObjCMethodDecl *MD = dyn_cast<ObjCMethodDecl>(D)) { 107 if (const ObjCPropertyDecl *PD = MD->findPropertyDecl()) { 108 AvailabilityResult PDeclResult = PD->getAvailability(nullptr); 109 if (PDeclResult == Result) 110 ObjCPDecl = PD; 111 } 112 } 113 } 114 115 switch (Result) { 116 case AR_Available: 117 case AR_NotYetIntroduced: 118 break; 119 120 case AR_Deprecated: 121 if (S.getCurContextAvailability() != AR_Deprecated) 122 S.EmitAvailabilityWarning(Sema::AD_Deprecation, 123 D, Message, Loc, UnknownObjCClass, ObjCPDecl, 124 ObjCPropertyAccess); 125 break; 126 127 case AR_Unavailable: 128 if (S.getCurContextAvailability() != AR_Unavailable) 129 S.EmitAvailabilityWarning(Sema::AD_Unavailable, 130 D, Message, Loc, UnknownObjCClass, ObjCPDecl, 131 ObjCPropertyAccess); 132 break; 133 134 } 135 return Result; 136 } 137 138 /// \brief Emit a note explaining that this function is deleted. 139 void Sema::NoteDeletedFunction(FunctionDecl *Decl) { 140 assert(Decl->isDeleted()); 141 142 CXXMethodDecl *Method = dyn_cast<CXXMethodDecl>(Decl); 143 144 if (Method && Method->isDeleted() && Method->isDefaulted()) { 145 // If the method was explicitly defaulted, point at that declaration. 146 if (!Method->isImplicit()) 147 Diag(Decl->getLocation(), diag::note_implicitly_deleted); 148 149 // Try to diagnose why this special member function was implicitly 150 // deleted. This might fail, if that reason no longer applies. 151 CXXSpecialMember CSM = getSpecialMember(Method); 152 if (CSM != CXXInvalid) 153 ShouldDeleteSpecialMember(Method, CSM, /*Diagnose=*/true); 154 155 return; 156 } 157 158 if (CXXConstructorDecl *CD = dyn_cast<CXXConstructorDecl>(Decl)) { 159 if (CXXConstructorDecl *BaseCD = 160 const_cast<CXXConstructorDecl*>(CD->getInheritedConstructor())) { 161 Diag(Decl->getLocation(), diag::note_inherited_deleted_here); 162 if (BaseCD->isDeleted()) { 163 NoteDeletedFunction(BaseCD); 164 } else { 165 // FIXME: An explanation of why exactly it can't be inherited 166 // would be nice. 167 Diag(BaseCD->getLocation(), diag::note_cannot_inherit); 168 } 169 return; 170 } 171 } 172 173 Diag(Decl->getLocation(), diag::note_availability_specified_here) 174 << Decl << true; 175 } 176 177 /// \brief Determine whether a FunctionDecl was ever declared with an 178 /// explicit storage class. 179 static bool hasAnyExplicitStorageClass(const FunctionDecl *D) { 180 for (auto I : D->redecls()) { 181 if (I->getStorageClass() != SC_None) 182 return true; 183 } 184 return false; 185 } 186 187 /// \brief Check whether we're in an extern inline function and referring to a 188 /// variable or function with internal linkage (C11 6.7.4p3). 189 /// 190 /// This is only a warning because we used to silently accept this code, but 191 /// in many cases it will not behave correctly. This is not enabled in C++ mode 192 /// because the restriction language is a bit weaker (C++11 [basic.def.odr]p6) 193 /// and so while there may still be user mistakes, most of the time we can't 194 /// prove that there are errors. 195 static void diagnoseUseOfInternalDeclInInlineFunction(Sema &S, 196 const NamedDecl *D, 197 SourceLocation Loc) { 198 // This is disabled under C++; there are too many ways for this to fire in 199 // contexts where the warning is a false positive, or where it is technically 200 // correct but benign. 201 if (S.getLangOpts().CPlusPlus) 202 return; 203 204 // Check if this is an inlined function or method. 205 FunctionDecl *Current = S.getCurFunctionDecl(); 206 if (!Current) 207 return; 208 if (!Current->isInlined()) 209 return; 210 if (!Current->isExternallyVisible()) 211 return; 212 213 // Check if the decl has internal linkage. 214 if (D->getFormalLinkage() != InternalLinkage) 215 return; 216 217 // Downgrade from ExtWarn to Extension if 218 // (1) the supposedly external inline function is in the main file, 219 // and probably won't be included anywhere else. 220 // (2) the thing we're referencing is a pure function. 221 // (3) the thing we're referencing is another inline function. 222 // This last can give us false negatives, but it's better than warning on 223 // wrappers for simple C library functions. 224 const FunctionDecl *UsedFn = dyn_cast<FunctionDecl>(D); 225 bool DowngradeWarning = S.getSourceManager().isInMainFile(Loc); 226 if (!DowngradeWarning && UsedFn) 227 DowngradeWarning = UsedFn->isInlined() || UsedFn->hasAttr<ConstAttr>(); 228 229 S.Diag(Loc, DowngradeWarning ? diag::ext_internal_in_extern_inline_quiet 230 : diag::ext_internal_in_extern_inline) 231 << /*IsVar=*/!UsedFn << D; 232 233 S.MaybeSuggestAddingStaticToDecl(Current); 234 235 S.Diag(D->getCanonicalDecl()->getLocation(), diag::note_entity_declared_at) 236 << D; 237 } 238 239 void Sema::MaybeSuggestAddingStaticToDecl(const FunctionDecl *Cur) { 240 const FunctionDecl *First = Cur->getFirstDecl(); 241 242 // Suggest "static" on the function, if possible. 243 if (!hasAnyExplicitStorageClass(First)) { 244 SourceLocation DeclBegin = First->getSourceRange().getBegin(); 245 Diag(DeclBegin, diag::note_convert_inline_to_static) 246 << Cur << FixItHint::CreateInsertion(DeclBegin, "static "); 247 } 248 } 249 250 /// \brief Determine whether the use of this declaration is valid, and 251 /// emit any corresponding diagnostics. 252 /// 253 /// This routine diagnoses various problems with referencing 254 /// declarations that can occur when using a declaration. For example, 255 /// it might warn if a deprecated or unavailable declaration is being 256 /// used, or produce an error (and return true) if a C++0x deleted 257 /// function is being used. 258 /// 259 /// \returns true if there was an error (this declaration cannot be 260 /// referenced), false otherwise. 261 /// 262 bool Sema::DiagnoseUseOfDecl(NamedDecl *D, SourceLocation Loc, 263 const ObjCInterfaceDecl *UnknownObjCClass, 264 bool ObjCPropertyAccess) { 265 if (getLangOpts().CPlusPlus && isa<FunctionDecl>(D)) { 266 // If there were any diagnostics suppressed by template argument deduction, 267 // emit them now. 268 SuppressedDiagnosticsMap::iterator 269 Pos = SuppressedDiagnostics.find(D->getCanonicalDecl()); 270 if (Pos != SuppressedDiagnostics.end()) { 271 SmallVectorImpl<PartialDiagnosticAt> &Suppressed = Pos->second; 272 for (unsigned I = 0, N = Suppressed.size(); I != N; ++I) 273 Diag(Suppressed[I].first, Suppressed[I].second); 274 275 // Clear out the list of suppressed diagnostics, so that we don't emit 276 // them again for this specialization. However, we don't obsolete this 277 // entry from the table, because we want to avoid ever emitting these 278 // diagnostics again. 279 Suppressed.clear(); 280 } 281 282 // C++ [basic.start.main]p3: 283 // The function 'main' shall not be used within a program. 284 if (cast<FunctionDecl>(D)->isMain()) 285 Diag(Loc, diag::ext_main_used); 286 } 287 288 // See if this is an auto-typed variable whose initializer we are parsing. 289 if (ParsingInitForAutoVars.count(D)) { 290 Diag(Loc, diag::err_auto_variable_cannot_appear_in_own_initializer) 291 << D->getDeclName(); 292 return true; 293 } 294 295 // See if this is a deleted function. 296 if (FunctionDecl *FD = dyn_cast<FunctionDecl>(D)) { 297 if (FD->isDeleted()) { 298 Diag(Loc, diag::err_deleted_function_use); 299 NoteDeletedFunction(FD); 300 return true; 301 } 302 303 // If the function has a deduced return type, and we can't deduce it, 304 // then we can't use it either. 305 if (getLangOpts().CPlusPlus1y && FD->getReturnType()->isUndeducedType() && 306 DeduceReturnType(FD, Loc)) 307 return true; 308 } 309 DiagnoseAvailabilityOfDecl(*this, D, Loc, UnknownObjCClass, ObjCPropertyAccess); 310 311 DiagnoseUnusedOfDecl(*this, D, Loc); 312 313 diagnoseUseOfInternalDeclInInlineFunction(*this, D, Loc); 314 315 return false; 316 } 317 318 /// \brief Retrieve the message suffix that should be added to a 319 /// diagnostic complaining about the given function being deleted or 320 /// unavailable. 321 std::string Sema::getDeletedOrUnavailableSuffix(const FunctionDecl *FD) { 322 std::string Message; 323 if (FD->getAvailability(&Message)) 324 return ": " + Message; 325 326 return std::string(); 327 } 328 329 /// DiagnoseSentinelCalls - This routine checks whether a call or 330 /// message-send is to a declaration with the sentinel attribute, and 331 /// if so, it checks that the requirements of the sentinel are 332 /// satisfied. 333 void Sema::DiagnoseSentinelCalls(NamedDecl *D, SourceLocation Loc, 334 ArrayRef<Expr *> Args) { 335 const SentinelAttr *attr = D->getAttr<SentinelAttr>(); 336 if (!attr) 337 return; 338 339 // The number of formal parameters of the declaration. 340 unsigned numFormalParams; 341 342 // The kind of declaration. This is also an index into a %select in 343 // the diagnostic. 344 enum CalleeType { CT_Function, CT_Method, CT_Block } calleeType; 345 346 if (ObjCMethodDecl *MD = dyn_cast<ObjCMethodDecl>(D)) { 347 numFormalParams = MD->param_size(); 348 calleeType = CT_Method; 349 } else if (FunctionDecl *FD = dyn_cast<FunctionDecl>(D)) { 350 numFormalParams = FD->param_size(); 351 calleeType = CT_Function; 352 } else if (isa<VarDecl>(D)) { 353 QualType type = cast<ValueDecl>(D)->getType(); 354 const FunctionType *fn = nullptr; 355 if (const PointerType *ptr = type->getAs<PointerType>()) { 356 fn = ptr->getPointeeType()->getAs<FunctionType>(); 357 if (!fn) return; 358 calleeType = CT_Function; 359 } else if (const BlockPointerType *ptr = type->getAs<BlockPointerType>()) { 360 fn = ptr->getPointeeType()->castAs<FunctionType>(); 361 calleeType = CT_Block; 362 } else { 363 return; 364 } 365 366 if (const FunctionProtoType *proto = dyn_cast<FunctionProtoType>(fn)) { 367 numFormalParams = proto->getNumParams(); 368 } else { 369 numFormalParams = 0; 370 } 371 } else { 372 return; 373 } 374 375 // "nullPos" is the number of formal parameters at the end which 376 // effectively count as part of the variadic arguments. This is 377 // useful if you would prefer to not have *any* formal parameters, 378 // but the language forces you to have at least one. 379 unsigned nullPos = attr->getNullPos(); 380 assert((nullPos == 0 || nullPos == 1) && "invalid null position on sentinel"); 381 numFormalParams = (nullPos > numFormalParams ? 0 : numFormalParams - nullPos); 382 383 // The number of arguments which should follow the sentinel. 384 unsigned numArgsAfterSentinel = attr->getSentinel(); 385 386 // If there aren't enough arguments for all the formal parameters, 387 // the sentinel, and the args after the sentinel, complain. 388 if (Args.size() < numFormalParams + numArgsAfterSentinel + 1) { 389 Diag(Loc, diag::warn_not_enough_argument) << D->getDeclName(); 390 Diag(D->getLocation(), diag::note_sentinel_here) << int(calleeType); 391 return; 392 } 393 394 // Otherwise, find the sentinel expression. 395 Expr *sentinelExpr = Args[Args.size() - numArgsAfterSentinel - 1]; 396 if (!sentinelExpr) return; 397 if (sentinelExpr->isValueDependent()) return; 398 if (Context.isSentinelNullExpr(sentinelExpr)) return; 399 400 // Pick a reasonable string to insert. Optimistically use 'nil' or 401 // 'NULL' if those are actually defined in the context. Only use 402 // 'nil' for ObjC methods, where it's much more likely that the 403 // variadic arguments form a list of object pointers. 404 SourceLocation MissingNilLoc 405 = PP.getLocForEndOfToken(sentinelExpr->getLocEnd()); 406 std::string NullValue; 407 if (calleeType == CT_Method && 408 PP.getIdentifierInfo("nil")->hasMacroDefinition()) 409 NullValue = "nil"; 410 else if (PP.getIdentifierInfo("NULL")->hasMacroDefinition()) 411 NullValue = "NULL"; 412 else 413 NullValue = "(void*) 0"; 414 415 if (MissingNilLoc.isInvalid()) 416 Diag(Loc, diag::warn_missing_sentinel) << int(calleeType); 417 else 418 Diag(MissingNilLoc, diag::warn_missing_sentinel) 419 << int(calleeType) 420 << FixItHint::CreateInsertion(MissingNilLoc, ", " + NullValue); 421 Diag(D->getLocation(), diag::note_sentinel_here) << int(calleeType); 422 } 423 424 SourceRange Sema::getExprRange(Expr *E) const { 425 return E ? E->getSourceRange() : SourceRange(); 426 } 427 428 //===----------------------------------------------------------------------===// 429 // Standard Promotions and Conversions 430 //===----------------------------------------------------------------------===// 431 432 /// DefaultFunctionArrayConversion (C99 6.3.2.1p3, C99 6.3.2.1p4). 433 ExprResult Sema::DefaultFunctionArrayConversion(Expr *E) { 434 // Handle any placeholder expressions which made it here. 435 if (E->getType()->isPlaceholderType()) { 436 ExprResult result = CheckPlaceholderExpr(E); 437 if (result.isInvalid()) return ExprError(); 438 E = result.get(); 439 } 440 441 QualType Ty = E->getType(); 442 assert(!Ty.isNull() && "DefaultFunctionArrayConversion - missing type"); 443 444 if (Ty->isFunctionType()) { 445 // If we are here, we are not calling a function but taking 446 // its address (which is not allowed in OpenCL v1.0 s6.8.a.3). 447 if (getLangOpts().OpenCL) { 448 Diag(E->getExprLoc(), diag::err_opencl_taking_function_address); 449 return ExprError(); 450 } 451 E = ImpCastExprToType(E, Context.getPointerType(Ty), 452 CK_FunctionToPointerDecay).get(); 453 } else if (Ty->isArrayType()) { 454 // In C90 mode, arrays only promote to pointers if the array expression is 455 // an lvalue. The relevant legalese is C90 6.2.2.1p3: "an lvalue that has 456 // type 'array of type' is converted to an expression that has type 'pointer 457 // to type'...". In C99 this was changed to: C99 6.3.2.1p3: "an expression 458 // that has type 'array of type' ...". The relevant change is "an lvalue" 459 // (C90) to "an expression" (C99). 460 // 461 // C++ 4.2p1: 462 // An lvalue or rvalue of type "array of N T" or "array of unknown bound of 463 // T" can be converted to an rvalue of type "pointer to T". 464 // 465 if (getLangOpts().C99 || getLangOpts().CPlusPlus || E->isLValue()) 466 E = ImpCastExprToType(E, Context.getArrayDecayedType(Ty), 467 CK_ArrayToPointerDecay).get(); 468 } 469 return E; 470 } 471 472 static void CheckForNullPointerDereference(Sema &S, Expr *E) { 473 // Check to see if we are dereferencing a null pointer. If so, 474 // and if not volatile-qualified, this is undefined behavior that the 475 // optimizer will delete, so warn about it. People sometimes try to use this 476 // to get a deterministic trap and are surprised by clang's behavior. This 477 // only handles the pattern "*null", which is a very syntactic check. 478 if (UnaryOperator *UO = dyn_cast<UnaryOperator>(E->IgnoreParenCasts())) 479 if (UO->getOpcode() == UO_Deref && 480 UO->getSubExpr()->IgnoreParenCasts()-> 481 isNullPointerConstant(S.Context, Expr::NPC_ValueDependentIsNotNull) && 482 !UO->getType().isVolatileQualified()) { 483 S.DiagRuntimeBehavior(UO->getOperatorLoc(), UO, 484 S.PDiag(diag::warn_indirection_through_null) 485 << UO->getSubExpr()->getSourceRange()); 486 S.DiagRuntimeBehavior(UO->getOperatorLoc(), UO, 487 S.PDiag(diag::note_indirection_through_null)); 488 } 489 } 490 491 static void DiagnoseDirectIsaAccess(Sema &S, const ObjCIvarRefExpr *OIRE, 492 SourceLocation AssignLoc, 493 const Expr* RHS) { 494 const ObjCIvarDecl *IV = OIRE->getDecl(); 495 if (!IV) 496 return; 497 498 DeclarationName MemberName = IV->getDeclName(); 499 IdentifierInfo *Member = MemberName.getAsIdentifierInfo(); 500 if (!Member || !Member->isStr("isa")) 501 return; 502 503 const Expr *Base = OIRE->getBase(); 504 QualType BaseType = Base->getType(); 505 if (OIRE->isArrow()) 506 BaseType = BaseType->getPointeeType(); 507 if (const ObjCObjectType *OTy = BaseType->getAs<ObjCObjectType>()) 508 if (ObjCInterfaceDecl *IDecl = OTy->getInterface()) { 509 ObjCInterfaceDecl *ClassDeclared = nullptr; 510 ObjCIvarDecl *IV = IDecl->lookupInstanceVariable(Member, ClassDeclared); 511 if (!ClassDeclared->getSuperClass() 512 && (*ClassDeclared->ivar_begin()) == IV) { 513 if (RHS) { 514 NamedDecl *ObjectSetClass = 515 S.LookupSingleName(S.TUScope, 516 &S.Context.Idents.get("object_setClass"), 517 SourceLocation(), S.LookupOrdinaryName); 518 if (ObjectSetClass) { 519 SourceLocation RHSLocEnd = S.PP.getLocForEndOfToken(RHS->getLocEnd()); 520 S.Diag(OIRE->getExprLoc(), diag::warn_objc_isa_assign) << 521 FixItHint::CreateInsertion(OIRE->getLocStart(), "object_setClass(") << 522 FixItHint::CreateReplacement(SourceRange(OIRE->getOpLoc(), 523 AssignLoc), ",") << 524 FixItHint::CreateInsertion(RHSLocEnd, ")"); 525 } 526 else 527 S.Diag(OIRE->getLocation(), diag::warn_objc_isa_assign); 528 } else { 529 NamedDecl *ObjectGetClass = 530 S.LookupSingleName(S.TUScope, 531 &S.Context.Idents.get("object_getClass"), 532 SourceLocation(), S.LookupOrdinaryName); 533 if (ObjectGetClass) 534 S.Diag(OIRE->getExprLoc(), diag::warn_objc_isa_use) << 535 FixItHint::CreateInsertion(OIRE->getLocStart(), "object_getClass(") << 536 FixItHint::CreateReplacement( 537 SourceRange(OIRE->getOpLoc(), 538 OIRE->getLocEnd()), ")"); 539 else 540 S.Diag(OIRE->getLocation(), diag::warn_objc_isa_use); 541 } 542 S.Diag(IV->getLocation(), diag::note_ivar_decl); 543 } 544 } 545 } 546 547 ExprResult Sema::DefaultLvalueConversion(Expr *E) { 548 // Handle any placeholder expressions which made it here. 549 if (E->getType()->isPlaceholderType()) { 550 ExprResult result = CheckPlaceholderExpr(E); 551 if (result.isInvalid()) return ExprError(); 552 E = result.get(); 553 } 554 555 // C++ [conv.lval]p1: 556 // A glvalue of a non-function, non-array type T can be 557 // converted to a prvalue. 558 if (!E->isGLValue()) return E; 559 560 QualType T = E->getType(); 561 assert(!T.isNull() && "r-value conversion on typeless expression?"); 562 563 // We don't want to throw lvalue-to-rvalue casts on top of 564 // expressions of certain types in C++. 565 if (getLangOpts().CPlusPlus && 566 (E->getType() == Context.OverloadTy || 567 T->isDependentType() || 568 T->isRecordType())) 569 return E; 570 571 // The C standard is actually really unclear on this point, and 572 // DR106 tells us what the result should be but not why. It's 573 // generally best to say that void types just doesn't undergo 574 // lvalue-to-rvalue at all. Note that expressions of unqualified 575 // 'void' type are never l-values, but qualified void can be. 576 if (T->isVoidType()) 577 return E; 578 579 // OpenCL usually rejects direct accesses to values of 'half' type. 580 if (getLangOpts().OpenCL && !getOpenCLOptions().cl_khr_fp16 && 581 T->isHalfType()) { 582 Diag(E->getExprLoc(), diag::err_opencl_half_load_store) 583 << 0 << T; 584 return ExprError(); 585 } 586 587 CheckForNullPointerDereference(*this, E); 588 if (const ObjCIsaExpr *OISA = dyn_cast<ObjCIsaExpr>(E->IgnoreParenCasts())) { 589 NamedDecl *ObjectGetClass = LookupSingleName(TUScope, 590 &Context.Idents.get("object_getClass"), 591 SourceLocation(), LookupOrdinaryName); 592 if (ObjectGetClass) 593 Diag(E->getExprLoc(), diag::warn_objc_isa_use) << 594 FixItHint::CreateInsertion(OISA->getLocStart(), "object_getClass(") << 595 FixItHint::CreateReplacement( 596 SourceRange(OISA->getOpLoc(), OISA->getIsaMemberLoc()), ")"); 597 else 598 Diag(E->getExprLoc(), diag::warn_objc_isa_use); 599 } 600 else if (const ObjCIvarRefExpr *OIRE = 601 dyn_cast<ObjCIvarRefExpr>(E->IgnoreParenCasts())) 602 DiagnoseDirectIsaAccess(*this, OIRE, SourceLocation(), /* Expr*/nullptr); 603 604 // C++ [conv.lval]p1: 605 // [...] If T is a non-class type, the type of the prvalue is the 606 // cv-unqualified version of T. Otherwise, the type of the 607 // rvalue is T. 608 // 609 // C99 6.3.2.1p2: 610 // If the lvalue has qualified type, the value has the unqualified 611 // version of the type of the lvalue; otherwise, the value has the 612 // type of the lvalue. 613 if (T.hasQualifiers()) 614 T = T.getUnqualifiedType(); 615 616 UpdateMarkingForLValueToRValue(E); 617 618 // Loading a __weak object implicitly retains the value, so we need a cleanup to 619 // balance that. 620 if (getLangOpts().ObjCAutoRefCount && 621 E->getType().getObjCLifetime() == Qualifiers::OCL_Weak) 622 ExprNeedsCleanups = true; 623 624 ExprResult Res = ImplicitCastExpr::Create(Context, T, CK_LValueToRValue, E, 625 nullptr, VK_RValue); 626 627 // C11 6.3.2.1p2: 628 // ... if the lvalue has atomic type, the value has the non-atomic version 629 // of the type of the lvalue ... 630 if (const AtomicType *Atomic = T->getAs<AtomicType>()) { 631 T = Atomic->getValueType().getUnqualifiedType(); 632 Res = ImplicitCastExpr::Create(Context, T, CK_AtomicToNonAtomic, Res.get(), 633 nullptr, VK_RValue); 634 } 635 636 return Res; 637 } 638 639 ExprResult Sema::DefaultFunctionArrayLvalueConversion(Expr *E) { 640 ExprResult Res = DefaultFunctionArrayConversion(E); 641 if (Res.isInvalid()) 642 return ExprError(); 643 Res = DefaultLvalueConversion(Res.get()); 644 if (Res.isInvalid()) 645 return ExprError(); 646 return Res; 647 } 648 649 /// CallExprUnaryConversions - a special case of an unary conversion 650 /// performed on a function designator of a call expression. 651 ExprResult Sema::CallExprUnaryConversions(Expr *E) { 652 QualType Ty = E->getType(); 653 ExprResult Res = E; 654 // Only do implicit cast for a function type, but not for a pointer 655 // to function type. 656 if (Ty->isFunctionType()) { 657 Res = ImpCastExprToType(E, Context.getPointerType(Ty), 658 CK_FunctionToPointerDecay).get(); 659 if (Res.isInvalid()) 660 return ExprError(); 661 } 662 Res = DefaultLvalueConversion(Res.get()); 663 if (Res.isInvalid()) 664 return ExprError(); 665 return Res.get(); 666 } 667 668 /// UsualUnaryConversions - Performs various conversions that are common to most 669 /// operators (C99 6.3). The conversions of array and function types are 670 /// sometimes suppressed. For example, the array->pointer conversion doesn't 671 /// apply if the array is an argument to the sizeof or address (&) operators. 672 /// In these instances, this routine should *not* be called. 673 ExprResult Sema::UsualUnaryConversions(Expr *E) { 674 // First, convert to an r-value. 675 ExprResult Res = DefaultFunctionArrayLvalueConversion(E); 676 if (Res.isInvalid()) 677 return ExprError(); 678 E = Res.get(); 679 680 QualType Ty = E->getType(); 681 assert(!Ty.isNull() && "UsualUnaryConversions - missing type"); 682 683 // Half FP have to be promoted to float unless it is natively supported 684 if (Ty->isHalfType() && !getLangOpts().NativeHalfType) 685 return ImpCastExprToType(Res.get(), Context.FloatTy, CK_FloatingCast); 686 687 // Try to perform integral promotions if the object has a theoretically 688 // promotable type. 689 if (Ty->isIntegralOrUnscopedEnumerationType()) { 690 // C99 6.3.1.1p2: 691 // 692 // The following may be used in an expression wherever an int or 693 // unsigned int may be used: 694 // - an object or expression with an integer type whose integer 695 // conversion rank is less than or equal to the rank of int 696 // and unsigned int. 697 // - A bit-field of type _Bool, int, signed int, or unsigned int. 698 // 699 // If an int can represent all values of the original type, the 700 // value is converted to an int; otherwise, it is converted to an 701 // unsigned int. These are called the integer promotions. All 702 // other types are unchanged by the integer promotions. 703 704 QualType PTy = Context.isPromotableBitField(E); 705 if (!PTy.isNull()) { 706 E = ImpCastExprToType(E, PTy, CK_IntegralCast).get(); 707 return E; 708 } 709 if (Ty->isPromotableIntegerType()) { 710 QualType PT = Context.getPromotedIntegerType(Ty); 711 E = ImpCastExprToType(E, PT, CK_IntegralCast).get(); 712 return E; 713 } 714 } 715 return E; 716 } 717 718 /// DefaultArgumentPromotion (C99 6.5.2.2p6). Used for function calls that 719 /// do not have a prototype. Arguments that have type float or __fp16 720 /// are promoted to double. All other argument types are converted by 721 /// UsualUnaryConversions(). 722 ExprResult Sema::DefaultArgumentPromotion(Expr *E) { 723 QualType Ty = E->getType(); 724 assert(!Ty.isNull() && "DefaultArgumentPromotion - missing type"); 725 726 ExprResult Res = UsualUnaryConversions(E); 727 if (Res.isInvalid()) 728 return ExprError(); 729 E = Res.get(); 730 731 // If this is a 'float' or '__fp16' (CVR qualified or typedef) promote to 732 // double. 733 const BuiltinType *BTy = Ty->getAs<BuiltinType>(); 734 if (BTy && (BTy->getKind() == BuiltinType::Half || 735 BTy->getKind() == BuiltinType::Float)) 736 E = ImpCastExprToType(E, Context.DoubleTy, CK_FloatingCast).get(); 737 738 // C++ performs lvalue-to-rvalue conversion as a default argument 739 // promotion, even on class types, but note: 740 // C++11 [conv.lval]p2: 741 // When an lvalue-to-rvalue conversion occurs in an unevaluated 742 // operand or a subexpression thereof the value contained in the 743 // referenced object is not accessed. Otherwise, if the glvalue 744 // has a class type, the conversion copy-initializes a temporary 745 // of type T from the glvalue and the result of the conversion 746 // is a prvalue for the temporary. 747 // FIXME: add some way to gate this entire thing for correctness in 748 // potentially potentially evaluated contexts. 749 if (getLangOpts().CPlusPlus && E->isGLValue() && !isUnevaluatedContext()) { 750 ExprResult Temp = PerformCopyInitialization( 751 InitializedEntity::InitializeTemporary(E->getType()), 752 E->getExprLoc(), E); 753 if (Temp.isInvalid()) 754 return ExprError(); 755 E = Temp.get(); 756 } 757 758 return E; 759 } 760 761 /// Determine the degree of POD-ness for an expression. 762 /// Incomplete types are considered POD, since this check can be performed 763 /// when we're in an unevaluated context. 764 Sema::VarArgKind Sema::isValidVarArgType(const QualType &Ty) { 765 if (Ty->isIncompleteType()) { 766 // C++11 [expr.call]p7: 767 // After these conversions, if the argument does not have arithmetic, 768 // enumeration, pointer, pointer to member, or class type, the program 769 // is ill-formed. 770 // 771 // Since we've already performed array-to-pointer and function-to-pointer 772 // decay, the only such type in C++ is cv void. This also handles 773 // initializer lists as variadic arguments. 774 if (Ty->isVoidType()) 775 return VAK_Invalid; 776 777 if (Ty->isObjCObjectType()) 778 return VAK_Invalid; 779 return VAK_Valid; 780 } 781 782 if (Ty.isCXX98PODType(Context)) 783 return VAK_Valid; 784 785 // C++11 [expr.call]p7: 786 // Passing a potentially-evaluated argument of class type (Clause 9) 787 // having a non-trivial copy constructor, a non-trivial move constructor, 788 // or a non-trivial destructor, with no corresponding parameter, 789 // is conditionally-supported with implementation-defined semantics. 790 if (getLangOpts().CPlusPlus11 && !Ty->isDependentType()) 791 if (CXXRecordDecl *Record = Ty->getAsCXXRecordDecl()) 792 if (!Record->hasNonTrivialCopyConstructor() && 793 !Record->hasNonTrivialMoveConstructor() && 794 !Record->hasNonTrivialDestructor()) 795 return VAK_ValidInCXX11; 796 797 if (getLangOpts().ObjCAutoRefCount && Ty->isObjCLifetimeType()) 798 return VAK_Valid; 799 800 if (Ty->isObjCObjectType()) 801 return VAK_Invalid; 802 803 // FIXME: In C++11, these cases are conditionally-supported, meaning we're 804 // permitted to reject them. We should consider doing so. 805 return VAK_Undefined; 806 } 807 808 void Sema::checkVariadicArgument(const Expr *E, VariadicCallType CT) { 809 // Don't allow one to pass an Objective-C interface to a vararg. 810 const QualType &Ty = E->getType(); 811 VarArgKind VAK = isValidVarArgType(Ty); 812 813 // Complain about passing non-POD types through varargs. 814 switch (VAK) { 815 case VAK_ValidInCXX11: 816 DiagRuntimeBehavior( 817 E->getLocStart(), nullptr, 818 PDiag(diag::warn_cxx98_compat_pass_non_pod_arg_to_vararg) 819 << Ty << CT); 820 // Fall through. 821 case VAK_Valid: 822 if (Ty->isRecordType()) { 823 // This is unlikely to be what the user intended. If the class has a 824 // 'c_str' member function, the user probably meant to call that. 825 DiagRuntimeBehavior(E->getLocStart(), nullptr, 826 PDiag(diag::warn_pass_class_arg_to_vararg) 827 << Ty << CT << hasCStrMethod(E) << ".c_str()"); 828 } 829 break; 830 831 case VAK_Undefined: 832 DiagRuntimeBehavior( 833 E->getLocStart(), nullptr, 834 PDiag(diag::warn_cannot_pass_non_pod_arg_to_vararg) 835 << getLangOpts().CPlusPlus11 << Ty << CT); 836 break; 837 838 case VAK_Invalid: 839 if (Ty->isObjCObjectType()) 840 DiagRuntimeBehavior( 841 E->getLocStart(), nullptr, 842 PDiag(diag::err_cannot_pass_objc_interface_to_vararg) 843 << Ty << CT); 844 else 845 Diag(E->getLocStart(), diag::err_cannot_pass_to_vararg) 846 << isa<InitListExpr>(E) << Ty << CT; 847 break; 848 } 849 } 850 851 /// DefaultVariadicArgumentPromotion - Like DefaultArgumentPromotion, but 852 /// will create a trap if the resulting type is not a POD type. 853 ExprResult Sema::DefaultVariadicArgumentPromotion(Expr *E, VariadicCallType CT, 854 FunctionDecl *FDecl) { 855 if (const BuiltinType *PlaceholderTy = E->getType()->getAsPlaceholderType()) { 856 // Strip the unbridged-cast placeholder expression off, if applicable. 857 if (PlaceholderTy->getKind() == BuiltinType::ARCUnbridgedCast && 858 (CT == VariadicMethod || 859 (FDecl && FDecl->hasAttr<CFAuditedTransferAttr>()))) { 860 E = stripARCUnbridgedCast(E); 861 862 // Otherwise, do normal placeholder checking. 863 } else { 864 ExprResult ExprRes = CheckPlaceholderExpr(E); 865 if (ExprRes.isInvalid()) 866 return ExprError(); 867 E = ExprRes.get(); 868 } 869 } 870 871 ExprResult ExprRes = DefaultArgumentPromotion(E); 872 if (ExprRes.isInvalid()) 873 return ExprError(); 874 E = ExprRes.get(); 875 876 // Diagnostics regarding non-POD argument types are 877 // emitted along with format string checking in Sema::CheckFunctionCall(). 878 if (isValidVarArgType(E->getType()) == VAK_Undefined) { 879 // Turn this into a trap. 880 CXXScopeSpec SS; 881 SourceLocation TemplateKWLoc; 882 UnqualifiedId Name; 883 Name.setIdentifier(PP.getIdentifierInfo("__builtin_trap"), 884 E->getLocStart()); 885 ExprResult TrapFn = ActOnIdExpression(TUScope, SS, TemplateKWLoc, 886 Name, true, false); 887 if (TrapFn.isInvalid()) 888 return ExprError(); 889 890 ExprResult Call = ActOnCallExpr(TUScope, TrapFn.get(), 891 E->getLocStart(), None, 892 E->getLocEnd()); 893 if (Call.isInvalid()) 894 return ExprError(); 895 896 ExprResult Comma = ActOnBinOp(TUScope, E->getLocStart(), tok::comma, 897 Call.get(), E); 898 if (Comma.isInvalid()) 899 return ExprError(); 900 return Comma.get(); 901 } 902 903 if (!getLangOpts().CPlusPlus && 904 RequireCompleteType(E->getExprLoc(), E->getType(), 905 diag::err_call_incomplete_argument)) 906 return ExprError(); 907 908 return E; 909 } 910 911 /// \brief Converts an integer to complex float type. Helper function of 912 /// UsualArithmeticConversions() 913 /// 914 /// \return false if the integer expression is an integer type and is 915 /// successfully converted to the complex type. 916 static bool handleIntegerToComplexFloatConversion(Sema &S, ExprResult &IntExpr, 917 ExprResult &ComplexExpr, 918 QualType IntTy, 919 QualType ComplexTy, 920 bool SkipCast) { 921 if (IntTy->isComplexType() || IntTy->isRealFloatingType()) return true; 922 if (SkipCast) return false; 923 if (IntTy->isIntegerType()) { 924 QualType fpTy = cast<ComplexType>(ComplexTy)->getElementType(); 925 IntExpr = S.ImpCastExprToType(IntExpr.get(), fpTy, CK_IntegralToFloating); 926 IntExpr = S.ImpCastExprToType(IntExpr.get(), ComplexTy, 927 CK_FloatingRealToComplex); 928 } else { 929 assert(IntTy->isComplexIntegerType()); 930 IntExpr = S.ImpCastExprToType(IntExpr.get(), ComplexTy, 931 CK_IntegralComplexToFloatingComplex); 932 } 933 return false; 934 } 935 936 /// \brief Takes two complex float types and converts them to the same type. 937 /// Helper function of UsualArithmeticConversions() 938 static QualType 939 handleComplexFloatToComplexFloatConverstion(Sema &S, ExprResult &LHS, 940 ExprResult &RHS, QualType LHSType, 941 QualType RHSType, 942 bool IsCompAssign) { 943 int order = S.Context.getFloatingTypeOrder(LHSType, RHSType); 944 945 if (order < 0) { 946 // _Complex float -> _Complex double 947 if (!IsCompAssign) 948 LHS = S.ImpCastExprToType(LHS.get(), RHSType, CK_FloatingComplexCast); 949 return RHSType; 950 } 951 if (order > 0) 952 // _Complex float -> _Complex double 953 RHS = S.ImpCastExprToType(RHS.get(), LHSType, CK_FloatingComplexCast); 954 return LHSType; 955 } 956 957 /// \brief Converts otherExpr to complex float and promotes complexExpr if 958 /// necessary. Helper function of UsualArithmeticConversions() 959 static QualType handleOtherComplexFloatConversion(Sema &S, 960 ExprResult &ComplexExpr, 961 ExprResult &OtherExpr, 962 QualType ComplexTy, 963 QualType OtherTy, 964 bool ConvertComplexExpr, 965 bool ConvertOtherExpr) { 966 int order = S.Context.getFloatingTypeOrder(ComplexTy, OtherTy); 967 968 // If just the complexExpr is complex, the otherExpr needs to be converted, 969 // and the complexExpr might need to be promoted. 970 if (order > 0) { // complexExpr is wider 971 // float -> _Complex double 972 if (ConvertOtherExpr) { 973 QualType fp = cast<ComplexType>(ComplexTy)->getElementType(); 974 OtherExpr = S.ImpCastExprToType(OtherExpr.get(), fp, CK_FloatingCast); 975 OtherExpr = S.ImpCastExprToType(OtherExpr.get(), ComplexTy, 976 CK_FloatingRealToComplex); 977 } 978 return ComplexTy; 979 } 980 981 // otherTy is at least as wide. Find its corresponding complex type. 982 QualType result = (order == 0 ? ComplexTy : 983 S.Context.getComplexType(OtherTy)); 984 985 // double -> _Complex double 986 if (ConvertOtherExpr) 987 OtherExpr = S.ImpCastExprToType(OtherExpr.get(), result, 988 CK_FloatingRealToComplex); 989 990 // _Complex float -> _Complex double 991 if (ConvertComplexExpr && order < 0) 992 ComplexExpr = S.ImpCastExprToType(ComplexExpr.get(), result, 993 CK_FloatingComplexCast); 994 995 return result; 996 } 997 998 /// \brief Handle arithmetic conversion with complex types. Helper function of 999 /// UsualArithmeticConversions() 1000 static QualType handleComplexFloatConversion(Sema &S, ExprResult &LHS, 1001 ExprResult &RHS, QualType LHSType, 1002 QualType RHSType, 1003 bool IsCompAssign) { 1004 // if we have an integer operand, the result is the complex type. 1005 if (!handleIntegerToComplexFloatConversion(S, RHS, LHS, RHSType, LHSType, 1006 /*skipCast*/false)) 1007 return LHSType; 1008 if (!handleIntegerToComplexFloatConversion(S, LHS, RHS, LHSType, RHSType, 1009 /*skipCast*/IsCompAssign)) 1010 return RHSType; 1011 1012 // This handles complex/complex, complex/float, or float/complex. 1013 // When both operands are complex, the shorter operand is converted to the 1014 // type of the longer, and that is the type of the result. This corresponds 1015 // to what is done when combining two real floating-point operands. 1016 // The fun begins when size promotion occur across type domains. 1017 // From H&S 6.3.4: When one operand is complex and the other is a real 1018 // floating-point type, the less precise type is converted, within it's 1019 // real or complex domain, to the precision of the other type. For example, 1020 // when combining a "long double" with a "double _Complex", the 1021 // "double _Complex" is promoted to "long double _Complex". 1022 1023 bool LHSComplexFloat = LHSType->isComplexType(); 1024 bool RHSComplexFloat = RHSType->isComplexType(); 1025 1026 // If both are complex, just cast to the more precise type. 1027 if (LHSComplexFloat && RHSComplexFloat) 1028 return handleComplexFloatToComplexFloatConverstion(S, LHS, RHS, 1029 LHSType, RHSType, 1030 IsCompAssign); 1031 1032 // If only one operand is complex, promote it if necessary and convert the 1033 // other operand to complex. 1034 if (LHSComplexFloat) 1035 return handleOtherComplexFloatConversion( 1036 S, LHS, RHS, LHSType, RHSType, /*convertComplexExpr*/!IsCompAssign, 1037 /*convertOtherExpr*/ true); 1038 1039 assert(RHSComplexFloat); 1040 return handleOtherComplexFloatConversion( 1041 S, RHS, LHS, RHSType, LHSType, /*convertComplexExpr*/true, 1042 /*convertOtherExpr*/ !IsCompAssign); 1043 } 1044 1045 /// \brief Hande arithmetic conversion from integer to float. Helper function 1046 /// of UsualArithmeticConversions() 1047 static QualType handleIntToFloatConversion(Sema &S, ExprResult &FloatExpr, 1048 ExprResult &IntExpr, 1049 QualType FloatTy, QualType IntTy, 1050 bool ConvertFloat, bool ConvertInt) { 1051 if (IntTy->isIntegerType()) { 1052 if (ConvertInt) 1053 // Convert intExpr to the lhs floating point type. 1054 IntExpr = S.ImpCastExprToType(IntExpr.get(), FloatTy, 1055 CK_IntegralToFloating); 1056 return FloatTy; 1057 } 1058 1059 // Convert both sides to the appropriate complex float. 1060 assert(IntTy->isComplexIntegerType()); 1061 QualType result = S.Context.getComplexType(FloatTy); 1062 1063 // _Complex int -> _Complex float 1064 if (ConvertInt) 1065 IntExpr = S.ImpCastExprToType(IntExpr.get(), result, 1066 CK_IntegralComplexToFloatingComplex); 1067 1068 // float -> _Complex float 1069 if (ConvertFloat) 1070 FloatExpr = S.ImpCastExprToType(FloatExpr.get(), result, 1071 CK_FloatingRealToComplex); 1072 1073 return result; 1074 } 1075 1076 /// \brief Handle arithmethic conversion with floating point types. Helper 1077 /// function of UsualArithmeticConversions() 1078 static QualType handleFloatConversion(Sema &S, ExprResult &LHS, 1079 ExprResult &RHS, QualType LHSType, 1080 QualType RHSType, bool IsCompAssign) { 1081 bool LHSFloat = LHSType->isRealFloatingType(); 1082 bool RHSFloat = RHSType->isRealFloatingType(); 1083 1084 // If we have two real floating types, convert the smaller operand 1085 // to the bigger result. 1086 if (LHSFloat && RHSFloat) { 1087 int order = S.Context.getFloatingTypeOrder(LHSType, RHSType); 1088 if (order > 0) { 1089 RHS = S.ImpCastExprToType(RHS.get(), LHSType, CK_FloatingCast); 1090 return LHSType; 1091 } 1092 1093 assert(order < 0 && "illegal float comparison"); 1094 if (!IsCompAssign) 1095 LHS = S.ImpCastExprToType(LHS.get(), RHSType, CK_FloatingCast); 1096 return RHSType; 1097 } 1098 1099 if (LHSFloat) 1100 return handleIntToFloatConversion(S, LHS, RHS, LHSType, RHSType, 1101 /*convertFloat=*/!IsCompAssign, 1102 /*convertInt=*/ true); 1103 assert(RHSFloat); 1104 return handleIntToFloatConversion(S, RHS, LHS, RHSType, LHSType, 1105 /*convertInt=*/ true, 1106 /*convertFloat=*/!IsCompAssign); 1107 } 1108 1109 typedef ExprResult PerformCastFn(Sema &S, Expr *operand, QualType toType); 1110 1111 namespace { 1112 /// These helper callbacks are placed in an anonymous namespace to 1113 /// permit their use as function template parameters. 1114 ExprResult doIntegralCast(Sema &S, Expr *op, QualType toType) { 1115 return S.ImpCastExprToType(op, toType, CK_IntegralCast); 1116 } 1117 1118 ExprResult doComplexIntegralCast(Sema &S, Expr *op, QualType toType) { 1119 return S.ImpCastExprToType(op, S.Context.getComplexType(toType), 1120 CK_IntegralComplexCast); 1121 } 1122 } 1123 1124 /// \brief Handle integer arithmetic conversions. Helper function of 1125 /// UsualArithmeticConversions() 1126 template <PerformCastFn doLHSCast, PerformCastFn doRHSCast> 1127 static QualType handleIntegerConversion(Sema &S, ExprResult &LHS, 1128 ExprResult &RHS, QualType LHSType, 1129 QualType RHSType, bool IsCompAssign) { 1130 // The rules for this case are in C99 6.3.1.8 1131 int order = S.Context.getIntegerTypeOrder(LHSType, RHSType); 1132 bool LHSSigned = LHSType->hasSignedIntegerRepresentation(); 1133 bool RHSSigned = RHSType->hasSignedIntegerRepresentation(); 1134 if (LHSSigned == RHSSigned) { 1135 // Same signedness; use the higher-ranked type 1136 if (order >= 0) { 1137 RHS = (*doRHSCast)(S, RHS.get(), LHSType); 1138 return LHSType; 1139 } else if (!IsCompAssign) 1140 LHS = (*doLHSCast)(S, LHS.get(), RHSType); 1141 return RHSType; 1142 } else if (order != (LHSSigned ? 1 : -1)) { 1143 // The unsigned type has greater than or equal rank to the 1144 // signed type, so use the unsigned type 1145 if (RHSSigned) { 1146 RHS = (*doRHSCast)(S, RHS.get(), LHSType); 1147 return LHSType; 1148 } else if (!IsCompAssign) 1149 LHS = (*doLHSCast)(S, LHS.get(), RHSType); 1150 return RHSType; 1151 } else if (S.Context.getIntWidth(LHSType) != S.Context.getIntWidth(RHSType)) { 1152 // The two types are different widths; if we are here, that 1153 // means the signed type is larger than the unsigned type, so 1154 // use the signed type. 1155 if (LHSSigned) { 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 { 1162 // The signed type is higher-ranked than the unsigned type, 1163 // but isn't actually any bigger (like unsigned int and long 1164 // on most 32-bit systems). Use the unsigned type corresponding 1165 // to the signed type. 1166 QualType result = 1167 S.Context.getCorrespondingUnsignedType(LHSSigned ? LHSType : RHSType); 1168 RHS = (*doRHSCast)(S, RHS.get(), result); 1169 if (!IsCompAssign) 1170 LHS = (*doLHSCast)(S, LHS.get(), result); 1171 return result; 1172 } 1173 } 1174 1175 /// \brief Handle conversions with GCC complex int extension. Helper function 1176 /// of UsualArithmeticConversions() 1177 static QualType handleComplexIntConversion(Sema &S, ExprResult &LHS, 1178 ExprResult &RHS, QualType LHSType, 1179 QualType RHSType, 1180 bool IsCompAssign) { 1181 const ComplexType *LHSComplexInt = LHSType->getAsComplexIntegerType(); 1182 const ComplexType *RHSComplexInt = RHSType->getAsComplexIntegerType(); 1183 1184 if (LHSComplexInt && RHSComplexInt) { 1185 QualType LHSEltType = LHSComplexInt->getElementType(); 1186 QualType RHSEltType = RHSComplexInt->getElementType(); 1187 QualType ScalarType = 1188 handleIntegerConversion<doComplexIntegralCast, doComplexIntegralCast> 1189 (S, LHS, RHS, LHSEltType, RHSEltType, IsCompAssign); 1190 1191 return S.Context.getComplexType(ScalarType); 1192 } 1193 1194 if (LHSComplexInt) { 1195 QualType LHSEltType = LHSComplexInt->getElementType(); 1196 QualType ScalarType = 1197 handleIntegerConversion<doComplexIntegralCast, doIntegralCast> 1198 (S, LHS, RHS, LHSEltType, RHSType, IsCompAssign); 1199 QualType ComplexType = S.Context.getComplexType(ScalarType); 1200 RHS = S.ImpCastExprToType(RHS.get(), ComplexType, 1201 CK_IntegralRealToComplex); 1202 1203 return ComplexType; 1204 } 1205 1206 assert(RHSComplexInt); 1207 1208 QualType RHSEltType = RHSComplexInt->getElementType(); 1209 QualType ScalarType = 1210 handleIntegerConversion<doIntegralCast, doComplexIntegralCast> 1211 (S, LHS, RHS, LHSType, RHSEltType, IsCompAssign); 1212 QualType ComplexType = S.Context.getComplexType(ScalarType); 1213 1214 if (!IsCompAssign) 1215 LHS = S.ImpCastExprToType(LHS.get(), ComplexType, 1216 CK_IntegralRealToComplex); 1217 return ComplexType; 1218 } 1219 1220 /// UsualArithmeticConversions - Performs various conversions that are common to 1221 /// binary operators (C99 6.3.1.8). If both operands aren't arithmetic, this 1222 /// routine returns the first non-arithmetic type found. The client is 1223 /// responsible for emitting appropriate error diagnostics. 1224 QualType Sema::UsualArithmeticConversions(ExprResult &LHS, ExprResult &RHS, 1225 bool IsCompAssign) { 1226 if (!IsCompAssign) { 1227 LHS = UsualUnaryConversions(LHS.get()); 1228 if (LHS.isInvalid()) 1229 return QualType(); 1230 } 1231 1232 RHS = UsualUnaryConversions(RHS.get()); 1233 if (RHS.isInvalid()) 1234 return QualType(); 1235 1236 // For conversion purposes, we ignore any qualifiers. 1237 // For example, "const float" and "float" are equivalent. 1238 QualType LHSType = 1239 Context.getCanonicalType(LHS.get()->getType()).getUnqualifiedType(); 1240 QualType RHSType = 1241 Context.getCanonicalType(RHS.get()->getType()).getUnqualifiedType(); 1242 1243 // For conversion purposes, we ignore any atomic qualifier on the LHS. 1244 if (const AtomicType *AtomicLHS = LHSType->getAs<AtomicType>()) 1245 LHSType = AtomicLHS->getValueType(); 1246 1247 // If both types are identical, no conversion is needed. 1248 if (LHSType == RHSType) 1249 return LHSType; 1250 1251 // If either side is a non-arithmetic type (e.g. a pointer), we are done. 1252 // The caller can deal with this (e.g. pointer + int). 1253 if (!LHSType->isArithmeticType() || !RHSType->isArithmeticType()) 1254 return QualType(); 1255 1256 // Apply unary and bitfield promotions to the LHS's type. 1257 QualType LHSUnpromotedType = LHSType; 1258 if (LHSType->isPromotableIntegerType()) 1259 LHSType = Context.getPromotedIntegerType(LHSType); 1260 QualType LHSBitfieldPromoteTy = Context.isPromotableBitField(LHS.get()); 1261 if (!LHSBitfieldPromoteTy.isNull()) 1262 LHSType = LHSBitfieldPromoteTy; 1263 if (LHSType != LHSUnpromotedType && !IsCompAssign) 1264 LHS = ImpCastExprToType(LHS.get(), LHSType, CK_IntegralCast); 1265 1266 // If both types are identical, no conversion is needed. 1267 if (LHSType == RHSType) 1268 return LHSType; 1269 1270 // At this point, we have two different arithmetic types. 1271 1272 // Handle complex types first (C99 6.3.1.8p1). 1273 if (LHSType->isComplexType() || RHSType->isComplexType()) 1274 return handleComplexFloatConversion(*this, LHS, RHS, LHSType, RHSType, 1275 IsCompAssign); 1276 1277 // Now handle "real" floating types (i.e. float, double, long double). 1278 if (LHSType->isRealFloatingType() || RHSType->isRealFloatingType()) 1279 return handleFloatConversion(*this, LHS, RHS, LHSType, RHSType, 1280 IsCompAssign); 1281 1282 // Handle GCC complex int extension. 1283 if (LHSType->isComplexIntegerType() || RHSType->isComplexIntegerType()) 1284 return handleComplexIntConversion(*this, LHS, RHS, LHSType, RHSType, 1285 IsCompAssign); 1286 1287 // Finally, we have two differing integer types. 1288 return handleIntegerConversion<doIntegralCast, doIntegralCast> 1289 (*this, LHS, RHS, LHSType, RHSType, IsCompAssign); 1290 } 1291 1292 1293 //===----------------------------------------------------------------------===// 1294 // Semantic Analysis for various Expression Types 1295 //===----------------------------------------------------------------------===// 1296 1297 1298 ExprResult 1299 Sema::ActOnGenericSelectionExpr(SourceLocation KeyLoc, 1300 SourceLocation DefaultLoc, 1301 SourceLocation RParenLoc, 1302 Expr *ControllingExpr, 1303 ArrayRef<ParsedType> ArgTypes, 1304 ArrayRef<Expr *> ArgExprs) { 1305 unsigned NumAssocs = ArgTypes.size(); 1306 assert(NumAssocs == ArgExprs.size()); 1307 1308 TypeSourceInfo **Types = new TypeSourceInfo*[NumAssocs]; 1309 for (unsigned i = 0; i < NumAssocs; ++i) { 1310 if (ArgTypes[i]) 1311 (void) GetTypeFromParser(ArgTypes[i], &Types[i]); 1312 else 1313 Types[i] = nullptr; 1314 } 1315 1316 ExprResult ER = CreateGenericSelectionExpr(KeyLoc, DefaultLoc, RParenLoc, 1317 ControllingExpr, 1318 llvm::makeArrayRef(Types, NumAssocs), 1319 ArgExprs); 1320 delete [] Types; 1321 return ER; 1322 } 1323 1324 ExprResult 1325 Sema::CreateGenericSelectionExpr(SourceLocation KeyLoc, 1326 SourceLocation DefaultLoc, 1327 SourceLocation RParenLoc, 1328 Expr *ControllingExpr, 1329 ArrayRef<TypeSourceInfo *> Types, 1330 ArrayRef<Expr *> Exprs) { 1331 unsigned NumAssocs = Types.size(); 1332 assert(NumAssocs == Exprs.size()); 1333 if (ControllingExpr->getType()->isPlaceholderType()) { 1334 ExprResult result = CheckPlaceholderExpr(ControllingExpr); 1335 if (result.isInvalid()) return ExprError(); 1336 ControllingExpr = result.get(); 1337 } 1338 1339 bool TypeErrorFound = false, 1340 IsResultDependent = ControllingExpr->isTypeDependent(), 1341 ContainsUnexpandedParameterPack 1342 = ControllingExpr->containsUnexpandedParameterPack(); 1343 1344 for (unsigned i = 0; i < NumAssocs; ++i) { 1345 if (Exprs[i]->containsUnexpandedParameterPack()) 1346 ContainsUnexpandedParameterPack = true; 1347 1348 if (Types[i]) { 1349 if (Types[i]->getType()->containsUnexpandedParameterPack()) 1350 ContainsUnexpandedParameterPack = true; 1351 1352 if (Types[i]->getType()->isDependentType()) { 1353 IsResultDependent = true; 1354 } else { 1355 // C11 6.5.1.1p2 "The type name in a generic association shall specify a 1356 // complete object type other than a variably modified type." 1357 unsigned D = 0; 1358 if (Types[i]->getType()->isIncompleteType()) 1359 D = diag::err_assoc_type_incomplete; 1360 else if (!Types[i]->getType()->isObjectType()) 1361 D = diag::err_assoc_type_nonobject; 1362 else if (Types[i]->getType()->isVariablyModifiedType()) 1363 D = diag::err_assoc_type_variably_modified; 1364 1365 if (D != 0) { 1366 Diag(Types[i]->getTypeLoc().getBeginLoc(), D) 1367 << Types[i]->getTypeLoc().getSourceRange() 1368 << Types[i]->getType(); 1369 TypeErrorFound = true; 1370 } 1371 1372 // C11 6.5.1.1p2 "No two generic associations in the same generic 1373 // selection shall specify compatible types." 1374 for (unsigned j = i+1; j < NumAssocs; ++j) 1375 if (Types[j] && !Types[j]->getType()->isDependentType() && 1376 Context.typesAreCompatible(Types[i]->getType(), 1377 Types[j]->getType())) { 1378 Diag(Types[j]->getTypeLoc().getBeginLoc(), 1379 diag::err_assoc_compatible_types) 1380 << Types[j]->getTypeLoc().getSourceRange() 1381 << Types[j]->getType() 1382 << Types[i]->getType(); 1383 Diag(Types[i]->getTypeLoc().getBeginLoc(), 1384 diag::note_compat_assoc) 1385 << Types[i]->getTypeLoc().getSourceRange() 1386 << Types[i]->getType(); 1387 TypeErrorFound = true; 1388 } 1389 } 1390 } 1391 } 1392 if (TypeErrorFound) 1393 return ExprError(); 1394 1395 // If we determined that the generic selection is result-dependent, don't 1396 // try to compute the result expression. 1397 if (IsResultDependent) 1398 return new (Context) GenericSelectionExpr( 1399 Context, KeyLoc, ControllingExpr, Types, Exprs, DefaultLoc, RParenLoc, 1400 ContainsUnexpandedParameterPack); 1401 1402 SmallVector<unsigned, 1> CompatIndices; 1403 unsigned DefaultIndex = -1U; 1404 for (unsigned i = 0; i < NumAssocs; ++i) { 1405 if (!Types[i]) 1406 DefaultIndex = i; 1407 else if (Context.typesAreCompatible(ControllingExpr->getType(), 1408 Types[i]->getType())) 1409 CompatIndices.push_back(i); 1410 } 1411 1412 // C11 6.5.1.1p2 "The controlling expression of a generic selection shall have 1413 // type compatible with at most one of the types named in its generic 1414 // association list." 1415 if (CompatIndices.size() > 1) { 1416 // We strip parens here because the controlling expression is typically 1417 // parenthesized in macro definitions. 1418 ControllingExpr = ControllingExpr->IgnoreParens(); 1419 Diag(ControllingExpr->getLocStart(), diag::err_generic_sel_multi_match) 1420 << ControllingExpr->getSourceRange() << ControllingExpr->getType() 1421 << (unsigned) CompatIndices.size(); 1422 for (SmallVectorImpl<unsigned>::iterator I = CompatIndices.begin(), 1423 E = CompatIndices.end(); I != E; ++I) { 1424 Diag(Types[*I]->getTypeLoc().getBeginLoc(), 1425 diag::note_compat_assoc) 1426 << Types[*I]->getTypeLoc().getSourceRange() 1427 << Types[*I]->getType(); 1428 } 1429 return ExprError(); 1430 } 1431 1432 // C11 6.5.1.1p2 "If a generic selection has no default generic association, 1433 // its controlling expression shall have type compatible with exactly one of 1434 // the types named in its generic association list." 1435 if (DefaultIndex == -1U && CompatIndices.size() == 0) { 1436 // We strip parens here because the controlling expression is typically 1437 // parenthesized in macro definitions. 1438 ControllingExpr = ControllingExpr->IgnoreParens(); 1439 Diag(ControllingExpr->getLocStart(), diag::err_generic_sel_no_match) 1440 << ControllingExpr->getSourceRange() << ControllingExpr->getType(); 1441 return ExprError(); 1442 } 1443 1444 // C11 6.5.1.1p3 "If a generic selection has a generic association with a 1445 // type name that is compatible with the type of the controlling expression, 1446 // then the result expression of the generic selection is the expression 1447 // in that generic association. Otherwise, the result expression of the 1448 // generic selection is the expression in the default generic association." 1449 unsigned ResultIndex = 1450 CompatIndices.size() ? CompatIndices[0] : DefaultIndex; 1451 1452 return new (Context) GenericSelectionExpr( 1453 Context, KeyLoc, ControllingExpr, Types, Exprs, DefaultLoc, RParenLoc, 1454 ContainsUnexpandedParameterPack, ResultIndex); 1455 } 1456 1457 /// getUDSuffixLoc - Create a SourceLocation for a ud-suffix, given the 1458 /// location of the token and the offset of the ud-suffix within it. 1459 static SourceLocation getUDSuffixLoc(Sema &S, SourceLocation TokLoc, 1460 unsigned Offset) { 1461 return Lexer::AdvanceToTokenCharacter(TokLoc, Offset, S.getSourceManager(), 1462 S.getLangOpts()); 1463 } 1464 1465 /// BuildCookedLiteralOperatorCall - A user-defined literal was found. Look up 1466 /// the corresponding cooked (non-raw) literal operator, and build a call to it. 1467 static ExprResult BuildCookedLiteralOperatorCall(Sema &S, Scope *Scope, 1468 IdentifierInfo *UDSuffix, 1469 SourceLocation UDSuffixLoc, 1470 ArrayRef<Expr*> Args, 1471 SourceLocation LitEndLoc) { 1472 assert(Args.size() <= 2 && "too many arguments for literal operator"); 1473 1474 QualType ArgTy[2]; 1475 for (unsigned ArgIdx = 0; ArgIdx != Args.size(); ++ArgIdx) { 1476 ArgTy[ArgIdx] = Args[ArgIdx]->getType(); 1477 if (ArgTy[ArgIdx]->isArrayType()) 1478 ArgTy[ArgIdx] = S.Context.getArrayDecayedType(ArgTy[ArgIdx]); 1479 } 1480 1481 DeclarationName OpName = 1482 S.Context.DeclarationNames.getCXXLiteralOperatorName(UDSuffix); 1483 DeclarationNameInfo OpNameInfo(OpName, UDSuffixLoc); 1484 OpNameInfo.setCXXLiteralOperatorNameLoc(UDSuffixLoc); 1485 1486 LookupResult R(S, OpName, UDSuffixLoc, Sema::LookupOrdinaryName); 1487 if (S.LookupLiteralOperator(Scope, R, llvm::makeArrayRef(ArgTy, Args.size()), 1488 /*AllowRaw*/false, /*AllowTemplate*/false, 1489 /*AllowStringTemplate*/false) == Sema::LOLR_Error) 1490 return ExprError(); 1491 1492 return S.BuildLiteralOperatorCall(R, OpNameInfo, Args, LitEndLoc); 1493 } 1494 1495 /// ActOnStringLiteral - The specified tokens were lexed as pasted string 1496 /// fragments (e.g. "foo" "bar" L"baz"). The result string has to handle string 1497 /// concatenation ([C99 5.1.1.2, translation phase #6]), so it may come from 1498 /// multiple tokens. However, the common case is that StringToks points to one 1499 /// string. 1500 /// 1501 ExprResult 1502 Sema::ActOnStringLiteral(ArrayRef<Token> StringToks, Scope *UDLScope) { 1503 assert(!StringToks.empty() && "Must have at least one string!"); 1504 1505 StringLiteralParser Literal(StringToks, PP); 1506 if (Literal.hadError) 1507 return ExprError(); 1508 1509 SmallVector<SourceLocation, 4> StringTokLocs; 1510 for (unsigned i = 0; i != StringToks.size(); ++i) 1511 StringTokLocs.push_back(StringToks[i].getLocation()); 1512 1513 QualType CharTy = Context.CharTy; 1514 StringLiteral::StringKind Kind = StringLiteral::Ascii; 1515 if (Literal.isWide()) { 1516 CharTy = Context.getWideCharType(); 1517 Kind = StringLiteral::Wide; 1518 } else if (Literal.isUTF8()) { 1519 Kind = StringLiteral::UTF8; 1520 } else if (Literal.isUTF16()) { 1521 CharTy = Context.Char16Ty; 1522 Kind = StringLiteral::UTF16; 1523 } else if (Literal.isUTF32()) { 1524 CharTy = Context.Char32Ty; 1525 Kind = StringLiteral::UTF32; 1526 } else if (Literal.isPascal()) { 1527 CharTy = Context.UnsignedCharTy; 1528 } 1529 1530 QualType CharTyConst = CharTy; 1531 // A C++ string literal has a const-qualified element type (C++ 2.13.4p1). 1532 if (getLangOpts().CPlusPlus || getLangOpts().ConstStrings) 1533 CharTyConst.addConst(); 1534 1535 // Get an array type for the string, according to C99 6.4.5. This includes 1536 // the nul terminator character as well as the string length for pascal 1537 // strings. 1538 QualType StrTy = Context.getConstantArrayType(CharTyConst, 1539 llvm::APInt(32, Literal.GetNumStringChars()+1), 1540 ArrayType::Normal, 0); 1541 1542 // OpenCL v1.1 s6.5.3: a string literal is in the constant address space. 1543 if (getLangOpts().OpenCL) { 1544 StrTy = Context.getAddrSpaceQualType(StrTy, LangAS::opencl_constant); 1545 } 1546 1547 // Pass &StringTokLocs[0], StringTokLocs.size() to factory! 1548 StringLiteral *Lit = StringLiteral::Create(Context, Literal.GetString(), 1549 Kind, Literal.Pascal, StrTy, 1550 &StringTokLocs[0], 1551 StringTokLocs.size()); 1552 if (Literal.getUDSuffix().empty()) 1553 return Lit; 1554 1555 // We're building a user-defined literal. 1556 IdentifierInfo *UDSuffix = &Context.Idents.get(Literal.getUDSuffix()); 1557 SourceLocation UDSuffixLoc = 1558 getUDSuffixLoc(*this, StringTokLocs[Literal.getUDSuffixToken()], 1559 Literal.getUDSuffixOffset()); 1560 1561 // Make sure we're allowed user-defined literals here. 1562 if (!UDLScope) 1563 return ExprError(Diag(UDSuffixLoc, diag::err_invalid_string_udl)); 1564 1565 // C++11 [lex.ext]p5: The literal L is treated as a call of the form 1566 // operator "" X (str, len) 1567 QualType SizeType = Context.getSizeType(); 1568 1569 DeclarationName OpName = 1570 Context.DeclarationNames.getCXXLiteralOperatorName(UDSuffix); 1571 DeclarationNameInfo OpNameInfo(OpName, UDSuffixLoc); 1572 OpNameInfo.setCXXLiteralOperatorNameLoc(UDSuffixLoc); 1573 1574 QualType ArgTy[] = { 1575 Context.getArrayDecayedType(StrTy), SizeType 1576 }; 1577 1578 LookupResult R(*this, OpName, UDSuffixLoc, LookupOrdinaryName); 1579 switch (LookupLiteralOperator(UDLScope, R, ArgTy, 1580 /*AllowRaw*/false, /*AllowTemplate*/false, 1581 /*AllowStringTemplate*/true)) { 1582 1583 case LOLR_Cooked: { 1584 llvm::APInt Len(Context.getIntWidth(SizeType), Literal.GetNumStringChars()); 1585 IntegerLiteral *LenArg = IntegerLiteral::Create(Context, Len, SizeType, 1586 StringTokLocs[0]); 1587 Expr *Args[] = { Lit, LenArg }; 1588 1589 return BuildLiteralOperatorCall(R, OpNameInfo, Args, StringTokLocs.back()); 1590 } 1591 1592 case LOLR_StringTemplate: { 1593 TemplateArgumentListInfo ExplicitArgs; 1594 1595 unsigned CharBits = Context.getIntWidth(CharTy); 1596 bool CharIsUnsigned = CharTy->isUnsignedIntegerType(); 1597 llvm::APSInt Value(CharBits, CharIsUnsigned); 1598 1599 TemplateArgument TypeArg(CharTy); 1600 TemplateArgumentLocInfo TypeArgInfo(Context.getTrivialTypeSourceInfo(CharTy)); 1601 ExplicitArgs.addArgument(TemplateArgumentLoc(TypeArg, TypeArgInfo)); 1602 1603 for (unsigned I = 0, N = Lit->getLength(); I != N; ++I) { 1604 Value = Lit->getCodeUnit(I); 1605 TemplateArgument Arg(Context, Value, CharTy); 1606 TemplateArgumentLocInfo ArgInfo; 1607 ExplicitArgs.addArgument(TemplateArgumentLoc(Arg, ArgInfo)); 1608 } 1609 return BuildLiteralOperatorCall(R, OpNameInfo, None, StringTokLocs.back(), 1610 &ExplicitArgs); 1611 } 1612 case LOLR_Raw: 1613 case LOLR_Template: 1614 llvm_unreachable("unexpected literal operator lookup result"); 1615 case LOLR_Error: 1616 return ExprError(); 1617 } 1618 llvm_unreachable("unexpected literal operator lookup result"); 1619 } 1620 1621 ExprResult 1622 Sema::BuildDeclRefExpr(ValueDecl *D, QualType Ty, ExprValueKind VK, 1623 SourceLocation Loc, 1624 const CXXScopeSpec *SS) { 1625 DeclarationNameInfo NameInfo(D->getDeclName(), Loc); 1626 return BuildDeclRefExpr(D, Ty, VK, NameInfo, SS); 1627 } 1628 1629 /// BuildDeclRefExpr - Build an expression that references a 1630 /// declaration that does not require a closure capture. 1631 ExprResult 1632 Sema::BuildDeclRefExpr(ValueDecl *D, QualType Ty, ExprValueKind VK, 1633 const DeclarationNameInfo &NameInfo, 1634 const CXXScopeSpec *SS, NamedDecl *FoundD, 1635 const TemplateArgumentListInfo *TemplateArgs) { 1636 if (getLangOpts().CUDA) 1637 if (const FunctionDecl *Caller = dyn_cast<FunctionDecl>(CurContext)) 1638 if (const FunctionDecl *Callee = dyn_cast<FunctionDecl>(D)) { 1639 CUDAFunctionTarget CallerTarget = IdentifyCUDATarget(Caller), 1640 CalleeTarget = IdentifyCUDATarget(Callee); 1641 if (CheckCUDATarget(CallerTarget, CalleeTarget)) { 1642 Diag(NameInfo.getLoc(), diag::err_ref_bad_target) 1643 << CalleeTarget << D->getIdentifier() << CallerTarget; 1644 Diag(D->getLocation(), diag::note_previous_decl) 1645 << D->getIdentifier(); 1646 return ExprError(); 1647 } 1648 } 1649 1650 bool refersToEnclosingScope = 1651 (CurContext != D->getDeclContext() && 1652 D->getDeclContext()->isFunctionOrMethod()) || 1653 (isa<VarDecl>(D) && 1654 cast<VarDecl>(D)->isInitCapture()); 1655 1656 DeclRefExpr *E; 1657 if (isa<VarTemplateSpecializationDecl>(D)) { 1658 VarTemplateSpecializationDecl *VarSpec = 1659 cast<VarTemplateSpecializationDecl>(D); 1660 1661 E = DeclRefExpr::Create( 1662 Context, 1663 SS ? SS->getWithLocInContext(Context) : NestedNameSpecifierLoc(), 1664 VarSpec->getTemplateKeywordLoc(), D, refersToEnclosingScope, 1665 NameInfo.getLoc(), Ty, VK, FoundD, TemplateArgs); 1666 } else { 1667 assert(!TemplateArgs && "No template arguments for non-variable" 1668 " template specialization references"); 1669 E = DeclRefExpr::Create( 1670 Context, 1671 SS ? SS->getWithLocInContext(Context) : NestedNameSpecifierLoc(), 1672 SourceLocation(), D, refersToEnclosingScope, NameInfo, Ty, VK, FoundD); 1673 } 1674 1675 MarkDeclRefReferenced(E); 1676 1677 if (getLangOpts().ObjCARCWeak && isa<VarDecl>(D) && 1678 Ty.getObjCLifetime() == Qualifiers::OCL_Weak && 1679 !Diags.isIgnored(diag::warn_arc_repeated_use_of_weak, E->getLocStart())) 1680 recordUseOfEvaluatedWeak(E); 1681 1682 // Just in case we're building an illegal pointer-to-member. 1683 FieldDecl *FD = dyn_cast<FieldDecl>(D); 1684 if (FD && FD->isBitField()) 1685 E->setObjectKind(OK_BitField); 1686 1687 return E; 1688 } 1689 1690 /// Decomposes the given name into a DeclarationNameInfo, its location, and 1691 /// possibly a list of template arguments. 1692 /// 1693 /// If this produces template arguments, it is permitted to call 1694 /// DecomposeTemplateName. 1695 /// 1696 /// This actually loses a lot of source location information for 1697 /// non-standard name kinds; we should consider preserving that in 1698 /// some way. 1699 void 1700 Sema::DecomposeUnqualifiedId(const UnqualifiedId &Id, 1701 TemplateArgumentListInfo &Buffer, 1702 DeclarationNameInfo &NameInfo, 1703 const TemplateArgumentListInfo *&TemplateArgs) { 1704 if (Id.getKind() == UnqualifiedId::IK_TemplateId) { 1705 Buffer.setLAngleLoc(Id.TemplateId->LAngleLoc); 1706 Buffer.setRAngleLoc(Id.TemplateId->RAngleLoc); 1707 1708 ASTTemplateArgsPtr TemplateArgsPtr(Id.TemplateId->getTemplateArgs(), 1709 Id.TemplateId->NumArgs); 1710 translateTemplateArguments(TemplateArgsPtr, Buffer); 1711 1712 TemplateName TName = Id.TemplateId->Template.get(); 1713 SourceLocation TNameLoc = Id.TemplateId->TemplateNameLoc; 1714 NameInfo = Context.getNameForTemplate(TName, TNameLoc); 1715 TemplateArgs = &Buffer; 1716 } else { 1717 NameInfo = GetNameFromUnqualifiedId(Id); 1718 TemplateArgs = nullptr; 1719 } 1720 } 1721 1722 /// Diagnose an empty lookup. 1723 /// 1724 /// \return false if new lookup candidates were found 1725 bool Sema::DiagnoseEmptyLookup(Scope *S, CXXScopeSpec &SS, LookupResult &R, 1726 CorrectionCandidateCallback &CCC, 1727 TemplateArgumentListInfo *ExplicitTemplateArgs, 1728 ArrayRef<Expr *> Args) { 1729 DeclarationName Name = R.getLookupName(); 1730 1731 unsigned diagnostic = diag::err_undeclared_var_use; 1732 unsigned diagnostic_suggest = diag::err_undeclared_var_use_suggest; 1733 if (Name.getNameKind() == DeclarationName::CXXOperatorName || 1734 Name.getNameKind() == DeclarationName::CXXLiteralOperatorName || 1735 Name.getNameKind() == DeclarationName::CXXConversionFunctionName) { 1736 diagnostic = diag::err_undeclared_use; 1737 diagnostic_suggest = diag::err_undeclared_use_suggest; 1738 } 1739 1740 // If the original lookup was an unqualified lookup, fake an 1741 // unqualified lookup. This is useful when (for example) the 1742 // original lookup would not have found something because it was a 1743 // dependent name. 1744 DeclContext *DC = (SS.isEmpty() && !CallsUndergoingInstantiation.empty()) 1745 ? CurContext : nullptr; 1746 while (DC) { 1747 if (isa<CXXRecordDecl>(DC)) { 1748 LookupQualifiedName(R, DC); 1749 1750 if (!R.empty()) { 1751 // Don't give errors about ambiguities in this lookup. 1752 R.suppressDiagnostics(); 1753 1754 // During a default argument instantiation the CurContext points 1755 // to a CXXMethodDecl; but we can't apply a this-> fixit inside a 1756 // function parameter list, hence add an explicit check. 1757 bool isDefaultArgument = !ActiveTemplateInstantiations.empty() && 1758 ActiveTemplateInstantiations.back().Kind == 1759 ActiveTemplateInstantiation::DefaultFunctionArgumentInstantiation; 1760 CXXMethodDecl *CurMethod = dyn_cast<CXXMethodDecl>(CurContext); 1761 bool isInstance = CurMethod && 1762 CurMethod->isInstance() && 1763 DC == CurMethod->getParent() && !isDefaultArgument; 1764 1765 1766 // Give a code modification hint to insert 'this->'. 1767 // TODO: fixit for inserting 'Base<T>::' in the other cases. 1768 // Actually quite difficult! 1769 if (getLangOpts().MSVCCompat) 1770 diagnostic = diag::ext_found_via_dependent_bases_lookup; 1771 if (isInstance) { 1772 Diag(R.getNameLoc(), diagnostic) << Name 1773 << FixItHint::CreateInsertion(R.getNameLoc(), "this->"); 1774 UnresolvedLookupExpr *ULE = cast<UnresolvedLookupExpr>( 1775 CallsUndergoingInstantiation.back()->getCallee()); 1776 1777 CXXMethodDecl *DepMethod; 1778 if (CurMethod->isDependentContext()) 1779 DepMethod = CurMethod; 1780 else if (CurMethod->getTemplatedKind() == 1781 FunctionDecl::TK_FunctionTemplateSpecialization) 1782 DepMethod = cast<CXXMethodDecl>(CurMethod->getPrimaryTemplate()-> 1783 getInstantiatedFromMemberTemplate()->getTemplatedDecl()); 1784 else 1785 DepMethod = cast<CXXMethodDecl>( 1786 CurMethod->getInstantiatedFromMemberFunction()); 1787 assert(DepMethod && "No template pattern found"); 1788 1789 QualType DepThisType = DepMethod->getThisType(Context); 1790 CheckCXXThisCapture(R.getNameLoc()); 1791 CXXThisExpr *DepThis = new (Context) CXXThisExpr( 1792 R.getNameLoc(), DepThisType, false); 1793 TemplateArgumentListInfo TList; 1794 if (ULE->hasExplicitTemplateArgs()) 1795 ULE->copyTemplateArgumentsInto(TList); 1796 1797 CXXScopeSpec SS; 1798 SS.Adopt(ULE->getQualifierLoc()); 1799 CXXDependentScopeMemberExpr *DepExpr = 1800 CXXDependentScopeMemberExpr::Create( 1801 Context, DepThis, DepThisType, true, SourceLocation(), 1802 SS.getWithLocInContext(Context), 1803 ULE->getTemplateKeywordLoc(), nullptr, 1804 R.getLookupNameInfo(), 1805 ULE->hasExplicitTemplateArgs() ? &TList : nullptr); 1806 CallsUndergoingInstantiation.back()->setCallee(DepExpr); 1807 } else { 1808 Diag(R.getNameLoc(), diagnostic) << Name; 1809 } 1810 1811 // Do we really want to note all of these? 1812 for (LookupResult::iterator I = R.begin(), E = R.end(); I != E; ++I) 1813 Diag((*I)->getLocation(), diag::note_dependent_var_use); 1814 1815 // Return true if we are inside a default argument instantiation 1816 // and the found name refers to an instance member function, otherwise 1817 // the function calling DiagnoseEmptyLookup will try to create an 1818 // implicit member call and this is wrong for default argument. 1819 if (isDefaultArgument && ((*R.begin())->isCXXInstanceMember())) { 1820 Diag(R.getNameLoc(), diag::err_member_call_without_object); 1821 return true; 1822 } 1823 1824 // Tell the callee to try to recover. 1825 return false; 1826 } 1827 1828 R.clear(); 1829 } 1830 1831 // In Microsoft mode, if we are performing lookup from within a friend 1832 // function definition declared at class scope then we must set 1833 // DC to the lexical parent to be able to search into the parent 1834 // class. 1835 if (getLangOpts().MSVCCompat && isa<FunctionDecl>(DC) && 1836 cast<FunctionDecl>(DC)->getFriendObjectKind() && 1837 DC->getLexicalParent()->isRecord()) 1838 DC = DC->getLexicalParent(); 1839 else 1840 DC = DC->getParent(); 1841 } 1842 1843 // We didn't find anything, so try to correct for a typo. 1844 TypoCorrection Corrected; 1845 if (S && (Corrected = CorrectTypo(R.getLookupNameInfo(), R.getLookupKind(), 1846 S, &SS, CCC, CTK_ErrorRecovery))) { 1847 std::string CorrectedStr(Corrected.getAsString(getLangOpts())); 1848 bool DroppedSpecifier = 1849 Corrected.WillReplaceSpecifier() && Name.getAsString() == CorrectedStr; 1850 R.setLookupName(Corrected.getCorrection()); 1851 1852 bool AcceptableWithRecovery = false; 1853 bool AcceptableWithoutRecovery = false; 1854 NamedDecl *ND = Corrected.getCorrectionDecl(); 1855 if (ND) { 1856 if (Corrected.isOverloaded()) { 1857 OverloadCandidateSet OCS(R.getNameLoc(), 1858 OverloadCandidateSet::CSK_Normal); 1859 OverloadCandidateSet::iterator Best; 1860 for (TypoCorrection::decl_iterator CD = Corrected.begin(), 1861 CDEnd = Corrected.end(); 1862 CD != CDEnd; ++CD) { 1863 if (FunctionTemplateDecl *FTD = 1864 dyn_cast<FunctionTemplateDecl>(*CD)) 1865 AddTemplateOverloadCandidate( 1866 FTD, DeclAccessPair::make(FTD, AS_none), ExplicitTemplateArgs, 1867 Args, OCS); 1868 else if (FunctionDecl *FD = dyn_cast<FunctionDecl>(*CD)) 1869 if (!ExplicitTemplateArgs || ExplicitTemplateArgs->size() == 0) 1870 AddOverloadCandidate(FD, DeclAccessPair::make(FD, AS_none), 1871 Args, OCS); 1872 } 1873 switch (OCS.BestViableFunction(*this, R.getNameLoc(), Best)) { 1874 case OR_Success: 1875 ND = Best->Function; 1876 Corrected.setCorrectionDecl(ND); 1877 break; 1878 default: 1879 // FIXME: Arbitrarily pick the first declaration for the note. 1880 Corrected.setCorrectionDecl(ND); 1881 break; 1882 } 1883 } 1884 R.addDecl(ND); 1885 if (getLangOpts().CPlusPlus && ND->isCXXClassMember()) { 1886 CXXRecordDecl *Record = nullptr; 1887 if (Corrected.getCorrectionSpecifier()) { 1888 const Type *Ty = Corrected.getCorrectionSpecifier()->getAsType(); 1889 Record = Ty->getAsCXXRecordDecl(); 1890 } 1891 if (!Record) 1892 Record = cast<CXXRecordDecl>( 1893 ND->getDeclContext()->getRedeclContext()); 1894 R.setNamingClass(Record); 1895 } 1896 1897 AcceptableWithRecovery = 1898 isa<ValueDecl>(ND) || isa<FunctionTemplateDecl>(ND); 1899 // FIXME: If we ended up with a typo for a type name or 1900 // Objective-C class name, we're in trouble because the parser 1901 // is in the wrong place to recover. Suggest the typo 1902 // correction, but don't make it a fix-it since we're not going 1903 // to recover well anyway. 1904 AcceptableWithoutRecovery = 1905 isa<TypeDecl>(ND) || isa<ObjCInterfaceDecl>(ND); 1906 } else { 1907 // FIXME: We found a keyword. Suggest it, but don't provide a fix-it 1908 // because we aren't able to recover. 1909 AcceptableWithoutRecovery = true; 1910 } 1911 1912 if (AcceptableWithRecovery || AcceptableWithoutRecovery) { 1913 unsigned NoteID = (Corrected.getCorrectionDecl() && 1914 isa<ImplicitParamDecl>(Corrected.getCorrectionDecl())) 1915 ? diag::note_implicit_param_decl 1916 : diag::note_previous_decl; 1917 if (SS.isEmpty()) 1918 diagnoseTypo(Corrected, PDiag(diagnostic_suggest) << Name, 1919 PDiag(NoteID), AcceptableWithRecovery); 1920 else 1921 diagnoseTypo(Corrected, PDiag(diag::err_no_member_suggest) 1922 << Name << computeDeclContext(SS, false) 1923 << DroppedSpecifier << SS.getRange(), 1924 PDiag(NoteID), AcceptableWithRecovery); 1925 1926 // Tell the callee whether to try to recover. 1927 return !AcceptableWithRecovery; 1928 } 1929 } 1930 R.clear(); 1931 1932 // Emit a special diagnostic for failed member lookups. 1933 // FIXME: computing the declaration context might fail here (?) 1934 if (!SS.isEmpty()) { 1935 Diag(R.getNameLoc(), diag::err_no_member) 1936 << Name << computeDeclContext(SS, false) 1937 << SS.getRange(); 1938 return true; 1939 } 1940 1941 // Give up, we can't recover. 1942 Diag(R.getNameLoc(), diagnostic) << Name; 1943 return true; 1944 } 1945 1946 /// In Microsoft mode, if we are inside a template class whose parent class has 1947 /// dependent base classes, and we can't resolve an unqualified identifier, then 1948 /// assume the identifier is a member of a dependent base class. We can only 1949 /// recover successfully in static methods, instance methods, and other contexts 1950 /// where 'this' is available. This doesn't precisely match MSVC's 1951 /// instantiation model, but it's close enough. 1952 static Expr * 1953 recoverFromMSUnqualifiedLookup(Sema &S, ASTContext &Context, 1954 DeclarationNameInfo &NameInfo, 1955 SourceLocation TemplateKWLoc, 1956 const TemplateArgumentListInfo *TemplateArgs) { 1957 // Only try to recover from lookup into dependent bases in static methods or 1958 // contexts where 'this' is available. 1959 QualType ThisType = S.getCurrentThisType(); 1960 const CXXRecordDecl *RD = nullptr; 1961 if (!ThisType.isNull()) 1962 RD = ThisType->getPointeeType()->getAsCXXRecordDecl(); 1963 else if (auto *MD = dyn_cast<CXXMethodDecl>(S.CurContext)) 1964 RD = MD->getParent(); 1965 if (!RD || !RD->hasAnyDependentBases()) 1966 return nullptr; 1967 1968 // Diagnose this as unqualified lookup into a dependent base class. If 'this' 1969 // is available, suggest inserting 'this->' as a fixit. 1970 SourceLocation Loc = NameInfo.getLoc(); 1971 auto DB = S.Diag(Loc, diag::ext_undeclared_unqual_id_with_dependent_base); 1972 DB << NameInfo.getName() << RD; 1973 1974 if (!ThisType.isNull()) { 1975 DB << FixItHint::CreateInsertion(Loc, "this->"); 1976 return CXXDependentScopeMemberExpr::Create( 1977 Context, /*This=*/nullptr, ThisType, /*IsArrow=*/true, 1978 /*Op=*/SourceLocation(), NestedNameSpecifierLoc(), TemplateKWLoc, 1979 /*FirstQualifierInScope=*/nullptr, NameInfo, TemplateArgs); 1980 } 1981 1982 // Synthesize a fake NNS that points to the derived class. This will 1983 // perform name lookup during template instantiation. 1984 CXXScopeSpec SS; 1985 auto *NNS = 1986 NestedNameSpecifier::Create(Context, nullptr, true, RD->getTypeForDecl()); 1987 SS.MakeTrivial(Context, NNS, SourceRange(Loc, Loc)); 1988 return DependentScopeDeclRefExpr::Create( 1989 Context, SS.getWithLocInContext(Context), TemplateKWLoc, NameInfo, 1990 TemplateArgs); 1991 } 1992 1993 ExprResult Sema::ActOnIdExpression(Scope *S, 1994 CXXScopeSpec &SS, 1995 SourceLocation TemplateKWLoc, 1996 UnqualifiedId &Id, 1997 bool HasTrailingLParen, 1998 bool IsAddressOfOperand, 1999 CorrectionCandidateCallback *CCC, 2000 bool IsInlineAsmIdentifier) { 2001 assert(!(IsAddressOfOperand && HasTrailingLParen) && 2002 "cannot be direct & operand and have a trailing lparen"); 2003 if (SS.isInvalid()) 2004 return ExprError(); 2005 2006 TemplateArgumentListInfo TemplateArgsBuffer; 2007 2008 // Decompose the UnqualifiedId into the following data. 2009 DeclarationNameInfo NameInfo; 2010 const TemplateArgumentListInfo *TemplateArgs; 2011 DecomposeUnqualifiedId(Id, TemplateArgsBuffer, NameInfo, TemplateArgs); 2012 2013 DeclarationName Name = NameInfo.getName(); 2014 IdentifierInfo *II = Name.getAsIdentifierInfo(); 2015 SourceLocation NameLoc = NameInfo.getLoc(); 2016 2017 // C++ [temp.dep.expr]p3: 2018 // An id-expression is type-dependent if it contains: 2019 // -- an identifier that was declared with a dependent type, 2020 // (note: handled after lookup) 2021 // -- a template-id that is dependent, 2022 // (note: handled in BuildTemplateIdExpr) 2023 // -- a conversion-function-id that specifies a dependent type, 2024 // -- a nested-name-specifier that contains a class-name that 2025 // names a dependent type. 2026 // Determine whether this is a member of an unknown specialization; 2027 // we need to handle these differently. 2028 bool DependentID = false; 2029 if (Name.getNameKind() == DeclarationName::CXXConversionFunctionName && 2030 Name.getCXXNameType()->isDependentType()) { 2031 DependentID = true; 2032 } else if (SS.isSet()) { 2033 if (DeclContext *DC = computeDeclContext(SS, false)) { 2034 if (RequireCompleteDeclContext(SS, DC)) 2035 return ExprError(); 2036 } else { 2037 DependentID = true; 2038 } 2039 } 2040 2041 if (DependentID) 2042 return ActOnDependentIdExpression(SS, TemplateKWLoc, NameInfo, 2043 IsAddressOfOperand, TemplateArgs); 2044 2045 // Perform the required lookup. 2046 LookupResult R(*this, NameInfo, 2047 (Id.getKind() == UnqualifiedId::IK_ImplicitSelfParam) 2048 ? LookupObjCImplicitSelfParam : LookupOrdinaryName); 2049 if (TemplateArgs) { 2050 // Lookup the template name again to correctly establish the context in 2051 // which it was found. This is really unfortunate as we already did the 2052 // lookup to determine that it was a template name in the first place. If 2053 // this becomes a performance hit, we can work harder to preserve those 2054 // results until we get here but it's likely not worth it. 2055 bool MemberOfUnknownSpecialization; 2056 LookupTemplateName(R, S, SS, QualType(), /*EnteringContext=*/false, 2057 MemberOfUnknownSpecialization); 2058 2059 if (MemberOfUnknownSpecialization || 2060 (R.getResultKind() == LookupResult::NotFoundInCurrentInstantiation)) 2061 return ActOnDependentIdExpression(SS, TemplateKWLoc, NameInfo, 2062 IsAddressOfOperand, TemplateArgs); 2063 } else { 2064 bool IvarLookupFollowUp = II && !SS.isSet() && getCurMethodDecl(); 2065 LookupParsedName(R, S, &SS, !IvarLookupFollowUp); 2066 2067 // If the result might be in a dependent base class, this is a dependent 2068 // id-expression. 2069 if (R.getResultKind() == LookupResult::NotFoundInCurrentInstantiation) 2070 return ActOnDependentIdExpression(SS, TemplateKWLoc, NameInfo, 2071 IsAddressOfOperand, TemplateArgs); 2072 2073 // If this reference is in an Objective-C method, then we need to do 2074 // some special Objective-C lookup, too. 2075 if (IvarLookupFollowUp) { 2076 ExprResult E(LookupInObjCMethod(R, S, II, true)); 2077 if (E.isInvalid()) 2078 return ExprError(); 2079 2080 if (Expr *Ex = E.getAs<Expr>()) 2081 return Ex; 2082 } 2083 } 2084 2085 if (R.isAmbiguous()) 2086 return ExprError(); 2087 2088 // This could be an implicitly declared function reference (legal in C90, 2089 // extension in C99, forbidden in C++). 2090 if (R.empty() && HasTrailingLParen && II && !getLangOpts().CPlusPlus) { 2091 NamedDecl *D = ImplicitlyDefineFunction(NameLoc, *II, S); 2092 if (D) R.addDecl(D); 2093 } 2094 2095 // Determine whether this name might be a candidate for 2096 // argument-dependent lookup. 2097 bool ADL = UseArgumentDependentLookup(SS, R, HasTrailingLParen); 2098 2099 if (R.empty() && !ADL) { 2100 if (SS.isEmpty() && getLangOpts().MSVCCompat) { 2101 if (Expr *E = recoverFromMSUnqualifiedLookup(*this, Context, NameInfo, 2102 TemplateKWLoc, TemplateArgs)) 2103 return E; 2104 } 2105 2106 // Don't diagnose an empty lookup for inline assembly. 2107 if (IsInlineAsmIdentifier) 2108 return ExprError(); 2109 2110 // If this name wasn't predeclared and if this is not a function 2111 // call, diagnose the problem. 2112 CorrectionCandidateCallback DefaultValidator; 2113 DefaultValidator.IsAddressOfOperand = IsAddressOfOperand; 2114 assert((!CCC || CCC->IsAddressOfOperand == IsAddressOfOperand) && 2115 "Typo correction callback misconfigured"); 2116 if (DiagnoseEmptyLookup(S, SS, R, CCC ? *CCC : DefaultValidator)) 2117 return ExprError(); 2118 2119 assert(!R.empty() && 2120 "DiagnoseEmptyLookup returned false but added no results"); 2121 2122 // If we found an Objective-C instance variable, let 2123 // LookupInObjCMethod build the appropriate expression to 2124 // reference the ivar. 2125 if (ObjCIvarDecl *Ivar = R.getAsSingle<ObjCIvarDecl>()) { 2126 R.clear(); 2127 ExprResult E(LookupInObjCMethod(R, S, Ivar->getIdentifier())); 2128 // In a hopelessly buggy code, Objective-C instance variable 2129 // lookup fails and no expression will be built to reference it. 2130 if (!E.isInvalid() && !E.get()) 2131 return ExprError(); 2132 return E; 2133 } 2134 } 2135 2136 // This is guaranteed from this point on. 2137 assert(!R.empty() || ADL); 2138 2139 // Check whether this might be a C++ implicit instance member access. 2140 // C++ [class.mfct.non-static]p3: 2141 // When an id-expression that is not part of a class member access 2142 // syntax and not used to form a pointer to member is used in the 2143 // body of a non-static member function of class X, if name lookup 2144 // resolves the name in the id-expression to a non-static non-type 2145 // member of some class C, the id-expression is transformed into a 2146 // class member access expression using (*this) as the 2147 // postfix-expression to the left of the . operator. 2148 // 2149 // But we don't actually need to do this for '&' operands if R 2150 // resolved to a function or overloaded function set, because the 2151 // expression is ill-formed if it actually works out to be a 2152 // non-static member function: 2153 // 2154 // C++ [expr.ref]p4: 2155 // Otherwise, if E1.E2 refers to a non-static member function. . . 2156 // [t]he expression can be used only as the left-hand operand of a 2157 // member function call. 2158 // 2159 // There are other safeguards against such uses, but it's important 2160 // to get this right here so that we don't end up making a 2161 // spuriously dependent expression if we're inside a dependent 2162 // instance method. 2163 if (!R.empty() && (*R.begin())->isCXXClassMember()) { 2164 bool MightBeImplicitMember; 2165 if (!IsAddressOfOperand) 2166 MightBeImplicitMember = true; 2167 else if (!SS.isEmpty()) 2168 MightBeImplicitMember = false; 2169 else if (R.isOverloadedResult()) 2170 MightBeImplicitMember = false; 2171 else if (R.isUnresolvableResult()) 2172 MightBeImplicitMember = true; 2173 else 2174 MightBeImplicitMember = isa<FieldDecl>(R.getFoundDecl()) || 2175 isa<IndirectFieldDecl>(R.getFoundDecl()) || 2176 isa<MSPropertyDecl>(R.getFoundDecl()); 2177 2178 if (MightBeImplicitMember) 2179 return BuildPossibleImplicitMemberExpr(SS, TemplateKWLoc, 2180 R, TemplateArgs); 2181 } 2182 2183 if (TemplateArgs || TemplateKWLoc.isValid()) { 2184 2185 // In C++1y, if this is a variable template id, then check it 2186 // in BuildTemplateIdExpr(). 2187 // The single lookup result must be a variable template declaration. 2188 if (Id.getKind() == UnqualifiedId::IK_TemplateId && Id.TemplateId && 2189 Id.TemplateId->Kind == TNK_Var_template) { 2190 assert(R.getAsSingle<VarTemplateDecl>() && 2191 "There should only be one declaration found."); 2192 } 2193 2194 return BuildTemplateIdExpr(SS, TemplateKWLoc, R, ADL, TemplateArgs); 2195 } 2196 2197 return BuildDeclarationNameExpr(SS, R, ADL); 2198 } 2199 2200 /// BuildQualifiedDeclarationNameExpr - Build a C++ qualified 2201 /// declaration name, generally during template instantiation. 2202 /// There's a large number of things which don't need to be done along 2203 /// this path. 2204 ExprResult 2205 Sema::BuildQualifiedDeclarationNameExpr(CXXScopeSpec &SS, 2206 const DeclarationNameInfo &NameInfo, 2207 bool IsAddressOfOperand, 2208 TypeSourceInfo **RecoveryTSI) { 2209 DeclContext *DC = computeDeclContext(SS, false); 2210 if (!DC) 2211 return BuildDependentDeclRefExpr(SS, /*TemplateKWLoc=*/SourceLocation(), 2212 NameInfo, /*TemplateArgs=*/nullptr); 2213 2214 if (RequireCompleteDeclContext(SS, DC)) 2215 return ExprError(); 2216 2217 LookupResult R(*this, NameInfo, LookupOrdinaryName); 2218 LookupQualifiedName(R, DC); 2219 2220 if (R.isAmbiguous()) 2221 return ExprError(); 2222 2223 if (R.getResultKind() == LookupResult::NotFoundInCurrentInstantiation) 2224 return BuildDependentDeclRefExpr(SS, /*TemplateKWLoc=*/SourceLocation(), 2225 NameInfo, /*TemplateArgs=*/nullptr); 2226 2227 if (R.empty()) { 2228 Diag(NameInfo.getLoc(), diag::err_no_member) 2229 << NameInfo.getName() << DC << SS.getRange(); 2230 return ExprError(); 2231 } 2232 2233 if (const TypeDecl *TD = R.getAsSingle<TypeDecl>()) { 2234 // Diagnose a missing typename if this resolved unambiguously to a type in 2235 // a dependent context. If we can recover with a type, downgrade this to 2236 // a warning in Microsoft compatibility mode. 2237 unsigned DiagID = diag::err_typename_missing; 2238 if (RecoveryTSI && getLangOpts().MSVCCompat) 2239 DiagID = diag::ext_typename_missing; 2240 SourceLocation Loc = SS.getBeginLoc(); 2241 auto D = Diag(Loc, DiagID); 2242 D << SS.getScopeRep() << NameInfo.getName().getAsString() 2243 << SourceRange(Loc, NameInfo.getEndLoc()); 2244 2245 // Don't recover if the caller isn't expecting us to or if we're in a SFINAE 2246 // context. 2247 if (!RecoveryTSI) 2248 return ExprError(); 2249 2250 // Only issue the fixit if we're prepared to recover. 2251 D << FixItHint::CreateInsertion(Loc, "typename "); 2252 2253 // Recover by pretending this was an elaborated type. 2254 QualType Ty = Context.getTypeDeclType(TD); 2255 TypeLocBuilder TLB; 2256 TLB.pushTypeSpec(Ty).setNameLoc(NameInfo.getLoc()); 2257 2258 QualType ET = getElaboratedType(ETK_None, SS, Ty); 2259 ElaboratedTypeLoc QTL = TLB.push<ElaboratedTypeLoc>(ET); 2260 QTL.setElaboratedKeywordLoc(SourceLocation()); 2261 QTL.setQualifierLoc(SS.getWithLocInContext(Context)); 2262 2263 *RecoveryTSI = TLB.getTypeSourceInfo(Context, ET); 2264 2265 return ExprEmpty(); 2266 } 2267 2268 // Defend against this resolving to an implicit member access. We usually 2269 // won't get here if this might be a legitimate a class member (we end up in 2270 // BuildMemberReferenceExpr instead), but this can be valid if we're forming 2271 // a pointer-to-member or in an unevaluated context in C++11. 2272 if (!R.empty() && (*R.begin())->isCXXClassMember() && !IsAddressOfOperand) 2273 return BuildPossibleImplicitMemberExpr(SS, 2274 /*TemplateKWLoc=*/SourceLocation(), 2275 R, /*TemplateArgs=*/nullptr); 2276 2277 return BuildDeclarationNameExpr(SS, R, /* ADL */ false); 2278 } 2279 2280 /// LookupInObjCMethod - The parser has read a name in, and Sema has 2281 /// detected that we're currently inside an ObjC method. Perform some 2282 /// additional lookup. 2283 /// 2284 /// Ideally, most of this would be done by lookup, but there's 2285 /// actually quite a lot of extra work involved. 2286 /// 2287 /// Returns a null sentinel to indicate trivial success. 2288 ExprResult 2289 Sema::LookupInObjCMethod(LookupResult &Lookup, Scope *S, 2290 IdentifierInfo *II, bool AllowBuiltinCreation) { 2291 SourceLocation Loc = Lookup.getNameLoc(); 2292 ObjCMethodDecl *CurMethod = getCurMethodDecl(); 2293 2294 // Check for error condition which is already reported. 2295 if (!CurMethod) 2296 return ExprError(); 2297 2298 // There are two cases to handle here. 1) scoped lookup could have failed, 2299 // in which case we should look for an ivar. 2) scoped lookup could have 2300 // found a decl, but that decl is outside the current instance method (i.e. 2301 // a global variable). In these two cases, we do a lookup for an ivar with 2302 // this name, if the lookup sucedes, we replace it our current decl. 2303 2304 // If we're in a class method, we don't normally want to look for 2305 // ivars. But if we don't find anything else, and there's an 2306 // ivar, that's an error. 2307 bool IsClassMethod = CurMethod->isClassMethod(); 2308 2309 bool LookForIvars; 2310 if (Lookup.empty()) 2311 LookForIvars = true; 2312 else if (IsClassMethod) 2313 LookForIvars = false; 2314 else 2315 LookForIvars = (Lookup.isSingleResult() && 2316 Lookup.getFoundDecl()->isDefinedOutsideFunctionOrMethod()); 2317 ObjCInterfaceDecl *IFace = nullptr; 2318 if (LookForIvars) { 2319 IFace = CurMethod->getClassInterface(); 2320 ObjCInterfaceDecl *ClassDeclared; 2321 ObjCIvarDecl *IV = nullptr; 2322 if (IFace && (IV = IFace->lookupInstanceVariable(II, ClassDeclared))) { 2323 // Diagnose using an ivar in a class method. 2324 if (IsClassMethod) 2325 return ExprError(Diag(Loc, diag::error_ivar_use_in_class_method) 2326 << IV->getDeclName()); 2327 2328 // If we're referencing an invalid decl, just return this as a silent 2329 // error node. The error diagnostic was already emitted on the decl. 2330 if (IV->isInvalidDecl()) 2331 return ExprError(); 2332 2333 // Check if referencing a field with __attribute__((deprecated)). 2334 if (DiagnoseUseOfDecl(IV, Loc)) 2335 return ExprError(); 2336 2337 // Diagnose the use of an ivar outside of the declaring class. 2338 if (IV->getAccessControl() == ObjCIvarDecl::Private && 2339 !declaresSameEntity(ClassDeclared, IFace) && 2340 !getLangOpts().DebuggerSupport) 2341 Diag(Loc, diag::error_private_ivar_access) << IV->getDeclName(); 2342 2343 // FIXME: This should use a new expr for a direct reference, don't 2344 // turn this into Self->ivar, just return a BareIVarExpr or something. 2345 IdentifierInfo &II = Context.Idents.get("self"); 2346 UnqualifiedId SelfName; 2347 SelfName.setIdentifier(&II, SourceLocation()); 2348 SelfName.setKind(UnqualifiedId::IK_ImplicitSelfParam); 2349 CXXScopeSpec SelfScopeSpec; 2350 SourceLocation TemplateKWLoc; 2351 ExprResult SelfExpr = ActOnIdExpression(S, SelfScopeSpec, TemplateKWLoc, 2352 SelfName, false, false); 2353 if (SelfExpr.isInvalid()) 2354 return ExprError(); 2355 2356 SelfExpr = DefaultLvalueConversion(SelfExpr.get()); 2357 if (SelfExpr.isInvalid()) 2358 return ExprError(); 2359 2360 MarkAnyDeclReferenced(Loc, IV, true); 2361 2362 ObjCMethodFamily MF = CurMethod->getMethodFamily(); 2363 if (MF != OMF_init && MF != OMF_dealloc && MF != OMF_finalize && 2364 !IvarBacksCurrentMethodAccessor(IFace, CurMethod, IV)) 2365 Diag(Loc, diag::warn_direct_ivar_access) << IV->getDeclName(); 2366 2367 ObjCIvarRefExpr *Result = new (Context) 2368 ObjCIvarRefExpr(IV, IV->getType(), Loc, IV->getLocation(), 2369 SelfExpr.get(), true, true); 2370 2371 if (getLangOpts().ObjCAutoRefCount) { 2372 if (IV->getType().getObjCLifetime() == Qualifiers::OCL_Weak) { 2373 if (!Diags.isIgnored(diag::warn_arc_repeated_use_of_weak, Loc)) 2374 recordUseOfEvaluatedWeak(Result); 2375 } 2376 if (CurContext->isClosure()) 2377 Diag(Loc, diag::warn_implicitly_retains_self) 2378 << FixItHint::CreateInsertion(Loc, "self->"); 2379 } 2380 2381 return Result; 2382 } 2383 } else if (CurMethod->isInstanceMethod()) { 2384 // We should warn if a local variable hides an ivar. 2385 if (ObjCInterfaceDecl *IFace = CurMethod->getClassInterface()) { 2386 ObjCInterfaceDecl *ClassDeclared; 2387 if (ObjCIvarDecl *IV = IFace->lookupInstanceVariable(II, ClassDeclared)) { 2388 if (IV->getAccessControl() != ObjCIvarDecl::Private || 2389 declaresSameEntity(IFace, ClassDeclared)) 2390 Diag(Loc, diag::warn_ivar_use_hidden) << IV->getDeclName(); 2391 } 2392 } 2393 } else if (Lookup.isSingleResult() && 2394 Lookup.getFoundDecl()->isDefinedOutsideFunctionOrMethod()) { 2395 // If accessing a stand-alone ivar in a class method, this is an error. 2396 if (const ObjCIvarDecl *IV = dyn_cast<ObjCIvarDecl>(Lookup.getFoundDecl())) 2397 return ExprError(Diag(Loc, diag::error_ivar_use_in_class_method) 2398 << IV->getDeclName()); 2399 } 2400 2401 if (Lookup.empty() && II && AllowBuiltinCreation) { 2402 // FIXME. Consolidate this with similar code in LookupName. 2403 if (unsigned BuiltinID = II->getBuiltinID()) { 2404 if (!(getLangOpts().CPlusPlus && 2405 Context.BuiltinInfo.isPredefinedLibFunction(BuiltinID))) { 2406 NamedDecl *D = LazilyCreateBuiltin((IdentifierInfo *)II, BuiltinID, 2407 S, Lookup.isForRedeclaration(), 2408 Lookup.getNameLoc()); 2409 if (D) Lookup.addDecl(D); 2410 } 2411 } 2412 } 2413 // Sentinel value saying that we didn't do anything special. 2414 return ExprResult((Expr *)nullptr); 2415 } 2416 2417 /// \brief Cast a base object to a member's actual type. 2418 /// 2419 /// Logically this happens in three phases: 2420 /// 2421 /// * First we cast from the base type to the naming class. 2422 /// The naming class is the class into which we were looking 2423 /// when we found the member; it's the qualifier type if a 2424 /// qualifier was provided, and otherwise it's the base type. 2425 /// 2426 /// * Next we cast from the naming class to the declaring class. 2427 /// If the member we found was brought into a class's scope by 2428 /// a using declaration, this is that class; otherwise it's 2429 /// the class declaring the member. 2430 /// 2431 /// * Finally we cast from the declaring class to the "true" 2432 /// declaring class of the member. This conversion does not 2433 /// obey access control. 2434 ExprResult 2435 Sema::PerformObjectMemberConversion(Expr *From, 2436 NestedNameSpecifier *Qualifier, 2437 NamedDecl *FoundDecl, 2438 NamedDecl *Member) { 2439 CXXRecordDecl *RD = dyn_cast<CXXRecordDecl>(Member->getDeclContext()); 2440 if (!RD) 2441 return From; 2442 2443 QualType DestRecordType; 2444 QualType DestType; 2445 QualType FromRecordType; 2446 QualType FromType = From->getType(); 2447 bool PointerConversions = false; 2448 if (isa<FieldDecl>(Member)) { 2449 DestRecordType = Context.getCanonicalType(Context.getTypeDeclType(RD)); 2450 2451 if (FromType->getAs<PointerType>()) { 2452 DestType = Context.getPointerType(DestRecordType); 2453 FromRecordType = FromType->getPointeeType(); 2454 PointerConversions = true; 2455 } else { 2456 DestType = DestRecordType; 2457 FromRecordType = FromType; 2458 } 2459 } else if (CXXMethodDecl *Method = dyn_cast<CXXMethodDecl>(Member)) { 2460 if (Method->isStatic()) 2461 return From; 2462 2463 DestType = Method->getThisType(Context); 2464 DestRecordType = DestType->getPointeeType(); 2465 2466 if (FromType->getAs<PointerType>()) { 2467 FromRecordType = FromType->getPointeeType(); 2468 PointerConversions = true; 2469 } else { 2470 FromRecordType = FromType; 2471 DestType = DestRecordType; 2472 } 2473 } else { 2474 // No conversion necessary. 2475 return From; 2476 } 2477 2478 if (DestType->isDependentType() || FromType->isDependentType()) 2479 return From; 2480 2481 // If the unqualified types are the same, no conversion is necessary. 2482 if (Context.hasSameUnqualifiedType(FromRecordType, DestRecordType)) 2483 return From; 2484 2485 SourceRange FromRange = From->getSourceRange(); 2486 SourceLocation FromLoc = FromRange.getBegin(); 2487 2488 ExprValueKind VK = From->getValueKind(); 2489 2490 // C++ [class.member.lookup]p8: 2491 // [...] Ambiguities can often be resolved by qualifying a name with its 2492 // class name. 2493 // 2494 // If the member was a qualified name and the qualified referred to a 2495 // specific base subobject type, we'll cast to that intermediate type 2496 // first and then to the object in which the member is declared. That allows 2497 // one to resolve ambiguities in, e.g., a diamond-shaped hierarchy such as: 2498 // 2499 // class Base { public: int x; }; 2500 // class Derived1 : public Base { }; 2501 // class Derived2 : public Base { }; 2502 // class VeryDerived : public Derived1, public Derived2 { void f(); }; 2503 // 2504 // void VeryDerived::f() { 2505 // x = 17; // error: ambiguous base subobjects 2506 // Derived1::x = 17; // okay, pick the Base subobject of Derived1 2507 // } 2508 if (Qualifier && Qualifier->getAsType()) { 2509 QualType QType = QualType(Qualifier->getAsType(), 0); 2510 assert(QType->isRecordType() && "lookup done with non-record type"); 2511 2512 QualType QRecordType = QualType(QType->getAs<RecordType>(), 0); 2513 2514 // In C++98, the qualifier type doesn't actually have to be a base 2515 // type of the object type, in which case we just ignore it. 2516 // Otherwise build the appropriate casts. 2517 if (IsDerivedFrom(FromRecordType, QRecordType)) { 2518 CXXCastPath BasePath; 2519 if (CheckDerivedToBaseConversion(FromRecordType, QRecordType, 2520 FromLoc, FromRange, &BasePath)) 2521 return ExprError(); 2522 2523 if (PointerConversions) 2524 QType = Context.getPointerType(QType); 2525 From = ImpCastExprToType(From, QType, CK_UncheckedDerivedToBase, 2526 VK, &BasePath).get(); 2527 2528 FromType = QType; 2529 FromRecordType = QRecordType; 2530 2531 // If the qualifier type was the same as the destination type, 2532 // we're done. 2533 if (Context.hasSameUnqualifiedType(FromRecordType, DestRecordType)) 2534 return From; 2535 } 2536 } 2537 2538 bool IgnoreAccess = false; 2539 2540 // If we actually found the member through a using declaration, cast 2541 // down to the using declaration's type. 2542 // 2543 // Pointer equality is fine here because only one declaration of a 2544 // class ever has member declarations. 2545 if (FoundDecl->getDeclContext() != Member->getDeclContext()) { 2546 assert(isa<UsingShadowDecl>(FoundDecl)); 2547 QualType URecordType = Context.getTypeDeclType( 2548 cast<CXXRecordDecl>(FoundDecl->getDeclContext())); 2549 2550 // We only need to do this if the naming-class to declaring-class 2551 // conversion is non-trivial. 2552 if (!Context.hasSameUnqualifiedType(FromRecordType, URecordType)) { 2553 assert(IsDerivedFrom(FromRecordType, URecordType)); 2554 CXXCastPath BasePath; 2555 if (CheckDerivedToBaseConversion(FromRecordType, URecordType, 2556 FromLoc, FromRange, &BasePath)) 2557 return ExprError(); 2558 2559 QualType UType = URecordType; 2560 if (PointerConversions) 2561 UType = Context.getPointerType(UType); 2562 From = ImpCastExprToType(From, UType, CK_UncheckedDerivedToBase, 2563 VK, &BasePath).get(); 2564 FromType = UType; 2565 FromRecordType = URecordType; 2566 } 2567 2568 // We don't do access control for the conversion from the 2569 // declaring class to the true declaring class. 2570 IgnoreAccess = true; 2571 } 2572 2573 CXXCastPath BasePath; 2574 if (CheckDerivedToBaseConversion(FromRecordType, DestRecordType, 2575 FromLoc, FromRange, &BasePath, 2576 IgnoreAccess)) 2577 return ExprError(); 2578 2579 return ImpCastExprToType(From, DestType, CK_UncheckedDerivedToBase, 2580 VK, &BasePath); 2581 } 2582 2583 bool Sema::UseArgumentDependentLookup(const CXXScopeSpec &SS, 2584 const LookupResult &R, 2585 bool HasTrailingLParen) { 2586 // Only when used directly as the postfix-expression of a call. 2587 if (!HasTrailingLParen) 2588 return false; 2589 2590 // Never if a scope specifier was provided. 2591 if (SS.isSet()) 2592 return false; 2593 2594 // Only in C++ or ObjC++. 2595 if (!getLangOpts().CPlusPlus) 2596 return false; 2597 2598 // Turn off ADL when we find certain kinds of declarations during 2599 // normal lookup: 2600 for (LookupResult::iterator I = R.begin(), E = R.end(); I != E; ++I) { 2601 NamedDecl *D = *I; 2602 2603 // C++0x [basic.lookup.argdep]p3: 2604 // -- a declaration of a class member 2605 // Since using decls preserve this property, we check this on the 2606 // original decl. 2607 if (D->isCXXClassMember()) 2608 return false; 2609 2610 // C++0x [basic.lookup.argdep]p3: 2611 // -- a block-scope function declaration that is not a 2612 // using-declaration 2613 // NOTE: we also trigger this for function templates (in fact, we 2614 // don't check the decl type at all, since all other decl types 2615 // turn off ADL anyway). 2616 if (isa<UsingShadowDecl>(D)) 2617 D = cast<UsingShadowDecl>(D)->getTargetDecl(); 2618 else if (D->getLexicalDeclContext()->isFunctionOrMethod()) 2619 return false; 2620 2621 // C++0x [basic.lookup.argdep]p3: 2622 // -- a declaration that is neither a function or a function 2623 // template 2624 // And also for builtin functions. 2625 if (isa<FunctionDecl>(D)) { 2626 FunctionDecl *FDecl = cast<FunctionDecl>(D); 2627 2628 // But also builtin functions. 2629 if (FDecl->getBuiltinID() && FDecl->isImplicit()) 2630 return false; 2631 } else if (!isa<FunctionTemplateDecl>(D)) 2632 return false; 2633 } 2634 2635 return true; 2636 } 2637 2638 2639 /// Diagnoses obvious problems with the use of the given declaration 2640 /// as an expression. This is only actually called for lookups that 2641 /// were not overloaded, and it doesn't promise that the declaration 2642 /// will in fact be used. 2643 static bool CheckDeclInExpr(Sema &S, SourceLocation Loc, NamedDecl *D) { 2644 if (isa<TypedefNameDecl>(D)) { 2645 S.Diag(Loc, diag::err_unexpected_typedef) << D->getDeclName(); 2646 return true; 2647 } 2648 2649 if (isa<ObjCInterfaceDecl>(D)) { 2650 S.Diag(Loc, diag::err_unexpected_interface) << D->getDeclName(); 2651 return true; 2652 } 2653 2654 if (isa<NamespaceDecl>(D)) { 2655 S.Diag(Loc, diag::err_unexpected_namespace) << D->getDeclName(); 2656 return true; 2657 } 2658 2659 return false; 2660 } 2661 2662 ExprResult 2663 Sema::BuildDeclarationNameExpr(const CXXScopeSpec &SS, 2664 LookupResult &R, 2665 bool NeedsADL) { 2666 // If this is a single, fully-resolved result and we don't need ADL, 2667 // just build an ordinary singleton decl ref. 2668 if (!NeedsADL && R.isSingleResult() && !R.getAsSingle<FunctionTemplateDecl>()) 2669 return BuildDeclarationNameExpr(SS, R.getLookupNameInfo(), R.getFoundDecl(), 2670 R.getRepresentativeDecl()); 2671 2672 // We only need to check the declaration if there's exactly one 2673 // result, because in the overloaded case the results can only be 2674 // functions and function templates. 2675 if (R.isSingleResult() && 2676 CheckDeclInExpr(*this, R.getNameLoc(), R.getFoundDecl())) 2677 return ExprError(); 2678 2679 // Otherwise, just build an unresolved lookup expression. Suppress 2680 // any lookup-related diagnostics; we'll hash these out later, when 2681 // we've picked a target. 2682 R.suppressDiagnostics(); 2683 2684 UnresolvedLookupExpr *ULE 2685 = UnresolvedLookupExpr::Create(Context, R.getNamingClass(), 2686 SS.getWithLocInContext(Context), 2687 R.getLookupNameInfo(), 2688 NeedsADL, R.isOverloadedResult(), 2689 R.begin(), R.end()); 2690 2691 return ULE; 2692 } 2693 2694 /// \brief Complete semantic analysis for a reference to the given declaration. 2695 ExprResult Sema::BuildDeclarationNameExpr( 2696 const CXXScopeSpec &SS, const DeclarationNameInfo &NameInfo, NamedDecl *D, 2697 NamedDecl *FoundD, const TemplateArgumentListInfo *TemplateArgs) { 2698 assert(D && "Cannot refer to a NULL declaration"); 2699 assert(!isa<FunctionTemplateDecl>(D) && 2700 "Cannot refer unambiguously to a function template"); 2701 2702 SourceLocation Loc = NameInfo.getLoc(); 2703 if (CheckDeclInExpr(*this, Loc, D)) 2704 return ExprError(); 2705 2706 if (TemplateDecl *Template = dyn_cast<TemplateDecl>(D)) { 2707 // Specifically diagnose references to class templates that are missing 2708 // a template argument list. 2709 Diag(Loc, diag::err_template_decl_ref) << (isa<VarTemplateDecl>(D) ? 1 : 0) 2710 << Template << SS.getRange(); 2711 Diag(Template->getLocation(), diag::note_template_decl_here); 2712 return ExprError(); 2713 } 2714 2715 // Make sure that we're referring to a value. 2716 ValueDecl *VD = dyn_cast<ValueDecl>(D); 2717 if (!VD) { 2718 Diag(Loc, diag::err_ref_non_value) 2719 << D << SS.getRange(); 2720 Diag(D->getLocation(), diag::note_declared_at); 2721 return ExprError(); 2722 } 2723 2724 // Check whether this declaration can be used. Note that we suppress 2725 // this check when we're going to perform argument-dependent lookup 2726 // on this function name, because this might not be the function 2727 // that overload resolution actually selects. 2728 if (DiagnoseUseOfDecl(VD, Loc)) 2729 return ExprError(); 2730 2731 // Only create DeclRefExpr's for valid Decl's. 2732 if (VD->isInvalidDecl()) 2733 return ExprError(); 2734 2735 // Handle members of anonymous structs and unions. If we got here, 2736 // and the reference is to a class member indirect field, then this 2737 // must be the subject of a pointer-to-member expression. 2738 if (IndirectFieldDecl *indirectField = dyn_cast<IndirectFieldDecl>(VD)) 2739 if (!indirectField->isCXXClassMember()) 2740 return BuildAnonymousStructUnionMemberReference(SS, NameInfo.getLoc(), 2741 indirectField); 2742 2743 { 2744 QualType type = VD->getType(); 2745 ExprValueKind valueKind = VK_RValue; 2746 2747 switch (D->getKind()) { 2748 // Ignore all the non-ValueDecl kinds. 2749 #define ABSTRACT_DECL(kind) 2750 #define VALUE(type, base) 2751 #define DECL(type, base) \ 2752 case Decl::type: 2753 #include "clang/AST/DeclNodes.inc" 2754 llvm_unreachable("invalid value decl kind"); 2755 2756 // These shouldn't make it here. 2757 case Decl::ObjCAtDefsField: 2758 case Decl::ObjCIvar: 2759 llvm_unreachable("forming non-member reference to ivar?"); 2760 2761 // Enum constants are always r-values and never references. 2762 // Unresolved using declarations are dependent. 2763 case Decl::EnumConstant: 2764 case Decl::UnresolvedUsingValue: 2765 valueKind = VK_RValue; 2766 break; 2767 2768 // Fields and indirect fields that got here must be for 2769 // pointer-to-member expressions; we just call them l-values for 2770 // internal consistency, because this subexpression doesn't really 2771 // exist in the high-level semantics. 2772 case Decl::Field: 2773 case Decl::IndirectField: 2774 assert(getLangOpts().CPlusPlus && 2775 "building reference to field in C?"); 2776 2777 // These can't have reference type in well-formed programs, but 2778 // for internal consistency we do this anyway. 2779 type = type.getNonReferenceType(); 2780 valueKind = VK_LValue; 2781 break; 2782 2783 // Non-type template parameters are either l-values or r-values 2784 // depending on the type. 2785 case Decl::NonTypeTemplateParm: { 2786 if (const ReferenceType *reftype = type->getAs<ReferenceType>()) { 2787 type = reftype->getPointeeType(); 2788 valueKind = VK_LValue; // even if the parameter is an r-value reference 2789 break; 2790 } 2791 2792 // For non-references, we need to strip qualifiers just in case 2793 // the template parameter was declared as 'const int' or whatever. 2794 valueKind = VK_RValue; 2795 type = type.getUnqualifiedType(); 2796 break; 2797 } 2798 2799 case Decl::Var: 2800 case Decl::VarTemplateSpecialization: 2801 case Decl::VarTemplatePartialSpecialization: 2802 // In C, "extern void blah;" is valid and is an r-value. 2803 if (!getLangOpts().CPlusPlus && 2804 !type.hasQualifiers() && 2805 type->isVoidType()) { 2806 valueKind = VK_RValue; 2807 break; 2808 } 2809 // fallthrough 2810 2811 case Decl::ImplicitParam: 2812 case Decl::ParmVar: { 2813 // These are always l-values. 2814 valueKind = VK_LValue; 2815 type = type.getNonReferenceType(); 2816 2817 // FIXME: Does the addition of const really only apply in 2818 // potentially-evaluated contexts? Since the variable isn't actually 2819 // captured in an unevaluated context, it seems that the answer is no. 2820 if (!isUnevaluatedContext()) { 2821 QualType CapturedType = getCapturedDeclRefType(cast<VarDecl>(VD), Loc); 2822 if (!CapturedType.isNull()) 2823 type = CapturedType; 2824 } 2825 2826 break; 2827 } 2828 2829 case Decl::Function: { 2830 if (unsigned BID = cast<FunctionDecl>(VD)->getBuiltinID()) { 2831 if (!Context.BuiltinInfo.isPredefinedLibFunction(BID)) { 2832 type = Context.BuiltinFnTy; 2833 valueKind = VK_RValue; 2834 break; 2835 } 2836 } 2837 2838 const FunctionType *fty = type->castAs<FunctionType>(); 2839 2840 // If we're referring to a function with an __unknown_anytype 2841 // result type, make the entire expression __unknown_anytype. 2842 if (fty->getReturnType() == Context.UnknownAnyTy) { 2843 type = Context.UnknownAnyTy; 2844 valueKind = VK_RValue; 2845 break; 2846 } 2847 2848 // Functions are l-values in C++. 2849 if (getLangOpts().CPlusPlus) { 2850 valueKind = VK_LValue; 2851 break; 2852 } 2853 2854 // C99 DR 316 says that, if a function type comes from a 2855 // function definition (without a prototype), that type is only 2856 // used for checking compatibility. Therefore, when referencing 2857 // the function, we pretend that we don't have the full function 2858 // type. 2859 if (!cast<FunctionDecl>(VD)->hasPrototype() && 2860 isa<FunctionProtoType>(fty)) 2861 type = Context.getFunctionNoProtoType(fty->getReturnType(), 2862 fty->getExtInfo()); 2863 2864 // Functions are r-values in C. 2865 valueKind = VK_RValue; 2866 break; 2867 } 2868 2869 case Decl::MSProperty: 2870 valueKind = VK_LValue; 2871 break; 2872 2873 case Decl::CXXMethod: 2874 // If we're referring to a method with an __unknown_anytype 2875 // result type, make the entire expression __unknown_anytype. 2876 // This should only be possible with a type written directly. 2877 if (const FunctionProtoType *proto 2878 = dyn_cast<FunctionProtoType>(VD->getType())) 2879 if (proto->getReturnType() == Context.UnknownAnyTy) { 2880 type = Context.UnknownAnyTy; 2881 valueKind = VK_RValue; 2882 break; 2883 } 2884 2885 // C++ methods are l-values if static, r-values if non-static. 2886 if (cast<CXXMethodDecl>(VD)->isStatic()) { 2887 valueKind = VK_LValue; 2888 break; 2889 } 2890 // fallthrough 2891 2892 case Decl::CXXConversion: 2893 case Decl::CXXDestructor: 2894 case Decl::CXXConstructor: 2895 valueKind = VK_RValue; 2896 break; 2897 } 2898 2899 return BuildDeclRefExpr(VD, type, valueKind, NameInfo, &SS, FoundD, 2900 TemplateArgs); 2901 } 2902 } 2903 2904 ExprResult Sema::BuildPredefinedExpr(SourceLocation Loc, 2905 PredefinedExpr::IdentType IT) { 2906 // Pick the current block, lambda, captured statement or function. 2907 Decl *currentDecl = nullptr; 2908 if (const BlockScopeInfo *BSI = getCurBlock()) 2909 currentDecl = BSI->TheDecl; 2910 else if (const LambdaScopeInfo *LSI = getCurLambda()) 2911 currentDecl = LSI->CallOperator; 2912 else if (const CapturedRegionScopeInfo *CSI = getCurCapturedRegion()) 2913 currentDecl = CSI->TheCapturedDecl; 2914 else 2915 currentDecl = getCurFunctionOrMethodDecl(); 2916 2917 if (!currentDecl) { 2918 Diag(Loc, diag::ext_predef_outside_function); 2919 currentDecl = Context.getTranslationUnitDecl(); 2920 } 2921 2922 QualType ResTy; 2923 if (cast<DeclContext>(currentDecl)->isDependentContext()) 2924 ResTy = Context.DependentTy; 2925 else { 2926 // Pre-defined identifiers are of type char[x], where x is the length of 2927 // the string. 2928 unsigned Length = PredefinedExpr::ComputeName(IT, currentDecl).length(); 2929 2930 llvm::APInt LengthI(32, Length + 1); 2931 if (IT == PredefinedExpr::LFunction) 2932 ResTy = Context.WideCharTy.withConst(); 2933 else 2934 ResTy = Context.CharTy.withConst(); 2935 ResTy = Context.getConstantArrayType(ResTy, LengthI, ArrayType::Normal, 0); 2936 } 2937 2938 return new (Context) PredefinedExpr(Loc, ResTy, IT); 2939 } 2940 2941 ExprResult Sema::ActOnPredefinedExpr(SourceLocation Loc, tok::TokenKind Kind) { 2942 PredefinedExpr::IdentType IT; 2943 2944 switch (Kind) { 2945 default: llvm_unreachable("Unknown simple primary expr!"); 2946 case tok::kw___func__: IT = PredefinedExpr::Func; break; // [C99 6.4.2.2] 2947 case tok::kw___FUNCTION__: IT = PredefinedExpr::Function; break; 2948 case tok::kw___FUNCDNAME__: IT = PredefinedExpr::FuncDName; break; // [MS] 2949 case tok::kw___FUNCSIG__: IT = PredefinedExpr::FuncSig; break; // [MS] 2950 case tok::kw_L__FUNCTION__: IT = PredefinedExpr::LFunction; break; 2951 case tok::kw___PRETTY_FUNCTION__: IT = PredefinedExpr::PrettyFunction; break; 2952 } 2953 2954 return BuildPredefinedExpr(Loc, IT); 2955 } 2956 2957 ExprResult Sema::ActOnCharacterConstant(const Token &Tok, Scope *UDLScope) { 2958 SmallString<16> CharBuffer; 2959 bool Invalid = false; 2960 StringRef ThisTok = PP.getSpelling(Tok, CharBuffer, &Invalid); 2961 if (Invalid) 2962 return ExprError(); 2963 2964 CharLiteralParser Literal(ThisTok.begin(), ThisTok.end(), Tok.getLocation(), 2965 PP, Tok.getKind()); 2966 if (Literal.hadError()) 2967 return ExprError(); 2968 2969 QualType Ty; 2970 if (Literal.isWide()) 2971 Ty = Context.WideCharTy; // L'x' -> wchar_t in C and C++. 2972 else if (Literal.isUTF16()) 2973 Ty = Context.Char16Ty; // u'x' -> char16_t in C11 and C++11. 2974 else if (Literal.isUTF32()) 2975 Ty = Context.Char32Ty; // U'x' -> char32_t in C11 and C++11. 2976 else if (!getLangOpts().CPlusPlus || Literal.isMultiChar()) 2977 Ty = Context.IntTy; // 'x' -> int in C, 'wxyz' -> int in C++. 2978 else 2979 Ty = Context.CharTy; // 'x' -> char in C++ 2980 2981 CharacterLiteral::CharacterKind Kind = CharacterLiteral::Ascii; 2982 if (Literal.isWide()) 2983 Kind = CharacterLiteral::Wide; 2984 else if (Literal.isUTF16()) 2985 Kind = CharacterLiteral::UTF16; 2986 else if (Literal.isUTF32()) 2987 Kind = CharacterLiteral::UTF32; 2988 2989 Expr *Lit = new (Context) CharacterLiteral(Literal.getValue(), Kind, Ty, 2990 Tok.getLocation()); 2991 2992 if (Literal.getUDSuffix().empty()) 2993 return Lit; 2994 2995 // We're building a user-defined literal. 2996 IdentifierInfo *UDSuffix = &Context.Idents.get(Literal.getUDSuffix()); 2997 SourceLocation UDSuffixLoc = 2998 getUDSuffixLoc(*this, Tok.getLocation(), Literal.getUDSuffixOffset()); 2999 3000 // Make sure we're allowed user-defined literals here. 3001 if (!UDLScope) 3002 return ExprError(Diag(UDSuffixLoc, diag::err_invalid_character_udl)); 3003 3004 // C++11 [lex.ext]p6: The literal L is treated as a call of the form 3005 // operator "" X (ch) 3006 return BuildCookedLiteralOperatorCall(*this, UDLScope, UDSuffix, UDSuffixLoc, 3007 Lit, Tok.getLocation()); 3008 } 3009 3010 ExprResult Sema::ActOnIntegerConstant(SourceLocation Loc, uint64_t Val) { 3011 unsigned IntSize = Context.getTargetInfo().getIntWidth(); 3012 return IntegerLiteral::Create(Context, llvm::APInt(IntSize, Val), 3013 Context.IntTy, Loc); 3014 } 3015 3016 static Expr *BuildFloatingLiteral(Sema &S, NumericLiteralParser &Literal, 3017 QualType Ty, SourceLocation Loc) { 3018 const llvm::fltSemantics &Format = S.Context.getFloatTypeSemantics(Ty); 3019 3020 using llvm::APFloat; 3021 APFloat Val(Format); 3022 3023 APFloat::opStatus result = Literal.GetFloatValue(Val); 3024 3025 // Overflow is always an error, but underflow is only an error if 3026 // we underflowed to zero (APFloat reports denormals as underflow). 3027 if ((result & APFloat::opOverflow) || 3028 ((result & APFloat::opUnderflow) && Val.isZero())) { 3029 unsigned diagnostic; 3030 SmallString<20> buffer; 3031 if (result & APFloat::opOverflow) { 3032 diagnostic = diag::warn_float_overflow; 3033 APFloat::getLargest(Format).toString(buffer); 3034 } else { 3035 diagnostic = diag::warn_float_underflow; 3036 APFloat::getSmallest(Format).toString(buffer); 3037 } 3038 3039 S.Diag(Loc, diagnostic) 3040 << Ty 3041 << StringRef(buffer.data(), buffer.size()); 3042 } 3043 3044 bool isExact = (result == APFloat::opOK); 3045 return FloatingLiteral::Create(S.Context, Val, isExact, Ty, Loc); 3046 } 3047 3048 ExprResult Sema::ActOnNumericConstant(const Token &Tok, Scope *UDLScope) { 3049 // Fast path for a single digit (which is quite common). A single digit 3050 // cannot have a trigraph, escaped newline, radix prefix, or suffix. 3051 if (Tok.getLength() == 1) { 3052 const char Val = PP.getSpellingOfSingleCharacterNumericConstant(Tok); 3053 return ActOnIntegerConstant(Tok.getLocation(), Val-'0'); 3054 } 3055 3056 SmallString<128> SpellingBuffer; 3057 // NumericLiteralParser wants to overread by one character. Add padding to 3058 // the buffer in case the token is copied to the buffer. If getSpelling() 3059 // returns a StringRef to the memory buffer, it should have a null char at 3060 // the EOF, so it is also safe. 3061 SpellingBuffer.resize(Tok.getLength() + 1); 3062 3063 // Get the spelling of the token, which eliminates trigraphs, etc. 3064 bool Invalid = false; 3065 StringRef TokSpelling = PP.getSpelling(Tok, SpellingBuffer, &Invalid); 3066 if (Invalid) 3067 return ExprError(); 3068 3069 NumericLiteralParser Literal(TokSpelling, Tok.getLocation(), PP); 3070 if (Literal.hadError) 3071 return ExprError(); 3072 3073 if (Literal.hasUDSuffix()) { 3074 // We're building a user-defined literal. 3075 IdentifierInfo *UDSuffix = &Context.Idents.get(Literal.getUDSuffix()); 3076 SourceLocation UDSuffixLoc = 3077 getUDSuffixLoc(*this, Tok.getLocation(), Literal.getUDSuffixOffset()); 3078 3079 // Make sure we're allowed user-defined literals here. 3080 if (!UDLScope) 3081 return ExprError(Diag(UDSuffixLoc, diag::err_invalid_numeric_udl)); 3082 3083 QualType CookedTy; 3084 if (Literal.isFloatingLiteral()) { 3085 // C++11 [lex.ext]p4: If S contains a literal operator with parameter type 3086 // long double, the literal is treated as a call of the form 3087 // operator "" X (f L) 3088 CookedTy = Context.LongDoubleTy; 3089 } else { 3090 // C++11 [lex.ext]p3: If S contains a literal operator with parameter type 3091 // unsigned long long, the literal is treated as a call of the form 3092 // operator "" X (n ULL) 3093 CookedTy = Context.UnsignedLongLongTy; 3094 } 3095 3096 DeclarationName OpName = 3097 Context.DeclarationNames.getCXXLiteralOperatorName(UDSuffix); 3098 DeclarationNameInfo OpNameInfo(OpName, UDSuffixLoc); 3099 OpNameInfo.setCXXLiteralOperatorNameLoc(UDSuffixLoc); 3100 3101 SourceLocation TokLoc = Tok.getLocation(); 3102 3103 // Perform literal operator lookup to determine if we're building a raw 3104 // literal or a cooked one. 3105 LookupResult R(*this, OpName, UDSuffixLoc, LookupOrdinaryName); 3106 switch (LookupLiteralOperator(UDLScope, R, CookedTy, 3107 /*AllowRaw*/true, /*AllowTemplate*/true, 3108 /*AllowStringTemplate*/false)) { 3109 case LOLR_Error: 3110 return ExprError(); 3111 3112 case LOLR_Cooked: { 3113 Expr *Lit; 3114 if (Literal.isFloatingLiteral()) { 3115 Lit = BuildFloatingLiteral(*this, Literal, CookedTy, Tok.getLocation()); 3116 } else { 3117 llvm::APInt ResultVal(Context.getTargetInfo().getLongLongWidth(), 0); 3118 if (Literal.GetIntegerValue(ResultVal)) 3119 Diag(Tok.getLocation(), diag::err_integer_literal_too_large) 3120 << /* Unsigned */ 1; 3121 Lit = IntegerLiteral::Create(Context, ResultVal, CookedTy, 3122 Tok.getLocation()); 3123 } 3124 return BuildLiteralOperatorCall(R, OpNameInfo, Lit, TokLoc); 3125 } 3126 3127 case LOLR_Raw: { 3128 // C++11 [lit.ext]p3, p4: If S contains a raw literal operator, the 3129 // literal is treated as a call of the form 3130 // operator "" X ("n") 3131 unsigned Length = Literal.getUDSuffixOffset(); 3132 QualType StrTy = Context.getConstantArrayType( 3133 Context.CharTy.withConst(), llvm::APInt(32, Length + 1), 3134 ArrayType::Normal, 0); 3135 Expr *Lit = StringLiteral::Create( 3136 Context, StringRef(TokSpelling.data(), Length), StringLiteral::Ascii, 3137 /*Pascal*/false, StrTy, &TokLoc, 1); 3138 return BuildLiteralOperatorCall(R, OpNameInfo, Lit, TokLoc); 3139 } 3140 3141 case LOLR_Template: { 3142 // C++11 [lit.ext]p3, p4: Otherwise (S contains a literal operator 3143 // template), L is treated as a call fo the form 3144 // operator "" X <'c1', 'c2', ... 'ck'>() 3145 // where n is the source character sequence c1 c2 ... ck. 3146 TemplateArgumentListInfo ExplicitArgs; 3147 unsigned CharBits = Context.getIntWidth(Context.CharTy); 3148 bool CharIsUnsigned = Context.CharTy->isUnsignedIntegerType(); 3149 llvm::APSInt Value(CharBits, CharIsUnsigned); 3150 for (unsigned I = 0, N = Literal.getUDSuffixOffset(); I != N; ++I) { 3151 Value = TokSpelling[I]; 3152 TemplateArgument Arg(Context, Value, Context.CharTy); 3153 TemplateArgumentLocInfo ArgInfo; 3154 ExplicitArgs.addArgument(TemplateArgumentLoc(Arg, ArgInfo)); 3155 } 3156 return BuildLiteralOperatorCall(R, OpNameInfo, None, TokLoc, 3157 &ExplicitArgs); 3158 } 3159 case LOLR_StringTemplate: 3160 llvm_unreachable("unexpected literal operator lookup result"); 3161 } 3162 } 3163 3164 Expr *Res; 3165 3166 if (Literal.isFloatingLiteral()) { 3167 QualType Ty; 3168 if (Literal.isFloat) 3169 Ty = Context.FloatTy; 3170 else if (!Literal.isLong) 3171 Ty = Context.DoubleTy; 3172 else 3173 Ty = Context.LongDoubleTy; 3174 3175 Res = BuildFloatingLiteral(*this, Literal, Ty, Tok.getLocation()); 3176 3177 if (Ty == Context.DoubleTy) { 3178 if (getLangOpts().SinglePrecisionConstants) { 3179 Res = ImpCastExprToType(Res, Context.FloatTy, CK_FloatingCast).get(); 3180 } else if (getLangOpts().OpenCL && !getOpenCLOptions().cl_khr_fp64) { 3181 Diag(Tok.getLocation(), diag::warn_double_const_requires_fp64); 3182 Res = ImpCastExprToType(Res, Context.FloatTy, CK_FloatingCast).get(); 3183 } 3184 } 3185 } else if (!Literal.isIntegerLiteral()) { 3186 return ExprError(); 3187 } else { 3188 QualType Ty; 3189 3190 // 'long long' is a C99 or C++11 feature. 3191 if (!getLangOpts().C99 && Literal.isLongLong) { 3192 if (getLangOpts().CPlusPlus) 3193 Diag(Tok.getLocation(), 3194 getLangOpts().CPlusPlus11 ? 3195 diag::warn_cxx98_compat_longlong : diag::ext_cxx11_longlong); 3196 else 3197 Diag(Tok.getLocation(), diag::ext_c99_longlong); 3198 } 3199 3200 // Get the value in the widest-possible width. 3201 unsigned MaxWidth = Context.getTargetInfo().getIntMaxTWidth(); 3202 // The microsoft literal suffix extensions support 128-bit literals, which 3203 // may be wider than [u]intmax_t. 3204 // FIXME: Actually, they don't. We seem to have accidentally invented the 3205 // i128 suffix. 3206 if (Literal.MicrosoftInteger == 128 && MaxWidth < 128 && 3207 Context.getTargetInfo().hasInt128Type()) 3208 MaxWidth = 128; 3209 llvm::APInt ResultVal(MaxWidth, 0); 3210 3211 if (Literal.GetIntegerValue(ResultVal)) { 3212 // If this value didn't fit into uintmax_t, error and force to ull. 3213 Diag(Tok.getLocation(), diag::err_integer_literal_too_large) 3214 << /* Unsigned */ 1; 3215 Ty = Context.UnsignedLongLongTy; 3216 assert(Context.getTypeSize(Ty) == ResultVal.getBitWidth() && 3217 "long long is not intmax_t?"); 3218 } else { 3219 // If this value fits into a ULL, try to figure out what else it fits into 3220 // according to the rules of C99 6.4.4.1p5. 3221 3222 // Octal, Hexadecimal, and integers with a U suffix are allowed to 3223 // be an unsigned int. 3224 bool AllowUnsigned = Literal.isUnsigned || Literal.getRadix() != 10; 3225 3226 // Check from smallest to largest, picking the smallest type we can. 3227 unsigned Width = 0; 3228 3229 // Microsoft specific integer suffixes are explicitly sized. 3230 if (Literal.MicrosoftInteger) { 3231 if (Literal.MicrosoftInteger > MaxWidth) { 3232 // If this target doesn't support __int128, error and force to ull. 3233 Diag(Tok.getLocation(), diag::err_int128_unsupported); 3234 Width = MaxWidth; 3235 Ty = Context.getIntMaxType(); 3236 } else { 3237 Width = Literal.MicrosoftInteger; 3238 Ty = Context.getIntTypeForBitwidth(Width, 3239 /*Signed=*/!Literal.isUnsigned); 3240 } 3241 } 3242 3243 if (Ty.isNull() && !Literal.isLong && !Literal.isLongLong) { 3244 // Are int/unsigned possibilities? 3245 unsigned IntSize = Context.getTargetInfo().getIntWidth(); 3246 3247 // Does it fit in a unsigned int? 3248 if (ResultVal.isIntN(IntSize)) { 3249 // Does it fit in a signed int? 3250 if (!Literal.isUnsigned && ResultVal[IntSize-1] == 0) 3251 Ty = Context.IntTy; 3252 else if (AllowUnsigned) 3253 Ty = Context.UnsignedIntTy; 3254 Width = IntSize; 3255 } 3256 } 3257 3258 // Are long/unsigned long possibilities? 3259 if (Ty.isNull() && !Literal.isLongLong) { 3260 unsigned LongSize = Context.getTargetInfo().getLongWidth(); 3261 3262 // Does it fit in a unsigned long? 3263 if (ResultVal.isIntN(LongSize)) { 3264 // Does it fit in a signed long? 3265 if (!Literal.isUnsigned && ResultVal[LongSize-1] == 0) 3266 Ty = Context.LongTy; 3267 else if (AllowUnsigned) 3268 Ty = Context.UnsignedLongTy; 3269 Width = LongSize; 3270 } 3271 } 3272 3273 // Check long long if needed. 3274 if (Ty.isNull()) { 3275 unsigned LongLongSize = Context.getTargetInfo().getLongLongWidth(); 3276 3277 // Does it fit in a unsigned long long? 3278 if (ResultVal.isIntN(LongLongSize)) { 3279 // Does it fit in a signed long long? 3280 // To be compatible with MSVC, hex integer literals ending with the 3281 // LL or i64 suffix are always signed in Microsoft mode. 3282 if (!Literal.isUnsigned && (ResultVal[LongLongSize-1] == 0 || 3283 (getLangOpts().MicrosoftExt && Literal.isLongLong))) 3284 Ty = Context.LongLongTy; 3285 else if (AllowUnsigned) 3286 Ty = Context.UnsignedLongLongTy; 3287 Width = LongLongSize; 3288 } 3289 } 3290 3291 // If we still couldn't decide a type, we probably have something that 3292 // does not fit in a signed long long, but has no U suffix. 3293 if (Ty.isNull()) { 3294 Diag(Tok.getLocation(), diag::ext_integer_literal_too_large_for_signed); 3295 Ty = Context.UnsignedLongLongTy; 3296 Width = Context.getTargetInfo().getLongLongWidth(); 3297 } 3298 3299 if (ResultVal.getBitWidth() != Width) 3300 ResultVal = ResultVal.trunc(Width); 3301 } 3302 Res = IntegerLiteral::Create(Context, ResultVal, Ty, Tok.getLocation()); 3303 } 3304 3305 // If this is an imaginary literal, create the ImaginaryLiteral wrapper. 3306 if (Literal.isImaginary) 3307 Res = new (Context) ImaginaryLiteral(Res, 3308 Context.getComplexType(Res->getType())); 3309 3310 return Res; 3311 } 3312 3313 ExprResult Sema::ActOnParenExpr(SourceLocation L, SourceLocation R, Expr *E) { 3314 assert(E && "ActOnParenExpr() missing expr"); 3315 return new (Context) ParenExpr(L, R, E); 3316 } 3317 3318 static bool CheckVecStepTraitOperandType(Sema &S, QualType T, 3319 SourceLocation Loc, 3320 SourceRange ArgRange) { 3321 // [OpenCL 1.1 6.11.12] "The vec_step built-in function takes a built-in 3322 // scalar or vector data type argument..." 3323 // Every built-in scalar type (OpenCL 1.1 6.1.1) is either an arithmetic 3324 // type (C99 6.2.5p18) or void. 3325 if (!(T->isArithmeticType() || T->isVoidType() || T->isVectorType())) { 3326 S.Diag(Loc, diag::err_vecstep_non_scalar_vector_type) 3327 << T << ArgRange; 3328 return true; 3329 } 3330 3331 assert((T->isVoidType() || !T->isIncompleteType()) && 3332 "Scalar types should always be complete"); 3333 return false; 3334 } 3335 3336 static bool CheckExtensionTraitOperandType(Sema &S, QualType T, 3337 SourceLocation Loc, 3338 SourceRange ArgRange, 3339 UnaryExprOrTypeTrait TraitKind) { 3340 // Invalid types must be hard errors for SFINAE in C++. 3341 if (S.LangOpts.CPlusPlus) 3342 return true; 3343 3344 // C99 6.5.3.4p1: 3345 if (T->isFunctionType() && 3346 (TraitKind == UETT_SizeOf || TraitKind == UETT_AlignOf)) { 3347 // sizeof(function)/alignof(function) is allowed as an extension. 3348 S.Diag(Loc, diag::ext_sizeof_alignof_function_type) 3349 << TraitKind << ArgRange; 3350 return false; 3351 } 3352 3353 // Allow sizeof(void)/alignof(void) as an extension, unless in OpenCL where 3354 // this is an error (OpenCL v1.1 s6.3.k) 3355 if (T->isVoidType()) { 3356 unsigned DiagID = S.LangOpts.OpenCL ? diag::err_opencl_sizeof_alignof_type 3357 : diag::ext_sizeof_alignof_void_type; 3358 S.Diag(Loc, DiagID) << TraitKind << ArgRange; 3359 return false; 3360 } 3361 3362 return true; 3363 } 3364 3365 static bool CheckObjCTraitOperandConstraints(Sema &S, QualType T, 3366 SourceLocation Loc, 3367 SourceRange ArgRange, 3368 UnaryExprOrTypeTrait TraitKind) { 3369 // Reject sizeof(interface) and sizeof(interface<proto>) if the 3370 // runtime doesn't allow it. 3371 if (!S.LangOpts.ObjCRuntime.allowsSizeofAlignof() && T->isObjCObjectType()) { 3372 S.Diag(Loc, diag::err_sizeof_nonfragile_interface) 3373 << T << (TraitKind == UETT_SizeOf) 3374 << ArgRange; 3375 return true; 3376 } 3377 3378 return false; 3379 } 3380 3381 /// \brief Check whether E is a pointer from a decayed array type (the decayed 3382 /// pointer type is equal to T) and emit a warning if it is. 3383 static void warnOnSizeofOnArrayDecay(Sema &S, SourceLocation Loc, QualType T, 3384 Expr *E) { 3385 // Don't warn if the operation changed the type. 3386 if (T != E->getType()) 3387 return; 3388 3389 // Now look for array decays. 3390 ImplicitCastExpr *ICE = dyn_cast<ImplicitCastExpr>(E); 3391 if (!ICE || ICE->getCastKind() != CK_ArrayToPointerDecay) 3392 return; 3393 3394 S.Diag(Loc, diag::warn_sizeof_array_decay) << ICE->getSourceRange() 3395 << ICE->getType() 3396 << ICE->getSubExpr()->getType(); 3397 } 3398 3399 /// \brief Check the constraints on expression operands to unary type expression 3400 /// and type traits. 3401 /// 3402 /// Completes any types necessary and validates the constraints on the operand 3403 /// expression. The logic mostly mirrors the type-based overload, but may modify 3404 /// the expression as it completes the type for that expression through template 3405 /// instantiation, etc. 3406 bool Sema::CheckUnaryExprOrTypeTraitOperand(Expr *E, 3407 UnaryExprOrTypeTrait ExprKind) { 3408 QualType ExprTy = E->getType(); 3409 assert(!ExprTy->isReferenceType()); 3410 3411 if (ExprKind == UETT_VecStep) 3412 return CheckVecStepTraitOperandType(*this, ExprTy, E->getExprLoc(), 3413 E->getSourceRange()); 3414 3415 // Whitelist some types as extensions 3416 if (!CheckExtensionTraitOperandType(*this, ExprTy, E->getExprLoc(), 3417 E->getSourceRange(), ExprKind)) 3418 return false; 3419 3420 // 'alignof' applied to an expression only requires the base element type of 3421 // the expression to be complete. 'sizeof' requires the expression's type to 3422 // be complete (and will attempt to complete it if it's an array of unknown 3423 // bound). 3424 if (ExprKind == UETT_AlignOf) { 3425 if (RequireCompleteType(E->getExprLoc(), 3426 Context.getBaseElementType(E->getType()), 3427 diag::err_sizeof_alignof_incomplete_type, ExprKind, 3428 E->getSourceRange())) 3429 return true; 3430 } else { 3431 if (RequireCompleteExprType(E, diag::err_sizeof_alignof_incomplete_type, 3432 ExprKind, E->getSourceRange())) 3433 return true; 3434 } 3435 3436 // Completing the expression's type may have changed it. 3437 ExprTy = E->getType(); 3438 assert(!ExprTy->isReferenceType()); 3439 3440 if (ExprTy->isFunctionType()) { 3441 Diag(E->getExprLoc(), diag::err_sizeof_alignof_function_type) 3442 << ExprKind << E->getSourceRange(); 3443 return true; 3444 } 3445 3446 if (CheckObjCTraitOperandConstraints(*this, ExprTy, E->getExprLoc(), 3447 E->getSourceRange(), ExprKind)) 3448 return true; 3449 3450 if (ExprKind == UETT_SizeOf) { 3451 if (DeclRefExpr *DeclRef = dyn_cast<DeclRefExpr>(E->IgnoreParens())) { 3452 if (ParmVarDecl *PVD = dyn_cast<ParmVarDecl>(DeclRef->getFoundDecl())) { 3453 QualType OType = PVD->getOriginalType(); 3454 QualType Type = PVD->getType(); 3455 if (Type->isPointerType() && OType->isArrayType()) { 3456 Diag(E->getExprLoc(), diag::warn_sizeof_array_param) 3457 << Type << OType; 3458 Diag(PVD->getLocation(), diag::note_declared_at); 3459 } 3460 } 3461 } 3462 3463 // Warn on "sizeof(array op x)" and "sizeof(x op array)", where the array 3464 // decays into a pointer and returns an unintended result. This is most 3465 // likely a typo for "sizeof(array) op x". 3466 if (BinaryOperator *BO = dyn_cast<BinaryOperator>(E->IgnoreParens())) { 3467 warnOnSizeofOnArrayDecay(*this, BO->getOperatorLoc(), BO->getType(), 3468 BO->getLHS()); 3469 warnOnSizeofOnArrayDecay(*this, BO->getOperatorLoc(), BO->getType(), 3470 BO->getRHS()); 3471 } 3472 } 3473 3474 return false; 3475 } 3476 3477 /// \brief Check the constraints on operands to unary expression and type 3478 /// traits. 3479 /// 3480 /// This will complete any types necessary, and validate the various constraints 3481 /// on those operands. 3482 /// 3483 /// The UsualUnaryConversions() function is *not* called by this routine. 3484 /// C99 6.3.2.1p[2-4] all state: 3485 /// Except when it is the operand of the sizeof operator ... 3486 /// 3487 /// C++ [expr.sizeof]p4 3488 /// The lvalue-to-rvalue, array-to-pointer, and function-to-pointer 3489 /// standard conversions are not applied to the operand of sizeof. 3490 /// 3491 /// This policy is followed for all of the unary trait expressions. 3492 bool Sema::CheckUnaryExprOrTypeTraitOperand(QualType ExprType, 3493 SourceLocation OpLoc, 3494 SourceRange ExprRange, 3495 UnaryExprOrTypeTrait ExprKind) { 3496 if (ExprType->isDependentType()) 3497 return false; 3498 3499 // C++ [expr.sizeof]p2: 3500 // When applied to a reference or a reference type, the result 3501 // is the size of the referenced type. 3502 // C++11 [expr.alignof]p3: 3503 // When alignof is applied to a reference type, the result 3504 // shall be the alignment of the referenced type. 3505 if (const ReferenceType *Ref = ExprType->getAs<ReferenceType>()) 3506 ExprType = Ref->getPointeeType(); 3507 3508 // C11 6.5.3.4/3, C++11 [expr.alignof]p3: 3509 // When alignof or _Alignof is applied to an array type, the result 3510 // is the alignment of the element type. 3511 if (ExprKind == UETT_AlignOf) 3512 ExprType = Context.getBaseElementType(ExprType); 3513 3514 if (ExprKind == UETT_VecStep) 3515 return CheckVecStepTraitOperandType(*this, ExprType, OpLoc, ExprRange); 3516 3517 // Whitelist some types as extensions 3518 if (!CheckExtensionTraitOperandType(*this, ExprType, OpLoc, ExprRange, 3519 ExprKind)) 3520 return false; 3521 3522 if (RequireCompleteType(OpLoc, ExprType, 3523 diag::err_sizeof_alignof_incomplete_type, 3524 ExprKind, ExprRange)) 3525 return true; 3526 3527 if (ExprType->isFunctionType()) { 3528 Diag(OpLoc, diag::err_sizeof_alignof_function_type) 3529 << ExprKind << ExprRange; 3530 return true; 3531 } 3532 3533 if (CheckObjCTraitOperandConstraints(*this, ExprType, OpLoc, ExprRange, 3534 ExprKind)) 3535 return true; 3536 3537 return false; 3538 } 3539 3540 static bool CheckAlignOfExpr(Sema &S, Expr *E) { 3541 E = E->IgnoreParens(); 3542 3543 // Cannot know anything else if the expression is dependent. 3544 if (E->isTypeDependent()) 3545 return false; 3546 3547 if (E->getObjectKind() == OK_BitField) { 3548 S.Diag(E->getExprLoc(), diag::err_sizeof_alignof_bitfield) 3549 << 1 << E->getSourceRange(); 3550 return true; 3551 } 3552 3553 ValueDecl *D = nullptr; 3554 if (DeclRefExpr *DRE = dyn_cast<DeclRefExpr>(E)) { 3555 D = DRE->getDecl(); 3556 } else if (MemberExpr *ME = dyn_cast<MemberExpr>(E)) { 3557 D = ME->getMemberDecl(); 3558 } 3559 3560 // If it's a field, require the containing struct to have a 3561 // complete definition so that we can compute the layout. 3562 // 3563 // This can happen in C++11 onwards, either by naming the member 3564 // in a way that is not transformed into a member access expression 3565 // (in an unevaluated operand, for instance), or by naming the member 3566 // in a trailing-return-type. 3567 // 3568 // For the record, since __alignof__ on expressions is a GCC 3569 // extension, GCC seems to permit this but always gives the 3570 // nonsensical answer 0. 3571 // 3572 // We don't really need the layout here --- we could instead just 3573 // directly check for all the appropriate alignment-lowing 3574 // attributes --- but that would require duplicating a lot of 3575 // logic that just isn't worth duplicating for such a marginal 3576 // use-case. 3577 if (FieldDecl *FD = dyn_cast_or_null<FieldDecl>(D)) { 3578 // Fast path this check, since we at least know the record has a 3579 // definition if we can find a member of it. 3580 if (!FD->getParent()->isCompleteDefinition()) { 3581 S.Diag(E->getExprLoc(), diag::err_alignof_member_of_incomplete_type) 3582 << E->getSourceRange(); 3583 return true; 3584 } 3585 3586 // Otherwise, if it's a field, and the field doesn't have 3587 // reference type, then it must have a complete type (or be a 3588 // flexible array member, which we explicitly want to 3589 // white-list anyway), which makes the following checks trivial. 3590 if (!FD->getType()->isReferenceType()) 3591 return false; 3592 } 3593 3594 return S.CheckUnaryExprOrTypeTraitOperand(E, UETT_AlignOf); 3595 } 3596 3597 bool Sema::CheckVecStepExpr(Expr *E) { 3598 E = E->IgnoreParens(); 3599 3600 // Cannot know anything else if the expression is dependent. 3601 if (E->isTypeDependent()) 3602 return false; 3603 3604 return CheckUnaryExprOrTypeTraitOperand(E, UETT_VecStep); 3605 } 3606 3607 /// \brief Build a sizeof or alignof expression given a type operand. 3608 ExprResult 3609 Sema::CreateUnaryExprOrTypeTraitExpr(TypeSourceInfo *TInfo, 3610 SourceLocation OpLoc, 3611 UnaryExprOrTypeTrait ExprKind, 3612 SourceRange R) { 3613 if (!TInfo) 3614 return ExprError(); 3615 3616 QualType T = TInfo->getType(); 3617 3618 if (!T->isDependentType() && 3619 CheckUnaryExprOrTypeTraitOperand(T, OpLoc, R, ExprKind)) 3620 return ExprError(); 3621 3622 // C99 6.5.3.4p4: the type (an unsigned integer type) is size_t. 3623 return new (Context) UnaryExprOrTypeTraitExpr( 3624 ExprKind, TInfo, Context.getSizeType(), OpLoc, R.getEnd()); 3625 } 3626 3627 /// \brief Build a sizeof or alignof expression given an expression 3628 /// operand. 3629 ExprResult 3630 Sema::CreateUnaryExprOrTypeTraitExpr(Expr *E, SourceLocation OpLoc, 3631 UnaryExprOrTypeTrait ExprKind) { 3632 ExprResult PE = CheckPlaceholderExpr(E); 3633 if (PE.isInvalid()) 3634 return ExprError(); 3635 3636 E = PE.get(); 3637 3638 // Verify that the operand is valid. 3639 bool isInvalid = false; 3640 if (E->isTypeDependent()) { 3641 // Delay type-checking for type-dependent expressions. 3642 } else if (ExprKind == UETT_AlignOf) { 3643 isInvalid = CheckAlignOfExpr(*this, E); 3644 } else if (ExprKind == UETT_VecStep) { 3645 isInvalid = CheckVecStepExpr(E); 3646 } else if (E->refersToBitField()) { // C99 6.5.3.4p1. 3647 Diag(E->getExprLoc(), diag::err_sizeof_alignof_bitfield) << 0; 3648 isInvalid = true; 3649 } else { 3650 isInvalid = CheckUnaryExprOrTypeTraitOperand(E, UETT_SizeOf); 3651 } 3652 3653 if (isInvalid) 3654 return ExprError(); 3655 3656 if (ExprKind == UETT_SizeOf && E->getType()->isVariableArrayType()) { 3657 PE = TransformToPotentiallyEvaluated(E); 3658 if (PE.isInvalid()) return ExprError(); 3659 E = PE.get(); 3660 } 3661 3662 // C99 6.5.3.4p4: the type (an unsigned integer type) is size_t. 3663 return new (Context) UnaryExprOrTypeTraitExpr( 3664 ExprKind, E, Context.getSizeType(), OpLoc, E->getSourceRange().getEnd()); 3665 } 3666 3667 /// ActOnUnaryExprOrTypeTraitExpr - Handle @c sizeof(type) and @c sizeof @c 3668 /// expr and the same for @c alignof and @c __alignof 3669 /// Note that the ArgRange is invalid if isType is false. 3670 ExprResult 3671 Sema::ActOnUnaryExprOrTypeTraitExpr(SourceLocation OpLoc, 3672 UnaryExprOrTypeTrait ExprKind, bool IsType, 3673 void *TyOrEx, const SourceRange &ArgRange) { 3674 // If error parsing type, ignore. 3675 if (!TyOrEx) return ExprError(); 3676 3677 if (IsType) { 3678 TypeSourceInfo *TInfo; 3679 (void) GetTypeFromParser(ParsedType::getFromOpaquePtr(TyOrEx), &TInfo); 3680 return CreateUnaryExprOrTypeTraitExpr(TInfo, OpLoc, ExprKind, ArgRange); 3681 } 3682 3683 Expr *ArgEx = (Expr *)TyOrEx; 3684 ExprResult Result = CreateUnaryExprOrTypeTraitExpr(ArgEx, OpLoc, ExprKind); 3685 return Result; 3686 } 3687 3688 static QualType CheckRealImagOperand(Sema &S, ExprResult &V, SourceLocation Loc, 3689 bool IsReal) { 3690 if (V.get()->isTypeDependent()) 3691 return S.Context.DependentTy; 3692 3693 // _Real and _Imag are only l-values for normal l-values. 3694 if (V.get()->getObjectKind() != OK_Ordinary) { 3695 V = S.DefaultLvalueConversion(V.get()); 3696 if (V.isInvalid()) 3697 return QualType(); 3698 } 3699 3700 // These operators return the element type of a complex type. 3701 if (const ComplexType *CT = V.get()->getType()->getAs<ComplexType>()) 3702 return CT->getElementType(); 3703 3704 // Otherwise they pass through real integer and floating point types here. 3705 if (V.get()->getType()->isArithmeticType()) 3706 return V.get()->getType(); 3707 3708 // Test for placeholders. 3709 ExprResult PR = S.CheckPlaceholderExpr(V.get()); 3710 if (PR.isInvalid()) return QualType(); 3711 if (PR.get() != V.get()) { 3712 V = PR; 3713 return CheckRealImagOperand(S, V, Loc, IsReal); 3714 } 3715 3716 // Reject anything else. 3717 S.Diag(Loc, diag::err_realimag_invalid_type) << V.get()->getType() 3718 << (IsReal ? "__real" : "__imag"); 3719 return QualType(); 3720 } 3721 3722 3723 3724 ExprResult 3725 Sema::ActOnPostfixUnaryOp(Scope *S, SourceLocation OpLoc, 3726 tok::TokenKind Kind, Expr *Input) { 3727 UnaryOperatorKind Opc; 3728 switch (Kind) { 3729 default: llvm_unreachable("Unknown unary op!"); 3730 case tok::plusplus: Opc = UO_PostInc; break; 3731 case tok::minusminus: Opc = UO_PostDec; break; 3732 } 3733 3734 // Since this might is a postfix expression, get rid of ParenListExprs. 3735 ExprResult Result = MaybeConvertParenListExprToParenExpr(S, Input); 3736 if (Result.isInvalid()) return ExprError(); 3737 Input = Result.get(); 3738 3739 return BuildUnaryOp(S, OpLoc, Opc, Input); 3740 } 3741 3742 /// \brief Diagnose if arithmetic on the given ObjC pointer is illegal. 3743 /// 3744 /// \return true on error 3745 static bool checkArithmeticOnObjCPointer(Sema &S, 3746 SourceLocation opLoc, 3747 Expr *op) { 3748 assert(op->getType()->isObjCObjectPointerType()); 3749 if (S.LangOpts.ObjCRuntime.allowsPointerArithmetic() && 3750 !S.LangOpts.ObjCSubscriptingLegacyRuntime) 3751 return false; 3752 3753 S.Diag(opLoc, diag::err_arithmetic_nonfragile_interface) 3754 << op->getType()->castAs<ObjCObjectPointerType>()->getPointeeType() 3755 << op->getSourceRange(); 3756 return true; 3757 } 3758 3759 ExprResult 3760 Sema::ActOnArraySubscriptExpr(Scope *S, Expr *base, SourceLocation lbLoc, 3761 Expr *idx, SourceLocation rbLoc) { 3762 // Since this might be a postfix expression, get rid of ParenListExprs. 3763 if (isa<ParenListExpr>(base)) { 3764 ExprResult result = MaybeConvertParenListExprToParenExpr(S, base); 3765 if (result.isInvalid()) return ExprError(); 3766 base = result.get(); 3767 } 3768 3769 // Handle any non-overload placeholder types in the base and index 3770 // expressions. We can't handle overloads here because the other 3771 // operand might be an overloadable type, in which case the overload 3772 // resolution for the operator overload should get the first crack 3773 // at the overload. 3774 if (base->getType()->isNonOverloadPlaceholderType()) { 3775 ExprResult result = CheckPlaceholderExpr(base); 3776 if (result.isInvalid()) return ExprError(); 3777 base = result.get(); 3778 } 3779 if (idx->getType()->isNonOverloadPlaceholderType()) { 3780 ExprResult result = CheckPlaceholderExpr(idx); 3781 if (result.isInvalid()) return ExprError(); 3782 idx = result.get(); 3783 } 3784 3785 // Build an unanalyzed expression if either operand is type-dependent. 3786 if (getLangOpts().CPlusPlus && 3787 (base->isTypeDependent() || idx->isTypeDependent())) { 3788 return new (Context) ArraySubscriptExpr(base, idx, Context.DependentTy, 3789 VK_LValue, OK_Ordinary, rbLoc); 3790 } 3791 3792 // Use C++ overloaded-operator rules if either operand has record 3793 // type. The spec says to do this if either type is *overloadable*, 3794 // but enum types can't declare subscript operators or conversion 3795 // operators, so there's nothing interesting for overload resolution 3796 // to do if there aren't any record types involved. 3797 // 3798 // ObjC pointers have their own subscripting logic that is not tied 3799 // to overload resolution and so should not take this path. 3800 if (getLangOpts().CPlusPlus && 3801 (base->getType()->isRecordType() || 3802 (!base->getType()->isObjCObjectPointerType() && 3803 idx->getType()->isRecordType()))) { 3804 return CreateOverloadedArraySubscriptExpr(lbLoc, rbLoc, base, idx); 3805 } 3806 3807 return CreateBuiltinArraySubscriptExpr(base, lbLoc, idx, rbLoc); 3808 } 3809 3810 ExprResult 3811 Sema::CreateBuiltinArraySubscriptExpr(Expr *Base, SourceLocation LLoc, 3812 Expr *Idx, SourceLocation RLoc) { 3813 Expr *LHSExp = Base; 3814 Expr *RHSExp = Idx; 3815 3816 // Perform default conversions. 3817 if (!LHSExp->getType()->getAs<VectorType>()) { 3818 ExprResult Result = DefaultFunctionArrayLvalueConversion(LHSExp); 3819 if (Result.isInvalid()) 3820 return ExprError(); 3821 LHSExp = Result.get(); 3822 } 3823 ExprResult Result = DefaultFunctionArrayLvalueConversion(RHSExp); 3824 if (Result.isInvalid()) 3825 return ExprError(); 3826 RHSExp = Result.get(); 3827 3828 QualType LHSTy = LHSExp->getType(), RHSTy = RHSExp->getType(); 3829 ExprValueKind VK = VK_LValue; 3830 ExprObjectKind OK = OK_Ordinary; 3831 3832 // C99 6.5.2.1p2: the expression e1[e2] is by definition precisely equivalent 3833 // to the expression *((e1)+(e2)). This means the array "Base" may actually be 3834 // in the subscript position. As a result, we need to derive the array base 3835 // and index from the expression types. 3836 Expr *BaseExpr, *IndexExpr; 3837 QualType ResultType; 3838 if (LHSTy->isDependentType() || RHSTy->isDependentType()) { 3839 BaseExpr = LHSExp; 3840 IndexExpr = RHSExp; 3841 ResultType = Context.DependentTy; 3842 } else if (const PointerType *PTy = LHSTy->getAs<PointerType>()) { 3843 BaseExpr = LHSExp; 3844 IndexExpr = RHSExp; 3845 ResultType = PTy->getPointeeType(); 3846 } else if (const ObjCObjectPointerType *PTy = 3847 LHSTy->getAs<ObjCObjectPointerType>()) { 3848 BaseExpr = LHSExp; 3849 IndexExpr = RHSExp; 3850 3851 // Use custom logic if this should be the pseudo-object subscript 3852 // expression. 3853 if (!LangOpts.isSubscriptPointerArithmetic()) 3854 return BuildObjCSubscriptExpression(RLoc, BaseExpr, IndexExpr, nullptr, 3855 nullptr); 3856 3857 ResultType = PTy->getPointeeType(); 3858 } else if (const PointerType *PTy = RHSTy->getAs<PointerType>()) { 3859 // Handle the uncommon case of "123[Ptr]". 3860 BaseExpr = RHSExp; 3861 IndexExpr = LHSExp; 3862 ResultType = PTy->getPointeeType(); 3863 } else if (const ObjCObjectPointerType *PTy = 3864 RHSTy->getAs<ObjCObjectPointerType>()) { 3865 // Handle the uncommon case of "123[Ptr]". 3866 BaseExpr = RHSExp; 3867 IndexExpr = LHSExp; 3868 ResultType = PTy->getPointeeType(); 3869 if (!LangOpts.isSubscriptPointerArithmetic()) { 3870 Diag(LLoc, diag::err_subscript_nonfragile_interface) 3871 << ResultType << BaseExpr->getSourceRange(); 3872 return ExprError(); 3873 } 3874 } else if (const VectorType *VTy = LHSTy->getAs<VectorType>()) { 3875 BaseExpr = LHSExp; // vectors: V[123] 3876 IndexExpr = RHSExp; 3877 VK = LHSExp->getValueKind(); 3878 if (VK != VK_RValue) 3879 OK = OK_VectorComponent; 3880 3881 // FIXME: need to deal with const... 3882 ResultType = VTy->getElementType(); 3883 } else if (LHSTy->isArrayType()) { 3884 // If we see an array that wasn't promoted by 3885 // DefaultFunctionArrayLvalueConversion, it must be an array that 3886 // wasn't promoted because of the C90 rule that doesn't 3887 // allow promoting non-lvalue arrays. Warn, then 3888 // force the promotion here. 3889 Diag(LHSExp->getLocStart(), diag::ext_subscript_non_lvalue) << 3890 LHSExp->getSourceRange(); 3891 LHSExp = ImpCastExprToType(LHSExp, Context.getArrayDecayedType(LHSTy), 3892 CK_ArrayToPointerDecay).get(); 3893 LHSTy = LHSExp->getType(); 3894 3895 BaseExpr = LHSExp; 3896 IndexExpr = RHSExp; 3897 ResultType = LHSTy->getAs<PointerType>()->getPointeeType(); 3898 } else if (RHSTy->isArrayType()) { 3899 // Same as previous, except for 123[f().a] case 3900 Diag(RHSExp->getLocStart(), diag::ext_subscript_non_lvalue) << 3901 RHSExp->getSourceRange(); 3902 RHSExp = ImpCastExprToType(RHSExp, Context.getArrayDecayedType(RHSTy), 3903 CK_ArrayToPointerDecay).get(); 3904 RHSTy = RHSExp->getType(); 3905 3906 BaseExpr = RHSExp; 3907 IndexExpr = LHSExp; 3908 ResultType = RHSTy->getAs<PointerType>()->getPointeeType(); 3909 } else { 3910 return ExprError(Diag(LLoc, diag::err_typecheck_subscript_value) 3911 << LHSExp->getSourceRange() << RHSExp->getSourceRange()); 3912 } 3913 // C99 6.5.2.1p1 3914 if (!IndexExpr->getType()->isIntegerType() && !IndexExpr->isTypeDependent()) 3915 return ExprError(Diag(LLoc, diag::err_typecheck_subscript_not_integer) 3916 << IndexExpr->getSourceRange()); 3917 3918 if ((IndexExpr->getType()->isSpecificBuiltinType(BuiltinType::Char_S) || 3919 IndexExpr->getType()->isSpecificBuiltinType(BuiltinType::Char_U)) 3920 && !IndexExpr->isTypeDependent()) 3921 Diag(LLoc, diag::warn_subscript_is_char) << IndexExpr->getSourceRange(); 3922 3923 // C99 6.5.2.1p1: "shall have type "pointer to *object* type". Similarly, 3924 // C++ [expr.sub]p1: The type "T" shall be a completely-defined object 3925 // type. Note that Functions are not objects, and that (in C99 parlance) 3926 // incomplete types are not object types. 3927 if (ResultType->isFunctionType()) { 3928 Diag(BaseExpr->getLocStart(), diag::err_subscript_function_type) 3929 << ResultType << BaseExpr->getSourceRange(); 3930 return ExprError(); 3931 } 3932 3933 if (ResultType->isVoidType() && !getLangOpts().CPlusPlus) { 3934 // GNU extension: subscripting on pointer to void 3935 Diag(LLoc, diag::ext_gnu_subscript_void_type) 3936 << BaseExpr->getSourceRange(); 3937 3938 // C forbids expressions of unqualified void type from being l-values. 3939 // See IsCForbiddenLValueType. 3940 if (!ResultType.hasQualifiers()) VK = VK_RValue; 3941 } else if (!ResultType->isDependentType() && 3942 RequireCompleteType(LLoc, ResultType, 3943 diag::err_subscript_incomplete_type, BaseExpr)) 3944 return ExprError(); 3945 3946 assert(VK == VK_RValue || LangOpts.CPlusPlus || 3947 !ResultType.isCForbiddenLValueType()); 3948 3949 return new (Context) 3950 ArraySubscriptExpr(LHSExp, RHSExp, ResultType, VK, OK, RLoc); 3951 } 3952 3953 ExprResult Sema::BuildCXXDefaultArgExpr(SourceLocation CallLoc, 3954 FunctionDecl *FD, 3955 ParmVarDecl *Param) { 3956 if (Param->hasUnparsedDefaultArg()) { 3957 Diag(CallLoc, 3958 diag::err_use_of_default_argument_to_function_declared_later) << 3959 FD << cast<CXXRecordDecl>(FD->getDeclContext())->getDeclName(); 3960 Diag(UnparsedDefaultArgLocs[Param], 3961 diag::note_default_argument_declared_here); 3962 return ExprError(); 3963 } 3964 3965 if (Param->hasUninstantiatedDefaultArg()) { 3966 Expr *UninstExpr = Param->getUninstantiatedDefaultArg(); 3967 3968 EnterExpressionEvaluationContext EvalContext(*this, PotentiallyEvaluated, 3969 Param); 3970 3971 // Instantiate the expression. 3972 MultiLevelTemplateArgumentList MutiLevelArgList 3973 = getTemplateInstantiationArgs(FD, nullptr, /*RelativeToPrimary=*/true); 3974 3975 InstantiatingTemplate Inst(*this, CallLoc, Param, 3976 MutiLevelArgList.getInnermost()); 3977 if (Inst.isInvalid()) 3978 return ExprError(); 3979 3980 ExprResult Result; 3981 { 3982 // C++ [dcl.fct.default]p5: 3983 // The names in the [default argument] expression are bound, and 3984 // the semantic constraints are checked, at the point where the 3985 // default argument expression appears. 3986 ContextRAII SavedContext(*this, FD); 3987 LocalInstantiationScope Local(*this); 3988 Result = SubstExpr(UninstExpr, MutiLevelArgList); 3989 } 3990 if (Result.isInvalid()) 3991 return ExprError(); 3992 3993 // Check the expression as an initializer for the parameter. 3994 InitializedEntity Entity 3995 = InitializedEntity::InitializeParameter(Context, Param); 3996 InitializationKind Kind 3997 = InitializationKind::CreateCopy(Param->getLocation(), 3998 /*FIXME:EqualLoc*/UninstExpr->getLocStart()); 3999 Expr *ResultE = Result.getAs<Expr>(); 4000 4001 InitializationSequence InitSeq(*this, Entity, Kind, ResultE); 4002 Result = InitSeq.Perform(*this, Entity, Kind, ResultE); 4003 if (Result.isInvalid()) 4004 return ExprError(); 4005 4006 Expr *Arg = Result.getAs<Expr>(); 4007 CheckCompletedExpr(Arg, Param->getOuterLocStart()); 4008 // Build the default argument expression. 4009 return CXXDefaultArgExpr::Create(Context, CallLoc, Param, Arg); 4010 } 4011 4012 // If the default expression creates temporaries, we need to 4013 // push them to the current stack of expression temporaries so they'll 4014 // be properly destroyed. 4015 // FIXME: We should really be rebuilding the default argument with new 4016 // bound temporaries; see the comment in PR5810. 4017 // We don't need to do that with block decls, though, because 4018 // blocks in default argument expression can never capture anything. 4019 if (isa<ExprWithCleanups>(Param->getInit())) { 4020 // Set the "needs cleanups" bit regardless of whether there are 4021 // any explicit objects. 4022 ExprNeedsCleanups = true; 4023 4024 // Append all the objects to the cleanup list. Right now, this 4025 // should always be a no-op, because blocks in default argument 4026 // expressions should never be able to capture anything. 4027 assert(!cast<ExprWithCleanups>(Param->getInit())->getNumObjects() && 4028 "default argument expression has capturing blocks?"); 4029 } 4030 4031 // We already type-checked the argument, so we know it works. 4032 // Just mark all of the declarations in this potentially-evaluated expression 4033 // as being "referenced". 4034 MarkDeclarationsReferencedInExpr(Param->getDefaultArg(), 4035 /*SkipLocalVariables=*/true); 4036 return CXXDefaultArgExpr::Create(Context, CallLoc, Param); 4037 } 4038 4039 4040 Sema::VariadicCallType 4041 Sema::getVariadicCallType(FunctionDecl *FDecl, const FunctionProtoType *Proto, 4042 Expr *Fn) { 4043 if (Proto && Proto->isVariadic()) { 4044 if (dyn_cast_or_null<CXXConstructorDecl>(FDecl)) 4045 return VariadicConstructor; 4046 else if (Fn && Fn->getType()->isBlockPointerType()) 4047 return VariadicBlock; 4048 else if (FDecl) { 4049 if (CXXMethodDecl *Method = dyn_cast_or_null<CXXMethodDecl>(FDecl)) 4050 if (Method->isInstance()) 4051 return VariadicMethod; 4052 } else if (Fn && Fn->getType() == Context.BoundMemberTy) 4053 return VariadicMethod; 4054 return VariadicFunction; 4055 } 4056 return VariadicDoesNotApply; 4057 } 4058 4059 namespace { 4060 class FunctionCallCCC : public FunctionCallFilterCCC { 4061 public: 4062 FunctionCallCCC(Sema &SemaRef, const IdentifierInfo *FuncName, 4063 unsigned NumArgs, MemberExpr *ME) 4064 : FunctionCallFilterCCC(SemaRef, NumArgs, false, ME), 4065 FunctionName(FuncName) {} 4066 4067 bool ValidateCandidate(const TypoCorrection &candidate) override { 4068 if (!candidate.getCorrectionSpecifier() || 4069 candidate.getCorrectionAsIdentifierInfo() != FunctionName) { 4070 return false; 4071 } 4072 4073 return FunctionCallFilterCCC::ValidateCandidate(candidate); 4074 } 4075 4076 private: 4077 const IdentifierInfo *const FunctionName; 4078 }; 4079 } 4080 4081 static TypoCorrection TryTypoCorrectionForCall(Sema &S, Expr *Fn, 4082 FunctionDecl *FDecl, 4083 ArrayRef<Expr *> Args) { 4084 MemberExpr *ME = dyn_cast<MemberExpr>(Fn); 4085 DeclarationName FuncName = FDecl->getDeclName(); 4086 SourceLocation NameLoc = ME ? ME->getMemberLoc() : Fn->getLocStart(); 4087 FunctionCallCCC CCC(S, FuncName.getAsIdentifierInfo(), Args.size(), ME); 4088 4089 if (TypoCorrection Corrected = S.CorrectTypo( 4090 DeclarationNameInfo(FuncName, NameLoc), Sema::LookupOrdinaryName, 4091 S.getScopeForContext(S.CurContext), nullptr, CCC, 4092 Sema::CTK_ErrorRecovery)) { 4093 if (NamedDecl *ND = Corrected.getCorrectionDecl()) { 4094 if (Corrected.isOverloaded()) { 4095 OverloadCandidateSet OCS(NameLoc, OverloadCandidateSet::CSK_Normal); 4096 OverloadCandidateSet::iterator Best; 4097 for (TypoCorrection::decl_iterator CD = Corrected.begin(), 4098 CDEnd = Corrected.end(); 4099 CD != CDEnd; ++CD) { 4100 if (FunctionDecl *FD = dyn_cast<FunctionDecl>(*CD)) 4101 S.AddOverloadCandidate(FD, DeclAccessPair::make(FD, AS_none), Args, 4102 OCS); 4103 } 4104 switch (OCS.BestViableFunction(S, NameLoc, Best)) { 4105 case OR_Success: 4106 ND = Best->Function; 4107 Corrected.setCorrectionDecl(ND); 4108 break; 4109 default: 4110 break; 4111 } 4112 } 4113 if (isa<ValueDecl>(ND) || isa<FunctionTemplateDecl>(ND)) { 4114 return Corrected; 4115 } 4116 } 4117 } 4118 return TypoCorrection(); 4119 } 4120 4121 /// ConvertArgumentsForCall - Converts the arguments specified in 4122 /// Args/NumArgs to the parameter types of the function FDecl with 4123 /// function prototype Proto. Call is the call expression itself, and 4124 /// Fn is the function expression. For a C++ member function, this 4125 /// routine does not attempt to convert the object argument. Returns 4126 /// true if the call is ill-formed. 4127 bool 4128 Sema::ConvertArgumentsForCall(CallExpr *Call, Expr *Fn, 4129 FunctionDecl *FDecl, 4130 const FunctionProtoType *Proto, 4131 ArrayRef<Expr *> Args, 4132 SourceLocation RParenLoc, 4133 bool IsExecConfig) { 4134 // Bail out early if calling a builtin with custom typechecking. 4135 // We don't need to do this in the 4136 if (FDecl) 4137 if (unsigned ID = FDecl->getBuiltinID()) 4138 if (Context.BuiltinInfo.hasCustomTypechecking(ID)) 4139 return false; 4140 4141 // C99 6.5.2.2p7 - the arguments are implicitly converted, as if by 4142 // assignment, to the types of the corresponding parameter, ... 4143 unsigned NumParams = Proto->getNumParams(); 4144 bool Invalid = false; 4145 unsigned MinArgs = FDecl ? FDecl->getMinRequiredArguments() : NumParams; 4146 unsigned FnKind = Fn->getType()->isBlockPointerType() 4147 ? 1 /* block */ 4148 : (IsExecConfig ? 3 /* kernel function (exec config) */ 4149 : 0 /* function */); 4150 4151 // If too few arguments are available (and we don't have default 4152 // arguments for the remaining parameters), don't make the call. 4153 if (Args.size() < NumParams) { 4154 if (Args.size() < MinArgs) { 4155 TypoCorrection TC; 4156 if (FDecl && (TC = TryTypoCorrectionForCall(*this, Fn, FDecl, Args))) { 4157 unsigned diag_id = 4158 MinArgs == NumParams && !Proto->isVariadic() 4159 ? diag::err_typecheck_call_too_few_args_suggest 4160 : diag::err_typecheck_call_too_few_args_at_least_suggest; 4161 diagnoseTypo(TC, PDiag(diag_id) << FnKind << MinArgs 4162 << static_cast<unsigned>(Args.size()) 4163 << TC.getCorrectionRange()); 4164 } else if (MinArgs == 1 && FDecl && FDecl->getParamDecl(0)->getDeclName()) 4165 Diag(RParenLoc, 4166 MinArgs == NumParams && !Proto->isVariadic() 4167 ? diag::err_typecheck_call_too_few_args_one 4168 : diag::err_typecheck_call_too_few_args_at_least_one) 4169 << FnKind << FDecl->getParamDecl(0) << Fn->getSourceRange(); 4170 else 4171 Diag(RParenLoc, MinArgs == NumParams && !Proto->isVariadic() 4172 ? diag::err_typecheck_call_too_few_args 4173 : diag::err_typecheck_call_too_few_args_at_least) 4174 << FnKind << MinArgs << static_cast<unsigned>(Args.size()) 4175 << Fn->getSourceRange(); 4176 4177 // Emit the location of the prototype. 4178 if (!TC && FDecl && !FDecl->getBuiltinID() && !IsExecConfig) 4179 Diag(FDecl->getLocStart(), diag::note_callee_decl) 4180 << FDecl; 4181 4182 return true; 4183 } 4184 Call->setNumArgs(Context, NumParams); 4185 } 4186 4187 // If too many are passed and not variadic, error on the extras and drop 4188 // them. 4189 if (Args.size() > NumParams) { 4190 if (!Proto->isVariadic()) { 4191 TypoCorrection TC; 4192 if (FDecl && (TC = TryTypoCorrectionForCall(*this, Fn, FDecl, Args))) { 4193 unsigned diag_id = 4194 MinArgs == NumParams && !Proto->isVariadic() 4195 ? diag::err_typecheck_call_too_many_args_suggest 4196 : diag::err_typecheck_call_too_many_args_at_most_suggest; 4197 diagnoseTypo(TC, PDiag(diag_id) << FnKind << NumParams 4198 << static_cast<unsigned>(Args.size()) 4199 << TC.getCorrectionRange()); 4200 } else if (NumParams == 1 && FDecl && 4201 FDecl->getParamDecl(0)->getDeclName()) 4202 Diag(Args[NumParams]->getLocStart(), 4203 MinArgs == NumParams 4204 ? diag::err_typecheck_call_too_many_args_one 4205 : diag::err_typecheck_call_too_many_args_at_most_one) 4206 << FnKind << FDecl->getParamDecl(0) 4207 << static_cast<unsigned>(Args.size()) << Fn->getSourceRange() 4208 << SourceRange(Args[NumParams]->getLocStart(), 4209 Args.back()->getLocEnd()); 4210 else 4211 Diag(Args[NumParams]->getLocStart(), 4212 MinArgs == NumParams 4213 ? diag::err_typecheck_call_too_many_args 4214 : diag::err_typecheck_call_too_many_args_at_most) 4215 << FnKind << NumParams << static_cast<unsigned>(Args.size()) 4216 << Fn->getSourceRange() 4217 << SourceRange(Args[NumParams]->getLocStart(), 4218 Args.back()->getLocEnd()); 4219 4220 // Emit the location of the prototype. 4221 if (!TC && FDecl && !FDecl->getBuiltinID() && !IsExecConfig) 4222 Diag(FDecl->getLocStart(), diag::note_callee_decl) 4223 << FDecl; 4224 4225 // This deletes the extra arguments. 4226 Call->setNumArgs(Context, NumParams); 4227 return true; 4228 } 4229 } 4230 SmallVector<Expr *, 8> AllArgs; 4231 VariadicCallType CallType = getVariadicCallType(FDecl, Proto, Fn); 4232 4233 Invalid = GatherArgumentsForCall(Call->getLocStart(), FDecl, 4234 Proto, 0, Args, AllArgs, CallType); 4235 if (Invalid) 4236 return true; 4237 unsigned TotalNumArgs = AllArgs.size(); 4238 for (unsigned i = 0; i < TotalNumArgs; ++i) 4239 Call->setArg(i, AllArgs[i]); 4240 4241 return false; 4242 } 4243 4244 bool Sema::GatherArgumentsForCall(SourceLocation CallLoc, FunctionDecl *FDecl, 4245 const FunctionProtoType *Proto, 4246 unsigned FirstParam, ArrayRef<Expr *> Args, 4247 SmallVectorImpl<Expr *> &AllArgs, 4248 VariadicCallType CallType, bool AllowExplicit, 4249 bool IsListInitialization) { 4250 unsigned NumParams = Proto->getNumParams(); 4251 bool Invalid = false; 4252 unsigned ArgIx = 0; 4253 // Continue to check argument types (even if we have too few/many args). 4254 for (unsigned i = FirstParam; i < NumParams; i++) { 4255 QualType ProtoArgType = Proto->getParamType(i); 4256 4257 Expr *Arg; 4258 ParmVarDecl *Param = FDecl ? FDecl->getParamDecl(i) : nullptr; 4259 if (ArgIx < Args.size()) { 4260 Arg = Args[ArgIx++]; 4261 4262 if (RequireCompleteType(Arg->getLocStart(), 4263 ProtoArgType, 4264 diag::err_call_incomplete_argument, Arg)) 4265 return true; 4266 4267 // Strip the unbridged-cast placeholder expression off, if applicable. 4268 bool CFAudited = false; 4269 if (Arg->getType() == Context.ARCUnbridgedCastTy && 4270 FDecl && FDecl->hasAttr<CFAuditedTransferAttr>() && 4271 (!Param || !Param->hasAttr<CFConsumedAttr>())) 4272 Arg = stripARCUnbridgedCast(Arg); 4273 else if (getLangOpts().ObjCAutoRefCount && 4274 FDecl && FDecl->hasAttr<CFAuditedTransferAttr>() && 4275 (!Param || !Param->hasAttr<CFConsumedAttr>())) 4276 CFAudited = true; 4277 4278 InitializedEntity Entity = 4279 Param ? InitializedEntity::InitializeParameter(Context, Param, 4280 ProtoArgType) 4281 : InitializedEntity::InitializeParameter( 4282 Context, ProtoArgType, Proto->isParamConsumed(i)); 4283 4284 // Remember that parameter belongs to a CF audited API. 4285 if (CFAudited) 4286 Entity.setParameterCFAudited(); 4287 4288 ExprResult ArgE = PerformCopyInitialization( 4289 Entity, SourceLocation(), Arg, IsListInitialization, AllowExplicit); 4290 if (ArgE.isInvalid()) 4291 return true; 4292 4293 Arg = ArgE.getAs<Expr>(); 4294 } else { 4295 assert(Param && "can't use default arguments without a known callee"); 4296 4297 ExprResult ArgExpr = 4298 BuildCXXDefaultArgExpr(CallLoc, FDecl, Param); 4299 if (ArgExpr.isInvalid()) 4300 return true; 4301 4302 Arg = ArgExpr.getAs<Expr>(); 4303 } 4304 4305 // Check for array bounds violations for each argument to the call. This 4306 // check only triggers warnings when the argument isn't a more complex Expr 4307 // with its own checking, such as a BinaryOperator. 4308 CheckArrayAccess(Arg); 4309 4310 // Check for violations of C99 static array rules (C99 6.7.5.3p7). 4311 CheckStaticArrayArgument(CallLoc, Param, Arg); 4312 4313 AllArgs.push_back(Arg); 4314 } 4315 4316 // If this is a variadic call, handle args passed through "...". 4317 if (CallType != VariadicDoesNotApply) { 4318 // Assume that extern "C" functions with variadic arguments that 4319 // return __unknown_anytype aren't *really* variadic. 4320 if (Proto->getReturnType() == Context.UnknownAnyTy && FDecl && 4321 FDecl->isExternC()) { 4322 for (unsigned i = ArgIx, e = Args.size(); i != e; ++i) { 4323 QualType paramType; // ignored 4324 ExprResult arg = checkUnknownAnyArg(CallLoc, Args[i], paramType); 4325 Invalid |= arg.isInvalid(); 4326 AllArgs.push_back(arg.get()); 4327 } 4328 4329 // Otherwise do argument promotion, (C99 6.5.2.2p7). 4330 } else { 4331 for (unsigned i = ArgIx, e = Args.size(); i != e; ++i) { 4332 ExprResult Arg = DefaultVariadicArgumentPromotion(Args[i], CallType, 4333 FDecl); 4334 Invalid |= Arg.isInvalid(); 4335 AllArgs.push_back(Arg.get()); 4336 } 4337 } 4338 4339 // Check for array bounds violations. 4340 for (unsigned i = ArgIx, e = Args.size(); i != e; ++i) 4341 CheckArrayAccess(Args[i]); 4342 } 4343 return Invalid; 4344 } 4345 4346 static void DiagnoseCalleeStaticArrayParam(Sema &S, ParmVarDecl *PVD) { 4347 TypeLoc TL = PVD->getTypeSourceInfo()->getTypeLoc(); 4348 if (DecayedTypeLoc DTL = TL.getAs<DecayedTypeLoc>()) 4349 TL = DTL.getOriginalLoc(); 4350 if (ArrayTypeLoc ATL = TL.getAs<ArrayTypeLoc>()) 4351 S.Diag(PVD->getLocation(), diag::note_callee_static_array) 4352 << ATL.getLocalSourceRange(); 4353 } 4354 4355 /// CheckStaticArrayArgument - If the given argument corresponds to a static 4356 /// array parameter, check that it is non-null, and that if it is formed by 4357 /// array-to-pointer decay, the underlying array is sufficiently large. 4358 /// 4359 /// C99 6.7.5.3p7: If the keyword static also appears within the [ and ] of the 4360 /// array type derivation, then for each call to the function, the value of the 4361 /// corresponding actual argument shall provide access to the first element of 4362 /// an array with at least as many elements as specified by the size expression. 4363 void 4364 Sema::CheckStaticArrayArgument(SourceLocation CallLoc, 4365 ParmVarDecl *Param, 4366 const Expr *ArgExpr) { 4367 // Static array parameters are not supported in C++. 4368 if (!Param || getLangOpts().CPlusPlus) 4369 return; 4370 4371 QualType OrigTy = Param->getOriginalType(); 4372 4373 const ArrayType *AT = Context.getAsArrayType(OrigTy); 4374 if (!AT || AT->getSizeModifier() != ArrayType::Static) 4375 return; 4376 4377 if (ArgExpr->isNullPointerConstant(Context, 4378 Expr::NPC_NeverValueDependent)) { 4379 Diag(CallLoc, diag::warn_null_arg) << ArgExpr->getSourceRange(); 4380 DiagnoseCalleeStaticArrayParam(*this, Param); 4381 return; 4382 } 4383 4384 const ConstantArrayType *CAT = dyn_cast<ConstantArrayType>(AT); 4385 if (!CAT) 4386 return; 4387 4388 const ConstantArrayType *ArgCAT = 4389 Context.getAsConstantArrayType(ArgExpr->IgnoreParenImpCasts()->getType()); 4390 if (!ArgCAT) 4391 return; 4392 4393 if (ArgCAT->getSize().ult(CAT->getSize())) { 4394 Diag(CallLoc, diag::warn_static_array_too_small) 4395 << ArgExpr->getSourceRange() 4396 << (unsigned) ArgCAT->getSize().getZExtValue() 4397 << (unsigned) CAT->getSize().getZExtValue(); 4398 DiagnoseCalleeStaticArrayParam(*this, Param); 4399 } 4400 } 4401 4402 /// Given a function expression of unknown-any type, try to rebuild it 4403 /// to have a function type. 4404 static ExprResult rebuildUnknownAnyFunction(Sema &S, Expr *fn); 4405 4406 /// Is the given type a placeholder that we need to lower out 4407 /// immediately during argument processing? 4408 static bool isPlaceholderToRemoveAsArg(QualType type) { 4409 // Placeholders are never sugared. 4410 const BuiltinType *placeholder = dyn_cast<BuiltinType>(type); 4411 if (!placeholder) return false; 4412 4413 switch (placeholder->getKind()) { 4414 // Ignore all the non-placeholder types. 4415 #define PLACEHOLDER_TYPE(ID, SINGLETON_ID) 4416 #define BUILTIN_TYPE(ID, SINGLETON_ID) case BuiltinType::ID: 4417 #include "clang/AST/BuiltinTypes.def" 4418 return false; 4419 4420 // We cannot lower out overload sets; they might validly be resolved 4421 // by the call machinery. 4422 case BuiltinType::Overload: 4423 return false; 4424 4425 // Unbridged casts in ARC can be handled in some call positions and 4426 // should be left in place. 4427 case BuiltinType::ARCUnbridgedCast: 4428 return false; 4429 4430 // Pseudo-objects should be converted as soon as possible. 4431 case BuiltinType::PseudoObject: 4432 return true; 4433 4434 // The debugger mode could theoretically but currently does not try 4435 // to resolve unknown-typed arguments based on known parameter types. 4436 case BuiltinType::UnknownAny: 4437 return true; 4438 4439 // These are always invalid as call arguments and should be reported. 4440 case BuiltinType::BoundMember: 4441 case BuiltinType::BuiltinFn: 4442 return true; 4443 } 4444 llvm_unreachable("bad builtin type kind"); 4445 } 4446 4447 /// Check an argument list for placeholders that we won't try to 4448 /// handle later. 4449 static bool checkArgsForPlaceholders(Sema &S, MultiExprArg args) { 4450 // Apply this processing to all the arguments at once instead of 4451 // dying at the first failure. 4452 bool hasInvalid = false; 4453 for (size_t i = 0, e = args.size(); i != e; i++) { 4454 if (isPlaceholderToRemoveAsArg(args[i]->getType())) { 4455 ExprResult result = S.CheckPlaceholderExpr(args[i]); 4456 if (result.isInvalid()) hasInvalid = true; 4457 else args[i] = result.get(); 4458 } 4459 } 4460 return hasInvalid; 4461 } 4462 4463 /// ActOnCallExpr - Handle a call to Fn with the specified array of arguments. 4464 /// This provides the location of the left/right parens and a list of comma 4465 /// locations. 4466 ExprResult 4467 Sema::ActOnCallExpr(Scope *S, Expr *Fn, SourceLocation LParenLoc, 4468 MultiExprArg ArgExprs, SourceLocation RParenLoc, 4469 Expr *ExecConfig, bool IsExecConfig) { 4470 // Since this might be a postfix expression, get rid of ParenListExprs. 4471 ExprResult Result = MaybeConvertParenListExprToParenExpr(S, Fn); 4472 if (Result.isInvalid()) return ExprError(); 4473 Fn = Result.get(); 4474 4475 if (checkArgsForPlaceholders(*this, ArgExprs)) 4476 return ExprError(); 4477 4478 if (getLangOpts().CPlusPlus) { 4479 // If this is a pseudo-destructor expression, build the call immediately. 4480 if (isa<CXXPseudoDestructorExpr>(Fn)) { 4481 if (!ArgExprs.empty()) { 4482 // Pseudo-destructor calls should not have any arguments. 4483 Diag(Fn->getLocStart(), diag::err_pseudo_dtor_call_with_args) 4484 << FixItHint::CreateRemoval( 4485 SourceRange(ArgExprs[0]->getLocStart(), 4486 ArgExprs.back()->getLocEnd())); 4487 } 4488 4489 return new (Context) 4490 CallExpr(Context, Fn, None, Context.VoidTy, VK_RValue, RParenLoc); 4491 } 4492 if (Fn->getType() == Context.PseudoObjectTy) { 4493 ExprResult result = CheckPlaceholderExpr(Fn); 4494 if (result.isInvalid()) return ExprError(); 4495 Fn = result.get(); 4496 } 4497 4498 // Determine whether this is a dependent call inside a C++ template, 4499 // in which case we won't do any semantic analysis now. 4500 // FIXME: Will need to cache the results of name lookup (including ADL) in 4501 // Fn. 4502 bool Dependent = false; 4503 if (Fn->isTypeDependent()) 4504 Dependent = true; 4505 else if (Expr::hasAnyTypeDependentArguments(ArgExprs)) 4506 Dependent = true; 4507 4508 if (Dependent) { 4509 if (ExecConfig) { 4510 return new (Context) CUDAKernelCallExpr( 4511 Context, Fn, cast<CallExpr>(ExecConfig), ArgExprs, 4512 Context.DependentTy, VK_RValue, RParenLoc); 4513 } else { 4514 return new (Context) CallExpr( 4515 Context, Fn, ArgExprs, Context.DependentTy, VK_RValue, RParenLoc); 4516 } 4517 } 4518 4519 // Determine whether this is a call to an object (C++ [over.call.object]). 4520 if (Fn->getType()->isRecordType()) 4521 return BuildCallToObjectOfClassType(S, Fn, LParenLoc, ArgExprs, 4522 RParenLoc); 4523 4524 if (Fn->getType() == Context.UnknownAnyTy) { 4525 ExprResult result = rebuildUnknownAnyFunction(*this, Fn); 4526 if (result.isInvalid()) return ExprError(); 4527 Fn = result.get(); 4528 } 4529 4530 if (Fn->getType() == Context.BoundMemberTy) { 4531 return BuildCallToMemberFunction(S, Fn, LParenLoc, ArgExprs, RParenLoc); 4532 } 4533 } 4534 4535 // Check for overloaded calls. This can happen even in C due to extensions. 4536 if (Fn->getType() == Context.OverloadTy) { 4537 OverloadExpr::FindResult find = OverloadExpr::find(Fn); 4538 4539 // We aren't supposed to apply this logic for if there's an '&' involved. 4540 if (!find.HasFormOfMemberPointer) { 4541 OverloadExpr *ovl = find.Expression; 4542 if (isa<UnresolvedLookupExpr>(ovl)) { 4543 UnresolvedLookupExpr *ULE = cast<UnresolvedLookupExpr>(ovl); 4544 return BuildOverloadedCallExpr(S, Fn, ULE, LParenLoc, ArgExprs, 4545 RParenLoc, ExecConfig); 4546 } else { 4547 return BuildCallToMemberFunction(S, Fn, LParenLoc, ArgExprs, 4548 RParenLoc); 4549 } 4550 } 4551 } 4552 4553 // If we're directly calling a function, get the appropriate declaration. 4554 if (Fn->getType() == Context.UnknownAnyTy) { 4555 ExprResult result = rebuildUnknownAnyFunction(*this, Fn); 4556 if (result.isInvalid()) return ExprError(); 4557 Fn = result.get(); 4558 } 4559 4560 Expr *NakedFn = Fn->IgnoreParens(); 4561 4562 NamedDecl *NDecl = nullptr; 4563 if (UnaryOperator *UnOp = dyn_cast<UnaryOperator>(NakedFn)) 4564 if (UnOp->getOpcode() == UO_AddrOf) 4565 NakedFn = UnOp->getSubExpr()->IgnoreParens(); 4566 4567 if (isa<DeclRefExpr>(NakedFn)) 4568 NDecl = cast<DeclRefExpr>(NakedFn)->getDecl(); 4569 else if (isa<MemberExpr>(NakedFn)) 4570 NDecl = cast<MemberExpr>(NakedFn)->getMemberDecl(); 4571 4572 if (FunctionDecl *FD = dyn_cast_or_null<FunctionDecl>(NDecl)) { 4573 if (FD->hasAttr<EnableIfAttr>()) { 4574 if (const EnableIfAttr *Attr = CheckEnableIf(FD, ArgExprs, true)) { 4575 Diag(Fn->getLocStart(), 4576 isa<CXXMethodDecl>(FD) ? 4577 diag::err_ovl_no_viable_member_function_in_call : 4578 diag::err_ovl_no_viable_function_in_call) 4579 << FD << FD->getSourceRange(); 4580 Diag(FD->getLocation(), 4581 diag::note_ovl_candidate_disabled_by_enable_if_attr) 4582 << Attr->getCond()->getSourceRange() << Attr->getMessage(); 4583 } 4584 } 4585 } 4586 4587 return BuildResolvedCallExpr(Fn, NDecl, LParenLoc, ArgExprs, RParenLoc, 4588 ExecConfig, IsExecConfig); 4589 } 4590 4591 ExprResult 4592 Sema::ActOnCUDAExecConfigExpr(Scope *S, SourceLocation LLLLoc, 4593 MultiExprArg ExecConfig, SourceLocation GGGLoc) { 4594 FunctionDecl *ConfigDecl = Context.getcudaConfigureCallDecl(); 4595 if (!ConfigDecl) 4596 return ExprError(Diag(LLLLoc, diag::err_undeclared_var_use) 4597 << "cudaConfigureCall"); 4598 QualType ConfigQTy = ConfigDecl->getType(); 4599 4600 DeclRefExpr *ConfigDR = new (Context) DeclRefExpr( 4601 ConfigDecl, false, ConfigQTy, VK_LValue, LLLLoc); 4602 MarkFunctionReferenced(LLLLoc, ConfigDecl); 4603 4604 return ActOnCallExpr(S, ConfigDR, LLLLoc, ExecConfig, GGGLoc, nullptr, 4605 /*IsExecConfig=*/true); 4606 } 4607 4608 /// ActOnAsTypeExpr - create a new asType (bitcast) from the arguments. 4609 /// 4610 /// __builtin_astype( value, dst type ) 4611 /// 4612 ExprResult Sema::ActOnAsTypeExpr(Expr *E, ParsedType ParsedDestTy, 4613 SourceLocation BuiltinLoc, 4614 SourceLocation RParenLoc) { 4615 ExprValueKind VK = VK_RValue; 4616 ExprObjectKind OK = OK_Ordinary; 4617 QualType DstTy = GetTypeFromParser(ParsedDestTy); 4618 QualType SrcTy = E->getType(); 4619 if (Context.getTypeSize(DstTy) != Context.getTypeSize(SrcTy)) 4620 return ExprError(Diag(BuiltinLoc, 4621 diag::err_invalid_astype_of_different_size) 4622 << DstTy 4623 << SrcTy 4624 << E->getSourceRange()); 4625 return new (Context) AsTypeExpr(E, DstTy, VK, OK, BuiltinLoc, RParenLoc); 4626 } 4627 4628 /// ActOnConvertVectorExpr - create a new convert-vector expression from the 4629 /// provided arguments. 4630 /// 4631 /// __builtin_convertvector( value, dst type ) 4632 /// 4633 ExprResult Sema::ActOnConvertVectorExpr(Expr *E, ParsedType ParsedDestTy, 4634 SourceLocation BuiltinLoc, 4635 SourceLocation RParenLoc) { 4636 TypeSourceInfo *TInfo; 4637 GetTypeFromParser(ParsedDestTy, &TInfo); 4638 return SemaConvertVectorExpr(E, TInfo, BuiltinLoc, RParenLoc); 4639 } 4640 4641 /// BuildResolvedCallExpr - Build a call to a resolved expression, 4642 /// i.e. an expression not of \p OverloadTy. The expression should 4643 /// unary-convert to an expression of function-pointer or 4644 /// block-pointer type. 4645 /// 4646 /// \param NDecl the declaration being called, if available 4647 ExprResult 4648 Sema::BuildResolvedCallExpr(Expr *Fn, NamedDecl *NDecl, 4649 SourceLocation LParenLoc, 4650 ArrayRef<Expr *> Args, 4651 SourceLocation RParenLoc, 4652 Expr *Config, bool IsExecConfig) { 4653 FunctionDecl *FDecl = dyn_cast_or_null<FunctionDecl>(NDecl); 4654 unsigned BuiltinID = (FDecl ? FDecl->getBuiltinID() : 0); 4655 4656 // Promote the function operand. 4657 // We special-case function promotion here because we only allow promoting 4658 // builtin functions to function pointers in the callee of a call. 4659 ExprResult Result; 4660 if (BuiltinID && 4661 Fn->getType()->isSpecificBuiltinType(BuiltinType::BuiltinFn)) { 4662 Result = ImpCastExprToType(Fn, Context.getPointerType(FDecl->getType()), 4663 CK_BuiltinFnToFnPtr).get(); 4664 } else { 4665 Result = CallExprUnaryConversions(Fn); 4666 } 4667 if (Result.isInvalid()) 4668 return ExprError(); 4669 Fn = Result.get(); 4670 4671 // Make the call expr early, before semantic checks. This guarantees cleanup 4672 // of arguments and function on error. 4673 CallExpr *TheCall; 4674 if (Config) 4675 TheCall = new (Context) CUDAKernelCallExpr(Context, Fn, 4676 cast<CallExpr>(Config), Args, 4677 Context.BoolTy, VK_RValue, 4678 RParenLoc); 4679 else 4680 TheCall = new (Context) CallExpr(Context, Fn, Args, Context.BoolTy, 4681 VK_RValue, RParenLoc); 4682 4683 // Bail out early if calling a builtin with custom typechecking. 4684 if (BuiltinID && Context.BuiltinInfo.hasCustomTypechecking(BuiltinID)) 4685 return CheckBuiltinFunctionCall(BuiltinID, TheCall); 4686 4687 retry: 4688 const FunctionType *FuncT; 4689 if (const PointerType *PT = Fn->getType()->getAs<PointerType>()) { 4690 // C99 6.5.2.2p1 - "The expression that denotes the called function shall 4691 // have type pointer to function". 4692 FuncT = PT->getPointeeType()->getAs<FunctionType>(); 4693 if (!FuncT) 4694 return ExprError(Diag(LParenLoc, diag::err_typecheck_call_not_function) 4695 << Fn->getType() << Fn->getSourceRange()); 4696 } else if (const BlockPointerType *BPT = 4697 Fn->getType()->getAs<BlockPointerType>()) { 4698 FuncT = BPT->getPointeeType()->castAs<FunctionType>(); 4699 } else { 4700 // Handle calls to expressions of unknown-any type. 4701 if (Fn->getType() == Context.UnknownAnyTy) { 4702 ExprResult rewrite = rebuildUnknownAnyFunction(*this, Fn); 4703 if (rewrite.isInvalid()) return ExprError(); 4704 Fn = rewrite.get(); 4705 TheCall->setCallee(Fn); 4706 goto retry; 4707 } 4708 4709 return ExprError(Diag(LParenLoc, diag::err_typecheck_call_not_function) 4710 << Fn->getType() << Fn->getSourceRange()); 4711 } 4712 4713 if (getLangOpts().CUDA) { 4714 if (Config) { 4715 // CUDA: Kernel calls must be to global functions 4716 if (FDecl && !FDecl->hasAttr<CUDAGlobalAttr>()) 4717 return ExprError(Diag(LParenLoc,diag::err_kern_call_not_global_function) 4718 << FDecl->getName() << Fn->getSourceRange()); 4719 4720 // CUDA: Kernel function must have 'void' return type 4721 if (!FuncT->getReturnType()->isVoidType()) 4722 return ExprError(Diag(LParenLoc, diag::err_kern_type_not_void_return) 4723 << Fn->getType() << Fn->getSourceRange()); 4724 } else { 4725 // CUDA: Calls to global functions must be configured 4726 if (FDecl && FDecl->hasAttr<CUDAGlobalAttr>()) 4727 return ExprError(Diag(LParenLoc, diag::err_global_call_not_config) 4728 << FDecl->getName() << Fn->getSourceRange()); 4729 } 4730 } 4731 4732 // Check for a valid return type 4733 if (CheckCallReturnType(FuncT->getReturnType(), Fn->getLocStart(), TheCall, 4734 FDecl)) 4735 return ExprError(); 4736 4737 // We know the result type of the call, set it. 4738 TheCall->setType(FuncT->getCallResultType(Context)); 4739 TheCall->setValueKind(Expr::getValueKindForType(FuncT->getReturnType())); 4740 4741 const FunctionProtoType *Proto = dyn_cast<FunctionProtoType>(FuncT); 4742 if (Proto) { 4743 if (ConvertArgumentsForCall(TheCall, Fn, FDecl, Proto, Args, RParenLoc, 4744 IsExecConfig)) 4745 return ExprError(); 4746 } else { 4747 assert(isa<FunctionNoProtoType>(FuncT) && "Unknown FunctionType!"); 4748 4749 if (FDecl) { 4750 // Check if we have too few/too many template arguments, based 4751 // on our knowledge of the function definition. 4752 const FunctionDecl *Def = nullptr; 4753 if (FDecl->hasBody(Def) && Args.size() != Def->param_size()) { 4754 Proto = Def->getType()->getAs<FunctionProtoType>(); 4755 if (!Proto || !(Proto->isVariadic() && Args.size() >= Def->param_size())) 4756 Diag(RParenLoc, diag::warn_call_wrong_number_of_arguments) 4757 << (Args.size() > Def->param_size()) << FDecl << Fn->getSourceRange(); 4758 } 4759 4760 // If the function we're calling isn't a function prototype, but we have 4761 // a function prototype from a prior declaratiom, use that prototype. 4762 if (!FDecl->hasPrototype()) 4763 Proto = FDecl->getType()->getAs<FunctionProtoType>(); 4764 } 4765 4766 // Promote the arguments (C99 6.5.2.2p6). 4767 for (unsigned i = 0, e = Args.size(); i != e; i++) { 4768 Expr *Arg = Args[i]; 4769 4770 if (Proto && i < Proto->getNumParams()) { 4771 InitializedEntity Entity = InitializedEntity::InitializeParameter( 4772 Context, Proto->getParamType(i), Proto->isParamConsumed(i)); 4773 ExprResult ArgE = 4774 PerformCopyInitialization(Entity, SourceLocation(), Arg); 4775 if (ArgE.isInvalid()) 4776 return true; 4777 4778 Arg = ArgE.getAs<Expr>(); 4779 4780 } else { 4781 ExprResult ArgE = DefaultArgumentPromotion(Arg); 4782 4783 if (ArgE.isInvalid()) 4784 return true; 4785 4786 Arg = ArgE.getAs<Expr>(); 4787 } 4788 4789 if (RequireCompleteType(Arg->getLocStart(), 4790 Arg->getType(), 4791 diag::err_call_incomplete_argument, Arg)) 4792 return ExprError(); 4793 4794 TheCall->setArg(i, Arg); 4795 } 4796 } 4797 4798 if (CXXMethodDecl *Method = dyn_cast_or_null<CXXMethodDecl>(FDecl)) 4799 if (!Method->isStatic()) 4800 return ExprError(Diag(LParenLoc, diag::err_member_call_without_object) 4801 << Fn->getSourceRange()); 4802 4803 // Check for sentinels 4804 if (NDecl) 4805 DiagnoseSentinelCalls(NDecl, LParenLoc, Args); 4806 4807 // Do special checking on direct calls to functions. 4808 if (FDecl) { 4809 if (CheckFunctionCall(FDecl, TheCall, Proto)) 4810 return ExprError(); 4811 4812 if (BuiltinID) 4813 return CheckBuiltinFunctionCall(BuiltinID, TheCall); 4814 } else if (NDecl) { 4815 if (CheckPointerCall(NDecl, TheCall, Proto)) 4816 return ExprError(); 4817 } else { 4818 if (CheckOtherCall(TheCall, Proto)) 4819 return ExprError(); 4820 } 4821 4822 return MaybeBindToTemporary(TheCall); 4823 } 4824 4825 ExprResult 4826 Sema::ActOnCompoundLiteral(SourceLocation LParenLoc, ParsedType Ty, 4827 SourceLocation RParenLoc, Expr *InitExpr) { 4828 assert(Ty && "ActOnCompoundLiteral(): missing type"); 4829 // FIXME: put back this assert when initializers are worked out. 4830 //assert((InitExpr != 0) && "ActOnCompoundLiteral(): missing expression"); 4831 4832 TypeSourceInfo *TInfo; 4833 QualType literalType = GetTypeFromParser(Ty, &TInfo); 4834 if (!TInfo) 4835 TInfo = Context.getTrivialTypeSourceInfo(literalType); 4836 4837 return BuildCompoundLiteralExpr(LParenLoc, TInfo, RParenLoc, InitExpr); 4838 } 4839 4840 ExprResult 4841 Sema::BuildCompoundLiteralExpr(SourceLocation LParenLoc, TypeSourceInfo *TInfo, 4842 SourceLocation RParenLoc, Expr *LiteralExpr) { 4843 QualType literalType = TInfo->getType(); 4844 4845 if (literalType->isArrayType()) { 4846 if (RequireCompleteType(LParenLoc, Context.getBaseElementType(literalType), 4847 diag::err_illegal_decl_array_incomplete_type, 4848 SourceRange(LParenLoc, 4849 LiteralExpr->getSourceRange().getEnd()))) 4850 return ExprError(); 4851 if (literalType->isVariableArrayType()) 4852 return ExprError(Diag(LParenLoc, diag::err_variable_object_no_init) 4853 << SourceRange(LParenLoc, LiteralExpr->getSourceRange().getEnd())); 4854 } else if (!literalType->isDependentType() && 4855 RequireCompleteType(LParenLoc, literalType, 4856 diag::err_typecheck_decl_incomplete_type, 4857 SourceRange(LParenLoc, LiteralExpr->getSourceRange().getEnd()))) 4858 return ExprError(); 4859 4860 InitializedEntity Entity 4861 = InitializedEntity::InitializeCompoundLiteralInit(TInfo); 4862 InitializationKind Kind 4863 = InitializationKind::CreateCStyleCast(LParenLoc, 4864 SourceRange(LParenLoc, RParenLoc), 4865 /*InitList=*/true); 4866 InitializationSequence InitSeq(*this, Entity, Kind, LiteralExpr); 4867 ExprResult Result = InitSeq.Perform(*this, Entity, Kind, LiteralExpr, 4868 &literalType); 4869 if (Result.isInvalid()) 4870 return ExprError(); 4871 LiteralExpr = Result.get(); 4872 4873 bool isFileScope = getCurFunctionOrMethodDecl() == nullptr; 4874 if (isFileScope && 4875 !LiteralExpr->isTypeDependent() && 4876 !LiteralExpr->isValueDependent() && 4877 !literalType->isDependentType()) { // 6.5.2.5p3 4878 if (CheckForConstantInitializer(LiteralExpr, literalType)) 4879 return ExprError(); 4880 } 4881 4882 // In C, compound literals are l-values for some reason. 4883 ExprValueKind VK = getLangOpts().CPlusPlus ? VK_RValue : VK_LValue; 4884 4885 return MaybeBindToTemporary( 4886 new (Context) CompoundLiteralExpr(LParenLoc, TInfo, literalType, 4887 VK, LiteralExpr, isFileScope)); 4888 } 4889 4890 ExprResult 4891 Sema::ActOnInitList(SourceLocation LBraceLoc, MultiExprArg InitArgList, 4892 SourceLocation RBraceLoc) { 4893 // Immediately handle non-overload placeholders. Overloads can be 4894 // resolved contextually, but everything else here can't. 4895 for (unsigned I = 0, E = InitArgList.size(); I != E; ++I) { 4896 if (InitArgList[I]->getType()->isNonOverloadPlaceholderType()) { 4897 ExprResult result = CheckPlaceholderExpr(InitArgList[I]); 4898 4899 // Ignore failures; dropping the entire initializer list because 4900 // of one failure would be terrible for indexing/etc. 4901 if (result.isInvalid()) continue; 4902 4903 InitArgList[I] = result.get(); 4904 } 4905 } 4906 4907 // Semantic analysis for initializers is done by ActOnDeclarator() and 4908 // CheckInitializer() - it requires knowledge of the object being intialized. 4909 4910 InitListExpr *E = new (Context) InitListExpr(Context, LBraceLoc, InitArgList, 4911 RBraceLoc); 4912 E->setType(Context.VoidTy); // FIXME: just a place holder for now. 4913 return E; 4914 } 4915 4916 /// Do an explicit extend of the given block pointer if we're in ARC. 4917 static void maybeExtendBlockObject(Sema &S, ExprResult &E) { 4918 assert(E.get()->getType()->isBlockPointerType()); 4919 assert(E.get()->isRValue()); 4920 4921 // Only do this in an r-value context. 4922 if (!S.getLangOpts().ObjCAutoRefCount) return; 4923 4924 E = ImplicitCastExpr::Create(S.Context, E.get()->getType(), 4925 CK_ARCExtendBlockObject, E.get(), 4926 /*base path*/ nullptr, VK_RValue); 4927 S.ExprNeedsCleanups = true; 4928 } 4929 4930 /// Prepare a conversion of the given expression to an ObjC object 4931 /// pointer type. 4932 CastKind Sema::PrepareCastToObjCObjectPointer(ExprResult &E) { 4933 QualType type = E.get()->getType(); 4934 if (type->isObjCObjectPointerType()) { 4935 return CK_BitCast; 4936 } else if (type->isBlockPointerType()) { 4937 maybeExtendBlockObject(*this, E); 4938 return CK_BlockPointerToObjCPointerCast; 4939 } else { 4940 assert(type->isPointerType()); 4941 return CK_CPointerToObjCPointerCast; 4942 } 4943 } 4944 4945 /// Prepares for a scalar cast, performing all the necessary stages 4946 /// except the final cast and returning the kind required. 4947 CastKind Sema::PrepareScalarCast(ExprResult &Src, QualType DestTy) { 4948 // Both Src and Dest are scalar types, i.e. arithmetic or pointer. 4949 // Also, callers should have filtered out the invalid cases with 4950 // pointers. Everything else should be possible. 4951 4952 QualType SrcTy = Src.get()->getType(); 4953 if (Context.hasSameUnqualifiedType(SrcTy, DestTy)) 4954 return CK_NoOp; 4955 4956 switch (Type::ScalarTypeKind SrcKind = SrcTy->getScalarTypeKind()) { 4957 case Type::STK_MemberPointer: 4958 llvm_unreachable("member pointer type in C"); 4959 4960 case Type::STK_CPointer: 4961 case Type::STK_BlockPointer: 4962 case Type::STK_ObjCObjectPointer: 4963 switch (DestTy->getScalarTypeKind()) { 4964 case Type::STK_CPointer: { 4965 unsigned SrcAS = SrcTy->getPointeeType().getAddressSpace(); 4966 unsigned DestAS = DestTy->getPointeeType().getAddressSpace(); 4967 if (SrcAS != DestAS) 4968 return CK_AddressSpaceConversion; 4969 return CK_BitCast; 4970 } 4971 case Type::STK_BlockPointer: 4972 return (SrcKind == Type::STK_BlockPointer 4973 ? CK_BitCast : CK_AnyPointerToBlockPointerCast); 4974 case Type::STK_ObjCObjectPointer: 4975 if (SrcKind == Type::STK_ObjCObjectPointer) 4976 return CK_BitCast; 4977 if (SrcKind == Type::STK_CPointer) 4978 return CK_CPointerToObjCPointerCast; 4979 maybeExtendBlockObject(*this, Src); 4980 return CK_BlockPointerToObjCPointerCast; 4981 case Type::STK_Bool: 4982 return CK_PointerToBoolean; 4983 case Type::STK_Integral: 4984 return CK_PointerToIntegral; 4985 case Type::STK_Floating: 4986 case Type::STK_FloatingComplex: 4987 case Type::STK_IntegralComplex: 4988 case Type::STK_MemberPointer: 4989 llvm_unreachable("illegal cast from pointer"); 4990 } 4991 llvm_unreachable("Should have returned before this"); 4992 4993 case Type::STK_Bool: // casting from bool is like casting from an integer 4994 case Type::STK_Integral: 4995 switch (DestTy->getScalarTypeKind()) { 4996 case Type::STK_CPointer: 4997 case Type::STK_ObjCObjectPointer: 4998 case Type::STK_BlockPointer: 4999 if (Src.get()->isNullPointerConstant(Context, 5000 Expr::NPC_ValueDependentIsNull)) 5001 return CK_NullToPointer; 5002 return CK_IntegralToPointer; 5003 case Type::STK_Bool: 5004 return CK_IntegralToBoolean; 5005 case Type::STK_Integral: 5006 return CK_IntegralCast; 5007 case Type::STK_Floating: 5008 return CK_IntegralToFloating; 5009 case Type::STK_IntegralComplex: 5010 Src = ImpCastExprToType(Src.get(), 5011 DestTy->castAs<ComplexType>()->getElementType(), 5012 CK_IntegralCast); 5013 return CK_IntegralRealToComplex; 5014 case Type::STK_FloatingComplex: 5015 Src = ImpCastExprToType(Src.get(), 5016 DestTy->castAs<ComplexType>()->getElementType(), 5017 CK_IntegralToFloating); 5018 return CK_FloatingRealToComplex; 5019 case Type::STK_MemberPointer: 5020 llvm_unreachable("member pointer type in C"); 5021 } 5022 llvm_unreachable("Should have returned before this"); 5023 5024 case Type::STK_Floating: 5025 switch (DestTy->getScalarTypeKind()) { 5026 case Type::STK_Floating: 5027 return CK_FloatingCast; 5028 case Type::STK_Bool: 5029 return CK_FloatingToBoolean; 5030 case Type::STK_Integral: 5031 return CK_FloatingToIntegral; 5032 case Type::STK_FloatingComplex: 5033 Src = ImpCastExprToType(Src.get(), 5034 DestTy->castAs<ComplexType>()->getElementType(), 5035 CK_FloatingCast); 5036 return CK_FloatingRealToComplex; 5037 case Type::STK_IntegralComplex: 5038 Src = ImpCastExprToType(Src.get(), 5039 DestTy->castAs<ComplexType>()->getElementType(), 5040 CK_FloatingToIntegral); 5041 return CK_IntegralRealToComplex; 5042 case Type::STK_CPointer: 5043 case Type::STK_ObjCObjectPointer: 5044 case Type::STK_BlockPointer: 5045 llvm_unreachable("valid float->pointer cast?"); 5046 case Type::STK_MemberPointer: 5047 llvm_unreachable("member pointer type in C"); 5048 } 5049 llvm_unreachable("Should have returned before this"); 5050 5051 case Type::STK_FloatingComplex: 5052 switch (DestTy->getScalarTypeKind()) { 5053 case Type::STK_FloatingComplex: 5054 return CK_FloatingComplexCast; 5055 case Type::STK_IntegralComplex: 5056 return CK_FloatingComplexToIntegralComplex; 5057 case Type::STK_Floating: { 5058 QualType ET = SrcTy->castAs<ComplexType>()->getElementType(); 5059 if (Context.hasSameType(ET, DestTy)) 5060 return CK_FloatingComplexToReal; 5061 Src = ImpCastExprToType(Src.get(), ET, CK_FloatingComplexToReal); 5062 return CK_FloatingCast; 5063 } 5064 case Type::STK_Bool: 5065 return CK_FloatingComplexToBoolean; 5066 case Type::STK_Integral: 5067 Src = ImpCastExprToType(Src.get(), 5068 SrcTy->castAs<ComplexType>()->getElementType(), 5069 CK_FloatingComplexToReal); 5070 return CK_FloatingToIntegral; 5071 case Type::STK_CPointer: 5072 case Type::STK_ObjCObjectPointer: 5073 case Type::STK_BlockPointer: 5074 llvm_unreachable("valid complex float->pointer cast?"); 5075 case Type::STK_MemberPointer: 5076 llvm_unreachable("member pointer type in C"); 5077 } 5078 llvm_unreachable("Should have returned before this"); 5079 5080 case Type::STK_IntegralComplex: 5081 switch (DestTy->getScalarTypeKind()) { 5082 case Type::STK_FloatingComplex: 5083 return CK_IntegralComplexToFloatingComplex; 5084 case Type::STK_IntegralComplex: 5085 return CK_IntegralComplexCast; 5086 case Type::STK_Integral: { 5087 QualType ET = SrcTy->castAs<ComplexType>()->getElementType(); 5088 if (Context.hasSameType(ET, DestTy)) 5089 return CK_IntegralComplexToReal; 5090 Src = ImpCastExprToType(Src.get(), ET, CK_IntegralComplexToReal); 5091 return CK_IntegralCast; 5092 } 5093 case Type::STK_Bool: 5094 return CK_IntegralComplexToBoolean; 5095 case Type::STK_Floating: 5096 Src = ImpCastExprToType(Src.get(), 5097 SrcTy->castAs<ComplexType>()->getElementType(), 5098 CK_IntegralComplexToReal); 5099 return CK_IntegralToFloating; 5100 case Type::STK_CPointer: 5101 case Type::STK_ObjCObjectPointer: 5102 case Type::STK_BlockPointer: 5103 llvm_unreachable("valid complex int->pointer cast?"); 5104 case Type::STK_MemberPointer: 5105 llvm_unreachable("member pointer type in C"); 5106 } 5107 llvm_unreachable("Should have returned before this"); 5108 } 5109 5110 llvm_unreachable("Unhandled scalar cast"); 5111 } 5112 5113 static bool breakDownVectorType(QualType type, uint64_t &len, 5114 QualType &eltType) { 5115 // Vectors are simple. 5116 if (const VectorType *vecType = type->getAs<VectorType>()) { 5117 len = vecType->getNumElements(); 5118 eltType = vecType->getElementType(); 5119 assert(eltType->isScalarType()); 5120 return true; 5121 } 5122 5123 // We allow lax conversion to and from non-vector types, but only if 5124 // they're real types (i.e. non-complex, non-pointer scalar types). 5125 if (!type->isRealType()) return false; 5126 5127 len = 1; 5128 eltType = type; 5129 return true; 5130 } 5131 5132 static bool VectorTypesMatch(Sema &S, QualType srcTy, QualType destTy) { 5133 uint64_t srcLen, destLen; 5134 QualType srcElt, destElt; 5135 if (!breakDownVectorType(srcTy, srcLen, srcElt)) return false; 5136 if (!breakDownVectorType(destTy, destLen, destElt)) return false; 5137 5138 // ASTContext::getTypeSize will return the size rounded up to a 5139 // power of 2, so instead of using that, we need to use the raw 5140 // element size multiplied by the element count. 5141 uint64_t srcEltSize = S.Context.getTypeSize(srcElt); 5142 uint64_t destEltSize = S.Context.getTypeSize(destElt); 5143 5144 return (srcLen * srcEltSize == destLen * destEltSize); 5145 } 5146 5147 /// Is this a legal conversion between two known vector types? 5148 bool Sema::isLaxVectorConversion(QualType srcTy, QualType destTy) { 5149 assert(destTy->isVectorType() || srcTy->isVectorType()); 5150 5151 if (!Context.getLangOpts().LaxVectorConversions) 5152 return false; 5153 return VectorTypesMatch(*this, srcTy, destTy); 5154 } 5155 5156 bool Sema::CheckVectorCast(SourceRange R, QualType VectorTy, QualType Ty, 5157 CastKind &Kind) { 5158 assert(VectorTy->isVectorType() && "Not a vector type!"); 5159 5160 if (Ty->isVectorType() || Ty->isIntegerType()) { 5161 if (!VectorTypesMatch(*this, Ty, VectorTy)) 5162 return Diag(R.getBegin(), 5163 Ty->isVectorType() ? 5164 diag::err_invalid_conversion_between_vectors : 5165 diag::err_invalid_conversion_between_vector_and_integer) 5166 << VectorTy << Ty << R; 5167 } else 5168 return Diag(R.getBegin(), 5169 diag::err_invalid_conversion_between_vector_and_scalar) 5170 << VectorTy << Ty << R; 5171 5172 Kind = CK_BitCast; 5173 return false; 5174 } 5175 5176 ExprResult Sema::CheckExtVectorCast(SourceRange R, QualType DestTy, 5177 Expr *CastExpr, CastKind &Kind) { 5178 assert(DestTy->isExtVectorType() && "Not an extended vector type!"); 5179 5180 QualType SrcTy = CastExpr->getType(); 5181 5182 // If SrcTy is a VectorType, the total size must match to explicitly cast to 5183 // an ExtVectorType. 5184 // In OpenCL, casts between vectors of different types are not allowed. 5185 // (See OpenCL 6.2). 5186 if (SrcTy->isVectorType()) { 5187 if (!VectorTypesMatch(*this, SrcTy, DestTy) 5188 || (getLangOpts().OpenCL && 5189 (DestTy.getCanonicalType() != SrcTy.getCanonicalType()))) { 5190 Diag(R.getBegin(),diag::err_invalid_conversion_between_ext_vectors) 5191 << DestTy << SrcTy << R; 5192 return ExprError(); 5193 } 5194 Kind = CK_BitCast; 5195 return CastExpr; 5196 } 5197 5198 // All non-pointer scalars can be cast to ExtVector type. The appropriate 5199 // conversion will take place first from scalar to elt type, and then 5200 // splat from elt type to vector. 5201 if (SrcTy->isPointerType()) 5202 return Diag(R.getBegin(), 5203 diag::err_invalid_conversion_between_vector_and_scalar) 5204 << DestTy << SrcTy << R; 5205 5206 QualType DestElemTy = DestTy->getAs<ExtVectorType>()->getElementType(); 5207 ExprResult CastExprRes = CastExpr; 5208 CastKind CK = PrepareScalarCast(CastExprRes, DestElemTy); 5209 if (CastExprRes.isInvalid()) 5210 return ExprError(); 5211 CastExpr = ImpCastExprToType(CastExprRes.get(), DestElemTy, CK).get(); 5212 5213 Kind = CK_VectorSplat; 5214 return CastExpr; 5215 } 5216 5217 ExprResult 5218 Sema::ActOnCastExpr(Scope *S, SourceLocation LParenLoc, 5219 Declarator &D, ParsedType &Ty, 5220 SourceLocation RParenLoc, Expr *CastExpr) { 5221 assert(!D.isInvalidType() && (CastExpr != nullptr) && 5222 "ActOnCastExpr(): missing type or expr"); 5223 5224 TypeSourceInfo *castTInfo = GetTypeForDeclaratorCast(D, CastExpr->getType()); 5225 if (D.isInvalidType()) 5226 return ExprError(); 5227 5228 if (getLangOpts().CPlusPlus) { 5229 // Check that there are no default arguments (C++ only). 5230 CheckExtraCXXDefaultArguments(D); 5231 } 5232 5233 checkUnusedDeclAttributes(D); 5234 5235 QualType castType = castTInfo->getType(); 5236 Ty = CreateParsedType(castType, castTInfo); 5237 5238 bool isVectorLiteral = false; 5239 5240 // Check for an altivec or OpenCL literal, 5241 // i.e. all the elements are integer constants. 5242 ParenExpr *PE = dyn_cast<ParenExpr>(CastExpr); 5243 ParenListExpr *PLE = dyn_cast<ParenListExpr>(CastExpr); 5244 if ((getLangOpts().AltiVec || getLangOpts().OpenCL) 5245 && castType->isVectorType() && (PE || PLE)) { 5246 if (PLE && PLE->getNumExprs() == 0) { 5247 Diag(PLE->getExprLoc(), diag::err_altivec_empty_initializer); 5248 return ExprError(); 5249 } 5250 if (PE || PLE->getNumExprs() == 1) { 5251 Expr *E = (PE ? PE->getSubExpr() : PLE->getExpr(0)); 5252 if (!E->getType()->isVectorType()) 5253 isVectorLiteral = true; 5254 } 5255 else 5256 isVectorLiteral = true; 5257 } 5258 5259 // If this is a vector initializer, '(' type ')' '(' init, ..., init ')' 5260 // then handle it as such. 5261 if (isVectorLiteral) 5262 return BuildVectorLiteral(LParenLoc, RParenLoc, CastExpr, castTInfo); 5263 5264 // If the Expr being casted is a ParenListExpr, handle it specially. 5265 // This is not an AltiVec-style cast, so turn the ParenListExpr into a 5266 // sequence of BinOp comma operators. 5267 if (isa<ParenListExpr>(CastExpr)) { 5268 ExprResult Result = MaybeConvertParenListExprToParenExpr(S, CastExpr); 5269 if (Result.isInvalid()) return ExprError(); 5270 CastExpr = Result.get(); 5271 } 5272 5273 if (getLangOpts().CPlusPlus && !castType->isVoidType() && 5274 !getSourceManager().isInSystemMacro(LParenLoc)) 5275 Diag(LParenLoc, diag::warn_old_style_cast) << CastExpr->getSourceRange(); 5276 5277 CheckTollFreeBridgeCast(castType, CastExpr); 5278 5279 CheckObjCBridgeRelatedCast(castType, CastExpr); 5280 5281 return BuildCStyleCastExpr(LParenLoc, castTInfo, RParenLoc, CastExpr); 5282 } 5283 5284 ExprResult Sema::BuildVectorLiteral(SourceLocation LParenLoc, 5285 SourceLocation RParenLoc, Expr *E, 5286 TypeSourceInfo *TInfo) { 5287 assert((isa<ParenListExpr>(E) || isa<ParenExpr>(E)) && 5288 "Expected paren or paren list expression"); 5289 5290 Expr **exprs; 5291 unsigned numExprs; 5292 Expr *subExpr; 5293 SourceLocation LiteralLParenLoc, LiteralRParenLoc; 5294 if (ParenListExpr *PE = dyn_cast<ParenListExpr>(E)) { 5295 LiteralLParenLoc = PE->getLParenLoc(); 5296 LiteralRParenLoc = PE->getRParenLoc(); 5297 exprs = PE->getExprs(); 5298 numExprs = PE->getNumExprs(); 5299 } else { // isa<ParenExpr> by assertion at function entrance 5300 LiteralLParenLoc = cast<ParenExpr>(E)->getLParen(); 5301 LiteralRParenLoc = cast<ParenExpr>(E)->getRParen(); 5302 subExpr = cast<ParenExpr>(E)->getSubExpr(); 5303 exprs = &subExpr; 5304 numExprs = 1; 5305 } 5306 5307 QualType Ty = TInfo->getType(); 5308 assert(Ty->isVectorType() && "Expected vector type"); 5309 5310 SmallVector<Expr *, 8> initExprs; 5311 const VectorType *VTy = Ty->getAs<VectorType>(); 5312 unsigned numElems = Ty->getAs<VectorType>()->getNumElements(); 5313 5314 // '(...)' form of vector initialization in AltiVec: the number of 5315 // initializers must be one or must match the size of the vector. 5316 // If a single value is specified in the initializer then it will be 5317 // replicated to all the components of the vector 5318 if (VTy->getVectorKind() == VectorType::AltiVecVector) { 5319 // The number of initializers must be one or must match the size of the 5320 // vector. If a single value is specified in the initializer then it will 5321 // be replicated to all the components of the vector 5322 if (numExprs == 1) { 5323 QualType ElemTy = Ty->getAs<VectorType>()->getElementType(); 5324 ExprResult Literal = DefaultLvalueConversion(exprs[0]); 5325 if (Literal.isInvalid()) 5326 return ExprError(); 5327 Literal = ImpCastExprToType(Literal.get(), ElemTy, 5328 PrepareScalarCast(Literal, ElemTy)); 5329 return BuildCStyleCastExpr(LParenLoc, TInfo, RParenLoc, Literal.get()); 5330 } 5331 else if (numExprs < numElems) { 5332 Diag(E->getExprLoc(), 5333 diag::err_incorrect_number_of_vector_initializers); 5334 return ExprError(); 5335 } 5336 else 5337 initExprs.append(exprs, exprs + numExprs); 5338 } 5339 else { 5340 // For OpenCL, when the number of initializers is a single value, 5341 // it will be replicated to all components of the vector. 5342 if (getLangOpts().OpenCL && 5343 VTy->getVectorKind() == VectorType::GenericVector && 5344 numExprs == 1) { 5345 QualType ElemTy = Ty->getAs<VectorType>()->getElementType(); 5346 ExprResult Literal = DefaultLvalueConversion(exprs[0]); 5347 if (Literal.isInvalid()) 5348 return ExprError(); 5349 Literal = ImpCastExprToType(Literal.get(), ElemTy, 5350 PrepareScalarCast(Literal, ElemTy)); 5351 return BuildCStyleCastExpr(LParenLoc, TInfo, RParenLoc, Literal.get()); 5352 } 5353 5354 initExprs.append(exprs, exprs + numExprs); 5355 } 5356 // FIXME: This means that pretty-printing the final AST will produce curly 5357 // braces instead of the original commas. 5358 InitListExpr *initE = new (Context) InitListExpr(Context, LiteralLParenLoc, 5359 initExprs, LiteralRParenLoc); 5360 initE->setType(Ty); 5361 return BuildCompoundLiteralExpr(LParenLoc, TInfo, RParenLoc, initE); 5362 } 5363 5364 /// This is not an AltiVec-style cast or or C++ direct-initialization, so turn 5365 /// the ParenListExpr into a sequence of comma binary operators. 5366 ExprResult 5367 Sema::MaybeConvertParenListExprToParenExpr(Scope *S, Expr *OrigExpr) { 5368 ParenListExpr *E = dyn_cast<ParenListExpr>(OrigExpr); 5369 if (!E) 5370 return OrigExpr; 5371 5372 ExprResult Result(E->getExpr(0)); 5373 5374 for (unsigned i = 1, e = E->getNumExprs(); i != e && !Result.isInvalid(); ++i) 5375 Result = ActOnBinOp(S, E->getExprLoc(), tok::comma, Result.get(), 5376 E->getExpr(i)); 5377 5378 if (Result.isInvalid()) return ExprError(); 5379 5380 return ActOnParenExpr(E->getLParenLoc(), E->getRParenLoc(), Result.get()); 5381 } 5382 5383 ExprResult Sema::ActOnParenListExpr(SourceLocation L, 5384 SourceLocation R, 5385 MultiExprArg Val) { 5386 Expr *expr = new (Context) ParenListExpr(Context, L, Val, R); 5387 return expr; 5388 } 5389 5390 /// \brief Emit a specialized diagnostic when one expression is a null pointer 5391 /// constant and the other is not a pointer. Returns true if a diagnostic is 5392 /// emitted. 5393 bool Sema::DiagnoseConditionalForNull(Expr *LHSExpr, Expr *RHSExpr, 5394 SourceLocation QuestionLoc) { 5395 Expr *NullExpr = LHSExpr; 5396 Expr *NonPointerExpr = RHSExpr; 5397 Expr::NullPointerConstantKind NullKind = 5398 NullExpr->isNullPointerConstant(Context, 5399 Expr::NPC_ValueDependentIsNotNull); 5400 5401 if (NullKind == Expr::NPCK_NotNull) { 5402 NullExpr = RHSExpr; 5403 NonPointerExpr = LHSExpr; 5404 NullKind = 5405 NullExpr->isNullPointerConstant(Context, 5406 Expr::NPC_ValueDependentIsNotNull); 5407 } 5408 5409 if (NullKind == Expr::NPCK_NotNull) 5410 return false; 5411 5412 if (NullKind == Expr::NPCK_ZeroExpression) 5413 return false; 5414 5415 if (NullKind == Expr::NPCK_ZeroLiteral) { 5416 // In this case, check to make sure that we got here from a "NULL" 5417 // string in the source code. 5418 NullExpr = NullExpr->IgnoreParenImpCasts(); 5419 SourceLocation loc = NullExpr->getExprLoc(); 5420 if (!findMacroSpelling(loc, "NULL")) 5421 return false; 5422 } 5423 5424 int DiagType = (NullKind == Expr::NPCK_CXX11_nullptr); 5425 Diag(QuestionLoc, diag::err_typecheck_cond_incompatible_operands_null) 5426 << NonPointerExpr->getType() << DiagType 5427 << NonPointerExpr->getSourceRange(); 5428 return true; 5429 } 5430 5431 /// \brief Return false if the condition expression is valid, true otherwise. 5432 static bool checkCondition(Sema &S, Expr *Cond) { 5433 QualType CondTy = Cond->getType(); 5434 5435 // C99 6.5.15p2 5436 if (CondTy->isScalarType()) return false; 5437 5438 // OpenCL v1.1 s6.3.i says the condition is allowed to be a vector or scalar. 5439 if (S.getLangOpts().OpenCL && CondTy->isVectorType()) 5440 return false; 5441 5442 // Emit the proper error message. 5443 S.Diag(Cond->getLocStart(), S.getLangOpts().OpenCL ? 5444 diag::err_typecheck_cond_expect_scalar : 5445 diag::err_typecheck_cond_expect_scalar_or_vector) 5446 << CondTy; 5447 return true; 5448 } 5449 5450 /// \brief Return false if the two expressions can be converted to a vector, 5451 /// true otherwise 5452 static bool checkConditionalConvertScalarsToVectors(Sema &S, ExprResult &LHS, 5453 ExprResult &RHS, 5454 QualType CondTy) { 5455 // Both operands should be of scalar type. 5456 if (!LHS.get()->getType()->isScalarType()) { 5457 S.Diag(LHS.get()->getLocStart(), diag::err_typecheck_cond_expect_scalar) 5458 << CondTy; 5459 return true; 5460 } 5461 if (!RHS.get()->getType()->isScalarType()) { 5462 S.Diag(RHS.get()->getLocStart(), diag::err_typecheck_cond_expect_scalar) 5463 << CondTy; 5464 return true; 5465 } 5466 5467 // Implicity convert these scalars to the type of the condition. 5468 LHS = S.ImpCastExprToType(LHS.get(), CondTy, CK_IntegralCast); 5469 RHS = S.ImpCastExprToType(RHS.get(), CondTy, CK_IntegralCast); 5470 return false; 5471 } 5472 5473 /// \brief Handle when one or both operands are void type. 5474 static QualType checkConditionalVoidType(Sema &S, ExprResult &LHS, 5475 ExprResult &RHS) { 5476 Expr *LHSExpr = LHS.get(); 5477 Expr *RHSExpr = RHS.get(); 5478 5479 if (!LHSExpr->getType()->isVoidType()) 5480 S.Diag(RHSExpr->getLocStart(), diag::ext_typecheck_cond_one_void) 5481 << RHSExpr->getSourceRange(); 5482 if (!RHSExpr->getType()->isVoidType()) 5483 S.Diag(LHSExpr->getLocStart(), diag::ext_typecheck_cond_one_void) 5484 << LHSExpr->getSourceRange(); 5485 LHS = S.ImpCastExprToType(LHS.get(), S.Context.VoidTy, CK_ToVoid); 5486 RHS = S.ImpCastExprToType(RHS.get(), S.Context.VoidTy, CK_ToVoid); 5487 return S.Context.VoidTy; 5488 } 5489 5490 /// \brief Return false if the NullExpr can be promoted to PointerTy, 5491 /// true otherwise. 5492 static bool checkConditionalNullPointer(Sema &S, ExprResult &NullExpr, 5493 QualType PointerTy) { 5494 if ((!PointerTy->isAnyPointerType() && !PointerTy->isBlockPointerType()) || 5495 !NullExpr.get()->isNullPointerConstant(S.Context, 5496 Expr::NPC_ValueDependentIsNull)) 5497 return true; 5498 5499 NullExpr = S.ImpCastExprToType(NullExpr.get(), PointerTy, CK_NullToPointer); 5500 return false; 5501 } 5502 5503 /// \brief Checks compatibility between two pointers and return the resulting 5504 /// type. 5505 static QualType checkConditionalPointerCompatibility(Sema &S, ExprResult &LHS, 5506 ExprResult &RHS, 5507 SourceLocation Loc) { 5508 QualType LHSTy = LHS.get()->getType(); 5509 QualType RHSTy = RHS.get()->getType(); 5510 5511 if (S.Context.hasSameType(LHSTy, RHSTy)) { 5512 // Two identical pointers types are always compatible. 5513 return LHSTy; 5514 } 5515 5516 QualType lhptee, rhptee; 5517 5518 // Get the pointee types. 5519 bool IsBlockPointer = false; 5520 if (const BlockPointerType *LHSBTy = LHSTy->getAs<BlockPointerType>()) { 5521 lhptee = LHSBTy->getPointeeType(); 5522 rhptee = RHSTy->castAs<BlockPointerType>()->getPointeeType(); 5523 IsBlockPointer = true; 5524 } else { 5525 lhptee = LHSTy->castAs<PointerType>()->getPointeeType(); 5526 rhptee = RHSTy->castAs<PointerType>()->getPointeeType(); 5527 } 5528 5529 // C99 6.5.15p6: If both operands are pointers to compatible types or to 5530 // differently qualified versions of compatible types, the result type is 5531 // a pointer to an appropriately qualified version of the composite 5532 // type. 5533 5534 // Only CVR-qualifiers exist in the standard, and the differently-qualified 5535 // clause doesn't make sense for our extensions. E.g. address space 2 should 5536 // be incompatible with address space 3: they may live on different devices or 5537 // anything. 5538 Qualifiers lhQual = lhptee.getQualifiers(); 5539 Qualifiers rhQual = rhptee.getQualifiers(); 5540 5541 unsigned MergedCVRQual = lhQual.getCVRQualifiers() | rhQual.getCVRQualifiers(); 5542 lhQual.removeCVRQualifiers(); 5543 rhQual.removeCVRQualifiers(); 5544 5545 lhptee = S.Context.getQualifiedType(lhptee.getUnqualifiedType(), lhQual); 5546 rhptee = S.Context.getQualifiedType(rhptee.getUnqualifiedType(), rhQual); 5547 5548 QualType CompositeTy = S.Context.mergeTypes(lhptee, rhptee); 5549 5550 if (CompositeTy.isNull()) { 5551 S.Diag(Loc, diag::ext_typecheck_cond_incompatible_pointers) 5552 << LHSTy << RHSTy << LHS.get()->getSourceRange() 5553 << RHS.get()->getSourceRange(); 5554 // In this situation, we assume void* type. No especially good 5555 // reason, but this is what gcc does, and we do have to pick 5556 // to get a consistent AST. 5557 QualType incompatTy = S.Context.getPointerType(S.Context.VoidTy); 5558 LHS = S.ImpCastExprToType(LHS.get(), incompatTy, CK_BitCast); 5559 RHS = S.ImpCastExprToType(RHS.get(), incompatTy, CK_BitCast); 5560 return incompatTy; 5561 } 5562 5563 // The pointer types are compatible. 5564 QualType ResultTy = CompositeTy.withCVRQualifiers(MergedCVRQual); 5565 if (IsBlockPointer) 5566 ResultTy = S.Context.getBlockPointerType(ResultTy); 5567 else 5568 ResultTy = S.Context.getPointerType(ResultTy); 5569 5570 LHS = S.ImpCastExprToType(LHS.get(), ResultTy, CK_BitCast); 5571 RHS = S.ImpCastExprToType(RHS.get(), ResultTy, CK_BitCast); 5572 return ResultTy; 5573 } 5574 5575 /// \brief Returns true if QT is quelified-id and implements 'NSObject' and/or 5576 /// 'NSCopying' protocols (and nothing else); or QT is an NSObject and optionally 5577 /// implements 'NSObject' and/or NSCopying' protocols (and nothing else). 5578 static bool isObjCPtrBlockCompatible(Sema &S, ASTContext &C, QualType QT) { 5579 if (QT->isObjCIdType()) 5580 return true; 5581 5582 const ObjCObjectPointerType *OPT = QT->getAs<ObjCObjectPointerType>(); 5583 if (!OPT) 5584 return false; 5585 5586 if (ObjCInterfaceDecl *ID = OPT->getInterfaceDecl()) 5587 if (ID->getIdentifier() != &C.Idents.get("NSObject")) 5588 return false; 5589 5590 ObjCProtocolDecl* PNSCopying = 5591 S.LookupProtocol(&C.Idents.get("NSCopying"), SourceLocation()); 5592 ObjCProtocolDecl* PNSObject = 5593 S.LookupProtocol(&C.Idents.get("NSObject"), SourceLocation()); 5594 5595 for (auto *Proto : OPT->quals()) { 5596 if ((PNSCopying && declaresSameEntity(Proto, PNSCopying)) || 5597 (PNSObject && declaresSameEntity(Proto, PNSObject))) 5598 ; 5599 else 5600 return false; 5601 } 5602 return true; 5603 } 5604 5605 /// \brief Return the resulting type when the operands are both block pointers. 5606 static QualType checkConditionalBlockPointerCompatibility(Sema &S, 5607 ExprResult &LHS, 5608 ExprResult &RHS, 5609 SourceLocation Loc) { 5610 QualType LHSTy = LHS.get()->getType(); 5611 QualType RHSTy = RHS.get()->getType(); 5612 5613 if (!LHSTy->isBlockPointerType() || !RHSTy->isBlockPointerType()) { 5614 if (LHSTy->isVoidPointerType() || RHSTy->isVoidPointerType()) { 5615 QualType destType = S.Context.getPointerType(S.Context.VoidTy); 5616 LHS = S.ImpCastExprToType(LHS.get(), destType, CK_BitCast); 5617 RHS = S.ImpCastExprToType(RHS.get(), destType, CK_BitCast); 5618 return destType; 5619 } 5620 S.Diag(Loc, diag::err_typecheck_cond_incompatible_operands) 5621 << LHSTy << RHSTy << LHS.get()->getSourceRange() 5622 << RHS.get()->getSourceRange(); 5623 return QualType(); 5624 } 5625 5626 // We have 2 block pointer types. 5627 return checkConditionalPointerCompatibility(S, LHS, RHS, Loc); 5628 } 5629 5630 /// \brief Return the resulting type when the operands are both pointers. 5631 static QualType 5632 checkConditionalObjectPointersCompatibility(Sema &S, ExprResult &LHS, 5633 ExprResult &RHS, 5634 SourceLocation Loc) { 5635 // get the pointer types 5636 QualType LHSTy = LHS.get()->getType(); 5637 QualType RHSTy = RHS.get()->getType(); 5638 5639 // get the "pointed to" types 5640 QualType lhptee = LHSTy->getAs<PointerType>()->getPointeeType(); 5641 QualType rhptee = RHSTy->getAs<PointerType>()->getPointeeType(); 5642 5643 // ignore qualifiers on void (C99 6.5.15p3, clause 6) 5644 if (lhptee->isVoidType() && rhptee->isIncompleteOrObjectType()) { 5645 // Figure out necessary qualifiers (C99 6.5.15p6) 5646 QualType destPointee 5647 = S.Context.getQualifiedType(lhptee, rhptee.getQualifiers()); 5648 QualType destType = S.Context.getPointerType(destPointee); 5649 // Add qualifiers if necessary. 5650 LHS = S.ImpCastExprToType(LHS.get(), destType, CK_NoOp); 5651 // Promote to void*. 5652 RHS = S.ImpCastExprToType(RHS.get(), destType, CK_BitCast); 5653 return destType; 5654 } 5655 if (rhptee->isVoidType() && lhptee->isIncompleteOrObjectType()) { 5656 QualType destPointee 5657 = S.Context.getQualifiedType(rhptee, lhptee.getQualifiers()); 5658 QualType destType = S.Context.getPointerType(destPointee); 5659 // Add qualifiers if necessary. 5660 RHS = S.ImpCastExprToType(RHS.get(), destType, CK_NoOp); 5661 // Promote to void*. 5662 LHS = S.ImpCastExprToType(LHS.get(), destType, CK_BitCast); 5663 return destType; 5664 } 5665 5666 return checkConditionalPointerCompatibility(S, LHS, RHS, Loc); 5667 } 5668 5669 /// \brief Return false if the first expression is not an integer and the second 5670 /// expression is not a pointer, true otherwise. 5671 static bool checkPointerIntegerMismatch(Sema &S, ExprResult &Int, 5672 Expr* PointerExpr, SourceLocation Loc, 5673 bool IsIntFirstExpr) { 5674 if (!PointerExpr->getType()->isPointerType() || 5675 !Int.get()->getType()->isIntegerType()) 5676 return false; 5677 5678 Expr *Expr1 = IsIntFirstExpr ? Int.get() : PointerExpr; 5679 Expr *Expr2 = IsIntFirstExpr ? PointerExpr : Int.get(); 5680 5681 S.Diag(Loc, diag::ext_typecheck_cond_pointer_integer_mismatch) 5682 << Expr1->getType() << Expr2->getType() 5683 << Expr1->getSourceRange() << Expr2->getSourceRange(); 5684 Int = S.ImpCastExprToType(Int.get(), PointerExpr->getType(), 5685 CK_IntegralToPointer); 5686 return true; 5687 } 5688 5689 /// Note that LHS is not null here, even if this is the gnu "x ?: y" extension. 5690 /// In that case, LHS = cond. 5691 /// C99 6.5.15 5692 QualType Sema::CheckConditionalOperands(ExprResult &Cond, ExprResult &LHS, 5693 ExprResult &RHS, ExprValueKind &VK, 5694 ExprObjectKind &OK, 5695 SourceLocation QuestionLoc) { 5696 5697 ExprResult LHSResult = CheckPlaceholderExpr(LHS.get()); 5698 if (!LHSResult.isUsable()) return QualType(); 5699 LHS = LHSResult; 5700 5701 ExprResult RHSResult = CheckPlaceholderExpr(RHS.get()); 5702 if (!RHSResult.isUsable()) return QualType(); 5703 RHS = RHSResult; 5704 5705 // C++ is sufficiently different to merit its own checker. 5706 if (getLangOpts().CPlusPlus) 5707 return CXXCheckConditionalOperands(Cond, LHS, RHS, VK, OK, QuestionLoc); 5708 5709 VK = VK_RValue; 5710 OK = OK_Ordinary; 5711 5712 // First, check the condition. 5713 Cond = UsualUnaryConversions(Cond.get()); 5714 if (Cond.isInvalid()) 5715 return QualType(); 5716 if (checkCondition(*this, Cond.get())) 5717 return QualType(); 5718 5719 // Now check the two expressions. 5720 if (LHS.get()->getType()->isVectorType() || 5721 RHS.get()->getType()->isVectorType()) 5722 return CheckVectorOperands(LHS, RHS, QuestionLoc, /*isCompAssign*/false); 5723 5724 UsualArithmeticConversions(LHS, RHS); 5725 if (LHS.isInvalid() || RHS.isInvalid()) 5726 return QualType(); 5727 5728 QualType CondTy = Cond.get()->getType(); 5729 QualType LHSTy = LHS.get()->getType(); 5730 QualType RHSTy = RHS.get()->getType(); 5731 5732 // If the condition is a vector, and both operands are scalar, 5733 // attempt to implicity convert them to the vector type to act like the 5734 // built in select. (OpenCL v1.1 s6.3.i) 5735 if (getLangOpts().OpenCL && CondTy->isVectorType()) 5736 if (checkConditionalConvertScalarsToVectors(*this, LHS, RHS, CondTy)) 5737 return QualType(); 5738 5739 // If both operands have arithmetic type, do the usual arithmetic conversions 5740 // to find a common type: C99 6.5.15p3,5. 5741 if (LHSTy->isArithmeticType() && RHSTy->isArithmeticType()) 5742 return LHS.get()->getType(); 5743 5744 // If both operands are the same structure or union type, the result is that 5745 // type. 5746 if (const RecordType *LHSRT = LHSTy->getAs<RecordType>()) { // C99 6.5.15p3 5747 if (const RecordType *RHSRT = RHSTy->getAs<RecordType>()) 5748 if (LHSRT->getDecl() == RHSRT->getDecl()) 5749 // "If both the operands have structure or union type, the result has 5750 // that type." This implies that CV qualifiers are dropped. 5751 return LHSTy.getUnqualifiedType(); 5752 // FIXME: Type of conditional expression must be complete in C mode. 5753 } 5754 5755 // C99 6.5.15p5: "If both operands have void type, the result has void type." 5756 // The following || allows only one side to be void (a GCC-ism). 5757 if (LHSTy->isVoidType() || RHSTy->isVoidType()) { 5758 return checkConditionalVoidType(*this, LHS, RHS); 5759 } 5760 5761 // C99 6.5.15p6 - "if one operand is a null pointer constant, the result has 5762 // the type of the other operand." 5763 if (!checkConditionalNullPointer(*this, RHS, LHSTy)) return LHSTy; 5764 if (!checkConditionalNullPointer(*this, LHS, RHSTy)) return RHSTy; 5765 5766 // All objective-c pointer type analysis is done here. 5767 QualType compositeType = FindCompositeObjCPointerType(LHS, RHS, 5768 QuestionLoc); 5769 if (LHS.isInvalid() || RHS.isInvalid()) 5770 return QualType(); 5771 if (!compositeType.isNull()) 5772 return compositeType; 5773 5774 5775 // Handle block pointer types. 5776 if (LHSTy->isBlockPointerType() || RHSTy->isBlockPointerType()) 5777 return checkConditionalBlockPointerCompatibility(*this, LHS, RHS, 5778 QuestionLoc); 5779 5780 // Check constraints for C object pointers types (C99 6.5.15p3,6). 5781 if (LHSTy->isPointerType() && RHSTy->isPointerType()) 5782 return checkConditionalObjectPointersCompatibility(*this, LHS, RHS, 5783 QuestionLoc); 5784 5785 // GCC compatibility: soften pointer/integer mismatch. Note that 5786 // null pointers have been filtered out by this point. 5787 if (checkPointerIntegerMismatch(*this, LHS, RHS.get(), QuestionLoc, 5788 /*isIntFirstExpr=*/true)) 5789 return RHSTy; 5790 if (checkPointerIntegerMismatch(*this, RHS, LHS.get(), QuestionLoc, 5791 /*isIntFirstExpr=*/false)) 5792 return LHSTy; 5793 5794 // Emit a better diagnostic if one of the expressions is a null pointer 5795 // constant and the other is not a pointer type. In this case, the user most 5796 // likely forgot to take the address of the other expression. 5797 if (DiagnoseConditionalForNull(LHS.get(), RHS.get(), QuestionLoc)) 5798 return QualType(); 5799 5800 // Otherwise, the operands are not compatible. 5801 Diag(QuestionLoc, diag::err_typecheck_cond_incompatible_operands) 5802 << LHSTy << RHSTy << LHS.get()->getSourceRange() 5803 << RHS.get()->getSourceRange(); 5804 return QualType(); 5805 } 5806 5807 /// FindCompositeObjCPointerType - Helper method to find composite type of 5808 /// two objective-c pointer types of the two input expressions. 5809 QualType Sema::FindCompositeObjCPointerType(ExprResult &LHS, ExprResult &RHS, 5810 SourceLocation QuestionLoc) { 5811 QualType LHSTy = LHS.get()->getType(); 5812 QualType RHSTy = RHS.get()->getType(); 5813 5814 // Handle things like Class and struct objc_class*. Here we case the result 5815 // to the pseudo-builtin, because that will be implicitly cast back to the 5816 // redefinition type if an attempt is made to access its fields. 5817 if (LHSTy->isObjCClassType() && 5818 (Context.hasSameType(RHSTy, Context.getObjCClassRedefinitionType()))) { 5819 RHS = ImpCastExprToType(RHS.get(), LHSTy, CK_CPointerToObjCPointerCast); 5820 return LHSTy; 5821 } 5822 if (RHSTy->isObjCClassType() && 5823 (Context.hasSameType(LHSTy, Context.getObjCClassRedefinitionType()))) { 5824 LHS = ImpCastExprToType(LHS.get(), RHSTy, CK_CPointerToObjCPointerCast); 5825 return RHSTy; 5826 } 5827 // And the same for struct objc_object* / id 5828 if (LHSTy->isObjCIdType() && 5829 (Context.hasSameType(RHSTy, Context.getObjCIdRedefinitionType()))) { 5830 RHS = ImpCastExprToType(RHS.get(), LHSTy, CK_CPointerToObjCPointerCast); 5831 return LHSTy; 5832 } 5833 if (RHSTy->isObjCIdType() && 5834 (Context.hasSameType(LHSTy, Context.getObjCIdRedefinitionType()))) { 5835 LHS = ImpCastExprToType(LHS.get(), RHSTy, CK_CPointerToObjCPointerCast); 5836 return RHSTy; 5837 } 5838 // And the same for struct objc_selector* / SEL 5839 if (Context.isObjCSelType(LHSTy) && 5840 (Context.hasSameType(RHSTy, Context.getObjCSelRedefinitionType()))) { 5841 RHS = ImpCastExprToType(RHS.get(), LHSTy, CK_BitCast); 5842 return LHSTy; 5843 } 5844 if (Context.isObjCSelType(RHSTy) && 5845 (Context.hasSameType(LHSTy, Context.getObjCSelRedefinitionType()))) { 5846 LHS = ImpCastExprToType(LHS.get(), RHSTy, CK_BitCast); 5847 return RHSTy; 5848 } 5849 // Check constraints for Objective-C object pointers types. 5850 if (LHSTy->isObjCObjectPointerType() && RHSTy->isObjCObjectPointerType()) { 5851 5852 if (Context.getCanonicalType(LHSTy) == Context.getCanonicalType(RHSTy)) { 5853 // Two identical object pointer types are always compatible. 5854 return LHSTy; 5855 } 5856 const ObjCObjectPointerType *LHSOPT = LHSTy->castAs<ObjCObjectPointerType>(); 5857 const ObjCObjectPointerType *RHSOPT = RHSTy->castAs<ObjCObjectPointerType>(); 5858 QualType compositeType = LHSTy; 5859 5860 // If both operands are interfaces and either operand can be 5861 // assigned to the other, use that type as the composite 5862 // type. This allows 5863 // xxx ? (A*) a : (B*) b 5864 // where B is a subclass of A. 5865 // 5866 // Additionally, as for assignment, if either type is 'id' 5867 // allow silent coercion. Finally, if the types are 5868 // incompatible then make sure to use 'id' as the composite 5869 // type so the result is acceptable for sending messages to. 5870 5871 // FIXME: Consider unifying with 'areComparableObjCPointerTypes'. 5872 // It could return the composite type. 5873 if (Context.canAssignObjCInterfaces(LHSOPT, RHSOPT)) { 5874 compositeType = RHSOPT->isObjCBuiltinType() ? RHSTy : LHSTy; 5875 } else if (Context.canAssignObjCInterfaces(RHSOPT, LHSOPT)) { 5876 compositeType = LHSOPT->isObjCBuiltinType() ? LHSTy : RHSTy; 5877 } else if ((LHSTy->isObjCQualifiedIdType() || 5878 RHSTy->isObjCQualifiedIdType()) && 5879 Context.ObjCQualifiedIdTypesAreCompatible(LHSTy, RHSTy, true)) { 5880 // Need to handle "id<xx>" explicitly. 5881 // GCC allows qualified id and any Objective-C type to devolve to 5882 // id. Currently localizing to here until clear this should be 5883 // part of ObjCQualifiedIdTypesAreCompatible. 5884 compositeType = Context.getObjCIdType(); 5885 } else if (LHSTy->isObjCIdType() || RHSTy->isObjCIdType()) { 5886 compositeType = Context.getObjCIdType(); 5887 } else if (!(compositeType = 5888 Context.areCommonBaseCompatible(LHSOPT, RHSOPT)).isNull()) 5889 ; 5890 else { 5891 Diag(QuestionLoc, diag::ext_typecheck_cond_incompatible_operands) 5892 << LHSTy << RHSTy 5893 << LHS.get()->getSourceRange() << RHS.get()->getSourceRange(); 5894 QualType incompatTy = Context.getObjCIdType(); 5895 LHS = ImpCastExprToType(LHS.get(), incompatTy, CK_BitCast); 5896 RHS = ImpCastExprToType(RHS.get(), incompatTy, CK_BitCast); 5897 return incompatTy; 5898 } 5899 // The object pointer types are compatible. 5900 LHS = ImpCastExprToType(LHS.get(), compositeType, CK_BitCast); 5901 RHS = ImpCastExprToType(RHS.get(), compositeType, CK_BitCast); 5902 return compositeType; 5903 } 5904 // Check Objective-C object pointer types and 'void *' 5905 if (LHSTy->isVoidPointerType() && RHSTy->isObjCObjectPointerType()) { 5906 if (getLangOpts().ObjCAutoRefCount) { 5907 // ARC forbids the implicit conversion of object pointers to 'void *', 5908 // so these types are not compatible. 5909 Diag(QuestionLoc, diag::err_cond_voidptr_arc) << LHSTy << RHSTy 5910 << LHS.get()->getSourceRange() << RHS.get()->getSourceRange(); 5911 LHS = RHS = true; 5912 return QualType(); 5913 } 5914 QualType lhptee = LHSTy->getAs<PointerType>()->getPointeeType(); 5915 QualType rhptee = RHSTy->getAs<ObjCObjectPointerType>()->getPointeeType(); 5916 QualType destPointee 5917 = Context.getQualifiedType(lhptee, rhptee.getQualifiers()); 5918 QualType destType = Context.getPointerType(destPointee); 5919 // Add qualifiers if necessary. 5920 LHS = ImpCastExprToType(LHS.get(), destType, CK_NoOp); 5921 // Promote to void*. 5922 RHS = ImpCastExprToType(RHS.get(), destType, CK_BitCast); 5923 return destType; 5924 } 5925 if (LHSTy->isObjCObjectPointerType() && RHSTy->isVoidPointerType()) { 5926 if (getLangOpts().ObjCAutoRefCount) { 5927 // ARC forbids the implicit conversion of object pointers to 'void *', 5928 // so these types are not compatible. 5929 Diag(QuestionLoc, diag::err_cond_voidptr_arc) << LHSTy << RHSTy 5930 << LHS.get()->getSourceRange() << RHS.get()->getSourceRange(); 5931 LHS = RHS = true; 5932 return QualType(); 5933 } 5934 QualType lhptee = LHSTy->getAs<ObjCObjectPointerType>()->getPointeeType(); 5935 QualType rhptee = RHSTy->getAs<PointerType>()->getPointeeType(); 5936 QualType destPointee 5937 = Context.getQualifiedType(rhptee, lhptee.getQualifiers()); 5938 QualType destType = Context.getPointerType(destPointee); 5939 // Add qualifiers if necessary. 5940 RHS = ImpCastExprToType(RHS.get(), destType, CK_NoOp); 5941 // Promote to void*. 5942 LHS = ImpCastExprToType(LHS.get(), destType, CK_BitCast); 5943 return destType; 5944 } 5945 return QualType(); 5946 } 5947 5948 /// SuggestParentheses - Emit a note with a fixit hint that wraps 5949 /// ParenRange in parentheses. 5950 static void SuggestParentheses(Sema &Self, SourceLocation Loc, 5951 const PartialDiagnostic &Note, 5952 SourceRange ParenRange) { 5953 SourceLocation EndLoc = Self.PP.getLocForEndOfToken(ParenRange.getEnd()); 5954 if (ParenRange.getBegin().isFileID() && ParenRange.getEnd().isFileID() && 5955 EndLoc.isValid()) { 5956 Self.Diag(Loc, Note) 5957 << FixItHint::CreateInsertion(ParenRange.getBegin(), "(") 5958 << FixItHint::CreateInsertion(EndLoc, ")"); 5959 } else { 5960 // We can't display the parentheses, so just show the bare note. 5961 Self.Diag(Loc, Note) << ParenRange; 5962 } 5963 } 5964 5965 static bool IsArithmeticOp(BinaryOperatorKind Opc) { 5966 return Opc >= BO_Mul && Opc <= BO_Shr; 5967 } 5968 5969 /// IsArithmeticBinaryExpr - Returns true if E is an arithmetic binary 5970 /// expression, either using a built-in or overloaded operator, 5971 /// and sets *OpCode to the opcode and *RHSExprs to the right-hand side 5972 /// expression. 5973 static bool IsArithmeticBinaryExpr(Expr *E, BinaryOperatorKind *Opcode, 5974 Expr **RHSExprs) { 5975 // Don't strip parenthesis: we should not warn if E is in parenthesis. 5976 E = E->IgnoreImpCasts(); 5977 E = E->IgnoreConversionOperator(); 5978 E = E->IgnoreImpCasts(); 5979 5980 // Built-in binary operator. 5981 if (BinaryOperator *OP = dyn_cast<BinaryOperator>(E)) { 5982 if (IsArithmeticOp(OP->getOpcode())) { 5983 *Opcode = OP->getOpcode(); 5984 *RHSExprs = OP->getRHS(); 5985 return true; 5986 } 5987 } 5988 5989 // Overloaded operator. 5990 if (CXXOperatorCallExpr *Call = dyn_cast<CXXOperatorCallExpr>(E)) { 5991 if (Call->getNumArgs() != 2) 5992 return false; 5993 5994 // Make sure this is really a binary operator that is safe to pass into 5995 // BinaryOperator::getOverloadedOpcode(), e.g. it's not a subscript op. 5996 OverloadedOperatorKind OO = Call->getOperator(); 5997 if (OO < OO_Plus || OO > OO_Arrow || 5998 OO == OO_PlusPlus || OO == OO_MinusMinus) 5999 return false; 6000 6001 BinaryOperatorKind OpKind = BinaryOperator::getOverloadedOpcode(OO); 6002 if (IsArithmeticOp(OpKind)) { 6003 *Opcode = OpKind; 6004 *RHSExprs = Call->getArg(1); 6005 return true; 6006 } 6007 } 6008 6009 return false; 6010 } 6011 6012 static bool IsLogicOp(BinaryOperatorKind Opc) { 6013 return (Opc >= BO_LT && Opc <= BO_NE) || (Opc >= BO_LAnd && Opc <= BO_LOr); 6014 } 6015 6016 /// ExprLooksBoolean - Returns true if E looks boolean, i.e. it has boolean type 6017 /// or is a logical expression such as (x==y) which has int type, but is 6018 /// commonly interpreted as boolean. 6019 static bool ExprLooksBoolean(Expr *E) { 6020 E = E->IgnoreParenImpCasts(); 6021 6022 if (E->getType()->isBooleanType()) 6023 return true; 6024 if (BinaryOperator *OP = dyn_cast<BinaryOperator>(E)) 6025 return IsLogicOp(OP->getOpcode()); 6026 if (UnaryOperator *OP = dyn_cast<UnaryOperator>(E)) 6027 return OP->getOpcode() == UO_LNot; 6028 6029 return false; 6030 } 6031 6032 /// DiagnoseConditionalPrecedence - Emit a warning when a conditional operator 6033 /// and binary operator are mixed in a way that suggests the programmer assumed 6034 /// the conditional operator has higher precedence, for example: 6035 /// "int x = a + someBinaryCondition ? 1 : 2". 6036 static void DiagnoseConditionalPrecedence(Sema &Self, 6037 SourceLocation OpLoc, 6038 Expr *Condition, 6039 Expr *LHSExpr, 6040 Expr *RHSExpr) { 6041 BinaryOperatorKind CondOpcode; 6042 Expr *CondRHS; 6043 6044 if (!IsArithmeticBinaryExpr(Condition, &CondOpcode, &CondRHS)) 6045 return; 6046 if (!ExprLooksBoolean(CondRHS)) 6047 return; 6048 6049 // The condition is an arithmetic binary expression, with a right- 6050 // hand side that looks boolean, so warn. 6051 6052 Self.Diag(OpLoc, diag::warn_precedence_conditional) 6053 << Condition->getSourceRange() 6054 << BinaryOperator::getOpcodeStr(CondOpcode); 6055 6056 SuggestParentheses(Self, OpLoc, 6057 Self.PDiag(diag::note_precedence_silence) 6058 << BinaryOperator::getOpcodeStr(CondOpcode), 6059 SourceRange(Condition->getLocStart(), Condition->getLocEnd())); 6060 6061 SuggestParentheses(Self, OpLoc, 6062 Self.PDiag(diag::note_precedence_conditional_first), 6063 SourceRange(CondRHS->getLocStart(), RHSExpr->getLocEnd())); 6064 } 6065 6066 /// ActOnConditionalOp - Parse a ?: operation. Note that 'LHS' may be null 6067 /// in the case of a the GNU conditional expr extension. 6068 ExprResult Sema::ActOnConditionalOp(SourceLocation QuestionLoc, 6069 SourceLocation ColonLoc, 6070 Expr *CondExpr, Expr *LHSExpr, 6071 Expr *RHSExpr) { 6072 // If this is the gnu "x ?: y" extension, analyze the types as though the LHS 6073 // was the condition. 6074 OpaqueValueExpr *opaqueValue = nullptr; 6075 Expr *commonExpr = nullptr; 6076 if (!LHSExpr) { 6077 commonExpr = CondExpr; 6078 // Lower out placeholder types first. This is important so that we don't 6079 // try to capture a placeholder. This happens in few cases in C++; such 6080 // as Objective-C++'s dictionary subscripting syntax. 6081 if (commonExpr->hasPlaceholderType()) { 6082 ExprResult result = CheckPlaceholderExpr(commonExpr); 6083 if (!result.isUsable()) return ExprError(); 6084 commonExpr = result.get(); 6085 } 6086 // We usually want to apply unary conversions *before* saving, except 6087 // in the special case of a C++ l-value conditional. 6088 if (!(getLangOpts().CPlusPlus 6089 && !commonExpr->isTypeDependent() 6090 && commonExpr->getValueKind() == RHSExpr->getValueKind() 6091 && commonExpr->isGLValue() 6092 && commonExpr->isOrdinaryOrBitFieldObject() 6093 && RHSExpr->isOrdinaryOrBitFieldObject() 6094 && Context.hasSameType(commonExpr->getType(), RHSExpr->getType()))) { 6095 ExprResult commonRes = UsualUnaryConversions(commonExpr); 6096 if (commonRes.isInvalid()) 6097 return ExprError(); 6098 commonExpr = commonRes.get(); 6099 } 6100 6101 opaqueValue = new (Context) OpaqueValueExpr(commonExpr->getExprLoc(), 6102 commonExpr->getType(), 6103 commonExpr->getValueKind(), 6104 commonExpr->getObjectKind(), 6105 commonExpr); 6106 LHSExpr = CondExpr = opaqueValue; 6107 } 6108 6109 ExprValueKind VK = VK_RValue; 6110 ExprObjectKind OK = OK_Ordinary; 6111 ExprResult Cond = CondExpr, LHS = LHSExpr, RHS = RHSExpr; 6112 QualType result = CheckConditionalOperands(Cond, LHS, RHS, 6113 VK, OK, QuestionLoc); 6114 if (result.isNull() || Cond.isInvalid() || LHS.isInvalid() || 6115 RHS.isInvalid()) 6116 return ExprError(); 6117 6118 DiagnoseConditionalPrecedence(*this, QuestionLoc, Cond.get(), LHS.get(), 6119 RHS.get()); 6120 6121 if (!commonExpr) 6122 return new (Context) 6123 ConditionalOperator(Cond.get(), QuestionLoc, LHS.get(), ColonLoc, 6124 RHS.get(), result, VK, OK); 6125 6126 return new (Context) BinaryConditionalOperator( 6127 commonExpr, opaqueValue, Cond.get(), LHS.get(), RHS.get(), QuestionLoc, 6128 ColonLoc, result, VK, OK); 6129 } 6130 6131 // checkPointerTypesForAssignment - This is a very tricky routine (despite 6132 // being closely modeled after the C99 spec:-). The odd characteristic of this 6133 // routine is it effectively iqnores the qualifiers on the top level pointee. 6134 // This circumvents the usual type rules specified in 6.2.7p1 & 6.7.5.[1-3]. 6135 // FIXME: add a couple examples in this comment. 6136 static Sema::AssignConvertType 6137 checkPointerTypesForAssignment(Sema &S, QualType LHSType, QualType RHSType) { 6138 assert(LHSType.isCanonical() && "LHS not canonicalized!"); 6139 assert(RHSType.isCanonical() && "RHS not canonicalized!"); 6140 6141 // get the "pointed to" type (ignoring qualifiers at the top level) 6142 const Type *lhptee, *rhptee; 6143 Qualifiers lhq, rhq; 6144 std::tie(lhptee, lhq) = 6145 cast<PointerType>(LHSType)->getPointeeType().split().asPair(); 6146 std::tie(rhptee, rhq) = 6147 cast<PointerType>(RHSType)->getPointeeType().split().asPair(); 6148 6149 Sema::AssignConvertType ConvTy = Sema::Compatible; 6150 6151 // C99 6.5.16.1p1: This following citation is common to constraints 6152 // 3 & 4 (below). ...and the type *pointed to* by the left has all the 6153 // qualifiers of the type *pointed to* by the right; 6154 6155 // As a special case, 'non-__weak A *' -> 'non-__weak const *' is okay. 6156 if (lhq.getObjCLifetime() != rhq.getObjCLifetime() && 6157 lhq.compatiblyIncludesObjCLifetime(rhq)) { 6158 // Ignore lifetime for further calculation. 6159 lhq.removeObjCLifetime(); 6160 rhq.removeObjCLifetime(); 6161 } 6162 6163 if (!lhq.compatiblyIncludes(rhq)) { 6164 // Treat address-space mismatches as fatal. TODO: address subspaces 6165 if (lhq.getAddressSpace() != rhq.getAddressSpace()) 6166 ConvTy = Sema::IncompatiblePointerDiscardsQualifiers; 6167 6168 // It's okay to add or remove GC or lifetime qualifiers when converting to 6169 // and from void*. 6170 else if (lhq.withoutObjCGCAttr().withoutObjCLifetime() 6171 .compatiblyIncludes( 6172 rhq.withoutObjCGCAttr().withoutObjCLifetime()) 6173 && (lhptee->isVoidType() || rhptee->isVoidType())) 6174 ; // keep old 6175 6176 // Treat lifetime mismatches as fatal. 6177 else if (lhq.getObjCLifetime() != rhq.getObjCLifetime()) 6178 ConvTy = Sema::IncompatiblePointerDiscardsQualifiers; 6179 6180 // For GCC compatibility, other qualifier mismatches are treated 6181 // as still compatible in C. 6182 else ConvTy = Sema::CompatiblePointerDiscardsQualifiers; 6183 } 6184 6185 // C99 6.5.16.1p1 (constraint 4): If one operand is a pointer to an object or 6186 // incomplete type and the other is a pointer to a qualified or unqualified 6187 // version of void... 6188 if (lhptee->isVoidType()) { 6189 if (rhptee->isIncompleteOrObjectType()) 6190 return ConvTy; 6191 6192 // As an extension, we allow cast to/from void* to function pointer. 6193 assert(rhptee->isFunctionType()); 6194 return Sema::FunctionVoidPointer; 6195 } 6196 6197 if (rhptee->isVoidType()) { 6198 if (lhptee->isIncompleteOrObjectType()) 6199 return ConvTy; 6200 6201 // As an extension, we allow cast to/from void* to function pointer. 6202 assert(lhptee->isFunctionType()); 6203 return Sema::FunctionVoidPointer; 6204 } 6205 6206 // C99 6.5.16.1p1 (constraint 3): both operands are pointers to qualified or 6207 // unqualified versions of compatible types, ... 6208 QualType ltrans = QualType(lhptee, 0), rtrans = QualType(rhptee, 0); 6209 if (!S.Context.typesAreCompatible(ltrans, rtrans)) { 6210 // Check if the pointee types are compatible ignoring the sign. 6211 // We explicitly check for char so that we catch "char" vs 6212 // "unsigned char" on systems where "char" is unsigned. 6213 if (lhptee->isCharType()) 6214 ltrans = S.Context.UnsignedCharTy; 6215 else if (lhptee->hasSignedIntegerRepresentation()) 6216 ltrans = S.Context.getCorrespondingUnsignedType(ltrans); 6217 6218 if (rhptee->isCharType()) 6219 rtrans = S.Context.UnsignedCharTy; 6220 else if (rhptee->hasSignedIntegerRepresentation()) 6221 rtrans = S.Context.getCorrespondingUnsignedType(rtrans); 6222 6223 if (ltrans == rtrans) { 6224 // Types are compatible ignoring the sign. Qualifier incompatibility 6225 // takes priority over sign incompatibility because the sign 6226 // warning can be disabled. 6227 if (ConvTy != Sema::Compatible) 6228 return ConvTy; 6229 6230 return Sema::IncompatiblePointerSign; 6231 } 6232 6233 // If we are a multi-level pointer, it's possible that our issue is simply 6234 // one of qualification - e.g. char ** -> const char ** is not allowed. If 6235 // the eventual target type is the same and the pointers have the same 6236 // level of indirection, this must be the issue. 6237 if (isa<PointerType>(lhptee) && isa<PointerType>(rhptee)) { 6238 do { 6239 lhptee = cast<PointerType>(lhptee)->getPointeeType().getTypePtr(); 6240 rhptee = cast<PointerType>(rhptee)->getPointeeType().getTypePtr(); 6241 } while (isa<PointerType>(lhptee) && isa<PointerType>(rhptee)); 6242 6243 if (lhptee == rhptee) 6244 return Sema::IncompatibleNestedPointerQualifiers; 6245 } 6246 6247 // General pointer incompatibility takes priority over qualifiers. 6248 return Sema::IncompatiblePointer; 6249 } 6250 if (!S.getLangOpts().CPlusPlus && 6251 S.IsNoReturnConversion(ltrans, rtrans, ltrans)) 6252 return Sema::IncompatiblePointer; 6253 return ConvTy; 6254 } 6255 6256 /// checkBlockPointerTypesForAssignment - This routine determines whether two 6257 /// block pointer types are compatible or whether a block and normal pointer 6258 /// are compatible. It is more restrict than comparing two function pointer 6259 // types. 6260 static Sema::AssignConvertType 6261 checkBlockPointerTypesForAssignment(Sema &S, QualType LHSType, 6262 QualType RHSType) { 6263 assert(LHSType.isCanonical() && "LHS not canonicalized!"); 6264 assert(RHSType.isCanonical() && "RHS not canonicalized!"); 6265 6266 QualType lhptee, rhptee; 6267 6268 // get the "pointed to" type (ignoring qualifiers at the top level) 6269 lhptee = cast<BlockPointerType>(LHSType)->getPointeeType(); 6270 rhptee = cast<BlockPointerType>(RHSType)->getPointeeType(); 6271 6272 // In C++, the types have to match exactly. 6273 if (S.getLangOpts().CPlusPlus) 6274 return Sema::IncompatibleBlockPointer; 6275 6276 Sema::AssignConvertType ConvTy = Sema::Compatible; 6277 6278 // For blocks we enforce that qualifiers are identical. 6279 if (lhptee.getLocalQualifiers() != rhptee.getLocalQualifiers()) 6280 ConvTy = Sema::CompatiblePointerDiscardsQualifiers; 6281 6282 if (!S.Context.typesAreBlockPointerCompatible(LHSType, RHSType)) 6283 return Sema::IncompatibleBlockPointer; 6284 6285 return ConvTy; 6286 } 6287 6288 /// checkObjCPointerTypesForAssignment - Compares two objective-c pointer types 6289 /// for assignment compatibility. 6290 static Sema::AssignConvertType 6291 checkObjCPointerTypesForAssignment(Sema &S, QualType LHSType, 6292 QualType RHSType) { 6293 assert(LHSType.isCanonical() && "LHS was not canonicalized!"); 6294 assert(RHSType.isCanonical() && "RHS was not canonicalized!"); 6295 6296 if (LHSType->isObjCBuiltinType()) { 6297 // Class is not compatible with ObjC object pointers. 6298 if (LHSType->isObjCClassType() && !RHSType->isObjCBuiltinType() && 6299 !RHSType->isObjCQualifiedClassType()) 6300 return Sema::IncompatiblePointer; 6301 return Sema::Compatible; 6302 } 6303 if (RHSType->isObjCBuiltinType()) { 6304 if (RHSType->isObjCClassType() && !LHSType->isObjCBuiltinType() && 6305 !LHSType->isObjCQualifiedClassType()) 6306 return Sema::IncompatiblePointer; 6307 return Sema::Compatible; 6308 } 6309 QualType lhptee = LHSType->getAs<ObjCObjectPointerType>()->getPointeeType(); 6310 QualType rhptee = RHSType->getAs<ObjCObjectPointerType>()->getPointeeType(); 6311 6312 if (!lhptee.isAtLeastAsQualifiedAs(rhptee) && 6313 // make an exception for id<P> 6314 !LHSType->isObjCQualifiedIdType()) 6315 return Sema::CompatiblePointerDiscardsQualifiers; 6316 6317 if (S.Context.typesAreCompatible(LHSType, RHSType)) 6318 return Sema::Compatible; 6319 if (LHSType->isObjCQualifiedIdType() || RHSType->isObjCQualifiedIdType()) 6320 return Sema::IncompatibleObjCQualifiedId; 6321 return Sema::IncompatiblePointer; 6322 } 6323 6324 Sema::AssignConvertType 6325 Sema::CheckAssignmentConstraints(SourceLocation Loc, 6326 QualType LHSType, QualType RHSType) { 6327 // Fake up an opaque expression. We don't actually care about what 6328 // cast operations are required, so if CheckAssignmentConstraints 6329 // adds casts to this they'll be wasted, but fortunately that doesn't 6330 // usually happen on valid code. 6331 OpaqueValueExpr RHSExpr(Loc, RHSType, VK_RValue); 6332 ExprResult RHSPtr = &RHSExpr; 6333 CastKind K = CK_Invalid; 6334 6335 return CheckAssignmentConstraints(LHSType, RHSPtr, K); 6336 } 6337 6338 /// CheckAssignmentConstraints (C99 6.5.16) - This routine currently 6339 /// has code to accommodate several GCC extensions when type checking 6340 /// pointers. Here are some objectionable examples that GCC considers warnings: 6341 /// 6342 /// int a, *pint; 6343 /// short *pshort; 6344 /// struct foo *pfoo; 6345 /// 6346 /// pint = pshort; // warning: assignment from incompatible pointer type 6347 /// a = pint; // warning: assignment makes integer from pointer without a cast 6348 /// pint = a; // warning: assignment makes pointer from integer without a cast 6349 /// pint = pfoo; // warning: assignment from incompatible pointer type 6350 /// 6351 /// As a result, the code for dealing with pointers is more complex than the 6352 /// C99 spec dictates. 6353 /// 6354 /// Sets 'Kind' for any result kind except Incompatible. 6355 Sema::AssignConvertType 6356 Sema::CheckAssignmentConstraints(QualType LHSType, ExprResult &RHS, 6357 CastKind &Kind) { 6358 QualType RHSType = RHS.get()->getType(); 6359 QualType OrigLHSType = LHSType; 6360 6361 // Get canonical types. We're not formatting these types, just comparing 6362 // them. 6363 LHSType = Context.getCanonicalType(LHSType).getUnqualifiedType(); 6364 RHSType = Context.getCanonicalType(RHSType).getUnqualifiedType(); 6365 6366 // Common case: no conversion required. 6367 if (LHSType == RHSType) { 6368 Kind = CK_NoOp; 6369 return Compatible; 6370 } 6371 6372 // If we have an atomic type, try a non-atomic assignment, then just add an 6373 // atomic qualification step. 6374 if (const AtomicType *AtomicTy = dyn_cast<AtomicType>(LHSType)) { 6375 Sema::AssignConvertType result = 6376 CheckAssignmentConstraints(AtomicTy->getValueType(), RHS, Kind); 6377 if (result != Compatible) 6378 return result; 6379 if (Kind != CK_NoOp) 6380 RHS = ImpCastExprToType(RHS.get(), AtomicTy->getValueType(), Kind); 6381 Kind = CK_NonAtomicToAtomic; 6382 return Compatible; 6383 } 6384 6385 // If the left-hand side is a reference type, then we are in a 6386 // (rare!) case where we've allowed the use of references in C, 6387 // e.g., as a parameter type in a built-in function. In this case, 6388 // just make sure that the type referenced is compatible with the 6389 // right-hand side type. The caller is responsible for adjusting 6390 // LHSType so that the resulting expression does not have reference 6391 // type. 6392 if (const ReferenceType *LHSTypeRef = LHSType->getAs<ReferenceType>()) { 6393 if (Context.typesAreCompatible(LHSTypeRef->getPointeeType(), RHSType)) { 6394 Kind = CK_LValueBitCast; 6395 return Compatible; 6396 } 6397 return Incompatible; 6398 } 6399 6400 // Allow scalar to ExtVector assignments, and assignments of an ExtVector type 6401 // to the same ExtVector type. 6402 if (LHSType->isExtVectorType()) { 6403 if (RHSType->isExtVectorType()) 6404 return Incompatible; 6405 if (RHSType->isArithmeticType()) { 6406 // CK_VectorSplat does T -> vector T, so first cast to the 6407 // element type. 6408 QualType elType = cast<ExtVectorType>(LHSType)->getElementType(); 6409 if (elType != RHSType) { 6410 Kind = PrepareScalarCast(RHS, elType); 6411 RHS = ImpCastExprToType(RHS.get(), elType, Kind); 6412 } 6413 Kind = CK_VectorSplat; 6414 return Compatible; 6415 } 6416 } 6417 6418 // Conversions to or from vector type. 6419 if (LHSType->isVectorType() || RHSType->isVectorType()) { 6420 if (LHSType->isVectorType() && RHSType->isVectorType()) { 6421 // Allow assignments of an AltiVec vector type to an equivalent GCC 6422 // vector type and vice versa 6423 if (Context.areCompatibleVectorTypes(LHSType, RHSType)) { 6424 Kind = CK_BitCast; 6425 return Compatible; 6426 } 6427 6428 // If we are allowing lax vector conversions, and LHS and RHS are both 6429 // vectors, the total size only needs to be the same. This is a bitcast; 6430 // no bits are changed but the result type is different. 6431 if (isLaxVectorConversion(RHSType, LHSType)) { 6432 Kind = CK_BitCast; 6433 return IncompatibleVectors; 6434 } 6435 } 6436 return Incompatible; 6437 } 6438 6439 // Arithmetic conversions. 6440 if (LHSType->isArithmeticType() && RHSType->isArithmeticType() && 6441 !(getLangOpts().CPlusPlus && LHSType->isEnumeralType())) { 6442 Kind = PrepareScalarCast(RHS, LHSType); 6443 return Compatible; 6444 } 6445 6446 // Conversions to normal pointers. 6447 if (const PointerType *LHSPointer = dyn_cast<PointerType>(LHSType)) { 6448 // U* -> T* 6449 if (isa<PointerType>(RHSType)) { 6450 Kind = CK_BitCast; 6451 return checkPointerTypesForAssignment(*this, LHSType, RHSType); 6452 } 6453 6454 // int -> T* 6455 if (RHSType->isIntegerType()) { 6456 Kind = CK_IntegralToPointer; // FIXME: null? 6457 return IntToPointer; 6458 } 6459 6460 // C pointers are not compatible with ObjC object pointers, 6461 // with two exceptions: 6462 if (isa<ObjCObjectPointerType>(RHSType)) { 6463 // - conversions to void* 6464 if (LHSPointer->getPointeeType()->isVoidType()) { 6465 Kind = CK_BitCast; 6466 return Compatible; 6467 } 6468 6469 // - conversions from 'Class' to the redefinition type 6470 if (RHSType->isObjCClassType() && 6471 Context.hasSameType(LHSType, 6472 Context.getObjCClassRedefinitionType())) { 6473 Kind = CK_BitCast; 6474 return Compatible; 6475 } 6476 6477 Kind = CK_BitCast; 6478 return IncompatiblePointer; 6479 } 6480 6481 // U^ -> void* 6482 if (RHSType->getAs<BlockPointerType>()) { 6483 if (LHSPointer->getPointeeType()->isVoidType()) { 6484 Kind = CK_BitCast; 6485 return Compatible; 6486 } 6487 } 6488 6489 return Incompatible; 6490 } 6491 6492 // Conversions to block pointers. 6493 if (isa<BlockPointerType>(LHSType)) { 6494 // U^ -> T^ 6495 if (RHSType->isBlockPointerType()) { 6496 Kind = CK_BitCast; 6497 return checkBlockPointerTypesForAssignment(*this, LHSType, RHSType); 6498 } 6499 6500 // int or null -> T^ 6501 if (RHSType->isIntegerType()) { 6502 Kind = CK_IntegralToPointer; // FIXME: null 6503 return IntToBlockPointer; 6504 } 6505 6506 // id -> T^ 6507 if (getLangOpts().ObjC1 && RHSType->isObjCIdType()) { 6508 Kind = CK_AnyPointerToBlockPointerCast; 6509 return Compatible; 6510 } 6511 6512 // void* -> T^ 6513 if (const PointerType *RHSPT = RHSType->getAs<PointerType>()) 6514 if (RHSPT->getPointeeType()->isVoidType()) { 6515 Kind = CK_AnyPointerToBlockPointerCast; 6516 return Compatible; 6517 } 6518 6519 return Incompatible; 6520 } 6521 6522 // Conversions to Objective-C pointers. 6523 if (isa<ObjCObjectPointerType>(LHSType)) { 6524 // A* -> B* 6525 if (RHSType->isObjCObjectPointerType()) { 6526 Kind = CK_BitCast; 6527 Sema::AssignConvertType result = 6528 checkObjCPointerTypesForAssignment(*this, LHSType, RHSType); 6529 if (getLangOpts().ObjCAutoRefCount && 6530 result == Compatible && 6531 !CheckObjCARCUnavailableWeakConversion(OrigLHSType, RHSType)) 6532 result = IncompatibleObjCWeakRef; 6533 return result; 6534 } 6535 6536 // int or null -> A* 6537 if (RHSType->isIntegerType()) { 6538 Kind = CK_IntegralToPointer; // FIXME: null 6539 return IntToPointer; 6540 } 6541 6542 // In general, C pointers are not compatible with ObjC object pointers, 6543 // with two exceptions: 6544 if (isa<PointerType>(RHSType)) { 6545 Kind = CK_CPointerToObjCPointerCast; 6546 6547 // - conversions from 'void*' 6548 if (RHSType->isVoidPointerType()) { 6549 return Compatible; 6550 } 6551 6552 // - conversions to 'Class' from its redefinition type 6553 if (LHSType->isObjCClassType() && 6554 Context.hasSameType(RHSType, 6555 Context.getObjCClassRedefinitionType())) { 6556 return Compatible; 6557 } 6558 6559 return IncompatiblePointer; 6560 } 6561 6562 // Only under strict condition T^ is compatible with an Objective-C pointer. 6563 if (RHSType->isBlockPointerType() && 6564 isObjCPtrBlockCompatible(*this, Context, LHSType)) { 6565 maybeExtendBlockObject(*this, RHS); 6566 Kind = CK_BlockPointerToObjCPointerCast; 6567 return Compatible; 6568 } 6569 6570 return Incompatible; 6571 } 6572 6573 // Conversions from pointers that are not covered by the above. 6574 if (isa<PointerType>(RHSType)) { 6575 // T* -> _Bool 6576 if (LHSType == Context.BoolTy) { 6577 Kind = CK_PointerToBoolean; 6578 return Compatible; 6579 } 6580 6581 // T* -> int 6582 if (LHSType->isIntegerType()) { 6583 Kind = CK_PointerToIntegral; 6584 return PointerToInt; 6585 } 6586 6587 return Incompatible; 6588 } 6589 6590 // Conversions from Objective-C pointers that are not covered by the above. 6591 if (isa<ObjCObjectPointerType>(RHSType)) { 6592 // T* -> _Bool 6593 if (LHSType == Context.BoolTy) { 6594 Kind = CK_PointerToBoolean; 6595 return Compatible; 6596 } 6597 6598 // T* -> int 6599 if (LHSType->isIntegerType()) { 6600 Kind = CK_PointerToIntegral; 6601 return PointerToInt; 6602 } 6603 6604 return Incompatible; 6605 } 6606 6607 // struct A -> struct B 6608 if (isa<TagType>(LHSType) && isa<TagType>(RHSType)) { 6609 if (Context.typesAreCompatible(LHSType, RHSType)) { 6610 Kind = CK_NoOp; 6611 return Compatible; 6612 } 6613 } 6614 6615 return Incompatible; 6616 } 6617 6618 /// \brief Constructs a transparent union from an expression that is 6619 /// used to initialize the transparent union. 6620 static void ConstructTransparentUnion(Sema &S, ASTContext &C, 6621 ExprResult &EResult, QualType UnionType, 6622 FieldDecl *Field) { 6623 // Build an initializer list that designates the appropriate member 6624 // of the transparent union. 6625 Expr *E = EResult.get(); 6626 InitListExpr *Initializer = new (C) InitListExpr(C, SourceLocation(), 6627 E, SourceLocation()); 6628 Initializer->setType(UnionType); 6629 Initializer->setInitializedFieldInUnion(Field); 6630 6631 // Build a compound literal constructing a value of the transparent 6632 // union type from this initializer list. 6633 TypeSourceInfo *unionTInfo = C.getTrivialTypeSourceInfo(UnionType); 6634 EResult = new (C) CompoundLiteralExpr(SourceLocation(), unionTInfo, UnionType, 6635 VK_RValue, Initializer, false); 6636 } 6637 6638 Sema::AssignConvertType 6639 Sema::CheckTransparentUnionArgumentConstraints(QualType ArgType, 6640 ExprResult &RHS) { 6641 QualType RHSType = RHS.get()->getType(); 6642 6643 // If the ArgType is a Union type, we want to handle a potential 6644 // transparent_union GCC extension. 6645 const RecordType *UT = ArgType->getAsUnionType(); 6646 if (!UT || !UT->getDecl()->hasAttr<TransparentUnionAttr>()) 6647 return Incompatible; 6648 6649 // The field to initialize within the transparent union. 6650 RecordDecl *UD = UT->getDecl(); 6651 FieldDecl *InitField = nullptr; 6652 // It's compatible if the expression matches any of the fields. 6653 for (auto *it : UD->fields()) { 6654 if (it->getType()->isPointerType()) { 6655 // If the transparent union contains a pointer type, we allow: 6656 // 1) void pointer 6657 // 2) null pointer constant 6658 if (RHSType->isPointerType()) 6659 if (RHSType->castAs<PointerType>()->getPointeeType()->isVoidType()) { 6660 RHS = ImpCastExprToType(RHS.get(), it->getType(), CK_BitCast); 6661 InitField = it; 6662 break; 6663 } 6664 6665 if (RHS.get()->isNullPointerConstant(Context, 6666 Expr::NPC_ValueDependentIsNull)) { 6667 RHS = ImpCastExprToType(RHS.get(), it->getType(), 6668 CK_NullToPointer); 6669 InitField = it; 6670 break; 6671 } 6672 } 6673 6674 CastKind Kind = CK_Invalid; 6675 if (CheckAssignmentConstraints(it->getType(), RHS, Kind) 6676 == Compatible) { 6677 RHS = ImpCastExprToType(RHS.get(), it->getType(), Kind); 6678 InitField = it; 6679 break; 6680 } 6681 } 6682 6683 if (!InitField) 6684 return Incompatible; 6685 6686 ConstructTransparentUnion(*this, Context, RHS, ArgType, InitField); 6687 return Compatible; 6688 } 6689 6690 Sema::AssignConvertType 6691 Sema::CheckSingleAssignmentConstraints(QualType LHSType, ExprResult &RHS, 6692 bool Diagnose, 6693 bool DiagnoseCFAudited) { 6694 if (getLangOpts().CPlusPlus) { 6695 if (!LHSType->isRecordType() && !LHSType->isAtomicType()) { 6696 // C++ 5.17p3: If the left operand is not of class type, the 6697 // expression is implicitly converted (C++ 4) to the 6698 // cv-unqualified type of the left operand. 6699 ExprResult Res; 6700 if (Diagnose) { 6701 Res = PerformImplicitConversion(RHS.get(), LHSType.getUnqualifiedType(), 6702 AA_Assigning); 6703 } else { 6704 ImplicitConversionSequence ICS = 6705 TryImplicitConversion(RHS.get(), LHSType.getUnqualifiedType(), 6706 /*SuppressUserConversions=*/false, 6707 /*AllowExplicit=*/false, 6708 /*InOverloadResolution=*/false, 6709 /*CStyle=*/false, 6710 /*AllowObjCWritebackConversion=*/false); 6711 if (ICS.isFailure()) 6712 return Incompatible; 6713 Res = PerformImplicitConversion(RHS.get(), LHSType.getUnqualifiedType(), 6714 ICS, AA_Assigning); 6715 } 6716 if (Res.isInvalid()) 6717 return Incompatible; 6718 Sema::AssignConvertType result = Compatible; 6719 if (getLangOpts().ObjCAutoRefCount && 6720 !CheckObjCARCUnavailableWeakConversion(LHSType, 6721 RHS.get()->getType())) 6722 result = IncompatibleObjCWeakRef; 6723 RHS = Res; 6724 return result; 6725 } 6726 6727 // FIXME: Currently, we fall through and treat C++ classes like C 6728 // structures. 6729 // FIXME: We also fall through for atomics; not sure what should 6730 // happen there, though. 6731 } 6732 6733 // C99 6.5.16.1p1: the left operand is a pointer and the right is 6734 // a null pointer constant. 6735 if ((LHSType->isPointerType() || LHSType->isObjCObjectPointerType() || 6736 LHSType->isBlockPointerType()) && 6737 RHS.get()->isNullPointerConstant(Context, 6738 Expr::NPC_ValueDependentIsNull)) { 6739 CastKind Kind; 6740 CXXCastPath Path; 6741 CheckPointerConversion(RHS.get(), LHSType, Kind, Path, false); 6742 RHS = ImpCastExprToType(RHS.get(), LHSType, Kind, VK_RValue, &Path); 6743 return Compatible; 6744 } 6745 6746 // This check seems unnatural, however it is necessary to ensure the proper 6747 // conversion of functions/arrays. If the conversion were done for all 6748 // DeclExpr's (created by ActOnIdExpression), it would mess up the unary 6749 // expressions that suppress this implicit conversion (&, sizeof). 6750 // 6751 // Suppress this for references: C++ 8.5.3p5. 6752 if (!LHSType->isReferenceType()) { 6753 RHS = DefaultFunctionArrayLvalueConversion(RHS.get()); 6754 if (RHS.isInvalid()) 6755 return Incompatible; 6756 } 6757 6758 Expr *PRE = RHS.get()->IgnoreParenCasts(); 6759 if (ObjCProtocolExpr *OPE = dyn_cast<ObjCProtocolExpr>(PRE)) { 6760 ObjCProtocolDecl *PDecl = OPE->getProtocol(); 6761 if (PDecl && !PDecl->hasDefinition()) { 6762 Diag(PRE->getExprLoc(), diag::warn_atprotocol_protocol) << PDecl->getName(); 6763 Diag(PDecl->getLocation(), diag::note_entity_declared_at) << PDecl; 6764 } 6765 } 6766 6767 CastKind Kind = CK_Invalid; 6768 Sema::AssignConvertType result = 6769 CheckAssignmentConstraints(LHSType, RHS, Kind); 6770 6771 // C99 6.5.16.1p2: The value of the right operand is converted to the 6772 // type of the assignment expression. 6773 // CheckAssignmentConstraints allows the left-hand side to be a reference, 6774 // so that we can use references in built-in functions even in C. 6775 // The getNonReferenceType() call makes sure that the resulting expression 6776 // does not have reference type. 6777 if (result != Incompatible && RHS.get()->getType() != LHSType) { 6778 QualType Ty = LHSType.getNonLValueExprType(Context); 6779 Expr *E = RHS.get(); 6780 if (getLangOpts().ObjCAutoRefCount) 6781 CheckObjCARCConversion(SourceRange(), Ty, E, CCK_ImplicitConversion, 6782 DiagnoseCFAudited); 6783 if (getLangOpts().ObjC1 && 6784 (CheckObjCBridgeRelatedConversions(E->getLocStart(), 6785 LHSType, E->getType(), E) || 6786 ConversionToObjCStringLiteralCheck(LHSType, E))) { 6787 RHS = E; 6788 return Compatible; 6789 } 6790 6791 RHS = ImpCastExprToType(E, Ty, Kind); 6792 } 6793 return result; 6794 } 6795 6796 QualType Sema::InvalidOperands(SourceLocation Loc, ExprResult &LHS, 6797 ExprResult &RHS) { 6798 Diag(Loc, diag::err_typecheck_invalid_operands) 6799 << LHS.get()->getType() << RHS.get()->getType() 6800 << LHS.get()->getSourceRange() << RHS.get()->getSourceRange(); 6801 return QualType(); 6802 } 6803 6804 /// Try to convert a value of non-vector type to a vector type by converting 6805 /// the type to the element type of the vector and then performing a splat. 6806 /// If the language is OpenCL, we only use conversions that promote scalar 6807 /// rank; for C, Obj-C, and C++ we allow any real scalar conversion except 6808 /// for float->int. 6809 /// 6810 /// \param scalar - if non-null, actually perform the conversions 6811 /// \return true if the operation fails (but without diagnosing the failure) 6812 static bool tryVectorConvertAndSplat(Sema &S, ExprResult *scalar, 6813 QualType scalarTy, 6814 QualType vectorEltTy, 6815 QualType vectorTy) { 6816 // The conversion to apply to the scalar before splatting it, 6817 // if necessary. 6818 CastKind scalarCast = CK_Invalid; 6819 6820 if (vectorEltTy->isIntegralType(S.Context)) { 6821 if (!scalarTy->isIntegralType(S.Context)) 6822 return true; 6823 if (S.getLangOpts().OpenCL && 6824 S.Context.getIntegerTypeOrder(vectorEltTy, scalarTy) < 0) 6825 return true; 6826 scalarCast = CK_IntegralCast; 6827 } else if (vectorEltTy->isRealFloatingType()) { 6828 if (scalarTy->isRealFloatingType()) { 6829 if (S.getLangOpts().OpenCL && 6830 S.Context.getFloatingTypeOrder(vectorEltTy, scalarTy) < 0) 6831 return true; 6832 scalarCast = CK_FloatingCast; 6833 } 6834 else if (scalarTy->isIntegralType(S.Context)) 6835 scalarCast = CK_IntegralToFloating; 6836 else 6837 return true; 6838 } else { 6839 return true; 6840 } 6841 6842 // Adjust scalar if desired. 6843 if (scalar) { 6844 if (scalarCast != CK_Invalid) 6845 *scalar = S.ImpCastExprToType(scalar->get(), vectorEltTy, scalarCast); 6846 *scalar = S.ImpCastExprToType(scalar->get(), vectorTy, CK_VectorSplat); 6847 } 6848 return false; 6849 } 6850 6851 QualType Sema::CheckVectorOperands(ExprResult &LHS, ExprResult &RHS, 6852 SourceLocation Loc, bool IsCompAssign) { 6853 if (!IsCompAssign) { 6854 LHS = DefaultFunctionArrayLvalueConversion(LHS.get()); 6855 if (LHS.isInvalid()) 6856 return QualType(); 6857 } 6858 RHS = DefaultFunctionArrayLvalueConversion(RHS.get()); 6859 if (RHS.isInvalid()) 6860 return QualType(); 6861 6862 // For conversion purposes, we ignore any qualifiers. 6863 // For example, "const float" and "float" are equivalent. 6864 QualType LHSType = LHS.get()->getType().getUnqualifiedType(); 6865 QualType RHSType = RHS.get()->getType().getUnqualifiedType(); 6866 6867 // If the vector types are identical, return. 6868 if (Context.hasSameType(LHSType, RHSType)) 6869 return LHSType; 6870 6871 const VectorType *LHSVecType = LHSType->getAs<VectorType>(); 6872 const VectorType *RHSVecType = RHSType->getAs<VectorType>(); 6873 assert(LHSVecType || RHSVecType); 6874 6875 // If we have compatible AltiVec and GCC vector types, use the AltiVec type. 6876 if (LHSVecType && RHSVecType && 6877 Context.areCompatibleVectorTypes(LHSType, RHSType)) { 6878 if (isa<ExtVectorType>(LHSVecType)) { 6879 RHS = ImpCastExprToType(RHS.get(), LHSType, CK_BitCast); 6880 return LHSType; 6881 } 6882 6883 if (!IsCompAssign) 6884 LHS = ImpCastExprToType(LHS.get(), RHSType, CK_BitCast); 6885 return RHSType; 6886 } 6887 6888 // If there's an ext-vector type and a scalar, try to convert the scalar to 6889 // the vector element type and splat. 6890 if (!RHSVecType && isa<ExtVectorType>(LHSVecType)) { 6891 if (!tryVectorConvertAndSplat(*this, &RHS, RHSType, 6892 LHSVecType->getElementType(), LHSType)) 6893 return LHSType; 6894 } 6895 if (!LHSVecType && isa<ExtVectorType>(RHSVecType)) { 6896 if (!tryVectorConvertAndSplat(*this, (IsCompAssign ? nullptr : &LHS), 6897 LHSType, RHSVecType->getElementType(), 6898 RHSType)) 6899 return RHSType; 6900 } 6901 6902 // If we're allowing lax vector conversions, only the total (data) size 6903 // needs to be the same. 6904 // FIXME: Should we really be allowing this? 6905 // FIXME: We really just pick the LHS type arbitrarily? 6906 if (isLaxVectorConversion(RHSType, LHSType)) { 6907 QualType resultType = LHSType; 6908 RHS = ImpCastExprToType(RHS.get(), resultType, CK_BitCast); 6909 return resultType; 6910 } 6911 6912 // Okay, the expression is invalid. 6913 6914 // If there's a non-vector, non-real operand, diagnose that. 6915 if ((!RHSVecType && !RHSType->isRealType()) || 6916 (!LHSVecType && !LHSType->isRealType())) { 6917 Diag(Loc, diag::err_typecheck_vector_not_convertable_non_scalar) 6918 << LHSType << RHSType 6919 << LHS.get()->getSourceRange() << RHS.get()->getSourceRange(); 6920 return QualType(); 6921 } 6922 6923 // Otherwise, use the generic diagnostic. 6924 Diag(Loc, diag::err_typecheck_vector_not_convertable) 6925 << LHSType << RHSType 6926 << LHS.get()->getSourceRange() << RHS.get()->getSourceRange(); 6927 return QualType(); 6928 } 6929 6930 // checkArithmeticNull - Detect when a NULL constant is used improperly in an 6931 // expression. These are mainly cases where the null pointer is used as an 6932 // integer instead of a pointer. 6933 static void checkArithmeticNull(Sema &S, ExprResult &LHS, ExprResult &RHS, 6934 SourceLocation Loc, bool IsCompare) { 6935 // The canonical way to check for a GNU null is with isNullPointerConstant, 6936 // but we use a bit of a hack here for speed; this is a relatively 6937 // hot path, and isNullPointerConstant is slow. 6938 bool LHSNull = isa<GNUNullExpr>(LHS.get()->IgnoreParenImpCasts()); 6939 bool RHSNull = isa<GNUNullExpr>(RHS.get()->IgnoreParenImpCasts()); 6940 6941 QualType NonNullType = LHSNull ? RHS.get()->getType() : LHS.get()->getType(); 6942 6943 // Avoid analyzing cases where the result will either be invalid (and 6944 // diagnosed as such) or entirely valid and not something to warn about. 6945 if ((!LHSNull && !RHSNull) || NonNullType->isBlockPointerType() || 6946 NonNullType->isMemberPointerType() || NonNullType->isFunctionType()) 6947 return; 6948 6949 // Comparison operations would not make sense with a null pointer no matter 6950 // what the other expression is. 6951 if (!IsCompare) { 6952 S.Diag(Loc, diag::warn_null_in_arithmetic_operation) 6953 << (LHSNull ? LHS.get()->getSourceRange() : SourceRange()) 6954 << (RHSNull ? RHS.get()->getSourceRange() : SourceRange()); 6955 return; 6956 } 6957 6958 // The rest of the operations only make sense with a null pointer 6959 // if the other expression is a pointer. 6960 if (LHSNull == RHSNull || NonNullType->isAnyPointerType() || 6961 NonNullType->canDecayToPointerType()) 6962 return; 6963 6964 S.Diag(Loc, diag::warn_null_in_comparison_operation) 6965 << LHSNull /* LHS is NULL */ << NonNullType 6966 << LHS.get()->getSourceRange() << RHS.get()->getSourceRange(); 6967 } 6968 6969 QualType Sema::CheckMultiplyDivideOperands(ExprResult &LHS, ExprResult &RHS, 6970 SourceLocation Loc, 6971 bool IsCompAssign, bool IsDiv) { 6972 checkArithmeticNull(*this, LHS, RHS, Loc, /*isCompare=*/false); 6973 6974 if (LHS.get()->getType()->isVectorType() || 6975 RHS.get()->getType()->isVectorType()) 6976 return CheckVectorOperands(LHS, RHS, Loc, IsCompAssign); 6977 6978 QualType compType = UsualArithmeticConversions(LHS, RHS, IsCompAssign); 6979 if (LHS.isInvalid() || RHS.isInvalid()) 6980 return QualType(); 6981 6982 6983 if (compType.isNull() || !compType->isArithmeticType()) 6984 return InvalidOperands(Loc, LHS, RHS); 6985 6986 // Check for division by zero. 6987 llvm::APSInt RHSValue; 6988 if (IsDiv && !RHS.get()->isValueDependent() && 6989 RHS.get()->EvaluateAsInt(RHSValue, Context) && RHSValue == 0) 6990 DiagRuntimeBehavior(Loc, RHS.get(), 6991 PDiag(diag::warn_division_by_zero) 6992 << RHS.get()->getSourceRange()); 6993 6994 return compType; 6995 } 6996 6997 QualType Sema::CheckRemainderOperands( 6998 ExprResult &LHS, ExprResult &RHS, SourceLocation Loc, bool IsCompAssign) { 6999 checkArithmeticNull(*this, LHS, RHS, Loc, /*isCompare=*/false); 7000 7001 if (LHS.get()->getType()->isVectorType() || 7002 RHS.get()->getType()->isVectorType()) { 7003 if (LHS.get()->getType()->hasIntegerRepresentation() && 7004 RHS.get()->getType()->hasIntegerRepresentation()) 7005 return CheckVectorOperands(LHS, RHS, Loc, IsCompAssign); 7006 return InvalidOperands(Loc, LHS, RHS); 7007 } 7008 7009 QualType compType = UsualArithmeticConversions(LHS, RHS, IsCompAssign); 7010 if (LHS.isInvalid() || RHS.isInvalid()) 7011 return QualType(); 7012 7013 if (compType.isNull() || !compType->isIntegerType()) 7014 return InvalidOperands(Loc, LHS, RHS); 7015 7016 // Check for remainder by zero. 7017 llvm::APSInt RHSValue; 7018 if (!RHS.get()->isValueDependent() && 7019 RHS.get()->EvaluateAsInt(RHSValue, Context) && RHSValue == 0) 7020 DiagRuntimeBehavior(Loc, RHS.get(), 7021 PDiag(diag::warn_remainder_by_zero) 7022 << RHS.get()->getSourceRange()); 7023 7024 return compType; 7025 } 7026 7027 /// \brief Diagnose invalid arithmetic on two void pointers. 7028 static void diagnoseArithmeticOnTwoVoidPointers(Sema &S, SourceLocation Loc, 7029 Expr *LHSExpr, Expr *RHSExpr) { 7030 S.Diag(Loc, S.getLangOpts().CPlusPlus 7031 ? diag::err_typecheck_pointer_arith_void_type 7032 : diag::ext_gnu_void_ptr) 7033 << 1 /* two pointers */ << LHSExpr->getSourceRange() 7034 << RHSExpr->getSourceRange(); 7035 } 7036 7037 /// \brief Diagnose invalid arithmetic on a void pointer. 7038 static void diagnoseArithmeticOnVoidPointer(Sema &S, SourceLocation Loc, 7039 Expr *Pointer) { 7040 S.Diag(Loc, S.getLangOpts().CPlusPlus 7041 ? diag::err_typecheck_pointer_arith_void_type 7042 : diag::ext_gnu_void_ptr) 7043 << 0 /* one pointer */ << Pointer->getSourceRange(); 7044 } 7045 7046 /// \brief Diagnose invalid arithmetic on two function pointers. 7047 static void diagnoseArithmeticOnTwoFunctionPointers(Sema &S, SourceLocation Loc, 7048 Expr *LHS, Expr *RHS) { 7049 assert(LHS->getType()->isAnyPointerType()); 7050 assert(RHS->getType()->isAnyPointerType()); 7051 S.Diag(Loc, S.getLangOpts().CPlusPlus 7052 ? diag::err_typecheck_pointer_arith_function_type 7053 : diag::ext_gnu_ptr_func_arith) 7054 << 1 /* two pointers */ << LHS->getType()->getPointeeType() 7055 // We only show the second type if it differs from the first. 7056 << (unsigned)!S.Context.hasSameUnqualifiedType(LHS->getType(), 7057 RHS->getType()) 7058 << RHS->getType()->getPointeeType() 7059 << LHS->getSourceRange() << RHS->getSourceRange(); 7060 } 7061 7062 /// \brief Diagnose invalid arithmetic on a function pointer. 7063 static void diagnoseArithmeticOnFunctionPointer(Sema &S, SourceLocation Loc, 7064 Expr *Pointer) { 7065 assert(Pointer->getType()->isAnyPointerType()); 7066 S.Diag(Loc, S.getLangOpts().CPlusPlus 7067 ? diag::err_typecheck_pointer_arith_function_type 7068 : diag::ext_gnu_ptr_func_arith) 7069 << 0 /* one pointer */ << Pointer->getType()->getPointeeType() 7070 << 0 /* one pointer, so only one type */ 7071 << Pointer->getSourceRange(); 7072 } 7073 7074 /// \brief Emit error if Operand is incomplete pointer type 7075 /// 7076 /// \returns True if pointer has incomplete type 7077 static bool checkArithmeticIncompletePointerType(Sema &S, SourceLocation Loc, 7078 Expr *Operand) { 7079 assert(Operand->getType()->isAnyPointerType() && 7080 !Operand->getType()->isDependentType()); 7081 QualType PointeeTy = Operand->getType()->getPointeeType(); 7082 return S.RequireCompleteType(Loc, PointeeTy, 7083 diag::err_typecheck_arithmetic_incomplete_type, 7084 PointeeTy, Operand->getSourceRange()); 7085 } 7086 7087 /// \brief Check the validity of an arithmetic pointer operand. 7088 /// 7089 /// If the operand has pointer type, this code will check for pointer types 7090 /// which are invalid in arithmetic operations. These will be diagnosed 7091 /// appropriately, including whether or not the use is supported as an 7092 /// extension. 7093 /// 7094 /// \returns True when the operand is valid to use (even if as an extension). 7095 static bool checkArithmeticOpPointerOperand(Sema &S, SourceLocation Loc, 7096 Expr *Operand) { 7097 if (!Operand->getType()->isAnyPointerType()) return true; 7098 7099 QualType PointeeTy = Operand->getType()->getPointeeType(); 7100 if (PointeeTy->isVoidType()) { 7101 diagnoseArithmeticOnVoidPointer(S, Loc, Operand); 7102 return !S.getLangOpts().CPlusPlus; 7103 } 7104 if (PointeeTy->isFunctionType()) { 7105 diagnoseArithmeticOnFunctionPointer(S, Loc, Operand); 7106 return !S.getLangOpts().CPlusPlus; 7107 } 7108 7109 if (checkArithmeticIncompletePointerType(S, Loc, Operand)) return false; 7110 7111 return true; 7112 } 7113 7114 /// \brief Check the validity of a binary arithmetic operation w.r.t. pointer 7115 /// operands. 7116 /// 7117 /// This routine will diagnose any invalid arithmetic on pointer operands much 7118 /// like \see checkArithmeticOpPointerOperand. However, it has special logic 7119 /// for emitting a single diagnostic even for operations where both LHS and RHS 7120 /// are (potentially problematic) pointers. 7121 /// 7122 /// \returns True when the operand is valid to use (even if as an extension). 7123 static bool checkArithmeticBinOpPointerOperands(Sema &S, SourceLocation Loc, 7124 Expr *LHSExpr, Expr *RHSExpr) { 7125 bool isLHSPointer = LHSExpr->getType()->isAnyPointerType(); 7126 bool isRHSPointer = RHSExpr->getType()->isAnyPointerType(); 7127 if (!isLHSPointer && !isRHSPointer) return true; 7128 7129 QualType LHSPointeeTy, RHSPointeeTy; 7130 if (isLHSPointer) LHSPointeeTy = LHSExpr->getType()->getPointeeType(); 7131 if (isRHSPointer) RHSPointeeTy = RHSExpr->getType()->getPointeeType(); 7132 7133 // Check for arithmetic on pointers to incomplete types. 7134 bool isLHSVoidPtr = isLHSPointer && LHSPointeeTy->isVoidType(); 7135 bool isRHSVoidPtr = isRHSPointer && RHSPointeeTy->isVoidType(); 7136 if (isLHSVoidPtr || isRHSVoidPtr) { 7137 if (!isRHSVoidPtr) diagnoseArithmeticOnVoidPointer(S, Loc, LHSExpr); 7138 else if (!isLHSVoidPtr) diagnoseArithmeticOnVoidPointer(S, Loc, RHSExpr); 7139 else diagnoseArithmeticOnTwoVoidPointers(S, Loc, LHSExpr, RHSExpr); 7140 7141 return !S.getLangOpts().CPlusPlus; 7142 } 7143 7144 bool isLHSFuncPtr = isLHSPointer && LHSPointeeTy->isFunctionType(); 7145 bool isRHSFuncPtr = isRHSPointer && RHSPointeeTy->isFunctionType(); 7146 if (isLHSFuncPtr || isRHSFuncPtr) { 7147 if (!isRHSFuncPtr) diagnoseArithmeticOnFunctionPointer(S, Loc, LHSExpr); 7148 else if (!isLHSFuncPtr) diagnoseArithmeticOnFunctionPointer(S, Loc, 7149 RHSExpr); 7150 else diagnoseArithmeticOnTwoFunctionPointers(S, Loc, LHSExpr, RHSExpr); 7151 7152 return !S.getLangOpts().CPlusPlus; 7153 } 7154 7155 if (isLHSPointer && checkArithmeticIncompletePointerType(S, Loc, LHSExpr)) 7156 return false; 7157 if (isRHSPointer && checkArithmeticIncompletePointerType(S, Loc, RHSExpr)) 7158 return false; 7159 7160 return true; 7161 } 7162 7163 /// diagnoseStringPlusInt - Emit a warning when adding an integer to a string 7164 /// literal. 7165 static void diagnoseStringPlusInt(Sema &Self, SourceLocation OpLoc, 7166 Expr *LHSExpr, Expr *RHSExpr) { 7167 StringLiteral* StrExpr = dyn_cast<StringLiteral>(LHSExpr->IgnoreImpCasts()); 7168 Expr* IndexExpr = RHSExpr; 7169 if (!StrExpr) { 7170 StrExpr = dyn_cast<StringLiteral>(RHSExpr->IgnoreImpCasts()); 7171 IndexExpr = LHSExpr; 7172 } 7173 7174 bool IsStringPlusInt = StrExpr && 7175 IndexExpr->getType()->isIntegralOrUnscopedEnumerationType(); 7176 if (!IsStringPlusInt) 7177 return; 7178 7179 llvm::APSInt index; 7180 if (IndexExpr->EvaluateAsInt(index, Self.getASTContext())) { 7181 unsigned StrLenWithNull = StrExpr->getLength() + 1; 7182 if (index.isNonNegative() && 7183 index <= llvm::APSInt(llvm::APInt(index.getBitWidth(), StrLenWithNull), 7184 index.isUnsigned())) 7185 return; 7186 } 7187 7188 SourceRange DiagRange(LHSExpr->getLocStart(), RHSExpr->getLocEnd()); 7189 Self.Diag(OpLoc, diag::warn_string_plus_int) 7190 << DiagRange << IndexExpr->IgnoreImpCasts()->getType(); 7191 7192 // Only print a fixit for "str" + int, not for int + "str". 7193 if (IndexExpr == RHSExpr) { 7194 SourceLocation EndLoc = Self.PP.getLocForEndOfToken(RHSExpr->getLocEnd()); 7195 Self.Diag(OpLoc, diag::note_string_plus_scalar_silence) 7196 << FixItHint::CreateInsertion(LHSExpr->getLocStart(), "&") 7197 << FixItHint::CreateReplacement(SourceRange(OpLoc), "[") 7198 << FixItHint::CreateInsertion(EndLoc, "]"); 7199 } else 7200 Self.Diag(OpLoc, diag::note_string_plus_scalar_silence); 7201 } 7202 7203 /// \brief Emit a warning when adding a char literal to a string. 7204 static void diagnoseStringPlusChar(Sema &Self, SourceLocation OpLoc, 7205 Expr *LHSExpr, Expr *RHSExpr) { 7206 const DeclRefExpr *StringRefExpr = 7207 dyn_cast<DeclRefExpr>(LHSExpr->IgnoreImpCasts()); 7208 const CharacterLiteral *CharExpr = 7209 dyn_cast<CharacterLiteral>(RHSExpr->IgnoreImpCasts()); 7210 if (!StringRefExpr) { 7211 StringRefExpr = dyn_cast<DeclRefExpr>(RHSExpr->IgnoreImpCasts()); 7212 CharExpr = dyn_cast<CharacterLiteral>(LHSExpr->IgnoreImpCasts()); 7213 } 7214 7215 if (!CharExpr || !StringRefExpr) 7216 return; 7217 7218 const QualType StringType = StringRefExpr->getType(); 7219 7220 // Return if not a PointerType. 7221 if (!StringType->isAnyPointerType()) 7222 return; 7223 7224 // Return if not a CharacterType. 7225 if (!StringType->getPointeeType()->isAnyCharacterType()) 7226 return; 7227 7228 ASTContext &Ctx = Self.getASTContext(); 7229 SourceRange DiagRange(LHSExpr->getLocStart(), RHSExpr->getLocEnd()); 7230 7231 const QualType CharType = CharExpr->getType(); 7232 if (!CharType->isAnyCharacterType() && 7233 CharType->isIntegerType() && 7234 llvm::isUIntN(Ctx.getCharWidth(), CharExpr->getValue())) { 7235 Self.Diag(OpLoc, diag::warn_string_plus_char) 7236 << DiagRange << Ctx.CharTy; 7237 } else { 7238 Self.Diag(OpLoc, diag::warn_string_plus_char) 7239 << DiagRange << CharExpr->getType(); 7240 } 7241 7242 // Only print a fixit for str + char, not for char + str. 7243 if (isa<CharacterLiteral>(RHSExpr->IgnoreImpCasts())) { 7244 SourceLocation EndLoc = Self.PP.getLocForEndOfToken(RHSExpr->getLocEnd()); 7245 Self.Diag(OpLoc, diag::note_string_plus_scalar_silence) 7246 << FixItHint::CreateInsertion(LHSExpr->getLocStart(), "&") 7247 << FixItHint::CreateReplacement(SourceRange(OpLoc), "[") 7248 << FixItHint::CreateInsertion(EndLoc, "]"); 7249 } else { 7250 Self.Diag(OpLoc, diag::note_string_plus_scalar_silence); 7251 } 7252 } 7253 7254 /// \brief Emit error when two pointers are incompatible. 7255 static void diagnosePointerIncompatibility(Sema &S, SourceLocation Loc, 7256 Expr *LHSExpr, Expr *RHSExpr) { 7257 assert(LHSExpr->getType()->isAnyPointerType()); 7258 assert(RHSExpr->getType()->isAnyPointerType()); 7259 S.Diag(Loc, diag::err_typecheck_sub_ptr_compatible) 7260 << LHSExpr->getType() << RHSExpr->getType() << LHSExpr->getSourceRange() 7261 << RHSExpr->getSourceRange(); 7262 } 7263 7264 QualType Sema::CheckAdditionOperands( // C99 6.5.6 7265 ExprResult &LHS, ExprResult &RHS, SourceLocation Loc, unsigned Opc, 7266 QualType* CompLHSTy) { 7267 checkArithmeticNull(*this, LHS, RHS, Loc, /*isCompare=*/false); 7268 7269 if (LHS.get()->getType()->isVectorType() || 7270 RHS.get()->getType()->isVectorType()) { 7271 QualType compType = CheckVectorOperands(LHS, RHS, Loc, CompLHSTy); 7272 if (CompLHSTy) *CompLHSTy = compType; 7273 return compType; 7274 } 7275 7276 QualType compType = UsualArithmeticConversions(LHS, RHS, CompLHSTy); 7277 if (LHS.isInvalid() || RHS.isInvalid()) 7278 return QualType(); 7279 7280 // Diagnose "string literal" '+' int and string '+' "char literal". 7281 if (Opc == BO_Add) { 7282 diagnoseStringPlusInt(*this, Loc, LHS.get(), RHS.get()); 7283 diagnoseStringPlusChar(*this, Loc, LHS.get(), RHS.get()); 7284 } 7285 7286 // handle the common case first (both operands are arithmetic). 7287 if (!compType.isNull() && compType->isArithmeticType()) { 7288 if (CompLHSTy) *CompLHSTy = compType; 7289 return compType; 7290 } 7291 7292 // Type-checking. Ultimately the pointer's going to be in PExp; 7293 // note that we bias towards the LHS being the pointer. 7294 Expr *PExp = LHS.get(), *IExp = RHS.get(); 7295 7296 bool isObjCPointer; 7297 if (PExp->getType()->isPointerType()) { 7298 isObjCPointer = false; 7299 } else if (PExp->getType()->isObjCObjectPointerType()) { 7300 isObjCPointer = true; 7301 } else { 7302 std::swap(PExp, IExp); 7303 if (PExp->getType()->isPointerType()) { 7304 isObjCPointer = false; 7305 } else if (PExp->getType()->isObjCObjectPointerType()) { 7306 isObjCPointer = true; 7307 } else { 7308 return InvalidOperands(Loc, LHS, RHS); 7309 } 7310 } 7311 assert(PExp->getType()->isAnyPointerType()); 7312 7313 if (!IExp->getType()->isIntegerType()) 7314 return InvalidOperands(Loc, LHS, RHS); 7315 7316 if (!checkArithmeticOpPointerOperand(*this, Loc, PExp)) 7317 return QualType(); 7318 7319 if (isObjCPointer && checkArithmeticOnObjCPointer(*this, Loc, PExp)) 7320 return QualType(); 7321 7322 // Check array bounds for pointer arithemtic 7323 CheckArrayAccess(PExp, IExp); 7324 7325 if (CompLHSTy) { 7326 QualType LHSTy = Context.isPromotableBitField(LHS.get()); 7327 if (LHSTy.isNull()) { 7328 LHSTy = LHS.get()->getType(); 7329 if (LHSTy->isPromotableIntegerType()) 7330 LHSTy = Context.getPromotedIntegerType(LHSTy); 7331 } 7332 *CompLHSTy = LHSTy; 7333 } 7334 7335 return PExp->getType(); 7336 } 7337 7338 // C99 6.5.6 7339 QualType Sema::CheckSubtractionOperands(ExprResult &LHS, ExprResult &RHS, 7340 SourceLocation Loc, 7341 QualType* CompLHSTy) { 7342 checkArithmeticNull(*this, LHS, RHS, Loc, /*isCompare=*/false); 7343 7344 if (LHS.get()->getType()->isVectorType() || 7345 RHS.get()->getType()->isVectorType()) { 7346 QualType compType = CheckVectorOperands(LHS, RHS, Loc, CompLHSTy); 7347 if (CompLHSTy) *CompLHSTy = compType; 7348 return compType; 7349 } 7350 7351 QualType compType = UsualArithmeticConversions(LHS, RHS, CompLHSTy); 7352 if (LHS.isInvalid() || RHS.isInvalid()) 7353 return QualType(); 7354 7355 // Enforce type constraints: C99 6.5.6p3. 7356 7357 // Handle the common case first (both operands are arithmetic). 7358 if (!compType.isNull() && compType->isArithmeticType()) { 7359 if (CompLHSTy) *CompLHSTy = compType; 7360 return compType; 7361 } 7362 7363 // Either ptr - int or ptr - ptr. 7364 if (LHS.get()->getType()->isAnyPointerType()) { 7365 QualType lpointee = LHS.get()->getType()->getPointeeType(); 7366 7367 // Diagnose bad cases where we step over interface counts. 7368 if (LHS.get()->getType()->isObjCObjectPointerType() && 7369 checkArithmeticOnObjCPointer(*this, Loc, LHS.get())) 7370 return QualType(); 7371 7372 // The result type of a pointer-int computation is the pointer type. 7373 if (RHS.get()->getType()->isIntegerType()) { 7374 if (!checkArithmeticOpPointerOperand(*this, Loc, LHS.get())) 7375 return QualType(); 7376 7377 // Check array bounds for pointer arithemtic 7378 CheckArrayAccess(LHS.get(), RHS.get(), /*ArraySubscriptExpr*/nullptr, 7379 /*AllowOnePastEnd*/true, /*IndexNegated*/true); 7380 7381 if (CompLHSTy) *CompLHSTy = LHS.get()->getType(); 7382 return LHS.get()->getType(); 7383 } 7384 7385 // Handle pointer-pointer subtractions. 7386 if (const PointerType *RHSPTy 7387 = RHS.get()->getType()->getAs<PointerType>()) { 7388 QualType rpointee = RHSPTy->getPointeeType(); 7389 7390 if (getLangOpts().CPlusPlus) { 7391 // Pointee types must be the same: C++ [expr.add] 7392 if (!Context.hasSameUnqualifiedType(lpointee, rpointee)) { 7393 diagnosePointerIncompatibility(*this, Loc, LHS.get(), RHS.get()); 7394 } 7395 } else { 7396 // Pointee types must be compatible C99 6.5.6p3 7397 if (!Context.typesAreCompatible( 7398 Context.getCanonicalType(lpointee).getUnqualifiedType(), 7399 Context.getCanonicalType(rpointee).getUnqualifiedType())) { 7400 diagnosePointerIncompatibility(*this, Loc, LHS.get(), RHS.get()); 7401 return QualType(); 7402 } 7403 } 7404 7405 if (!checkArithmeticBinOpPointerOperands(*this, Loc, 7406 LHS.get(), RHS.get())) 7407 return QualType(); 7408 7409 // The pointee type may have zero size. As an extension, a structure or 7410 // union may have zero size or an array may have zero length. In this 7411 // case subtraction does not make sense. 7412 if (!rpointee->isVoidType() && !rpointee->isFunctionType()) { 7413 CharUnits ElementSize = Context.getTypeSizeInChars(rpointee); 7414 if (ElementSize.isZero()) { 7415 Diag(Loc,diag::warn_sub_ptr_zero_size_types) 7416 << rpointee.getUnqualifiedType() 7417 << LHS.get()->getSourceRange() << RHS.get()->getSourceRange(); 7418 } 7419 } 7420 7421 if (CompLHSTy) *CompLHSTy = LHS.get()->getType(); 7422 return Context.getPointerDiffType(); 7423 } 7424 } 7425 7426 return InvalidOperands(Loc, LHS, RHS); 7427 } 7428 7429 static bool isScopedEnumerationType(QualType T) { 7430 if (const EnumType *ET = dyn_cast<EnumType>(T)) 7431 return ET->getDecl()->isScoped(); 7432 return false; 7433 } 7434 7435 static void DiagnoseBadShiftValues(Sema& S, ExprResult &LHS, ExprResult &RHS, 7436 SourceLocation Loc, unsigned Opc, 7437 QualType LHSType) { 7438 // OpenCL 6.3j: shift values are effectively % word size of LHS (more defined), 7439 // so skip remaining warnings as we don't want to modify values within Sema. 7440 if (S.getLangOpts().OpenCL) 7441 return; 7442 7443 llvm::APSInt Right; 7444 // Check right/shifter operand 7445 if (RHS.get()->isValueDependent() || 7446 !RHS.get()->isIntegerConstantExpr(Right, S.Context)) 7447 return; 7448 7449 if (Right.isNegative()) { 7450 S.DiagRuntimeBehavior(Loc, RHS.get(), 7451 S.PDiag(diag::warn_shift_negative) 7452 << RHS.get()->getSourceRange()); 7453 return; 7454 } 7455 llvm::APInt LeftBits(Right.getBitWidth(), 7456 S.Context.getTypeSize(LHS.get()->getType())); 7457 if (Right.uge(LeftBits)) { 7458 S.DiagRuntimeBehavior(Loc, RHS.get(), 7459 S.PDiag(diag::warn_shift_gt_typewidth) 7460 << RHS.get()->getSourceRange()); 7461 return; 7462 } 7463 if (Opc != BO_Shl) 7464 return; 7465 7466 // When left shifting an ICE which is signed, we can check for overflow which 7467 // according to C++ has undefined behavior ([expr.shift] 5.8/2). Unsigned 7468 // integers have defined behavior modulo one more than the maximum value 7469 // representable in the result type, so never warn for those. 7470 llvm::APSInt Left; 7471 if (LHS.get()->isValueDependent() || 7472 !LHS.get()->isIntegerConstantExpr(Left, S.Context) || 7473 LHSType->hasUnsignedIntegerRepresentation()) 7474 return; 7475 llvm::APInt ResultBits = 7476 static_cast<llvm::APInt&>(Right) + Left.getMinSignedBits(); 7477 if (LeftBits.uge(ResultBits)) 7478 return; 7479 llvm::APSInt Result = Left.extend(ResultBits.getLimitedValue()); 7480 Result = Result.shl(Right); 7481 7482 // Print the bit representation of the signed integer as an unsigned 7483 // hexadecimal number. 7484 SmallString<40> HexResult; 7485 Result.toString(HexResult, 16, /*Signed =*/false, /*Literal =*/true); 7486 7487 // If we are only missing a sign bit, this is less likely to result in actual 7488 // bugs -- if the result is cast back to an unsigned type, it will have the 7489 // expected value. Thus we place this behind a different warning that can be 7490 // turned off separately if needed. 7491 if (LeftBits == ResultBits - 1) { 7492 S.Diag(Loc, diag::warn_shift_result_sets_sign_bit) 7493 << HexResult.str() << LHSType 7494 << LHS.get()->getSourceRange() << RHS.get()->getSourceRange(); 7495 return; 7496 } 7497 7498 S.Diag(Loc, diag::warn_shift_result_gt_typewidth) 7499 << HexResult.str() << Result.getMinSignedBits() << LHSType 7500 << Left.getBitWidth() << LHS.get()->getSourceRange() 7501 << RHS.get()->getSourceRange(); 7502 } 7503 7504 // C99 6.5.7 7505 QualType Sema::CheckShiftOperands(ExprResult &LHS, ExprResult &RHS, 7506 SourceLocation Loc, unsigned Opc, 7507 bool IsCompAssign) { 7508 checkArithmeticNull(*this, LHS, RHS, Loc, /*isCompare=*/false); 7509 7510 // Vector shifts promote their scalar inputs to vector type. 7511 if (LHS.get()->getType()->isVectorType() || 7512 RHS.get()->getType()->isVectorType()) 7513 return CheckVectorOperands(LHS, RHS, Loc, IsCompAssign); 7514 7515 // Shifts don't perform usual arithmetic conversions, they just do integer 7516 // promotions on each operand. C99 6.5.7p3 7517 7518 // For the LHS, do usual unary conversions, but then reset them away 7519 // if this is a compound assignment. 7520 ExprResult OldLHS = LHS; 7521 LHS = UsualUnaryConversions(LHS.get()); 7522 if (LHS.isInvalid()) 7523 return QualType(); 7524 QualType LHSType = LHS.get()->getType(); 7525 if (IsCompAssign) LHS = OldLHS; 7526 7527 // The RHS is simpler. 7528 RHS = UsualUnaryConversions(RHS.get()); 7529 if (RHS.isInvalid()) 7530 return QualType(); 7531 QualType RHSType = RHS.get()->getType(); 7532 7533 // C99 6.5.7p2: Each of the operands shall have integer type. 7534 if (!LHSType->hasIntegerRepresentation() || 7535 !RHSType->hasIntegerRepresentation()) 7536 return InvalidOperands(Loc, LHS, RHS); 7537 7538 // C++0x: Don't allow scoped enums. FIXME: Use something better than 7539 // hasIntegerRepresentation() above instead of this. 7540 if (isScopedEnumerationType(LHSType) || 7541 isScopedEnumerationType(RHSType)) { 7542 return InvalidOperands(Loc, LHS, RHS); 7543 } 7544 // Sanity-check shift operands 7545 DiagnoseBadShiftValues(*this, LHS, RHS, Loc, Opc, LHSType); 7546 7547 // "The type of the result is that of the promoted left operand." 7548 return LHSType; 7549 } 7550 7551 static bool IsWithinTemplateSpecialization(Decl *D) { 7552 if (DeclContext *DC = D->getDeclContext()) { 7553 if (isa<ClassTemplateSpecializationDecl>(DC)) 7554 return true; 7555 if (FunctionDecl *FD = dyn_cast<FunctionDecl>(DC)) 7556 return FD->isFunctionTemplateSpecialization(); 7557 } 7558 return false; 7559 } 7560 7561 /// If two different enums are compared, raise a warning. 7562 static void checkEnumComparison(Sema &S, SourceLocation Loc, Expr *LHS, 7563 Expr *RHS) { 7564 QualType LHSStrippedType = LHS->IgnoreParenImpCasts()->getType(); 7565 QualType RHSStrippedType = RHS->IgnoreParenImpCasts()->getType(); 7566 7567 const EnumType *LHSEnumType = LHSStrippedType->getAs<EnumType>(); 7568 if (!LHSEnumType) 7569 return; 7570 const EnumType *RHSEnumType = RHSStrippedType->getAs<EnumType>(); 7571 if (!RHSEnumType) 7572 return; 7573 7574 // Ignore anonymous enums. 7575 if (!LHSEnumType->getDecl()->getIdentifier()) 7576 return; 7577 if (!RHSEnumType->getDecl()->getIdentifier()) 7578 return; 7579 7580 if (S.Context.hasSameUnqualifiedType(LHSStrippedType, RHSStrippedType)) 7581 return; 7582 7583 S.Diag(Loc, diag::warn_comparison_of_mixed_enum_types) 7584 << LHSStrippedType << RHSStrippedType 7585 << LHS->getSourceRange() << RHS->getSourceRange(); 7586 } 7587 7588 /// \brief Diagnose bad pointer comparisons. 7589 static void diagnoseDistinctPointerComparison(Sema &S, SourceLocation Loc, 7590 ExprResult &LHS, ExprResult &RHS, 7591 bool IsError) { 7592 S.Diag(Loc, IsError ? diag::err_typecheck_comparison_of_distinct_pointers 7593 : diag::ext_typecheck_comparison_of_distinct_pointers) 7594 << LHS.get()->getType() << RHS.get()->getType() 7595 << LHS.get()->getSourceRange() << RHS.get()->getSourceRange(); 7596 } 7597 7598 /// \brief Returns false if the pointers are converted to a composite type, 7599 /// true otherwise. 7600 static bool convertPointersToCompositeType(Sema &S, SourceLocation Loc, 7601 ExprResult &LHS, ExprResult &RHS) { 7602 // C++ [expr.rel]p2: 7603 // [...] Pointer conversions (4.10) and qualification 7604 // conversions (4.4) are performed on pointer operands (or on 7605 // a pointer operand and a null pointer constant) to bring 7606 // them to their composite pointer type. [...] 7607 // 7608 // C++ [expr.eq]p1 uses the same notion for (in)equality 7609 // comparisons of pointers. 7610 7611 // C++ [expr.eq]p2: 7612 // In addition, pointers to members can be compared, or a pointer to 7613 // member and a null pointer constant. Pointer to member conversions 7614 // (4.11) and qualification conversions (4.4) are performed to bring 7615 // them to a common type. If one operand is a null pointer constant, 7616 // the common type is the type of the other operand. Otherwise, the 7617 // common type is a pointer to member type similar (4.4) to the type 7618 // of one of the operands, with a cv-qualification signature (4.4) 7619 // that is the union of the cv-qualification signatures of the operand 7620 // types. 7621 7622 QualType LHSType = LHS.get()->getType(); 7623 QualType RHSType = RHS.get()->getType(); 7624 assert((LHSType->isPointerType() && RHSType->isPointerType()) || 7625 (LHSType->isMemberPointerType() && RHSType->isMemberPointerType())); 7626 7627 bool NonStandardCompositeType = false; 7628 bool *BoolPtr = S.isSFINAEContext() ? nullptr : &NonStandardCompositeType; 7629 QualType T = S.FindCompositePointerType(Loc, LHS, RHS, BoolPtr); 7630 if (T.isNull()) { 7631 diagnoseDistinctPointerComparison(S, Loc, LHS, RHS, /*isError*/true); 7632 return true; 7633 } 7634 7635 if (NonStandardCompositeType) 7636 S.Diag(Loc, diag::ext_typecheck_comparison_of_distinct_pointers_nonstandard) 7637 << LHSType << RHSType << T << LHS.get()->getSourceRange() 7638 << RHS.get()->getSourceRange(); 7639 7640 LHS = S.ImpCastExprToType(LHS.get(), T, CK_BitCast); 7641 RHS = S.ImpCastExprToType(RHS.get(), T, CK_BitCast); 7642 return false; 7643 } 7644 7645 static void diagnoseFunctionPointerToVoidComparison(Sema &S, SourceLocation Loc, 7646 ExprResult &LHS, 7647 ExprResult &RHS, 7648 bool IsError) { 7649 S.Diag(Loc, IsError ? diag::err_typecheck_comparison_of_fptr_to_void 7650 : diag::ext_typecheck_comparison_of_fptr_to_void) 7651 << LHS.get()->getType() << RHS.get()->getType() 7652 << LHS.get()->getSourceRange() << RHS.get()->getSourceRange(); 7653 } 7654 7655 static bool isObjCObjectLiteral(ExprResult &E) { 7656 switch (E.get()->IgnoreParenImpCasts()->getStmtClass()) { 7657 case Stmt::ObjCArrayLiteralClass: 7658 case Stmt::ObjCDictionaryLiteralClass: 7659 case Stmt::ObjCStringLiteralClass: 7660 case Stmt::ObjCBoxedExprClass: 7661 return true; 7662 default: 7663 // Note that ObjCBoolLiteral is NOT an object literal! 7664 return false; 7665 } 7666 } 7667 7668 static bool hasIsEqualMethod(Sema &S, const Expr *LHS, const Expr *RHS) { 7669 const ObjCObjectPointerType *Type = 7670 LHS->getType()->getAs<ObjCObjectPointerType>(); 7671 7672 // If this is not actually an Objective-C object, bail out. 7673 if (!Type) 7674 return false; 7675 7676 // Get the LHS object's interface type. 7677 QualType InterfaceType = Type->getPointeeType(); 7678 if (const ObjCObjectType *iQFaceTy = 7679 InterfaceType->getAsObjCQualifiedInterfaceType()) 7680 InterfaceType = iQFaceTy->getBaseType(); 7681 7682 // If the RHS isn't an Objective-C object, bail out. 7683 if (!RHS->getType()->isObjCObjectPointerType()) 7684 return false; 7685 7686 // Try to find the -isEqual: method. 7687 Selector IsEqualSel = S.NSAPIObj->getIsEqualSelector(); 7688 ObjCMethodDecl *Method = S.LookupMethodInObjectType(IsEqualSel, 7689 InterfaceType, 7690 /*instance=*/true); 7691 if (!Method) { 7692 if (Type->isObjCIdType()) { 7693 // For 'id', just check the global pool. 7694 Method = S.LookupInstanceMethodInGlobalPool(IsEqualSel, SourceRange(), 7695 /*receiverId=*/true, 7696 /*warn=*/false); 7697 } else { 7698 // Check protocols. 7699 Method = S.LookupMethodInQualifiedType(IsEqualSel, Type, 7700 /*instance=*/true); 7701 } 7702 } 7703 7704 if (!Method) 7705 return false; 7706 7707 QualType T = Method->parameters()[0]->getType(); 7708 if (!T->isObjCObjectPointerType()) 7709 return false; 7710 7711 QualType R = Method->getReturnType(); 7712 if (!R->isScalarType()) 7713 return false; 7714 7715 return true; 7716 } 7717 7718 Sema::ObjCLiteralKind Sema::CheckLiteralKind(Expr *FromE) { 7719 FromE = FromE->IgnoreParenImpCasts(); 7720 switch (FromE->getStmtClass()) { 7721 default: 7722 break; 7723 case Stmt::ObjCStringLiteralClass: 7724 // "string literal" 7725 return LK_String; 7726 case Stmt::ObjCArrayLiteralClass: 7727 // "array literal" 7728 return LK_Array; 7729 case Stmt::ObjCDictionaryLiteralClass: 7730 // "dictionary literal" 7731 return LK_Dictionary; 7732 case Stmt::BlockExprClass: 7733 return LK_Block; 7734 case Stmt::ObjCBoxedExprClass: { 7735 Expr *Inner = cast<ObjCBoxedExpr>(FromE)->getSubExpr()->IgnoreParens(); 7736 switch (Inner->getStmtClass()) { 7737 case Stmt::IntegerLiteralClass: 7738 case Stmt::FloatingLiteralClass: 7739 case Stmt::CharacterLiteralClass: 7740 case Stmt::ObjCBoolLiteralExprClass: 7741 case Stmt::CXXBoolLiteralExprClass: 7742 // "numeric literal" 7743 return LK_Numeric; 7744 case Stmt::ImplicitCastExprClass: { 7745 CastKind CK = cast<CastExpr>(Inner)->getCastKind(); 7746 // Boolean literals can be represented by implicit casts. 7747 if (CK == CK_IntegralToBoolean || CK == CK_IntegralCast) 7748 return LK_Numeric; 7749 break; 7750 } 7751 default: 7752 break; 7753 } 7754 return LK_Boxed; 7755 } 7756 } 7757 return LK_None; 7758 } 7759 7760 static void diagnoseObjCLiteralComparison(Sema &S, SourceLocation Loc, 7761 ExprResult &LHS, ExprResult &RHS, 7762 BinaryOperator::Opcode Opc){ 7763 Expr *Literal; 7764 Expr *Other; 7765 if (isObjCObjectLiteral(LHS)) { 7766 Literal = LHS.get(); 7767 Other = RHS.get(); 7768 } else { 7769 Literal = RHS.get(); 7770 Other = LHS.get(); 7771 } 7772 7773 // Don't warn on comparisons against nil. 7774 Other = Other->IgnoreParenCasts(); 7775 if (Other->isNullPointerConstant(S.getASTContext(), 7776 Expr::NPC_ValueDependentIsNotNull)) 7777 return; 7778 7779 // This should be kept in sync with warn_objc_literal_comparison. 7780 // LK_String should always be after the other literals, since it has its own 7781 // warning flag. 7782 Sema::ObjCLiteralKind LiteralKind = S.CheckLiteralKind(Literal); 7783 assert(LiteralKind != Sema::LK_Block); 7784 if (LiteralKind == Sema::LK_None) { 7785 llvm_unreachable("Unknown Objective-C object literal kind"); 7786 } 7787 7788 if (LiteralKind == Sema::LK_String) 7789 S.Diag(Loc, diag::warn_objc_string_literal_comparison) 7790 << Literal->getSourceRange(); 7791 else 7792 S.Diag(Loc, diag::warn_objc_literal_comparison) 7793 << LiteralKind << Literal->getSourceRange(); 7794 7795 if (BinaryOperator::isEqualityOp(Opc) && 7796 hasIsEqualMethod(S, LHS.get(), RHS.get())) { 7797 SourceLocation Start = LHS.get()->getLocStart(); 7798 SourceLocation End = S.PP.getLocForEndOfToken(RHS.get()->getLocEnd()); 7799 CharSourceRange OpRange = 7800 CharSourceRange::getCharRange(Loc, S.PP.getLocForEndOfToken(Loc)); 7801 7802 S.Diag(Loc, diag::note_objc_literal_comparison_isequal) 7803 << FixItHint::CreateInsertion(Start, Opc == BO_EQ ? "[" : "![") 7804 << FixItHint::CreateReplacement(OpRange, " isEqual:") 7805 << FixItHint::CreateInsertion(End, "]"); 7806 } 7807 } 7808 7809 static void diagnoseLogicalNotOnLHSofComparison(Sema &S, ExprResult &LHS, 7810 ExprResult &RHS, 7811 SourceLocation Loc, 7812 unsigned OpaqueOpc) { 7813 // This checking requires bools. 7814 if (!S.getLangOpts().Bool) return; 7815 7816 // Check that left hand side is !something. 7817 UnaryOperator *UO = dyn_cast<UnaryOperator>(LHS.get()->IgnoreImpCasts()); 7818 if (!UO || UO->getOpcode() != UO_LNot) return; 7819 7820 // Only check if the right hand side is non-bool arithmetic type. 7821 if (RHS.get()->getType()->isBooleanType()) return; 7822 7823 // Make sure that the something in !something is not bool. 7824 Expr *SubExpr = UO->getSubExpr()->IgnoreImpCasts(); 7825 if (SubExpr->getType()->isBooleanType()) return; 7826 7827 // Emit warning. 7828 S.Diag(UO->getOperatorLoc(), diag::warn_logical_not_on_lhs_of_comparison) 7829 << Loc; 7830 7831 // First note suggest !(x < y) 7832 SourceLocation FirstOpen = SubExpr->getLocStart(); 7833 SourceLocation FirstClose = RHS.get()->getLocEnd(); 7834 FirstClose = S.getPreprocessor().getLocForEndOfToken(FirstClose); 7835 if (FirstClose.isInvalid()) 7836 FirstOpen = SourceLocation(); 7837 S.Diag(UO->getOperatorLoc(), diag::note_logical_not_fix) 7838 << FixItHint::CreateInsertion(FirstOpen, "(") 7839 << FixItHint::CreateInsertion(FirstClose, ")"); 7840 7841 // Second note suggests (!x) < y 7842 SourceLocation SecondOpen = LHS.get()->getLocStart(); 7843 SourceLocation SecondClose = LHS.get()->getLocEnd(); 7844 SecondClose = S.getPreprocessor().getLocForEndOfToken(SecondClose); 7845 if (SecondClose.isInvalid()) 7846 SecondOpen = SourceLocation(); 7847 S.Diag(UO->getOperatorLoc(), diag::note_logical_not_silence_with_parens) 7848 << FixItHint::CreateInsertion(SecondOpen, "(") 7849 << FixItHint::CreateInsertion(SecondClose, ")"); 7850 } 7851 7852 // Get the decl for a simple expression: a reference to a variable, 7853 // an implicit C++ field reference, or an implicit ObjC ivar reference. 7854 static ValueDecl *getCompareDecl(Expr *E) { 7855 if (DeclRefExpr* DR = dyn_cast<DeclRefExpr>(E)) 7856 return DR->getDecl(); 7857 if (ObjCIvarRefExpr* Ivar = dyn_cast<ObjCIvarRefExpr>(E)) { 7858 if (Ivar->isFreeIvar()) 7859 return Ivar->getDecl(); 7860 } 7861 if (MemberExpr* Mem = dyn_cast<MemberExpr>(E)) { 7862 if (Mem->isImplicitAccess()) 7863 return Mem->getMemberDecl(); 7864 } 7865 return nullptr; 7866 } 7867 7868 // C99 6.5.8, C++ [expr.rel] 7869 QualType Sema::CheckCompareOperands(ExprResult &LHS, ExprResult &RHS, 7870 SourceLocation Loc, unsigned OpaqueOpc, 7871 bool IsRelational) { 7872 checkArithmeticNull(*this, LHS, RHS, Loc, /*isCompare=*/true); 7873 7874 BinaryOperatorKind Opc = (BinaryOperatorKind) OpaqueOpc; 7875 7876 // Handle vector comparisons separately. 7877 if (LHS.get()->getType()->isVectorType() || 7878 RHS.get()->getType()->isVectorType()) 7879 return CheckVectorCompareOperands(LHS, RHS, Loc, IsRelational); 7880 7881 QualType LHSType = LHS.get()->getType(); 7882 QualType RHSType = RHS.get()->getType(); 7883 7884 Expr *LHSStripped = LHS.get()->IgnoreParenImpCasts(); 7885 Expr *RHSStripped = RHS.get()->IgnoreParenImpCasts(); 7886 7887 checkEnumComparison(*this, Loc, LHS.get(), RHS.get()); 7888 diagnoseLogicalNotOnLHSofComparison(*this, LHS, RHS, Loc, OpaqueOpc); 7889 7890 if (!LHSType->hasFloatingRepresentation() && 7891 !(LHSType->isBlockPointerType() && IsRelational) && 7892 !LHS.get()->getLocStart().isMacroID() && 7893 !RHS.get()->getLocStart().isMacroID() && 7894 ActiveTemplateInstantiations.empty()) { 7895 // For non-floating point types, check for self-comparisons of the form 7896 // x == x, x != x, x < x, etc. These always evaluate to a constant, and 7897 // often indicate logic errors in the program. 7898 // 7899 // NOTE: Don't warn about comparison expressions resulting from macro 7900 // expansion. Also don't warn about comparisons which are only self 7901 // comparisons within a template specialization. The warnings should catch 7902 // obvious cases in the definition of the template anyways. The idea is to 7903 // warn when the typed comparison operator will always evaluate to the same 7904 // result. 7905 ValueDecl *DL = getCompareDecl(LHSStripped); 7906 ValueDecl *DR = getCompareDecl(RHSStripped); 7907 if (DL && DR && DL == DR && !IsWithinTemplateSpecialization(DL)) { 7908 DiagRuntimeBehavior(Loc, nullptr, PDiag(diag::warn_comparison_always) 7909 << 0 // self- 7910 << (Opc == BO_EQ 7911 || Opc == BO_LE 7912 || Opc == BO_GE)); 7913 } else if (DL && DR && LHSType->isArrayType() && RHSType->isArrayType() && 7914 !DL->getType()->isReferenceType() && 7915 !DR->getType()->isReferenceType()) { 7916 // what is it always going to eval to? 7917 char always_evals_to; 7918 switch(Opc) { 7919 case BO_EQ: // e.g. array1 == array2 7920 always_evals_to = 0; // false 7921 break; 7922 case BO_NE: // e.g. array1 != array2 7923 always_evals_to = 1; // true 7924 break; 7925 default: 7926 // best we can say is 'a constant' 7927 always_evals_to = 2; // e.g. array1 <= array2 7928 break; 7929 } 7930 DiagRuntimeBehavior(Loc, nullptr, PDiag(diag::warn_comparison_always) 7931 << 1 // array 7932 << always_evals_to); 7933 } 7934 7935 if (isa<CastExpr>(LHSStripped)) 7936 LHSStripped = LHSStripped->IgnoreParenCasts(); 7937 if (isa<CastExpr>(RHSStripped)) 7938 RHSStripped = RHSStripped->IgnoreParenCasts(); 7939 7940 // Warn about comparisons against a string constant (unless the other 7941 // operand is null), the user probably wants strcmp. 7942 Expr *literalString = nullptr; 7943 Expr *literalStringStripped = nullptr; 7944 if ((isa<StringLiteral>(LHSStripped) || isa<ObjCEncodeExpr>(LHSStripped)) && 7945 !RHSStripped->isNullPointerConstant(Context, 7946 Expr::NPC_ValueDependentIsNull)) { 7947 literalString = LHS.get(); 7948 literalStringStripped = LHSStripped; 7949 } else if ((isa<StringLiteral>(RHSStripped) || 7950 isa<ObjCEncodeExpr>(RHSStripped)) && 7951 !LHSStripped->isNullPointerConstant(Context, 7952 Expr::NPC_ValueDependentIsNull)) { 7953 literalString = RHS.get(); 7954 literalStringStripped = RHSStripped; 7955 } 7956 7957 if (literalString) { 7958 DiagRuntimeBehavior(Loc, nullptr, 7959 PDiag(diag::warn_stringcompare) 7960 << isa<ObjCEncodeExpr>(literalStringStripped) 7961 << literalString->getSourceRange()); 7962 } 7963 } 7964 7965 // C99 6.5.8p3 / C99 6.5.9p4 7966 UsualArithmeticConversions(LHS, RHS); 7967 if (LHS.isInvalid() || RHS.isInvalid()) 7968 return QualType(); 7969 7970 LHSType = LHS.get()->getType(); 7971 RHSType = RHS.get()->getType(); 7972 7973 // The result of comparisons is 'bool' in C++, 'int' in C. 7974 QualType ResultTy = Context.getLogicalOperationType(); 7975 7976 if (IsRelational) { 7977 if (LHSType->isRealType() && RHSType->isRealType()) 7978 return ResultTy; 7979 } else { 7980 // Check for comparisons of floating point operands using != and ==. 7981 if (LHSType->hasFloatingRepresentation()) 7982 CheckFloatComparison(Loc, LHS.get(), RHS.get()); 7983 7984 if (LHSType->isArithmeticType() && RHSType->isArithmeticType()) 7985 return ResultTy; 7986 } 7987 7988 const Expr::NullPointerConstantKind LHSNullKind = 7989 LHS.get()->isNullPointerConstant(Context, Expr::NPC_ValueDependentIsNull); 7990 const Expr::NullPointerConstantKind RHSNullKind = 7991 RHS.get()->isNullPointerConstant(Context, Expr::NPC_ValueDependentIsNull); 7992 bool LHSIsNull = LHSNullKind != Expr::NPCK_NotNull; 7993 bool RHSIsNull = RHSNullKind != Expr::NPCK_NotNull; 7994 7995 if (!IsRelational && LHSIsNull != RHSIsNull) { 7996 bool IsEquality = Opc == BO_EQ; 7997 if (RHSIsNull) 7998 DiagnoseAlwaysNonNullPointer(LHS.get(), RHSNullKind, IsEquality, 7999 RHS.get()->getSourceRange()); 8000 else 8001 DiagnoseAlwaysNonNullPointer(RHS.get(), LHSNullKind, IsEquality, 8002 LHS.get()->getSourceRange()); 8003 } 8004 8005 // All of the following pointer-related warnings are GCC extensions, except 8006 // when handling null pointer constants. 8007 if (LHSType->isPointerType() && RHSType->isPointerType()) { // C99 6.5.8p2 8008 QualType LCanPointeeTy = 8009 LHSType->castAs<PointerType>()->getPointeeType().getCanonicalType(); 8010 QualType RCanPointeeTy = 8011 RHSType->castAs<PointerType>()->getPointeeType().getCanonicalType(); 8012 8013 if (getLangOpts().CPlusPlus) { 8014 if (LCanPointeeTy == RCanPointeeTy) 8015 return ResultTy; 8016 if (!IsRelational && 8017 (LCanPointeeTy->isVoidType() || RCanPointeeTy->isVoidType())) { 8018 // Valid unless comparison between non-null pointer and function pointer 8019 // This is a gcc extension compatibility comparison. 8020 // In a SFINAE context, we treat this as a hard error to maintain 8021 // conformance with the C++ standard. 8022 if ((LCanPointeeTy->isFunctionType() || RCanPointeeTy->isFunctionType()) 8023 && !LHSIsNull && !RHSIsNull) { 8024 diagnoseFunctionPointerToVoidComparison( 8025 *this, Loc, LHS, RHS, /*isError*/ (bool)isSFINAEContext()); 8026 8027 if (isSFINAEContext()) 8028 return QualType(); 8029 8030 RHS = ImpCastExprToType(RHS.get(), LHSType, CK_BitCast); 8031 return ResultTy; 8032 } 8033 } 8034 8035 if (convertPointersToCompositeType(*this, Loc, LHS, RHS)) 8036 return QualType(); 8037 else 8038 return ResultTy; 8039 } 8040 // C99 6.5.9p2 and C99 6.5.8p2 8041 if (Context.typesAreCompatible(LCanPointeeTy.getUnqualifiedType(), 8042 RCanPointeeTy.getUnqualifiedType())) { 8043 // Valid unless a relational comparison of function pointers 8044 if (IsRelational && LCanPointeeTy->isFunctionType()) { 8045 Diag(Loc, diag::ext_typecheck_ordered_comparison_of_function_pointers) 8046 << LHSType << RHSType << LHS.get()->getSourceRange() 8047 << RHS.get()->getSourceRange(); 8048 } 8049 } else if (!IsRelational && 8050 (LCanPointeeTy->isVoidType() || RCanPointeeTy->isVoidType())) { 8051 // Valid unless comparison between non-null pointer and function pointer 8052 if ((LCanPointeeTy->isFunctionType() || RCanPointeeTy->isFunctionType()) 8053 && !LHSIsNull && !RHSIsNull) 8054 diagnoseFunctionPointerToVoidComparison(*this, Loc, LHS, RHS, 8055 /*isError*/false); 8056 } else { 8057 // Invalid 8058 diagnoseDistinctPointerComparison(*this, Loc, LHS, RHS, /*isError*/false); 8059 } 8060 if (LCanPointeeTy != RCanPointeeTy) { 8061 unsigned AddrSpaceL = LCanPointeeTy.getAddressSpace(); 8062 unsigned AddrSpaceR = RCanPointeeTy.getAddressSpace(); 8063 CastKind Kind = AddrSpaceL != AddrSpaceR ? CK_AddressSpaceConversion 8064 : CK_BitCast; 8065 if (LHSIsNull && !RHSIsNull) 8066 LHS = ImpCastExprToType(LHS.get(), RHSType, Kind); 8067 else 8068 RHS = ImpCastExprToType(RHS.get(), LHSType, Kind); 8069 } 8070 return ResultTy; 8071 } 8072 8073 if (getLangOpts().CPlusPlus) { 8074 // Comparison of nullptr_t with itself. 8075 if (LHSType->isNullPtrType() && RHSType->isNullPtrType()) 8076 return ResultTy; 8077 8078 // Comparison of pointers with null pointer constants and equality 8079 // comparisons of member pointers to null pointer constants. 8080 if (RHSIsNull && 8081 ((LHSType->isAnyPointerType() || LHSType->isNullPtrType()) || 8082 (!IsRelational && 8083 (LHSType->isMemberPointerType() || LHSType->isBlockPointerType())))) { 8084 RHS = ImpCastExprToType(RHS.get(), LHSType, 8085 LHSType->isMemberPointerType() 8086 ? CK_NullToMemberPointer 8087 : CK_NullToPointer); 8088 return ResultTy; 8089 } 8090 if (LHSIsNull && 8091 ((RHSType->isAnyPointerType() || RHSType->isNullPtrType()) || 8092 (!IsRelational && 8093 (RHSType->isMemberPointerType() || RHSType->isBlockPointerType())))) { 8094 LHS = ImpCastExprToType(LHS.get(), RHSType, 8095 RHSType->isMemberPointerType() 8096 ? CK_NullToMemberPointer 8097 : CK_NullToPointer); 8098 return ResultTy; 8099 } 8100 8101 // Comparison of member pointers. 8102 if (!IsRelational && 8103 LHSType->isMemberPointerType() && RHSType->isMemberPointerType()) { 8104 if (convertPointersToCompositeType(*this, Loc, LHS, RHS)) 8105 return QualType(); 8106 else 8107 return ResultTy; 8108 } 8109 8110 // Handle scoped enumeration types specifically, since they don't promote 8111 // to integers. 8112 if (LHS.get()->getType()->isEnumeralType() && 8113 Context.hasSameUnqualifiedType(LHS.get()->getType(), 8114 RHS.get()->getType())) 8115 return ResultTy; 8116 } 8117 8118 // Handle block pointer types. 8119 if (!IsRelational && LHSType->isBlockPointerType() && 8120 RHSType->isBlockPointerType()) { 8121 QualType lpointee = LHSType->castAs<BlockPointerType>()->getPointeeType(); 8122 QualType rpointee = RHSType->castAs<BlockPointerType>()->getPointeeType(); 8123 8124 if (!LHSIsNull && !RHSIsNull && 8125 !Context.typesAreCompatible(lpointee, rpointee)) { 8126 Diag(Loc, diag::err_typecheck_comparison_of_distinct_blocks) 8127 << LHSType << RHSType << LHS.get()->getSourceRange() 8128 << RHS.get()->getSourceRange(); 8129 } 8130 RHS = ImpCastExprToType(RHS.get(), LHSType, CK_BitCast); 8131 return ResultTy; 8132 } 8133 8134 // Allow block pointers to be compared with null pointer constants. 8135 if (!IsRelational 8136 && ((LHSType->isBlockPointerType() && RHSType->isPointerType()) 8137 || (LHSType->isPointerType() && RHSType->isBlockPointerType()))) { 8138 if (!LHSIsNull && !RHSIsNull) { 8139 if (!((RHSType->isPointerType() && RHSType->castAs<PointerType>() 8140 ->getPointeeType()->isVoidType()) 8141 || (LHSType->isPointerType() && LHSType->castAs<PointerType>() 8142 ->getPointeeType()->isVoidType()))) 8143 Diag(Loc, diag::err_typecheck_comparison_of_distinct_blocks) 8144 << LHSType << RHSType << LHS.get()->getSourceRange() 8145 << RHS.get()->getSourceRange(); 8146 } 8147 if (LHSIsNull && !RHSIsNull) 8148 LHS = ImpCastExprToType(LHS.get(), RHSType, 8149 RHSType->isPointerType() ? CK_BitCast 8150 : CK_AnyPointerToBlockPointerCast); 8151 else 8152 RHS = ImpCastExprToType(RHS.get(), LHSType, 8153 LHSType->isPointerType() ? CK_BitCast 8154 : CK_AnyPointerToBlockPointerCast); 8155 return ResultTy; 8156 } 8157 8158 if (LHSType->isObjCObjectPointerType() || 8159 RHSType->isObjCObjectPointerType()) { 8160 const PointerType *LPT = LHSType->getAs<PointerType>(); 8161 const PointerType *RPT = RHSType->getAs<PointerType>(); 8162 if (LPT || RPT) { 8163 bool LPtrToVoid = LPT ? LPT->getPointeeType()->isVoidType() : false; 8164 bool RPtrToVoid = RPT ? RPT->getPointeeType()->isVoidType() : false; 8165 8166 if (!LPtrToVoid && !RPtrToVoid && 8167 !Context.typesAreCompatible(LHSType, RHSType)) { 8168 diagnoseDistinctPointerComparison(*this, Loc, LHS, RHS, 8169 /*isError*/false); 8170 } 8171 if (LHSIsNull && !RHSIsNull) { 8172 Expr *E = LHS.get(); 8173 if (getLangOpts().ObjCAutoRefCount) 8174 CheckObjCARCConversion(SourceRange(), RHSType, E, CCK_ImplicitConversion); 8175 LHS = ImpCastExprToType(E, RHSType, 8176 RPT ? CK_BitCast :CK_CPointerToObjCPointerCast); 8177 } 8178 else { 8179 Expr *E = RHS.get(); 8180 if (getLangOpts().ObjCAutoRefCount) 8181 CheckObjCARCConversion(SourceRange(), LHSType, E, CCK_ImplicitConversion, false, 8182 Opc); 8183 RHS = ImpCastExprToType(E, LHSType, 8184 LPT ? CK_BitCast :CK_CPointerToObjCPointerCast); 8185 } 8186 return ResultTy; 8187 } 8188 if (LHSType->isObjCObjectPointerType() && 8189 RHSType->isObjCObjectPointerType()) { 8190 if (!Context.areComparableObjCPointerTypes(LHSType, RHSType)) 8191 diagnoseDistinctPointerComparison(*this, Loc, LHS, RHS, 8192 /*isError*/false); 8193 if (isObjCObjectLiteral(LHS) || isObjCObjectLiteral(RHS)) 8194 diagnoseObjCLiteralComparison(*this, Loc, LHS, RHS, Opc); 8195 8196 if (LHSIsNull && !RHSIsNull) 8197 LHS = ImpCastExprToType(LHS.get(), RHSType, CK_BitCast); 8198 else 8199 RHS = ImpCastExprToType(RHS.get(), LHSType, CK_BitCast); 8200 return ResultTy; 8201 } 8202 } 8203 if ((LHSType->isAnyPointerType() && RHSType->isIntegerType()) || 8204 (LHSType->isIntegerType() && RHSType->isAnyPointerType())) { 8205 unsigned DiagID = 0; 8206 bool isError = false; 8207 if (LangOpts.DebuggerSupport) { 8208 // Under a debugger, allow the comparison of pointers to integers, 8209 // since users tend to want to compare addresses. 8210 } else if ((LHSIsNull && LHSType->isIntegerType()) || 8211 (RHSIsNull && RHSType->isIntegerType())) { 8212 if (IsRelational && !getLangOpts().CPlusPlus) 8213 DiagID = diag::ext_typecheck_ordered_comparison_of_pointer_and_zero; 8214 } else if (IsRelational && !getLangOpts().CPlusPlus) 8215 DiagID = diag::ext_typecheck_ordered_comparison_of_pointer_integer; 8216 else if (getLangOpts().CPlusPlus) { 8217 DiagID = diag::err_typecheck_comparison_of_pointer_integer; 8218 isError = true; 8219 } else 8220 DiagID = diag::ext_typecheck_comparison_of_pointer_integer; 8221 8222 if (DiagID) { 8223 Diag(Loc, DiagID) 8224 << LHSType << RHSType << LHS.get()->getSourceRange() 8225 << RHS.get()->getSourceRange(); 8226 if (isError) 8227 return QualType(); 8228 } 8229 8230 if (LHSType->isIntegerType()) 8231 LHS = ImpCastExprToType(LHS.get(), RHSType, 8232 LHSIsNull ? CK_NullToPointer : CK_IntegralToPointer); 8233 else 8234 RHS = ImpCastExprToType(RHS.get(), LHSType, 8235 RHSIsNull ? CK_NullToPointer : CK_IntegralToPointer); 8236 return ResultTy; 8237 } 8238 8239 // Handle block pointers. 8240 if (!IsRelational && RHSIsNull 8241 && LHSType->isBlockPointerType() && RHSType->isIntegerType()) { 8242 RHS = ImpCastExprToType(RHS.get(), LHSType, CK_NullToPointer); 8243 return ResultTy; 8244 } 8245 if (!IsRelational && LHSIsNull 8246 && LHSType->isIntegerType() && RHSType->isBlockPointerType()) { 8247 LHS = ImpCastExprToType(LHS.get(), RHSType, CK_NullToPointer); 8248 return ResultTy; 8249 } 8250 8251 return InvalidOperands(Loc, LHS, RHS); 8252 } 8253 8254 8255 // Return a signed type that is of identical size and number of elements. 8256 // For floating point vectors, return an integer type of identical size 8257 // and number of elements. 8258 QualType Sema::GetSignedVectorType(QualType V) { 8259 const VectorType *VTy = V->getAs<VectorType>(); 8260 unsigned TypeSize = Context.getTypeSize(VTy->getElementType()); 8261 if (TypeSize == Context.getTypeSize(Context.CharTy)) 8262 return Context.getExtVectorType(Context.CharTy, VTy->getNumElements()); 8263 else if (TypeSize == Context.getTypeSize(Context.ShortTy)) 8264 return Context.getExtVectorType(Context.ShortTy, VTy->getNumElements()); 8265 else if (TypeSize == Context.getTypeSize(Context.IntTy)) 8266 return Context.getExtVectorType(Context.IntTy, VTy->getNumElements()); 8267 else if (TypeSize == Context.getTypeSize(Context.LongTy)) 8268 return Context.getExtVectorType(Context.LongTy, VTy->getNumElements()); 8269 assert(TypeSize == Context.getTypeSize(Context.LongLongTy) && 8270 "Unhandled vector element size in vector compare"); 8271 return Context.getExtVectorType(Context.LongLongTy, VTy->getNumElements()); 8272 } 8273 8274 /// CheckVectorCompareOperands - vector comparisons are a clang extension that 8275 /// operates on extended vector types. Instead of producing an IntTy result, 8276 /// like a scalar comparison, a vector comparison produces a vector of integer 8277 /// types. 8278 QualType Sema::CheckVectorCompareOperands(ExprResult &LHS, ExprResult &RHS, 8279 SourceLocation Loc, 8280 bool IsRelational) { 8281 // Check to make sure we're operating on vectors of the same type and width, 8282 // Allowing one side to be a scalar of element type. 8283 QualType vType = CheckVectorOperands(LHS, RHS, Loc, /*isCompAssign*/false); 8284 if (vType.isNull()) 8285 return vType; 8286 8287 QualType LHSType = LHS.get()->getType(); 8288 8289 // If AltiVec, the comparison results in a numeric type, i.e. 8290 // bool for C++, int for C 8291 if (vType->getAs<VectorType>()->getVectorKind() == VectorType::AltiVecVector) 8292 return Context.getLogicalOperationType(); 8293 8294 // For non-floating point types, check for self-comparisons of the form 8295 // x == x, x != x, x < x, etc. These always evaluate to a constant, and 8296 // often indicate logic errors in the program. 8297 if (!LHSType->hasFloatingRepresentation() && 8298 ActiveTemplateInstantiations.empty()) { 8299 if (DeclRefExpr* DRL 8300 = dyn_cast<DeclRefExpr>(LHS.get()->IgnoreParenImpCasts())) 8301 if (DeclRefExpr* DRR 8302 = dyn_cast<DeclRefExpr>(RHS.get()->IgnoreParenImpCasts())) 8303 if (DRL->getDecl() == DRR->getDecl()) 8304 DiagRuntimeBehavior(Loc, nullptr, 8305 PDiag(diag::warn_comparison_always) 8306 << 0 // self- 8307 << 2 // "a constant" 8308 ); 8309 } 8310 8311 // Check for comparisons of floating point operands using != and ==. 8312 if (!IsRelational && LHSType->hasFloatingRepresentation()) { 8313 assert (RHS.get()->getType()->hasFloatingRepresentation()); 8314 CheckFloatComparison(Loc, LHS.get(), RHS.get()); 8315 } 8316 8317 // Return a signed type for the vector. 8318 return GetSignedVectorType(LHSType); 8319 } 8320 8321 QualType Sema::CheckVectorLogicalOperands(ExprResult &LHS, ExprResult &RHS, 8322 SourceLocation Loc) { 8323 // Ensure that either both operands are of the same vector type, or 8324 // one operand is of a vector type and the other is of its element type. 8325 QualType vType = CheckVectorOperands(LHS, RHS, Loc, false); 8326 if (vType.isNull()) 8327 return InvalidOperands(Loc, LHS, RHS); 8328 if (getLangOpts().OpenCL && getLangOpts().OpenCLVersion < 120 && 8329 vType->hasFloatingRepresentation()) 8330 return InvalidOperands(Loc, LHS, RHS); 8331 8332 return GetSignedVectorType(LHS.get()->getType()); 8333 } 8334 8335 inline QualType Sema::CheckBitwiseOperands( 8336 ExprResult &LHS, ExprResult &RHS, SourceLocation Loc, bool IsCompAssign) { 8337 checkArithmeticNull(*this, LHS, RHS, Loc, /*isCompare=*/false); 8338 8339 if (LHS.get()->getType()->isVectorType() || 8340 RHS.get()->getType()->isVectorType()) { 8341 if (LHS.get()->getType()->hasIntegerRepresentation() && 8342 RHS.get()->getType()->hasIntegerRepresentation()) 8343 return CheckVectorOperands(LHS, RHS, Loc, IsCompAssign); 8344 8345 return InvalidOperands(Loc, LHS, RHS); 8346 } 8347 8348 ExprResult LHSResult = LHS, RHSResult = RHS; 8349 QualType compType = UsualArithmeticConversions(LHSResult, RHSResult, 8350 IsCompAssign); 8351 if (LHSResult.isInvalid() || RHSResult.isInvalid()) 8352 return QualType(); 8353 LHS = LHSResult.get(); 8354 RHS = RHSResult.get(); 8355 8356 if (!compType.isNull() && compType->isIntegralOrUnscopedEnumerationType()) 8357 return compType; 8358 return InvalidOperands(Loc, LHS, RHS); 8359 } 8360 8361 inline QualType Sema::CheckLogicalOperands( // C99 6.5.[13,14] 8362 ExprResult &LHS, ExprResult &RHS, SourceLocation Loc, unsigned Opc) { 8363 8364 // Check vector operands differently. 8365 if (LHS.get()->getType()->isVectorType() || RHS.get()->getType()->isVectorType()) 8366 return CheckVectorLogicalOperands(LHS, RHS, Loc); 8367 8368 // Diagnose cases where the user write a logical and/or but probably meant a 8369 // bitwise one. We do this when the LHS is a non-bool integer and the RHS 8370 // is a constant. 8371 if (LHS.get()->getType()->isIntegerType() && 8372 !LHS.get()->getType()->isBooleanType() && 8373 RHS.get()->getType()->isIntegerType() && !RHS.get()->isValueDependent() && 8374 // Don't warn in macros or template instantiations. 8375 !Loc.isMacroID() && ActiveTemplateInstantiations.empty()) { 8376 // If the RHS can be constant folded, and if it constant folds to something 8377 // that isn't 0 or 1 (which indicate a potential logical operation that 8378 // happened to fold to true/false) then warn. 8379 // Parens on the RHS are ignored. 8380 llvm::APSInt Result; 8381 if (RHS.get()->EvaluateAsInt(Result, Context)) 8382 if ((getLangOpts().Bool && !RHS.get()->getType()->isBooleanType() && 8383 !RHS.get()->getExprLoc().isMacroID()) || 8384 (Result != 0 && Result != 1)) { 8385 Diag(Loc, diag::warn_logical_instead_of_bitwise) 8386 << RHS.get()->getSourceRange() 8387 << (Opc == BO_LAnd ? "&&" : "||"); 8388 // Suggest replacing the logical operator with the bitwise version 8389 Diag(Loc, diag::note_logical_instead_of_bitwise_change_operator) 8390 << (Opc == BO_LAnd ? "&" : "|") 8391 << FixItHint::CreateReplacement(SourceRange( 8392 Loc, Lexer::getLocForEndOfToken(Loc, 0, getSourceManager(), 8393 getLangOpts())), 8394 Opc == BO_LAnd ? "&" : "|"); 8395 if (Opc == BO_LAnd) 8396 // Suggest replacing "Foo() && kNonZero" with "Foo()" 8397 Diag(Loc, diag::note_logical_instead_of_bitwise_remove_constant) 8398 << FixItHint::CreateRemoval( 8399 SourceRange( 8400 Lexer::getLocForEndOfToken(LHS.get()->getLocEnd(), 8401 0, getSourceManager(), 8402 getLangOpts()), 8403 RHS.get()->getLocEnd())); 8404 } 8405 } 8406 8407 if (!Context.getLangOpts().CPlusPlus) { 8408 // OpenCL v1.1 s6.3.g: The logical operators and (&&), or (||) do 8409 // not operate on the built-in scalar and vector float types. 8410 if (Context.getLangOpts().OpenCL && 8411 Context.getLangOpts().OpenCLVersion < 120) { 8412 if (LHS.get()->getType()->isFloatingType() || 8413 RHS.get()->getType()->isFloatingType()) 8414 return InvalidOperands(Loc, LHS, RHS); 8415 } 8416 8417 LHS = UsualUnaryConversions(LHS.get()); 8418 if (LHS.isInvalid()) 8419 return QualType(); 8420 8421 RHS = UsualUnaryConversions(RHS.get()); 8422 if (RHS.isInvalid()) 8423 return QualType(); 8424 8425 if (!LHS.get()->getType()->isScalarType() || 8426 !RHS.get()->getType()->isScalarType()) 8427 return InvalidOperands(Loc, LHS, RHS); 8428 8429 return Context.IntTy; 8430 } 8431 8432 // The following is safe because we only use this method for 8433 // non-overloadable operands. 8434 8435 // C++ [expr.log.and]p1 8436 // C++ [expr.log.or]p1 8437 // The operands are both contextually converted to type bool. 8438 ExprResult LHSRes = PerformContextuallyConvertToBool(LHS.get()); 8439 if (LHSRes.isInvalid()) 8440 return InvalidOperands(Loc, LHS, RHS); 8441 LHS = LHSRes; 8442 8443 ExprResult RHSRes = PerformContextuallyConvertToBool(RHS.get()); 8444 if (RHSRes.isInvalid()) 8445 return InvalidOperands(Loc, LHS, RHS); 8446 RHS = RHSRes; 8447 8448 // C++ [expr.log.and]p2 8449 // C++ [expr.log.or]p2 8450 // The result is a bool. 8451 return Context.BoolTy; 8452 } 8453 8454 static bool IsReadonlyMessage(Expr *E, Sema &S) { 8455 const MemberExpr *ME = dyn_cast<MemberExpr>(E); 8456 if (!ME) return false; 8457 if (!isa<FieldDecl>(ME->getMemberDecl())) return false; 8458 ObjCMessageExpr *Base = 8459 dyn_cast<ObjCMessageExpr>(ME->getBase()->IgnoreParenImpCasts()); 8460 if (!Base) return false; 8461 return Base->getMethodDecl() != nullptr; 8462 } 8463 8464 /// Is the given expression (which must be 'const') a reference to a 8465 /// variable which was originally non-const, but which has become 8466 /// 'const' due to being captured within a block? 8467 enum NonConstCaptureKind { NCCK_None, NCCK_Block, NCCK_Lambda }; 8468 static NonConstCaptureKind isReferenceToNonConstCapture(Sema &S, Expr *E) { 8469 assert(E->isLValue() && E->getType().isConstQualified()); 8470 E = E->IgnoreParens(); 8471 8472 // Must be a reference to a declaration from an enclosing scope. 8473 DeclRefExpr *DRE = dyn_cast<DeclRefExpr>(E); 8474 if (!DRE) return NCCK_None; 8475 if (!DRE->refersToEnclosingLocal()) return NCCK_None; 8476 8477 // The declaration must be a variable which is not declared 'const'. 8478 VarDecl *var = dyn_cast<VarDecl>(DRE->getDecl()); 8479 if (!var) return NCCK_None; 8480 if (var->getType().isConstQualified()) return NCCK_None; 8481 assert(var->hasLocalStorage() && "capture added 'const' to non-local?"); 8482 8483 // Decide whether the first capture was for a block or a lambda. 8484 DeclContext *DC = S.CurContext, *Prev = nullptr; 8485 while (DC != var->getDeclContext()) { 8486 Prev = DC; 8487 DC = DC->getParent(); 8488 } 8489 // Unless we have an init-capture, we've gone one step too far. 8490 if (!var->isInitCapture()) 8491 DC = Prev; 8492 return (isa<BlockDecl>(DC) ? NCCK_Block : NCCK_Lambda); 8493 } 8494 8495 /// CheckForModifiableLvalue - Verify that E is a modifiable lvalue. If not, 8496 /// emit an error and return true. If so, return false. 8497 static bool CheckForModifiableLvalue(Expr *E, SourceLocation Loc, Sema &S) { 8498 assert(!E->hasPlaceholderType(BuiltinType::PseudoObject)); 8499 SourceLocation OrigLoc = Loc; 8500 Expr::isModifiableLvalueResult IsLV = E->isModifiableLvalue(S.Context, 8501 &Loc); 8502 if (IsLV == Expr::MLV_ClassTemporary && IsReadonlyMessage(E, S)) 8503 IsLV = Expr::MLV_InvalidMessageExpression; 8504 if (IsLV == Expr::MLV_Valid) 8505 return false; 8506 8507 unsigned Diag = 0; 8508 bool NeedType = false; 8509 switch (IsLV) { // C99 6.5.16p2 8510 case Expr::MLV_ConstQualified: 8511 Diag = diag::err_typecheck_assign_const; 8512 8513 // Use a specialized diagnostic when we're assigning to an object 8514 // from an enclosing function or block. 8515 if (NonConstCaptureKind NCCK = isReferenceToNonConstCapture(S, E)) { 8516 if (NCCK == NCCK_Block) 8517 Diag = diag::err_block_decl_ref_not_modifiable_lvalue; 8518 else 8519 Diag = diag::err_lambda_decl_ref_not_modifiable_lvalue; 8520 break; 8521 } 8522 8523 // In ARC, use some specialized diagnostics for occasions where we 8524 // infer 'const'. These are always pseudo-strong variables. 8525 if (S.getLangOpts().ObjCAutoRefCount) { 8526 DeclRefExpr *declRef = dyn_cast<DeclRefExpr>(E->IgnoreParenCasts()); 8527 if (declRef && isa<VarDecl>(declRef->getDecl())) { 8528 VarDecl *var = cast<VarDecl>(declRef->getDecl()); 8529 8530 // Use the normal diagnostic if it's pseudo-__strong but the 8531 // user actually wrote 'const'. 8532 if (var->isARCPseudoStrong() && 8533 (!var->getTypeSourceInfo() || 8534 !var->getTypeSourceInfo()->getType().isConstQualified())) { 8535 // There are two pseudo-strong cases: 8536 // - self 8537 ObjCMethodDecl *method = S.getCurMethodDecl(); 8538 if (method && var == method->getSelfDecl()) 8539 Diag = method->isClassMethod() 8540 ? diag::err_typecheck_arc_assign_self_class_method 8541 : diag::err_typecheck_arc_assign_self; 8542 8543 // - fast enumeration variables 8544 else 8545 Diag = diag::err_typecheck_arr_assign_enumeration; 8546 8547 SourceRange Assign; 8548 if (Loc != OrigLoc) 8549 Assign = SourceRange(OrigLoc, OrigLoc); 8550 S.Diag(Loc, Diag) << E->getSourceRange() << Assign; 8551 // We need to preserve the AST regardless, so migration tool 8552 // can do its job. 8553 return false; 8554 } 8555 } 8556 } 8557 8558 break; 8559 case Expr::MLV_ArrayType: 8560 case Expr::MLV_ArrayTemporary: 8561 Diag = diag::err_typecheck_array_not_modifiable_lvalue; 8562 NeedType = true; 8563 break; 8564 case Expr::MLV_NotObjectType: 8565 Diag = diag::err_typecheck_non_object_not_modifiable_lvalue; 8566 NeedType = true; 8567 break; 8568 case Expr::MLV_LValueCast: 8569 Diag = diag::err_typecheck_lvalue_casts_not_supported; 8570 break; 8571 case Expr::MLV_Valid: 8572 llvm_unreachable("did not take early return for MLV_Valid"); 8573 case Expr::MLV_InvalidExpression: 8574 case Expr::MLV_MemberFunction: 8575 case Expr::MLV_ClassTemporary: 8576 Diag = diag::err_typecheck_expression_not_modifiable_lvalue; 8577 break; 8578 case Expr::MLV_IncompleteType: 8579 case Expr::MLV_IncompleteVoidType: 8580 return S.RequireCompleteType(Loc, E->getType(), 8581 diag::err_typecheck_incomplete_type_not_modifiable_lvalue, E); 8582 case Expr::MLV_DuplicateVectorComponents: 8583 Diag = diag::err_typecheck_duplicate_vector_components_not_mlvalue; 8584 break; 8585 case Expr::MLV_NoSetterProperty: 8586 llvm_unreachable("readonly properties should be processed differently"); 8587 case Expr::MLV_InvalidMessageExpression: 8588 Diag = diag::error_readonly_message_assignment; 8589 break; 8590 case Expr::MLV_SubObjCPropertySetting: 8591 Diag = diag::error_no_subobject_property_setting; 8592 break; 8593 } 8594 8595 SourceRange Assign; 8596 if (Loc != OrigLoc) 8597 Assign = SourceRange(OrigLoc, OrigLoc); 8598 if (NeedType) 8599 S.Diag(Loc, Diag) << E->getType() << E->getSourceRange() << Assign; 8600 else 8601 S.Diag(Loc, Diag) << E->getSourceRange() << Assign; 8602 return true; 8603 } 8604 8605 static void CheckIdentityFieldAssignment(Expr *LHSExpr, Expr *RHSExpr, 8606 SourceLocation Loc, 8607 Sema &Sema) { 8608 // C / C++ fields 8609 MemberExpr *ML = dyn_cast<MemberExpr>(LHSExpr); 8610 MemberExpr *MR = dyn_cast<MemberExpr>(RHSExpr); 8611 if (ML && MR && ML->getMemberDecl() == MR->getMemberDecl()) { 8612 if (isa<CXXThisExpr>(ML->getBase()) && isa<CXXThisExpr>(MR->getBase())) 8613 Sema.Diag(Loc, diag::warn_identity_field_assign) << 0; 8614 } 8615 8616 // Objective-C instance variables 8617 ObjCIvarRefExpr *OL = dyn_cast<ObjCIvarRefExpr>(LHSExpr); 8618 ObjCIvarRefExpr *OR = dyn_cast<ObjCIvarRefExpr>(RHSExpr); 8619 if (OL && OR && OL->getDecl() == OR->getDecl()) { 8620 DeclRefExpr *RL = dyn_cast<DeclRefExpr>(OL->getBase()->IgnoreImpCasts()); 8621 DeclRefExpr *RR = dyn_cast<DeclRefExpr>(OR->getBase()->IgnoreImpCasts()); 8622 if (RL && RR && RL->getDecl() == RR->getDecl()) 8623 Sema.Diag(Loc, diag::warn_identity_field_assign) << 1; 8624 } 8625 } 8626 8627 // C99 6.5.16.1 8628 QualType Sema::CheckAssignmentOperands(Expr *LHSExpr, ExprResult &RHS, 8629 SourceLocation Loc, 8630 QualType CompoundType) { 8631 assert(!LHSExpr->hasPlaceholderType(BuiltinType::PseudoObject)); 8632 8633 // Verify that LHS is a modifiable lvalue, and emit error if not. 8634 if (CheckForModifiableLvalue(LHSExpr, Loc, *this)) 8635 return QualType(); 8636 8637 QualType LHSType = LHSExpr->getType(); 8638 QualType RHSType = CompoundType.isNull() ? RHS.get()->getType() : 8639 CompoundType; 8640 AssignConvertType ConvTy; 8641 if (CompoundType.isNull()) { 8642 Expr *RHSCheck = RHS.get(); 8643 8644 CheckIdentityFieldAssignment(LHSExpr, RHSCheck, Loc, *this); 8645 8646 QualType LHSTy(LHSType); 8647 ConvTy = CheckSingleAssignmentConstraints(LHSTy, RHS); 8648 if (RHS.isInvalid()) 8649 return QualType(); 8650 // Special case of NSObject attributes on c-style pointer types. 8651 if (ConvTy == IncompatiblePointer && 8652 ((Context.isObjCNSObjectType(LHSType) && 8653 RHSType->isObjCObjectPointerType()) || 8654 (Context.isObjCNSObjectType(RHSType) && 8655 LHSType->isObjCObjectPointerType()))) 8656 ConvTy = Compatible; 8657 8658 if (ConvTy == Compatible && 8659 LHSType->isObjCObjectType()) 8660 Diag(Loc, diag::err_objc_object_assignment) 8661 << LHSType; 8662 8663 // If the RHS is a unary plus or minus, check to see if they = and + are 8664 // right next to each other. If so, the user may have typo'd "x =+ 4" 8665 // instead of "x += 4". 8666 if (ImplicitCastExpr *ICE = dyn_cast<ImplicitCastExpr>(RHSCheck)) 8667 RHSCheck = ICE->getSubExpr(); 8668 if (UnaryOperator *UO = dyn_cast<UnaryOperator>(RHSCheck)) { 8669 if ((UO->getOpcode() == UO_Plus || 8670 UO->getOpcode() == UO_Minus) && 8671 Loc.isFileID() && UO->getOperatorLoc().isFileID() && 8672 // Only if the two operators are exactly adjacent. 8673 Loc.getLocWithOffset(1) == UO->getOperatorLoc() && 8674 // And there is a space or other character before the subexpr of the 8675 // unary +/-. We don't want to warn on "x=-1". 8676 Loc.getLocWithOffset(2) != UO->getSubExpr()->getLocStart() && 8677 UO->getSubExpr()->getLocStart().isFileID()) { 8678 Diag(Loc, diag::warn_not_compound_assign) 8679 << (UO->getOpcode() == UO_Plus ? "+" : "-") 8680 << SourceRange(UO->getOperatorLoc(), UO->getOperatorLoc()); 8681 } 8682 } 8683 8684 if (ConvTy == Compatible) { 8685 if (LHSType.getObjCLifetime() == Qualifiers::OCL_Strong) { 8686 // Warn about retain cycles where a block captures the LHS, but 8687 // not if the LHS is a simple variable into which the block is 8688 // being stored...unless that variable can be captured by reference! 8689 const Expr *InnerLHS = LHSExpr->IgnoreParenCasts(); 8690 const DeclRefExpr *DRE = dyn_cast<DeclRefExpr>(InnerLHS); 8691 if (!DRE || DRE->getDecl()->hasAttr<BlocksAttr>()) 8692 checkRetainCycles(LHSExpr, RHS.get()); 8693 8694 // It is safe to assign a weak reference into a strong variable. 8695 // Although this code can still have problems: 8696 // id x = self.weakProp; 8697 // id y = self.weakProp; 8698 // we do not warn to warn spuriously when 'x' and 'y' are on separate 8699 // paths through the function. This should be revisited if 8700 // -Wrepeated-use-of-weak is made flow-sensitive. 8701 if (!Diags.isIgnored(diag::warn_arc_repeated_use_of_weak, 8702 RHS.get()->getLocStart())) 8703 getCurFunction()->markSafeWeakUse(RHS.get()); 8704 8705 } else if (getLangOpts().ObjCAutoRefCount) { 8706 checkUnsafeExprAssigns(Loc, LHSExpr, RHS.get()); 8707 } 8708 } 8709 } else { 8710 // Compound assignment "x += y" 8711 ConvTy = CheckAssignmentConstraints(Loc, LHSType, RHSType); 8712 } 8713 8714 if (DiagnoseAssignmentResult(ConvTy, Loc, LHSType, RHSType, 8715 RHS.get(), AA_Assigning)) 8716 return QualType(); 8717 8718 CheckForNullPointerDereference(*this, LHSExpr); 8719 8720 // C99 6.5.16p3: The type of an assignment expression is the type of the 8721 // left operand unless the left operand has qualified type, in which case 8722 // it is the unqualified version of the type of the left operand. 8723 // C99 6.5.16.1p2: In simple assignment, the value of the right operand 8724 // is converted to the type of the assignment expression (above). 8725 // C++ 5.17p1: the type of the assignment expression is that of its left 8726 // operand. 8727 return (getLangOpts().CPlusPlus 8728 ? LHSType : LHSType.getUnqualifiedType()); 8729 } 8730 8731 // C99 6.5.17 8732 static QualType CheckCommaOperands(Sema &S, ExprResult &LHS, ExprResult &RHS, 8733 SourceLocation Loc) { 8734 LHS = S.CheckPlaceholderExpr(LHS.get()); 8735 RHS = S.CheckPlaceholderExpr(RHS.get()); 8736 if (LHS.isInvalid() || RHS.isInvalid()) 8737 return QualType(); 8738 8739 // C's comma performs lvalue conversion (C99 6.3.2.1) on both its 8740 // operands, but not unary promotions. 8741 // C++'s comma does not do any conversions at all (C++ [expr.comma]p1). 8742 8743 // So we treat the LHS as a ignored value, and in C++ we allow the 8744 // containing site to determine what should be done with the RHS. 8745 LHS = S.IgnoredValueConversions(LHS.get()); 8746 if (LHS.isInvalid()) 8747 return QualType(); 8748 8749 S.DiagnoseUnusedExprResult(LHS.get()); 8750 8751 if (!S.getLangOpts().CPlusPlus) { 8752 RHS = S.DefaultFunctionArrayLvalueConversion(RHS.get()); 8753 if (RHS.isInvalid()) 8754 return QualType(); 8755 if (!RHS.get()->getType()->isVoidType()) 8756 S.RequireCompleteType(Loc, RHS.get()->getType(), 8757 diag::err_incomplete_type); 8758 } 8759 8760 return RHS.get()->getType(); 8761 } 8762 8763 /// CheckIncrementDecrementOperand - unlike most "Check" methods, this routine 8764 /// doesn't need to call UsualUnaryConversions or UsualArithmeticConversions. 8765 static QualType CheckIncrementDecrementOperand(Sema &S, Expr *Op, 8766 ExprValueKind &VK, 8767 ExprObjectKind &OK, 8768 SourceLocation OpLoc, 8769 bool IsInc, bool IsPrefix) { 8770 if (Op->isTypeDependent()) 8771 return S.Context.DependentTy; 8772 8773 QualType ResType = Op->getType(); 8774 // Atomic types can be used for increment / decrement where the non-atomic 8775 // versions can, so ignore the _Atomic() specifier for the purpose of 8776 // checking. 8777 if (const AtomicType *ResAtomicType = ResType->getAs<AtomicType>()) 8778 ResType = ResAtomicType->getValueType(); 8779 8780 assert(!ResType.isNull() && "no type for increment/decrement expression"); 8781 8782 if (S.getLangOpts().CPlusPlus && ResType->isBooleanType()) { 8783 // Decrement of bool is not allowed. 8784 if (!IsInc) { 8785 S.Diag(OpLoc, diag::err_decrement_bool) << Op->getSourceRange(); 8786 return QualType(); 8787 } 8788 // Increment of bool sets it to true, but is deprecated. 8789 S.Diag(OpLoc, diag::warn_increment_bool) << Op->getSourceRange(); 8790 } else if (S.getLangOpts().CPlusPlus && ResType->isEnumeralType()) { 8791 // Error on enum increments and decrements in C++ mode 8792 S.Diag(OpLoc, diag::err_increment_decrement_enum) << IsInc << ResType; 8793 return QualType(); 8794 } else if (ResType->isRealType()) { 8795 // OK! 8796 } else if (ResType->isPointerType()) { 8797 // C99 6.5.2.4p2, 6.5.6p2 8798 if (!checkArithmeticOpPointerOperand(S, OpLoc, Op)) 8799 return QualType(); 8800 } else if (ResType->isObjCObjectPointerType()) { 8801 // On modern runtimes, ObjC pointer arithmetic is forbidden. 8802 // Otherwise, we just need a complete type. 8803 if (checkArithmeticIncompletePointerType(S, OpLoc, Op) || 8804 checkArithmeticOnObjCPointer(S, OpLoc, Op)) 8805 return QualType(); 8806 } else if (ResType->isAnyComplexType()) { 8807 // C99 does not support ++/-- on complex types, we allow as an extension. 8808 S.Diag(OpLoc, diag::ext_integer_increment_complex) 8809 << ResType << Op->getSourceRange(); 8810 } else if (ResType->isPlaceholderType()) { 8811 ExprResult PR = S.CheckPlaceholderExpr(Op); 8812 if (PR.isInvalid()) return QualType(); 8813 return CheckIncrementDecrementOperand(S, PR.get(), VK, OK, OpLoc, 8814 IsInc, IsPrefix); 8815 } else if (S.getLangOpts().AltiVec && ResType->isVectorType()) { 8816 // OK! ( C/C++ Language Extensions for CBEA(Version 2.6) 10.3 ) 8817 } else if(S.getLangOpts().OpenCL && ResType->isVectorType() && 8818 ResType->getAs<VectorType>()->getElementType()->isIntegerType()) { 8819 // OpenCL V1.2 6.3 says dec/inc ops operate on integer vector types. 8820 } else { 8821 S.Diag(OpLoc, diag::err_typecheck_illegal_increment_decrement) 8822 << ResType << int(IsInc) << Op->getSourceRange(); 8823 return QualType(); 8824 } 8825 // At this point, we know we have a real, complex or pointer type. 8826 // Now make sure the operand is a modifiable lvalue. 8827 if (CheckForModifiableLvalue(Op, OpLoc, S)) 8828 return QualType(); 8829 // In C++, a prefix increment is the same type as the operand. Otherwise 8830 // (in C or with postfix), the increment is the unqualified type of the 8831 // operand. 8832 if (IsPrefix && S.getLangOpts().CPlusPlus) { 8833 VK = VK_LValue; 8834 OK = Op->getObjectKind(); 8835 return ResType; 8836 } else { 8837 VK = VK_RValue; 8838 return ResType.getUnqualifiedType(); 8839 } 8840 } 8841 8842 8843 /// getPrimaryDecl - Helper function for CheckAddressOfOperand(). 8844 /// This routine allows us to typecheck complex/recursive expressions 8845 /// where the declaration is needed for type checking. We only need to 8846 /// handle cases when the expression references a function designator 8847 /// or is an lvalue. Here are some examples: 8848 /// - &(x) => x 8849 /// - &*****f => f for f a function designator. 8850 /// - &s.xx => s 8851 /// - &s.zz[1].yy -> s, if zz is an array 8852 /// - *(x + 1) -> x, if x is an array 8853 /// - &"123"[2] -> 0 8854 /// - & __real__ x -> x 8855 static ValueDecl *getPrimaryDecl(Expr *E) { 8856 switch (E->getStmtClass()) { 8857 case Stmt::DeclRefExprClass: 8858 return cast<DeclRefExpr>(E)->getDecl(); 8859 case Stmt::MemberExprClass: 8860 // If this is an arrow operator, the address is an offset from 8861 // the base's value, so the object the base refers to is 8862 // irrelevant. 8863 if (cast<MemberExpr>(E)->isArrow()) 8864 return nullptr; 8865 // Otherwise, the expression refers to a part of the base 8866 return getPrimaryDecl(cast<MemberExpr>(E)->getBase()); 8867 case Stmt::ArraySubscriptExprClass: { 8868 // FIXME: This code shouldn't be necessary! We should catch the implicit 8869 // promotion of register arrays earlier. 8870 Expr* Base = cast<ArraySubscriptExpr>(E)->getBase(); 8871 if (ImplicitCastExpr* ICE = dyn_cast<ImplicitCastExpr>(Base)) { 8872 if (ICE->getSubExpr()->getType()->isArrayType()) 8873 return getPrimaryDecl(ICE->getSubExpr()); 8874 } 8875 return nullptr; 8876 } 8877 case Stmt::UnaryOperatorClass: { 8878 UnaryOperator *UO = cast<UnaryOperator>(E); 8879 8880 switch(UO->getOpcode()) { 8881 case UO_Real: 8882 case UO_Imag: 8883 case UO_Extension: 8884 return getPrimaryDecl(UO->getSubExpr()); 8885 default: 8886 return nullptr; 8887 } 8888 } 8889 case Stmt::ParenExprClass: 8890 return getPrimaryDecl(cast<ParenExpr>(E)->getSubExpr()); 8891 case Stmt::ImplicitCastExprClass: 8892 // If the result of an implicit cast is an l-value, we care about 8893 // the sub-expression; otherwise, the result here doesn't matter. 8894 return getPrimaryDecl(cast<ImplicitCastExpr>(E)->getSubExpr()); 8895 default: 8896 return nullptr; 8897 } 8898 } 8899 8900 namespace { 8901 enum { 8902 AO_Bit_Field = 0, 8903 AO_Vector_Element = 1, 8904 AO_Property_Expansion = 2, 8905 AO_Register_Variable = 3, 8906 AO_No_Error = 4 8907 }; 8908 } 8909 /// \brief Diagnose invalid operand for address of operations. 8910 /// 8911 /// \param Type The type of operand which cannot have its address taken. 8912 static void diagnoseAddressOfInvalidType(Sema &S, SourceLocation Loc, 8913 Expr *E, unsigned Type) { 8914 S.Diag(Loc, diag::err_typecheck_address_of) << Type << E->getSourceRange(); 8915 } 8916 8917 /// CheckAddressOfOperand - The operand of & must be either a function 8918 /// designator or an lvalue designating an object. If it is an lvalue, the 8919 /// object cannot be declared with storage class register or be a bit field. 8920 /// Note: The usual conversions are *not* applied to the operand of the & 8921 /// operator (C99 6.3.2.1p[2-4]), and its result is never an lvalue. 8922 /// In C++, the operand might be an overloaded function name, in which case 8923 /// we allow the '&' but retain the overloaded-function type. 8924 QualType Sema::CheckAddressOfOperand(ExprResult &OrigOp, SourceLocation OpLoc) { 8925 if (const BuiltinType *PTy = OrigOp.get()->getType()->getAsPlaceholderType()){ 8926 if (PTy->getKind() == BuiltinType::Overload) { 8927 Expr *E = OrigOp.get()->IgnoreParens(); 8928 if (!isa<OverloadExpr>(E)) { 8929 assert(cast<UnaryOperator>(E)->getOpcode() == UO_AddrOf); 8930 Diag(OpLoc, diag::err_typecheck_invalid_lvalue_addrof_addrof_function) 8931 << OrigOp.get()->getSourceRange(); 8932 return QualType(); 8933 } 8934 8935 OverloadExpr *Ovl = cast<OverloadExpr>(E); 8936 if (isa<UnresolvedMemberExpr>(Ovl)) 8937 if (!ResolveSingleFunctionTemplateSpecialization(Ovl)) { 8938 Diag(OpLoc, diag::err_invalid_form_pointer_member_function) 8939 << OrigOp.get()->getSourceRange(); 8940 return QualType(); 8941 } 8942 8943 return Context.OverloadTy; 8944 } 8945 8946 if (PTy->getKind() == BuiltinType::UnknownAny) 8947 return Context.UnknownAnyTy; 8948 8949 if (PTy->getKind() == BuiltinType::BoundMember) { 8950 Diag(OpLoc, diag::err_invalid_form_pointer_member_function) 8951 << OrigOp.get()->getSourceRange(); 8952 return QualType(); 8953 } 8954 8955 OrigOp = CheckPlaceholderExpr(OrigOp.get()); 8956 if (OrigOp.isInvalid()) return QualType(); 8957 } 8958 8959 if (OrigOp.get()->isTypeDependent()) 8960 return Context.DependentTy; 8961 8962 assert(!OrigOp.get()->getType()->isPlaceholderType()); 8963 8964 // Make sure to ignore parentheses in subsequent checks 8965 Expr *op = OrigOp.get()->IgnoreParens(); 8966 8967 // OpenCL v1.0 s6.8.a.3: Pointers to functions are not allowed. 8968 if (LangOpts.OpenCL && op->getType()->isFunctionType()) { 8969 Diag(op->getExprLoc(), diag::err_opencl_taking_function_address); 8970 return QualType(); 8971 } 8972 8973 if (getLangOpts().C99) { 8974 // Implement C99-only parts of addressof rules. 8975 if (UnaryOperator* uOp = dyn_cast<UnaryOperator>(op)) { 8976 if (uOp->getOpcode() == UO_Deref) 8977 // Per C99 6.5.3.2, the address of a deref always returns a valid result 8978 // (assuming the deref expression is valid). 8979 return uOp->getSubExpr()->getType(); 8980 } 8981 // Technically, there should be a check for array subscript 8982 // expressions here, but the result of one is always an lvalue anyway. 8983 } 8984 ValueDecl *dcl = getPrimaryDecl(op); 8985 Expr::LValueClassification lval = op->ClassifyLValue(Context); 8986 unsigned AddressOfError = AO_No_Error; 8987 8988 if (lval == Expr::LV_ClassTemporary || lval == Expr::LV_ArrayTemporary) { 8989 bool sfinae = (bool)isSFINAEContext(); 8990 Diag(OpLoc, isSFINAEContext() ? diag::err_typecheck_addrof_temporary 8991 : diag::ext_typecheck_addrof_temporary) 8992 << op->getType() << op->getSourceRange(); 8993 if (sfinae) 8994 return QualType(); 8995 // Materialize the temporary as an lvalue so that we can take its address. 8996 OrigOp = op = new (Context) 8997 MaterializeTemporaryExpr(op->getType(), OrigOp.get(), true); 8998 } else if (isa<ObjCSelectorExpr>(op)) { 8999 return Context.getPointerType(op->getType()); 9000 } else if (lval == Expr::LV_MemberFunction) { 9001 // If it's an instance method, make a member pointer. 9002 // The expression must have exactly the form &A::foo. 9003 9004 // If the underlying expression isn't a decl ref, give up. 9005 if (!isa<DeclRefExpr>(op)) { 9006 Diag(OpLoc, diag::err_invalid_form_pointer_member_function) 9007 << OrigOp.get()->getSourceRange(); 9008 return QualType(); 9009 } 9010 DeclRefExpr *DRE = cast<DeclRefExpr>(op); 9011 CXXMethodDecl *MD = cast<CXXMethodDecl>(DRE->getDecl()); 9012 9013 // The id-expression was parenthesized. 9014 if (OrigOp.get() != DRE) { 9015 Diag(OpLoc, diag::err_parens_pointer_member_function) 9016 << OrigOp.get()->getSourceRange(); 9017 9018 // The method was named without a qualifier. 9019 } else if (!DRE->getQualifier()) { 9020 if (MD->getParent()->getName().empty()) 9021 Diag(OpLoc, diag::err_unqualified_pointer_member_function) 9022 << op->getSourceRange(); 9023 else { 9024 SmallString<32> Str; 9025 StringRef Qual = (MD->getParent()->getName() + "::").toStringRef(Str); 9026 Diag(OpLoc, diag::err_unqualified_pointer_member_function) 9027 << op->getSourceRange() 9028 << FixItHint::CreateInsertion(op->getSourceRange().getBegin(), Qual); 9029 } 9030 } 9031 9032 // Taking the address of a dtor is illegal per C++ [class.dtor]p2. 9033 if (isa<CXXDestructorDecl>(MD)) 9034 Diag(OpLoc, diag::err_typecheck_addrof_dtor) << op->getSourceRange(); 9035 9036 QualType MPTy = Context.getMemberPointerType( 9037 op->getType(), Context.getTypeDeclType(MD->getParent()).getTypePtr()); 9038 if (Context.getTargetInfo().getCXXABI().isMicrosoft()) 9039 RequireCompleteType(OpLoc, MPTy, 0); 9040 return MPTy; 9041 } else if (lval != Expr::LV_Valid && lval != Expr::LV_IncompleteVoidType) { 9042 // C99 6.5.3.2p1 9043 // The operand must be either an l-value or a function designator 9044 if (!op->getType()->isFunctionType()) { 9045 // Use a special diagnostic for loads from property references. 9046 if (isa<PseudoObjectExpr>(op)) { 9047 AddressOfError = AO_Property_Expansion; 9048 } else { 9049 Diag(OpLoc, diag::err_typecheck_invalid_lvalue_addrof) 9050 << op->getType() << op->getSourceRange(); 9051 return QualType(); 9052 } 9053 } 9054 } else if (op->getObjectKind() == OK_BitField) { // C99 6.5.3.2p1 9055 // The operand cannot be a bit-field 9056 AddressOfError = AO_Bit_Field; 9057 } else if (op->getObjectKind() == OK_VectorComponent) { 9058 // The operand cannot be an element of a vector 9059 AddressOfError = AO_Vector_Element; 9060 } else if (dcl) { // C99 6.5.3.2p1 9061 // We have an lvalue with a decl. Make sure the decl is not declared 9062 // with the register storage-class specifier. 9063 if (const VarDecl *vd = dyn_cast<VarDecl>(dcl)) { 9064 // in C++ it is not error to take address of a register 9065 // variable (c++03 7.1.1P3) 9066 if (vd->getStorageClass() == SC_Register && 9067 !getLangOpts().CPlusPlus) { 9068 AddressOfError = AO_Register_Variable; 9069 } 9070 } else if (isa<FunctionTemplateDecl>(dcl)) { 9071 return Context.OverloadTy; 9072 } else if (isa<FieldDecl>(dcl) || isa<IndirectFieldDecl>(dcl)) { 9073 // Okay: we can take the address of a field. 9074 // Could be a pointer to member, though, if there is an explicit 9075 // scope qualifier for the class. 9076 if (isa<DeclRefExpr>(op) && cast<DeclRefExpr>(op)->getQualifier()) { 9077 DeclContext *Ctx = dcl->getDeclContext(); 9078 if (Ctx && Ctx->isRecord()) { 9079 if (dcl->getType()->isReferenceType()) { 9080 Diag(OpLoc, 9081 diag::err_cannot_form_pointer_to_member_of_reference_type) 9082 << dcl->getDeclName() << dcl->getType(); 9083 return QualType(); 9084 } 9085 9086 while (cast<RecordDecl>(Ctx)->isAnonymousStructOrUnion()) 9087 Ctx = Ctx->getParent(); 9088 9089 QualType MPTy = Context.getMemberPointerType( 9090 op->getType(), 9091 Context.getTypeDeclType(cast<RecordDecl>(Ctx)).getTypePtr()); 9092 if (Context.getTargetInfo().getCXXABI().isMicrosoft()) 9093 RequireCompleteType(OpLoc, MPTy, 0); 9094 return MPTy; 9095 } 9096 } 9097 } else if (!isa<FunctionDecl>(dcl) && !isa<NonTypeTemplateParmDecl>(dcl)) 9098 llvm_unreachable("Unknown/unexpected decl type"); 9099 } 9100 9101 if (AddressOfError != AO_No_Error) { 9102 diagnoseAddressOfInvalidType(*this, OpLoc, op, AddressOfError); 9103 return QualType(); 9104 } 9105 9106 if (lval == Expr::LV_IncompleteVoidType) { 9107 // Taking the address of a void variable is technically illegal, but we 9108 // allow it in cases which are otherwise valid. 9109 // Example: "extern void x; void* y = &x;". 9110 Diag(OpLoc, diag::ext_typecheck_addrof_void) << op->getSourceRange(); 9111 } 9112 9113 // If the operand has type "type", the result has type "pointer to type". 9114 if (op->getType()->isObjCObjectType()) 9115 return Context.getObjCObjectPointerType(op->getType()); 9116 return Context.getPointerType(op->getType()); 9117 } 9118 9119 /// CheckIndirectionOperand - Type check unary indirection (prefix '*'). 9120 static QualType CheckIndirectionOperand(Sema &S, Expr *Op, ExprValueKind &VK, 9121 SourceLocation OpLoc) { 9122 if (Op->isTypeDependent()) 9123 return S.Context.DependentTy; 9124 9125 ExprResult ConvResult = S.UsualUnaryConversions(Op); 9126 if (ConvResult.isInvalid()) 9127 return QualType(); 9128 Op = ConvResult.get(); 9129 QualType OpTy = Op->getType(); 9130 QualType Result; 9131 9132 if (isa<CXXReinterpretCastExpr>(Op)) { 9133 QualType OpOrigType = Op->IgnoreParenCasts()->getType(); 9134 S.CheckCompatibleReinterpretCast(OpOrigType, OpTy, /*IsDereference*/true, 9135 Op->getSourceRange()); 9136 } 9137 9138 if (const PointerType *PT = OpTy->getAs<PointerType>()) 9139 Result = PT->getPointeeType(); 9140 else if (const ObjCObjectPointerType *OPT = 9141 OpTy->getAs<ObjCObjectPointerType>()) 9142 Result = OPT->getPointeeType(); 9143 else { 9144 ExprResult PR = S.CheckPlaceholderExpr(Op); 9145 if (PR.isInvalid()) return QualType(); 9146 if (PR.get() != Op) 9147 return CheckIndirectionOperand(S, PR.get(), VK, OpLoc); 9148 } 9149 9150 if (Result.isNull()) { 9151 S.Diag(OpLoc, diag::err_typecheck_indirection_requires_pointer) 9152 << OpTy << Op->getSourceRange(); 9153 return QualType(); 9154 } 9155 9156 // Note that per both C89 and C99, indirection is always legal, even if Result 9157 // is an incomplete type or void. It would be possible to warn about 9158 // dereferencing a void pointer, but it's completely well-defined, and such a 9159 // warning is unlikely to catch any mistakes. In C++, indirection is not valid 9160 // for pointers to 'void' but is fine for any other pointer type: 9161 // 9162 // C++ [expr.unary.op]p1: 9163 // [...] the expression to which [the unary * operator] is applied shall 9164 // be a pointer to an object type, or a pointer to a function type 9165 if (S.getLangOpts().CPlusPlus && Result->isVoidType()) 9166 S.Diag(OpLoc, diag::ext_typecheck_indirection_through_void_pointer) 9167 << OpTy << Op->getSourceRange(); 9168 9169 // Dereferences are usually l-values... 9170 VK = VK_LValue; 9171 9172 // ...except that certain expressions are never l-values in C. 9173 if (!S.getLangOpts().CPlusPlus && Result.isCForbiddenLValueType()) 9174 VK = VK_RValue; 9175 9176 return Result; 9177 } 9178 9179 static inline BinaryOperatorKind ConvertTokenKindToBinaryOpcode( 9180 tok::TokenKind Kind) { 9181 BinaryOperatorKind Opc; 9182 switch (Kind) { 9183 default: llvm_unreachable("Unknown binop!"); 9184 case tok::periodstar: Opc = BO_PtrMemD; break; 9185 case tok::arrowstar: Opc = BO_PtrMemI; break; 9186 case tok::star: Opc = BO_Mul; break; 9187 case tok::slash: Opc = BO_Div; break; 9188 case tok::percent: Opc = BO_Rem; break; 9189 case tok::plus: Opc = BO_Add; break; 9190 case tok::minus: Opc = BO_Sub; break; 9191 case tok::lessless: Opc = BO_Shl; break; 9192 case tok::greatergreater: Opc = BO_Shr; break; 9193 case tok::lessequal: Opc = BO_LE; break; 9194 case tok::less: Opc = BO_LT; break; 9195 case tok::greaterequal: Opc = BO_GE; break; 9196 case tok::greater: Opc = BO_GT; break; 9197 case tok::exclaimequal: Opc = BO_NE; break; 9198 case tok::equalequal: Opc = BO_EQ; break; 9199 case tok::amp: Opc = BO_And; break; 9200 case tok::caret: Opc = BO_Xor; break; 9201 case tok::pipe: Opc = BO_Or; break; 9202 case tok::ampamp: Opc = BO_LAnd; break; 9203 case tok::pipepipe: Opc = BO_LOr; break; 9204 case tok::equal: Opc = BO_Assign; break; 9205 case tok::starequal: Opc = BO_MulAssign; break; 9206 case tok::slashequal: Opc = BO_DivAssign; break; 9207 case tok::percentequal: Opc = BO_RemAssign; break; 9208 case tok::plusequal: Opc = BO_AddAssign; break; 9209 case tok::minusequal: Opc = BO_SubAssign; break; 9210 case tok::lesslessequal: Opc = BO_ShlAssign; break; 9211 case tok::greatergreaterequal: Opc = BO_ShrAssign; break; 9212 case tok::ampequal: Opc = BO_AndAssign; break; 9213 case tok::caretequal: Opc = BO_XorAssign; break; 9214 case tok::pipeequal: Opc = BO_OrAssign; break; 9215 case tok::comma: Opc = BO_Comma; break; 9216 } 9217 return Opc; 9218 } 9219 9220 static inline UnaryOperatorKind ConvertTokenKindToUnaryOpcode( 9221 tok::TokenKind Kind) { 9222 UnaryOperatorKind Opc; 9223 switch (Kind) { 9224 default: llvm_unreachable("Unknown unary op!"); 9225 case tok::plusplus: Opc = UO_PreInc; break; 9226 case tok::minusminus: Opc = UO_PreDec; break; 9227 case tok::amp: Opc = UO_AddrOf; break; 9228 case tok::star: Opc = UO_Deref; break; 9229 case tok::plus: Opc = UO_Plus; break; 9230 case tok::minus: Opc = UO_Minus; break; 9231 case tok::tilde: Opc = UO_Not; break; 9232 case tok::exclaim: Opc = UO_LNot; break; 9233 case tok::kw___real: Opc = UO_Real; break; 9234 case tok::kw___imag: Opc = UO_Imag; break; 9235 case tok::kw___extension__: Opc = UO_Extension; break; 9236 } 9237 return Opc; 9238 } 9239 9240 /// DiagnoseSelfAssignment - Emits a warning if a value is assigned to itself. 9241 /// This warning is only emitted for builtin assignment operations. It is also 9242 /// suppressed in the event of macro expansions. 9243 static void DiagnoseSelfAssignment(Sema &S, Expr *LHSExpr, Expr *RHSExpr, 9244 SourceLocation OpLoc) { 9245 if (!S.ActiveTemplateInstantiations.empty()) 9246 return; 9247 if (OpLoc.isInvalid() || OpLoc.isMacroID()) 9248 return; 9249 LHSExpr = LHSExpr->IgnoreParenImpCasts(); 9250 RHSExpr = RHSExpr->IgnoreParenImpCasts(); 9251 const DeclRefExpr *LHSDeclRef = dyn_cast<DeclRefExpr>(LHSExpr); 9252 const DeclRefExpr *RHSDeclRef = dyn_cast<DeclRefExpr>(RHSExpr); 9253 if (!LHSDeclRef || !RHSDeclRef || 9254 LHSDeclRef->getLocation().isMacroID() || 9255 RHSDeclRef->getLocation().isMacroID()) 9256 return; 9257 const ValueDecl *LHSDecl = 9258 cast<ValueDecl>(LHSDeclRef->getDecl()->getCanonicalDecl()); 9259 const ValueDecl *RHSDecl = 9260 cast<ValueDecl>(RHSDeclRef->getDecl()->getCanonicalDecl()); 9261 if (LHSDecl != RHSDecl) 9262 return; 9263 if (LHSDecl->getType().isVolatileQualified()) 9264 return; 9265 if (const ReferenceType *RefTy = LHSDecl->getType()->getAs<ReferenceType>()) 9266 if (RefTy->getPointeeType().isVolatileQualified()) 9267 return; 9268 9269 S.Diag(OpLoc, diag::warn_self_assignment) 9270 << LHSDeclRef->getType() 9271 << LHSExpr->getSourceRange() << RHSExpr->getSourceRange(); 9272 } 9273 9274 /// Check if a bitwise-& is performed on an Objective-C pointer. This 9275 /// is usually indicative of introspection within the Objective-C pointer. 9276 static void checkObjCPointerIntrospection(Sema &S, ExprResult &L, ExprResult &R, 9277 SourceLocation OpLoc) { 9278 if (!S.getLangOpts().ObjC1) 9279 return; 9280 9281 const Expr *ObjCPointerExpr = nullptr, *OtherExpr = nullptr; 9282 const Expr *LHS = L.get(); 9283 const Expr *RHS = R.get(); 9284 9285 if (LHS->IgnoreParenCasts()->getType()->isObjCObjectPointerType()) { 9286 ObjCPointerExpr = LHS; 9287 OtherExpr = RHS; 9288 } 9289 else if (RHS->IgnoreParenCasts()->getType()->isObjCObjectPointerType()) { 9290 ObjCPointerExpr = RHS; 9291 OtherExpr = LHS; 9292 } 9293 9294 // This warning is deliberately made very specific to reduce false 9295 // positives with logic that uses '&' for hashing. This logic mainly 9296 // looks for code trying to introspect into tagged pointers, which 9297 // code should generally never do. 9298 if (ObjCPointerExpr && isa<IntegerLiteral>(OtherExpr->IgnoreParenCasts())) { 9299 unsigned Diag = diag::warn_objc_pointer_masking; 9300 // Determine if we are introspecting the result of performSelectorXXX. 9301 const Expr *Ex = ObjCPointerExpr->IgnoreParenCasts(); 9302 // Special case messages to -performSelector and friends, which 9303 // can return non-pointer values boxed in a pointer value. 9304 // Some clients may wish to silence warnings in this subcase. 9305 if (const ObjCMessageExpr *ME = dyn_cast<ObjCMessageExpr>(Ex)) { 9306 Selector S = ME->getSelector(); 9307 StringRef SelArg0 = S.getNameForSlot(0); 9308 if (SelArg0.startswith("performSelector")) 9309 Diag = diag::warn_objc_pointer_masking_performSelector; 9310 } 9311 9312 S.Diag(OpLoc, Diag) 9313 << ObjCPointerExpr->getSourceRange(); 9314 } 9315 } 9316 9317 /// CreateBuiltinBinOp - Creates a new built-in binary operation with 9318 /// operator @p Opc at location @c TokLoc. This routine only supports 9319 /// built-in operations; ActOnBinOp handles overloaded operators. 9320 ExprResult Sema::CreateBuiltinBinOp(SourceLocation OpLoc, 9321 BinaryOperatorKind Opc, 9322 Expr *LHSExpr, Expr *RHSExpr) { 9323 if (getLangOpts().CPlusPlus11 && isa<InitListExpr>(RHSExpr)) { 9324 // The syntax only allows initializer lists on the RHS of assignment, 9325 // so we don't need to worry about accepting invalid code for 9326 // non-assignment operators. 9327 // C++11 5.17p9: 9328 // The meaning of x = {v} [...] is that of x = T(v) [...]. The meaning 9329 // of x = {} is x = T(). 9330 InitializationKind Kind = 9331 InitializationKind::CreateDirectList(RHSExpr->getLocStart()); 9332 InitializedEntity Entity = 9333 InitializedEntity::InitializeTemporary(LHSExpr->getType()); 9334 InitializationSequence InitSeq(*this, Entity, Kind, RHSExpr); 9335 ExprResult Init = InitSeq.Perform(*this, Entity, Kind, RHSExpr); 9336 if (Init.isInvalid()) 9337 return Init; 9338 RHSExpr = Init.get(); 9339 } 9340 9341 ExprResult LHS = LHSExpr, RHS = RHSExpr; 9342 QualType ResultTy; // Result type of the binary operator. 9343 // The following two variables are used for compound assignment operators 9344 QualType CompLHSTy; // Type of LHS after promotions for computation 9345 QualType CompResultTy; // Type of computation result 9346 ExprValueKind VK = VK_RValue; 9347 ExprObjectKind OK = OK_Ordinary; 9348 9349 switch (Opc) { 9350 case BO_Assign: 9351 ResultTy = CheckAssignmentOperands(LHS.get(), RHS, OpLoc, QualType()); 9352 if (getLangOpts().CPlusPlus && 9353 LHS.get()->getObjectKind() != OK_ObjCProperty) { 9354 VK = LHS.get()->getValueKind(); 9355 OK = LHS.get()->getObjectKind(); 9356 } 9357 if (!ResultTy.isNull()) 9358 DiagnoseSelfAssignment(*this, LHS.get(), RHS.get(), OpLoc); 9359 break; 9360 case BO_PtrMemD: 9361 case BO_PtrMemI: 9362 ResultTy = CheckPointerToMemberOperands(LHS, RHS, VK, OpLoc, 9363 Opc == BO_PtrMemI); 9364 break; 9365 case BO_Mul: 9366 case BO_Div: 9367 ResultTy = CheckMultiplyDivideOperands(LHS, RHS, OpLoc, false, 9368 Opc == BO_Div); 9369 break; 9370 case BO_Rem: 9371 ResultTy = CheckRemainderOperands(LHS, RHS, OpLoc); 9372 break; 9373 case BO_Add: 9374 ResultTy = CheckAdditionOperands(LHS, RHS, OpLoc, Opc); 9375 break; 9376 case BO_Sub: 9377 ResultTy = CheckSubtractionOperands(LHS, RHS, OpLoc); 9378 break; 9379 case BO_Shl: 9380 case BO_Shr: 9381 ResultTy = CheckShiftOperands(LHS, RHS, OpLoc, Opc); 9382 break; 9383 case BO_LE: 9384 case BO_LT: 9385 case BO_GE: 9386 case BO_GT: 9387 ResultTy = CheckCompareOperands(LHS, RHS, OpLoc, Opc, true); 9388 break; 9389 case BO_EQ: 9390 case BO_NE: 9391 ResultTy = CheckCompareOperands(LHS, RHS, OpLoc, Opc, false); 9392 break; 9393 case BO_And: 9394 checkObjCPointerIntrospection(*this, LHS, RHS, OpLoc); 9395 case BO_Xor: 9396 case BO_Or: 9397 ResultTy = CheckBitwiseOperands(LHS, RHS, OpLoc); 9398 break; 9399 case BO_LAnd: 9400 case BO_LOr: 9401 ResultTy = CheckLogicalOperands(LHS, RHS, OpLoc, Opc); 9402 break; 9403 case BO_MulAssign: 9404 case BO_DivAssign: 9405 CompResultTy = CheckMultiplyDivideOperands(LHS, RHS, OpLoc, true, 9406 Opc == BO_DivAssign); 9407 CompLHSTy = CompResultTy; 9408 if (!CompResultTy.isNull() && !LHS.isInvalid() && !RHS.isInvalid()) 9409 ResultTy = CheckAssignmentOperands(LHS.get(), RHS, OpLoc, CompResultTy); 9410 break; 9411 case BO_RemAssign: 9412 CompResultTy = CheckRemainderOperands(LHS, RHS, OpLoc, true); 9413 CompLHSTy = CompResultTy; 9414 if (!CompResultTy.isNull() && !LHS.isInvalid() && !RHS.isInvalid()) 9415 ResultTy = CheckAssignmentOperands(LHS.get(), RHS, OpLoc, CompResultTy); 9416 break; 9417 case BO_AddAssign: 9418 CompResultTy = CheckAdditionOperands(LHS, RHS, OpLoc, Opc, &CompLHSTy); 9419 if (!CompResultTy.isNull() && !LHS.isInvalid() && !RHS.isInvalid()) 9420 ResultTy = CheckAssignmentOperands(LHS.get(), RHS, OpLoc, CompResultTy); 9421 break; 9422 case BO_SubAssign: 9423 CompResultTy = CheckSubtractionOperands(LHS, RHS, OpLoc, &CompLHSTy); 9424 if (!CompResultTy.isNull() && !LHS.isInvalid() && !RHS.isInvalid()) 9425 ResultTy = CheckAssignmentOperands(LHS.get(), RHS, OpLoc, CompResultTy); 9426 break; 9427 case BO_ShlAssign: 9428 case BO_ShrAssign: 9429 CompResultTy = CheckShiftOperands(LHS, RHS, OpLoc, Opc, true); 9430 CompLHSTy = CompResultTy; 9431 if (!CompResultTy.isNull() && !LHS.isInvalid() && !RHS.isInvalid()) 9432 ResultTy = CheckAssignmentOperands(LHS.get(), RHS, OpLoc, CompResultTy); 9433 break; 9434 case BO_AndAssign: 9435 case BO_OrAssign: // fallthrough 9436 DiagnoseSelfAssignment(*this, LHS.get(), RHS.get(), OpLoc); 9437 case BO_XorAssign: 9438 CompResultTy = CheckBitwiseOperands(LHS, RHS, OpLoc, true); 9439 CompLHSTy = CompResultTy; 9440 if (!CompResultTy.isNull() && !LHS.isInvalid() && !RHS.isInvalid()) 9441 ResultTy = CheckAssignmentOperands(LHS.get(), RHS, OpLoc, CompResultTy); 9442 break; 9443 case BO_Comma: 9444 ResultTy = CheckCommaOperands(*this, LHS, RHS, OpLoc); 9445 if (getLangOpts().CPlusPlus && !RHS.isInvalid()) { 9446 VK = RHS.get()->getValueKind(); 9447 OK = RHS.get()->getObjectKind(); 9448 } 9449 break; 9450 } 9451 if (ResultTy.isNull() || LHS.isInvalid() || RHS.isInvalid()) 9452 return ExprError(); 9453 9454 // Check for array bounds violations for both sides of the BinaryOperator 9455 CheckArrayAccess(LHS.get()); 9456 CheckArrayAccess(RHS.get()); 9457 9458 if (const ObjCIsaExpr *OISA = dyn_cast<ObjCIsaExpr>(LHS.get()->IgnoreParenCasts())) { 9459 NamedDecl *ObjectSetClass = LookupSingleName(TUScope, 9460 &Context.Idents.get("object_setClass"), 9461 SourceLocation(), LookupOrdinaryName); 9462 if (ObjectSetClass && isa<ObjCIsaExpr>(LHS.get())) { 9463 SourceLocation RHSLocEnd = PP.getLocForEndOfToken(RHS.get()->getLocEnd()); 9464 Diag(LHS.get()->getExprLoc(), diag::warn_objc_isa_assign) << 9465 FixItHint::CreateInsertion(LHS.get()->getLocStart(), "object_setClass(") << 9466 FixItHint::CreateReplacement(SourceRange(OISA->getOpLoc(), OpLoc), ",") << 9467 FixItHint::CreateInsertion(RHSLocEnd, ")"); 9468 } 9469 else 9470 Diag(LHS.get()->getExprLoc(), diag::warn_objc_isa_assign); 9471 } 9472 else if (const ObjCIvarRefExpr *OIRE = 9473 dyn_cast<ObjCIvarRefExpr>(LHS.get()->IgnoreParenCasts())) 9474 DiagnoseDirectIsaAccess(*this, OIRE, OpLoc, RHS.get()); 9475 9476 if (CompResultTy.isNull()) 9477 return new (Context) BinaryOperator(LHS.get(), RHS.get(), Opc, ResultTy, VK, 9478 OK, OpLoc, FPFeatures.fp_contract); 9479 if (getLangOpts().CPlusPlus && LHS.get()->getObjectKind() != 9480 OK_ObjCProperty) { 9481 VK = VK_LValue; 9482 OK = LHS.get()->getObjectKind(); 9483 } 9484 return new (Context) CompoundAssignOperator( 9485 LHS.get(), RHS.get(), Opc, ResultTy, VK, OK, CompLHSTy, CompResultTy, 9486 OpLoc, FPFeatures.fp_contract); 9487 } 9488 9489 /// DiagnoseBitwisePrecedence - Emit a warning when bitwise and comparison 9490 /// operators are mixed in a way that suggests that the programmer forgot that 9491 /// comparison operators have higher precedence. The most typical example of 9492 /// such code is "flags & 0x0020 != 0", which is equivalent to "flags & 1". 9493 static void DiagnoseBitwisePrecedence(Sema &Self, BinaryOperatorKind Opc, 9494 SourceLocation OpLoc, Expr *LHSExpr, 9495 Expr *RHSExpr) { 9496 BinaryOperator *LHSBO = dyn_cast<BinaryOperator>(LHSExpr); 9497 BinaryOperator *RHSBO = dyn_cast<BinaryOperator>(RHSExpr); 9498 9499 // Check that one of the sides is a comparison operator. 9500 bool isLeftComp = LHSBO && LHSBO->isComparisonOp(); 9501 bool isRightComp = RHSBO && RHSBO->isComparisonOp(); 9502 if (!isLeftComp && !isRightComp) 9503 return; 9504 9505 // Bitwise operations are sometimes used as eager logical ops. 9506 // Don't diagnose this. 9507 bool isLeftBitwise = LHSBO && LHSBO->isBitwiseOp(); 9508 bool isRightBitwise = RHSBO && RHSBO->isBitwiseOp(); 9509 if ((isLeftComp || isLeftBitwise) && (isRightComp || isRightBitwise)) 9510 return; 9511 9512 SourceRange DiagRange = isLeftComp ? SourceRange(LHSExpr->getLocStart(), 9513 OpLoc) 9514 : SourceRange(OpLoc, RHSExpr->getLocEnd()); 9515 StringRef OpStr = isLeftComp ? LHSBO->getOpcodeStr() : RHSBO->getOpcodeStr(); 9516 SourceRange ParensRange = isLeftComp ? 9517 SourceRange(LHSBO->getRHS()->getLocStart(), RHSExpr->getLocEnd()) 9518 : SourceRange(LHSExpr->getLocStart(), RHSBO->getLHS()->getLocStart()); 9519 9520 Self.Diag(OpLoc, diag::warn_precedence_bitwise_rel) 9521 << DiagRange << BinaryOperator::getOpcodeStr(Opc) << OpStr; 9522 SuggestParentheses(Self, OpLoc, 9523 Self.PDiag(diag::note_precedence_silence) << OpStr, 9524 (isLeftComp ? LHSExpr : RHSExpr)->getSourceRange()); 9525 SuggestParentheses(Self, OpLoc, 9526 Self.PDiag(diag::note_precedence_bitwise_first) 9527 << BinaryOperator::getOpcodeStr(Opc), 9528 ParensRange); 9529 } 9530 9531 /// \brief It accepts a '&' expr that is inside a '|' one. 9532 /// Emit a diagnostic together with a fixit hint that wraps the '&' expression 9533 /// in parentheses. 9534 static void 9535 EmitDiagnosticForBitwiseAndInBitwiseOr(Sema &Self, SourceLocation OpLoc, 9536 BinaryOperator *Bop) { 9537 assert(Bop->getOpcode() == BO_And); 9538 Self.Diag(Bop->getOperatorLoc(), diag::warn_bitwise_and_in_bitwise_or) 9539 << Bop->getSourceRange() << OpLoc; 9540 SuggestParentheses(Self, Bop->getOperatorLoc(), 9541 Self.PDiag(diag::note_precedence_silence) 9542 << Bop->getOpcodeStr(), 9543 Bop->getSourceRange()); 9544 } 9545 9546 /// \brief It accepts a '&&' expr that is inside a '||' one. 9547 /// Emit a diagnostic together with a fixit hint that wraps the '&&' expression 9548 /// in parentheses. 9549 static void 9550 EmitDiagnosticForLogicalAndInLogicalOr(Sema &Self, SourceLocation OpLoc, 9551 BinaryOperator *Bop) { 9552 assert(Bop->getOpcode() == BO_LAnd); 9553 Self.Diag(Bop->getOperatorLoc(), diag::warn_logical_and_in_logical_or) 9554 << Bop->getSourceRange() << OpLoc; 9555 SuggestParentheses(Self, Bop->getOperatorLoc(), 9556 Self.PDiag(diag::note_precedence_silence) 9557 << Bop->getOpcodeStr(), 9558 Bop->getSourceRange()); 9559 } 9560 9561 /// \brief Returns true if the given expression can be evaluated as a constant 9562 /// 'true'. 9563 static bool EvaluatesAsTrue(Sema &S, Expr *E) { 9564 bool Res; 9565 return !E->isValueDependent() && 9566 E->EvaluateAsBooleanCondition(Res, S.getASTContext()) && Res; 9567 } 9568 9569 /// \brief Returns true if the given expression can be evaluated as a constant 9570 /// 'false'. 9571 static bool EvaluatesAsFalse(Sema &S, Expr *E) { 9572 bool Res; 9573 return !E->isValueDependent() && 9574 E->EvaluateAsBooleanCondition(Res, S.getASTContext()) && !Res; 9575 } 9576 9577 /// \brief Look for '&&' in the left hand of a '||' expr. 9578 static void DiagnoseLogicalAndInLogicalOrLHS(Sema &S, SourceLocation OpLoc, 9579 Expr *LHSExpr, Expr *RHSExpr) { 9580 if (BinaryOperator *Bop = dyn_cast<BinaryOperator>(LHSExpr)) { 9581 if (Bop->getOpcode() == BO_LAnd) { 9582 // If it's "a && b || 0" don't warn since the precedence doesn't matter. 9583 if (EvaluatesAsFalse(S, RHSExpr)) 9584 return; 9585 // If it's "1 && a || b" don't warn since the precedence doesn't matter. 9586 if (!EvaluatesAsTrue(S, Bop->getLHS())) 9587 return EmitDiagnosticForLogicalAndInLogicalOr(S, OpLoc, Bop); 9588 } else if (Bop->getOpcode() == BO_LOr) { 9589 if (BinaryOperator *RBop = dyn_cast<BinaryOperator>(Bop->getRHS())) { 9590 // If it's "a || b && 1 || c" we didn't warn earlier for 9591 // "a || b && 1", but warn now. 9592 if (RBop->getOpcode() == BO_LAnd && EvaluatesAsTrue(S, RBop->getRHS())) 9593 return EmitDiagnosticForLogicalAndInLogicalOr(S, OpLoc, RBop); 9594 } 9595 } 9596 } 9597 } 9598 9599 /// \brief Look for '&&' in the right hand of a '||' expr. 9600 static void DiagnoseLogicalAndInLogicalOrRHS(Sema &S, SourceLocation OpLoc, 9601 Expr *LHSExpr, Expr *RHSExpr) { 9602 if (BinaryOperator *Bop = dyn_cast<BinaryOperator>(RHSExpr)) { 9603 if (Bop->getOpcode() == BO_LAnd) { 9604 // If it's "0 || a && b" don't warn since the precedence doesn't matter. 9605 if (EvaluatesAsFalse(S, LHSExpr)) 9606 return; 9607 // If it's "a || b && 1" don't warn since the precedence doesn't matter. 9608 if (!EvaluatesAsTrue(S, Bop->getRHS())) 9609 return EmitDiagnosticForLogicalAndInLogicalOr(S, OpLoc, Bop); 9610 } 9611 } 9612 } 9613 9614 /// \brief Look for '&' in the left or right hand of a '|' expr. 9615 static void DiagnoseBitwiseAndInBitwiseOr(Sema &S, SourceLocation OpLoc, 9616 Expr *OrArg) { 9617 if (BinaryOperator *Bop = dyn_cast<BinaryOperator>(OrArg)) { 9618 if (Bop->getOpcode() == BO_And) 9619 return EmitDiagnosticForBitwiseAndInBitwiseOr(S, OpLoc, Bop); 9620 } 9621 } 9622 9623 static void DiagnoseAdditionInShift(Sema &S, SourceLocation OpLoc, 9624 Expr *SubExpr, StringRef Shift) { 9625 if (BinaryOperator *Bop = dyn_cast<BinaryOperator>(SubExpr)) { 9626 if (Bop->getOpcode() == BO_Add || Bop->getOpcode() == BO_Sub) { 9627 StringRef Op = Bop->getOpcodeStr(); 9628 S.Diag(Bop->getOperatorLoc(), diag::warn_addition_in_bitshift) 9629 << Bop->getSourceRange() << OpLoc << Shift << Op; 9630 SuggestParentheses(S, Bop->getOperatorLoc(), 9631 S.PDiag(diag::note_precedence_silence) << Op, 9632 Bop->getSourceRange()); 9633 } 9634 } 9635 } 9636 9637 static void DiagnoseShiftCompare(Sema &S, SourceLocation OpLoc, 9638 Expr *LHSExpr, Expr *RHSExpr) { 9639 CXXOperatorCallExpr *OCE = dyn_cast<CXXOperatorCallExpr>(LHSExpr); 9640 if (!OCE) 9641 return; 9642 9643 FunctionDecl *FD = OCE->getDirectCallee(); 9644 if (!FD || !FD->isOverloadedOperator()) 9645 return; 9646 9647 OverloadedOperatorKind Kind = FD->getOverloadedOperator(); 9648 if (Kind != OO_LessLess && Kind != OO_GreaterGreater) 9649 return; 9650 9651 S.Diag(OpLoc, diag::warn_overloaded_shift_in_comparison) 9652 << LHSExpr->getSourceRange() << RHSExpr->getSourceRange() 9653 << (Kind == OO_LessLess); 9654 SuggestParentheses(S, OCE->getOperatorLoc(), 9655 S.PDiag(diag::note_precedence_silence) 9656 << (Kind == OO_LessLess ? "<<" : ">>"), 9657 OCE->getSourceRange()); 9658 SuggestParentheses(S, OpLoc, 9659 S.PDiag(diag::note_evaluate_comparison_first), 9660 SourceRange(OCE->getArg(1)->getLocStart(), 9661 RHSExpr->getLocEnd())); 9662 } 9663 9664 /// DiagnoseBinOpPrecedence - Emit warnings for expressions with tricky 9665 /// precedence. 9666 static void DiagnoseBinOpPrecedence(Sema &Self, BinaryOperatorKind Opc, 9667 SourceLocation OpLoc, Expr *LHSExpr, 9668 Expr *RHSExpr){ 9669 // Diagnose "arg1 'bitwise' arg2 'eq' arg3". 9670 if (BinaryOperator::isBitwiseOp(Opc)) 9671 DiagnoseBitwisePrecedence(Self, Opc, OpLoc, LHSExpr, RHSExpr); 9672 9673 // Diagnose "arg1 & arg2 | arg3" 9674 if (Opc == BO_Or && !OpLoc.isMacroID()/* Don't warn in macros. */) { 9675 DiagnoseBitwiseAndInBitwiseOr(Self, OpLoc, LHSExpr); 9676 DiagnoseBitwiseAndInBitwiseOr(Self, OpLoc, RHSExpr); 9677 } 9678 9679 // Warn about arg1 || arg2 && arg3, as GCC 4.3+ does. 9680 // We don't warn for 'assert(a || b && "bad")' since this is safe. 9681 if (Opc == BO_LOr && !OpLoc.isMacroID()/* Don't warn in macros. */) { 9682 DiagnoseLogicalAndInLogicalOrLHS(Self, OpLoc, LHSExpr, RHSExpr); 9683 DiagnoseLogicalAndInLogicalOrRHS(Self, OpLoc, LHSExpr, RHSExpr); 9684 } 9685 9686 if ((Opc == BO_Shl && LHSExpr->getType()->isIntegralType(Self.getASTContext())) 9687 || Opc == BO_Shr) { 9688 StringRef Shift = BinaryOperator::getOpcodeStr(Opc); 9689 DiagnoseAdditionInShift(Self, OpLoc, LHSExpr, Shift); 9690 DiagnoseAdditionInShift(Self, OpLoc, RHSExpr, Shift); 9691 } 9692 9693 // Warn on overloaded shift operators and comparisons, such as: 9694 // cout << 5 == 4; 9695 if (BinaryOperator::isComparisonOp(Opc)) 9696 DiagnoseShiftCompare(Self, OpLoc, LHSExpr, RHSExpr); 9697 } 9698 9699 // Binary Operators. 'Tok' is the token for the operator. 9700 ExprResult Sema::ActOnBinOp(Scope *S, SourceLocation TokLoc, 9701 tok::TokenKind Kind, 9702 Expr *LHSExpr, Expr *RHSExpr) { 9703 BinaryOperatorKind Opc = ConvertTokenKindToBinaryOpcode(Kind); 9704 assert(LHSExpr && "ActOnBinOp(): missing left expression"); 9705 assert(RHSExpr && "ActOnBinOp(): missing right expression"); 9706 9707 // Emit warnings for tricky precedence issues, e.g. "bitfield & 0x4 == 0" 9708 DiagnoseBinOpPrecedence(*this, Opc, TokLoc, LHSExpr, RHSExpr); 9709 9710 return BuildBinOp(S, TokLoc, Opc, LHSExpr, RHSExpr); 9711 } 9712 9713 /// Build an overloaded binary operator expression in the given scope. 9714 static ExprResult BuildOverloadedBinOp(Sema &S, Scope *Sc, SourceLocation OpLoc, 9715 BinaryOperatorKind Opc, 9716 Expr *LHS, Expr *RHS) { 9717 // Find all of the overloaded operators visible from this 9718 // point. We perform both an operator-name lookup from the local 9719 // scope and an argument-dependent lookup based on the types of 9720 // the arguments. 9721 UnresolvedSet<16> Functions; 9722 OverloadedOperatorKind OverOp 9723 = BinaryOperator::getOverloadedOperator(Opc); 9724 if (Sc && OverOp != OO_None) 9725 S.LookupOverloadedOperatorName(OverOp, Sc, LHS->getType(), 9726 RHS->getType(), Functions); 9727 9728 // Build the (potentially-overloaded, potentially-dependent) 9729 // binary operation. 9730 return S.CreateOverloadedBinOp(OpLoc, Opc, Functions, LHS, RHS); 9731 } 9732 9733 ExprResult Sema::BuildBinOp(Scope *S, SourceLocation OpLoc, 9734 BinaryOperatorKind Opc, 9735 Expr *LHSExpr, Expr *RHSExpr) { 9736 // We want to end up calling one of checkPseudoObjectAssignment 9737 // (if the LHS is a pseudo-object), BuildOverloadedBinOp (if 9738 // both expressions are overloadable or either is type-dependent), 9739 // or CreateBuiltinBinOp (in any other case). We also want to get 9740 // any placeholder types out of the way. 9741 9742 // Handle pseudo-objects in the LHS. 9743 if (const BuiltinType *pty = LHSExpr->getType()->getAsPlaceholderType()) { 9744 // Assignments with a pseudo-object l-value need special analysis. 9745 if (pty->getKind() == BuiltinType::PseudoObject && 9746 BinaryOperator::isAssignmentOp(Opc)) 9747 return checkPseudoObjectAssignment(S, OpLoc, Opc, LHSExpr, RHSExpr); 9748 9749 // Don't resolve overloads if the other type is overloadable. 9750 if (pty->getKind() == BuiltinType::Overload) { 9751 // We can't actually test that if we still have a placeholder, 9752 // though. Fortunately, none of the exceptions we see in that 9753 // code below are valid when the LHS is an overload set. Note 9754 // that an overload set can be dependently-typed, but it never 9755 // instantiates to having an overloadable type. 9756 ExprResult resolvedRHS = CheckPlaceholderExpr(RHSExpr); 9757 if (resolvedRHS.isInvalid()) return ExprError(); 9758 RHSExpr = resolvedRHS.get(); 9759 9760 if (RHSExpr->isTypeDependent() || 9761 RHSExpr->getType()->isOverloadableType()) 9762 return BuildOverloadedBinOp(*this, S, OpLoc, Opc, LHSExpr, RHSExpr); 9763 } 9764 9765 ExprResult LHS = CheckPlaceholderExpr(LHSExpr); 9766 if (LHS.isInvalid()) return ExprError(); 9767 LHSExpr = LHS.get(); 9768 } 9769 9770 // Handle pseudo-objects in the RHS. 9771 if (const BuiltinType *pty = RHSExpr->getType()->getAsPlaceholderType()) { 9772 // An overload in the RHS can potentially be resolved by the type 9773 // being assigned to. 9774 if (Opc == BO_Assign && pty->getKind() == BuiltinType::Overload) { 9775 if (LHSExpr->isTypeDependent() || RHSExpr->isTypeDependent()) 9776 return BuildOverloadedBinOp(*this, S, OpLoc, Opc, LHSExpr, RHSExpr); 9777 9778 if (LHSExpr->getType()->isOverloadableType()) 9779 return BuildOverloadedBinOp(*this, S, OpLoc, Opc, LHSExpr, RHSExpr); 9780 9781 return CreateBuiltinBinOp(OpLoc, Opc, LHSExpr, RHSExpr); 9782 } 9783 9784 // Don't resolve overloads if the other type is overloadable. 9785 if (pty->getKind() == BuiltinType::Overload && 9786 LHSExpr->getType()->isOverloadableType()) 9787 return BuildOverloadedBinOp(*this, S, OpLoc, Opc, LHSExpr, RHSExpr); 9788 9789 ExprResult resolvedRHS = CheckPlaceholderExpr(RHSExpr); 9790 if (!resolvedRHS.isUsable()) return ExprError(); 9791 RHSExpr = resolvedRHS.get(); 9792 } 9793 9794 if (getLangOpts().CPlusPlus) { 9795 // If either expression is type-dependent, always build an 9796 // overloaded op. 9797 if (LHSExpr->isTypeDependent() || RHSExpr->isTypeDependent()) 9798 return BuildOverloadedBinOp(*this, S, OpLoc, Opc, LHSExpr, RHSExpr); 9799 9800 // Otherwise, build an overloaded op if either expression has an 9801 // overloadable type. 9802 if (LHSExpr->getType()->isOverloadableType() || 9803 RHSExpr->getType()->isOverloadableType()) 9804 return BuildOverloadedBinOp(*this, S, OpLoc, Opc, LHSExpr, RHSExpr); 9805 } 9806 9807 // Build a built-in binary operation. 9808 return CreateBuiltinBinOp(OpLoc, Opc, LHSExpr, RHSExpr); 9809 } 9810 9811 ExprResult Sema::CreateBuiltinUnaryOp(SourceLocation OpLoc, 9812 UnaryOperatorKind Opc, 9813 Expr *InputExpr) { 9814 ExprResult Input = InputExpr; 9815 ExprValueKind VK = VK_RValue; 9816 ExprObjectKind OK = OK_Ordinary; 9817 QualType resultType; 9818 switch (Opc) { 9819 case UO_PreInc: 9820 case UO_PreDec: 9821 case UO_PostInc: 9822 case UO_PostDec: 9823 resultType = CheckIncrementDecrementOperand(*this, Input.get(), VK, OK, 9824 OpLoc, 9825 Opc == UO_PreInc || 9826 Opc == UO_PostInc, 9827 Opc == UO_PreInc || 9828 Opc == UO_PreDec); 9829 break; 9830 case UO_AddrOf: 9831 resultType = CheckAddressOfOperand(Input, OpLoc); 9832 break; 9833 case UO_Deref: { 9834 Input = DefaultFunctionArrayLvalueConversion(Input.get()); 9835 if (Input.isInvalid()) return ExprError(); 9836 resultType = CheckIndirectionOperand(*this, Input.get(), VK, OpLoc); 9837 break; 9838 } 9839 case UO_Plus: 9840 case UO_Minus: 9841 Input = UsualUnaryConversions(Input.get()); 9842 if (Input.isInvalid()) return ExprError(); 9843 resultType = Input.get()->getType(); 9844 if (resultType->isDependentType()) 9845 break; 9846 if (resultType->isArithmeticType() || // C99 6.5.3.3p1 9847 resultType->isVectorType()) 9848 break; 9849 else if (getLangOpts().CPlusPlus && // C++ [expr.unary.op]p6 9850 Opc == UO_Plus && 9851 resultType->isPointerType()) 9852 break; 9853 9854 return ExprError(Diag(OpLoc, diag::err_typecheck_unary_expr) 9855 << resultType << Input.get()->getSourceRange()); 9856 9857 case UO_Not: // bitwise complement 9858 Input = UsualUnaryConversions(Input.get()); 9859 if (Input.isInvalid()) 9860 return ExprError(); 9861 resultType = Input.get()->getType(); 9862 if (resultType->isDependentType()) 9863 break; 9864 // C99 6.5.3.3p1. We allow complex int and float as a GCC extension. 9865 if (resultType->isComplexType() || resultType->isComplexIntegerType()) 9866 // C99 does not support '~' for complex conjugation. 9867 Diag(OpLoc, diag::ext_integer_complement_complex) 9868 << resultType << Input.get()->getSourceRange(); 9869 else if (resultType->hasIntegerRepresentation()) 9870 break; 9871 else if (resultType->isExtVectorType()) { 9872 if (Context.getLangOpts().OpenCL) { 9873 // OpenCL v1.1 s6.3.f: The bitwise operator not (~) does not operate 9874 // on vector float types. 9875 QualType T = resultType->getAs<ExtVectorType>()->getElementType(); 9876 if (!T->isIntegerType()) 9877 return ExprError(Diag(OpLoc, diag::err_typecheck_unary_expr) 9878 << resultType << Input.get()->getSourceRange()); 9879 } 9880 break; 9881 } else { 9882 return ExprError(Diag(OpLoc, diag::err_typecheck_unary_expr) 9883 << resultType << Input.get()->getSourceRange()); 9884 } 9885 break; 9886 9887 case UO_LNot: // logical negation 9888 // Unlike +/-/~, integer promotions aren't done here (C99 6.5.3.3p5). 9889 Input = DefaultFunctionArrayLvalueConversion(Input.get()); 9890 if (Input.isInvalid()) return ExprError(); 9891 resultType = Input.get()->getType(); 9892 9893 // Though we still have to promote half FP to float... 9894 if (resultType->isHalfType() && !Context.getLangOpts().NativeHalfType) { 9895 Input = ImpCastExprToType(Input.get(), Context.FloatTy, CK_FloatingCast).get(); 9896 resultType = Context.FloatTy; 9897 } 9898 9899 if (resultType->isDependentType()) 9900 break; 9901 if (resultType->isScalarType() && !isScopedEnumerationType(resultType)) { 9902 // C99 6.5.3.3p1: ok, fallthrough; 9903 if (Context.getLangOpts().CPlusPlus) { 9904 // C++03 [expr.unary.op]p8, C++0x [expr.unary.op]p9: 9905 // operand contextually converted to bool. 9906 Input = ImpCastExprToType(Input.get(), Context.BoolTy, 9907 ScalarTypeToBooleanCastKind(resultType)); 9908 } else if (Context.getLangOpts().OpenCL && 9909 Context.getLangOpts().OpenCLVersion < 120) { 9910 // OpenCL v1.1 6.3.h: The logical operator not (!) does not 9911 // operate on scalar float types. 9912 if (!resultType->isIntegerType()) 9913 return ExprError(Diag(OpLoc, diag::err_typecheck_unary_expr) 9914 << resultType << Input.get()->getSourceRange()); 9915 } 9916 } else if (resultType->isExtVectorType()) { 9917 if (Context.getLangOpts().OpenCL && 9918 Context.getLangOpts().OpenCLVersion < 120) { 9919 // OpenCL v1.1 6.3.h: The logical operator not (!) does not 9920 // operate on vector float types. 9921 QualType T = resultType->getAs<ExtVectorType>()->getElementType(); 9922 if (!T->isIntegerType()) 9923 return ExprError(Diag(OpLoc, diag::err_typecheck_unary_expr) 9924 << resultType << Input.get()->getSourceRange()); 9925 } 9926 // Vector logical not returns the signed variant of the operand type. 9927 resultType = GetSignedVectorType(resultType); 9928 break; 9929 } else { 9930 return ExprError(Diag(OpLoc, diag::err_typecheck_unary_expr) 9931 << resultType << Input.get()->getSourceRange()); 9932 } 9933 9934 // LNot always has type int. C99 6.5.3.3p5. 9935 // In C++, it's bool. C++ 5.3.1p8 9936 resultType = Context.getLogicalOperationType(); 9937 break; 9938 case UO_Real: 9939 case UO_Imag: 9940 resultType = CheckRealImagOperand(*this, Input, OpLoc, Opc == UO_Real); 9941 // _Real maps ordinary l-values into ordinary l-values. _Imag maps ordinary 9942 // complex l-values to ordinary l-values and all other values to r-values. 9943 if (Input.isInvalid()) return ExprError(); 9944 if (Opc == UO_Real || Input.get()->getType()->isAnyComplexType()) { 9945 if (Input.get()->getValueKind() != VK_RValue && 9946 Input.get()->getObjectKind() == OK_Ordinary) 9947 VK = Input.get()->getValueKind(); 9948 } else if (!getLangOpts().CPlusPlus) { 9949 // In C, a volatile scalar is read by __imag. In C++, it is not. 9950 Input = DefaultLvalueConversion(Input.get()); 9951 } 9952 break; 9953 case UO_Extension: 9954 resultType = Input.get()->getType(); 9955 VK = Input.get()->getValueKind(); 9956 OK = Input.get()->getObjectKind(); 9957 break; 9958 } 9959 if (resultType.isNull() || Input.isInvalid()) 9960 return ExprError(); 9961 9962 // Check for array bounds violations in the operand of the UnaryOperator, 9963 // except for the '*' and '&' operators that have to be handled specially 9964 // by CheckArrayAccess (as there are special cases like &array[arraysize] 9965 // that are explicitly defined as valid by the standard). 9966 if (Opc != UO_AddrOf && Opc != UO_Deref) 9967 CheckArrayAccess(Input.get()); 9968 9969 return new (Context) 9970 UnaryOperator(Input.get(), Opc, resultType, VK, OK, OpLoc); 9971 } 9972 9973 /// \brief Determine whether the given expression is a qualified member 9974 /// access expression, of a form that could be turned into a pointer to member 9975 /// with the address-of operator. 9976 static bool isQualifiedMemberAccess(Expr *E) { 9977 if (DeclRefExpr *DRE = dyn_cast<DeclRefExpr>(E)) { 9978 if (!DRE->getQualifier()) 9979 return false; 9980 9981 ValueDecl *VD = DRE->getDecl(); 9982 if (!VD->isCXXClassMember()) 9983 return false; 9984 9985 if (isa<FieldDecl>(VD) || isa<IndirectFieldDecl>(VD)) 9986 return true; 9987 if (CXXMethodDecl *Method = dyn_cast<CXXMethodDecl>(VD)) 9988 return Method->isInstance(); 9989 9990 return false; 9991 } 9992 9993 if (UnresolvedLookupExpr *ULE = dyn_cast<UnresolvedLookupExpr>(E)) { 9994 if (!ULE->getQualifier()) 9995 return false; 9996 9997 for (UnresolvedLookupExpr::decls_iterator D = ULE->decls_begin(), 9998 DEnd = ULE->decls_end(); 9999 D != DEnd; ++D) { 10000 if (CXXMethodDecl *Method = dyn_cast<CXXMethodDecl>(*D)) { 10001 if (Method->isInstance()) 10002 return true; 10003 } else { 10004 // Overload set does not contain methods. 10005 break; 10006 } 10007 } 10008 10009 return false; 10010 } 10011 10012 return false; 10013 } 10014 10015 ExprResult Sema::BuildUnaryOp(Scope *S, SourceLocation OpLoc, 10016 UnaryOperatorKind Opc, Expr *Input) { 10017 // First things first: handle placeholders so that the 10018 // overloaded-operator check considers the right type. 10019 if (const BuiltinType *pty = Input->getType()->getAsPlaceholderType()) { 10020 // Increment and decrement of pseudo-object references. 10021 if (pty->getKind() == BuiltinType::PseudoObject && 10022 UnaryOperator::isIncrementDecrementOp(Opc)) 10023 return checkPseudoObjectIncDec(S, OpLoc, Opc, Input); 10024 10025 // extension is always a builtin operator. 10026 if (Opc == UO_Extension) 10027 return CreateBuiltinUnaryOp(OpLoc, Opc, Input); 10028 10029 // & gets special logic for several kinds of placeholder. 10030 // The builtin code knows what to do. 10031 if (Opc == UO_AddrOf && 10032 (pty->getKind() == BuiltinType::Overload || 10033 pty->getKind() == BuiltinType::UnknownAny || 10034 pty->getKind() == BuiltinType::BoundMember)) 10035 return CreateBuiltinUnaryOp(OpLoc, Opc, Input); 10036 10037 // Anything else needs to be handled now. 10038 ExprResult Result = CheckPlaceholderExpr(Input); 10039 if (Result.isInvalid()) return ExprError(); 10040 Input = Result.get(); 10041 } 10042 10043 if (getLangOpts().CPlusPlus && Input->getType()->isOverloadableType() && 10044 UnaryOperator::getOverloadedOperator(Opc) != OO_None && 10045 !(Opc == UO_AddrOf && isQualifiedMemberAccess(Input))) { 10046 // Find all of the overloaded operators visible from this 10047 // point. We perform both an operator-name lookup from the local 10048 // scope and an argument-dependent lookup based on the types of 10049 // the arguments. 10050 UnresolvedSet<16> Functions; 10051 OverloadedOperatorKind OverOp = UnaryOperator::getOverloadedOperator(Opc); 10052 if (S && OverOp != OO_None) 10053 LookupOverloadedOperatorName(OverOp, S, Input->getType(), QualType(), 10054 Functions); 10055 10056 return CreateOverloadedUnaryOp(OpLoc, Opc, Functions, Input); 10057 } 10058 10059 return CreateBuiltinUnaryOp(OpLoc, Opc, Input); 10060 } 10061 10062 // Unary Operators. 'Tok' is the token for the operator. 10063 ExprResult Sema::ActOnUnaryOp(Scope *S, SourceLocation OpLoc, 10064 tok::TokenKind Op, Expr *Input) { 10065 return BuildUnaryOp(S, OpLoc, ConvertTokenKindToUnaryOpcode(Op), Input); 10066 } 10067 10068 /// ActOnAddrLabel - Parse the GNU address of label extension: "&&foo". 10069 ExprResult Sema::ActOnAddrLabel(SourceLocation OpLoc, SourceLocation LabLoc, 10070 LabelDecl *TheDecl) { 10071 TheDecl->markUsed(Context); 10072 // Create the AST node. The address of a label always has type 'void*'. 10073 return new (Context) AddrLabelExpr(OpLoc, LabLoc, TheDecl, 10074 Context.getPointerType(Context.VoidTy)); 10075 } 10076 10077 /// Given the last statement in a statement-expression, check whether 10078 /// the result is a producing expression (like a call to an 10079 /// ns_returns_retained function) and, if so, rebuild it to hoist the 10080 /// release out of the full-expression. Otherwise, return null. 10081 /// Cannot fail. 10082 static Expr *maybeRebuildARCConsumingStmt(Stmt *Statement) { 10083 // Should always be wrapped with one of these. 10084 ExprWithCleanups *cleanups = dyn_cast<ExprWithCleanups>(Statement); 10085 if (!cleanups) return nullptr; 10086 10087 ImplicitCastExpr *cast = dyn_cast<ImplicitCastExpr>(cleanups->getSubExpr()); 10088 if (!cast || cast->getCastKind() != CK_ARCConsumeObject) 10089 return nullptr; 10090 10091 // Splice out the cast. This shouldn't modify any interesting 10092 // features of the statement. 10093 Expr *producer = cast->getSubExpr(); 10094 assert(producer->getType() == cast->getType()); 10095 assert(producer->getValueKind() == cast->getValueKind()); 10096 cleanups->setSubExpr(producer); 10097 return cleanups; 10098 } 10099 10100 void Sema::ActOnStartStmtExpr() { 10101 PushExpressionEvaluationContext(ExprEvalContexts.back().Context); 10102 } 10103 10104 void Sema::ActOnStmtExprError() { 10105 // Note that function is also called by TreeTransform when leaving a 10106 // StmtExpr scope without rebuilding anything. 10107 10108 DiscardCleanupsInEvaluationContext(); 10109 PopExpressionEvaluationContext(); 10110 } 10111 10112 ExprResult 10113 Sema::ActOnStmtExpr(SourceLocation LPLoc, Stmt *SubStmt, 10114 SourceLocation RPLoc) { // "({..})" 10115 assert(SubStmt && isa<CompoundStmt>(SubStmt) && "Invalid action invocation!"); 10116 CompoundStmt *Compound = cast<CompoundStmt>(SubStmt); 10117 10118 if (hasAnyUnrecoverableErrorsInThisFunction()) 10119 DiscardCleanupsInEvaluationContext(); 10120 assert(!ExprNeedsCleanups && "cleanups within StmtExpr not correctly bound!"); 10121 PopExpressionEvaluationContext(); 10122 10123 bool isFileScope 10124 = (getCurFunctionOrMethodDecl() == nullptr) && (getCurBlock() == nullptr); 10125 if (isFileScope) 10126 return ExprError(Diag(LPLoc, diag::err_stmtexpr_file_scope)); 10127 10128 // FIXME: there are a variety of strange constraints to enforce here, for 10129 // example, it is not possible to goto into a stmt expression apparently. 10130 // More semantic analysis is needed. 10131 10132 // If there are sub-stmts in the compound stmt, take the type of the last one 10133 // as the type of the stmtexpr. 10134 QualType Ty = Context.VoidTy; 10135 bool StmtExprMayBindToTemp = false; 10136 if (!Compound->body_empty()) { 10137 Stmt *LastStmt = Compound->body_back(); 10138 LabelStmt *LastLabelStmt = nullptr; 10139 // If LastStmt is a label, skip down through into the body. 10140 while (LabelStmt *Label = dyn_cast<LabelStmt>(LastStmt)) { 10141 LastLabelStmt = Label; 10142 LastStmt = Label->getSubStmt(); 10143 } 10144 10145 if (Expr *LastE = dyn_cast<Expr>(LastStmt)) { 10146 // Do function/array conversion on the last expression, but not 10147 // lvalue-to-rvalue. However, initialize an unqualified type. 10148 ExprResult LastExpr = DefaultFunctionArrayConversion(LastE); 10149 if (LastExpr.isInvalid()) 10150 return ExprError(); 10151 Ty = LastExpr.get()->getType().getUnqualifiedType(); 10152 10153 if (!Ty->isDependentType() && !LastExpr.get()->isTypeDependent()) { 10154 // In ARC, if the final expression ends in a consume, splice 10155 // the consume out and bind it later. In the alternate case 10156 // (when dealing with a retainable type), the result 10157 // initialization will create a produce. In both cases the 10158 // result will be +1, and we'll need to balance that out with 10159 // a bind. 10160 if (Expr *rebuiltLastStmt 10161 = maybeRebuildARCConsumingStmt(LastExpr.get())) { 10162 LastExpr = rebuiltLastStmt; 10163 } else { 10164 LastExpr = PerformCopyInitialization( 10165 InitializedEntity::InitializeResult(LPLoc, 10166 Ty, 10167 false), 10168 SourceLocation(), 10169 LastExpr); 10170 } 10171 10172 if (LastExpr.isInvalid()) 10173 return ExprError(); 10174 if (LastExpr.get() != nullptr) { 10175 if (!LastLabelStmt) 10176 Compound->setLastStmt(LastExpr.get()); 10177 else 10178 LastLabelStmt->setSubStmt(LastExpr.get()); 10179 StmtExprMayBindToTemp = true; 10180 } 10181 } 10182 } 10183 } 10184 10185 // FIXME: Check that expression type is complete/non-abstract; statement 10186 // expressions are not lvalues. 10187 Expr *ResStmtExpr = new (Context) StmtExpr(Compound, Ty, LPLoc, RPLoc); 10188 if (StmtExprMayBindToTemp) 10189 return MaybeBindToTemporary(ResStmtExpr); 10190 return ResStmtExpr; 10191 } 10192 10193 ExprResult Sema::BuildBuiltinOffsetOf(SourceLocation BuiltinLoc, 10194 TypeSourceInfo *TInfo, 10195 OffsetOfComponent *CompPtr, 10196 unsigned NumComponents, 10197 SourceLocation RParenLoc) { 10198 QualType ArgTy = TInfo->getType(); 10199 bool Dependent = ArgTy->isDependentType(); 10200 SourceRange TypeRange = TInfo->getTypeLoc().getLocalSourceRange(); 10201 10202 // We must have at least one component that refers to the type, and the first 10203 // one is known to be a field designator. Verify that the ArgTy represents 10204 // a struct/union/class. 10205 if (!Dependent && !ArgTy->isRecordType()) 10206 return ExprError(Diag(BuiltinLoc, diag::err_offsetof_record_type) 10207 << ArgTy << TypeRange); 10208 10209 // Type must be complete per C99 7.17p3 because a declaring a variable 10210 // with an incomplete type would be ill-formed. 10211 if (!Dependent 10212 && RequireCompleteType(BuiltinLoc, ArgTy, 10213 diag::err_offsetof_incomplete_type, TypeRange)) 10214 return ExprError(); 10215 10216 // offsetof with non-identifier designators (e.g. "offsetof(x, a.b[c])") are a 10217 // GCC extension, diagnose them. 10218 // FIXME: This diagnostic isn't actually visible because the location is in 10219 // a system header! 10220 if (NumComponents != 1) 10221 Diag(BuiltinLoc, diag::ext_offsetof_extended_field_designator) 10222 << SourceRange(CompPtr[1].LocStart, CompPtr[NumComponents-1].LocEnd); 10223 10224 bool DidWarnAboutNonPOD = false; 10225 QualType CurrentType = ArgTy; 10226 typedef OffsetOfExpr::OffsetOfNode OffsetOfNode; 10227 SmallVector<OffsetOfNode, 4> Comps; 10228 SmallVector<Expr*, 4> Exprs; 10229 for (unsigned i = 0; i != NumComponents; ++i) { 10230 const OffsetOfComponent &OC = CompPtr[i]; 10231 if (OC.isBrackets) { 10232 // Offset of an array sub-field. TODO: Should we allow vector elements? 10233 if (!CurrentType->isDependentType()) { 10234 const ArrayType *AT = Context.getAsArrayType(CurrentType); 10235 if(!AT) 10236 return ExprError(Diag(OC.LocEnd, diag::err_offsetof_array_type) 10237 << CurrentType); 10238 CurrentType = AT->getElementType(); 10239 } else 10240 CurrentType = Context.DependentTy; 10241 10242 ExprResult IdxRval = DefaultLvalueConversion(static_cast<Expr*>(OC.U.E)); 10243 if (IdxRval.isInvalid()) 10244 return ExprError(); 10245 Expr *Idx = IdxRval.get(); 10246 10247 // The expression must be an integral expression. 10248 // FIXME: An integral constant expression? 10249 if (!Idx->isTypeDependent() && !Idx->isValueDependent() && 10250 !Idx->getType()->isIntegerType()) 10251 return ExprError(Diag(Idx->getLocStart(), 10252 diag::err_typecheck_subscript_not_integer) 10253 << Idx->getSourceRange()); 10254 10255 // Record this array index. 10256 Comps.push_back(OffsetOfNode(OC.LocStart, Exprs.size(), OC.LocEnd)); 10257 Exprs.push_back(Idx); 10258 continue; 10259 } 10260 10261 // Offset of a field. 10262 if (CurrentType->isDependentType()) { 10263 // We have the offset of a field, but we can't look into the dependent 10264 // type. Just record the identifier of the field. 10265 Comps.push_back(OffsetOfNode(OC.LocStart, OC.U.IdentInfo, OC.LocEnd)); 10266 CurrentType = Context.DependentTy; 10267 continue; 10268 } 10269 10270 // We need to have a complete type to look into. 10271 if (RequireCompleteType(OC.LocStart, CurrentType, 10272 diag::err_offsetof_incomplete_type)) 10273 return ExprError(); 10274 10275 // Look for the designated field. 10276 const RecordType *RC = CurrentType->getAs<RecordType>(); 10277 if (!RC) 10278 return ExprError(Diag(OC.LocEnd, diag::err_offsetof_record_type) 10279 << CurrentType); 10280 RecordDecl *RD = RC->getDecl(); 10281 10282 // C++ [lib.support.types]p5: 10283 // The macro offsetof accepts a restricted set of type arguments in this 10284 // International Standard. type shall be a POD structure or a POD union 10285 // (clause 9). 10286 // C++11 [support.types]p4: 10287 // If type is not a standard-layout class (Clause 9), the results are 10288 // undefined. 10289 if (CXXRecordDecl *CRD = dyn_cast<CXXRecordDecl>(RD)) { 10290 bool IsSafe = LangOpts.CPlusPlus11? CRD->isStandardLayout() : CRD->isPOD(); 10291 unsigned DiagID = 10292 LangOpts.CPlusPlus11? diag::ext_offsetof_non_standardlayout_type 10293 : diag::ext_offsetof_non_pod_type; 10294 10295 if (!IsSafe && !DidWarnAboutNonPOD && 10296 DiagRuntimeBehavior(BuiltinLoc, nullptr, 10297 PDiag(DiagID) 10298 << SourceRange(CompPtr[0].LocStart, OC.LocEnd) 10299 << CurrentType)) 10300 DidWarnAboutNonPOD = true; 10301 } 10302 10303 // Look for the field. 10304 LookupResult R(*this, OC.U.IdentInfo, OC.LocStart, LookupMemberName); 10305 LookupQualifiedName(R, RD); 10306 FieldDecl *MemberDecl = R.getAsSingle<FieldDecl>(); 10307 IndirectFieldDecl *IndirectMemberDecl = nullptr; 10308 if (!MemberDecl) { 10309 if ((IndirectMemberDecl = R.getAsSingle<IndirectFieldDecl>())) 10310 MemberDecl = IndirectMemberDecl->getAnonField(); 10311 } 10312 10313 if (!MemberDecl) 10314 return ExprError(Diag(BuiltinLoc, diag::err_no_member) 10315 << OC.U.IdentInfo << RD << SourceRange(OC.LocStart, 10316 OC.LocEnd)); 10317 10318 // C99 7.17p3: 10319 // (If the specified member is a bit-field, the behavior is undefined.) 10320 // 10321 // We diagnose this as an error. 10322 if (MemberDecl->isBitField()) { 10323 Diag(OC.LocEnd, diag::err_offsetof_bitfield) 10324 << MemberDecl->getDeclName() 10325 << SourceRange(BuiltinLoc, RParenLoc); 10326 Diag(MemberDecl->getLocation(), diag::note_bitfield_decl); 10327 return ExprError(); 10328 } 10329 10330 RecordDecl *Parent = MemberDecl->getParent(); 10331 if (IndirectMemberDecl) 10332 Parent = cast<RecordDecl>(IndirectMemberDecl->getDeclContext()); 10333 10334 // If the member was found in a base class, introduce OffsetOfNodes for 10335 // the base class indirections. 10336 CXXBasePaths Paths; 10337 if (IsDerivedFrom(CurrentType, Context.getTypeDeclType(Parent), Paths)) { 10338 if (Paths.getDetectedVirtual()) { 10339 Diag(OC.LocEnd, diag::err_offsetof_field_of_virtual_base) 10340 << MemberDecl->getDeclName() 10341 << SourceRange(BuiltinLoc, RParenLoc); 10342 return ExprError(); 10343 } 10344 10345 CXXBasePath &Path = Paths.front(); 10346 for (CXXBasePath::iterator B = Path.begin(), BEnd = Path.end(); 10347 B != BEnd; ++B) 10348 Comps.push_back(OffsetOfNode(B->Base)); 10349 } 10350 10351 if (IndirectMemberDecl) { 10352 for (auto *FI : IndirectMemberDecl->chain()) { 10353 assert(isa<FieldDecl>(FI)); 10354 Comps.push_back(OffsetOfNode(OC.LocStart, 10355 cast<FieldDecl>(FI), OC.LocEnd)); 10356 } 10357 } else 10358 Comps.push_back(OffsetOfNode(OC.LocStart, MemberDecl, OC.LocEnd)); 10359 10360 CurrentType = MemberDecl->getType().getNonReferenceType(); 10361 } 10362 10363 return OffsetOfExpr::Create(Context, Context.getSizeType(), BuiltinLoc, TInfo, 10364 Comps, Exprs, RParenLoc); 10365 } 10366 10367 ExprResult Sema::ActOnBuiltinOffsetOf(Scope *S, 10368 SourceLocation BuiltinLoc, 10369 SourceLocation TypeLoc, 10370 ParsedType ParsedArgTy, 10371 OffsetOfComponent *CompPtr, 10372 unsigned NumComponents, 10373 SourceLocation RParenLoc) { 10374 10375 TypeSourceInfo *ArgTInfo; 10376 QualType ArgTy = GetTypeFromParser(ParsedArgTy, &ArgTInfo); 10377 if (ArgTy.isNull()) 10378 return ExprError(); 10379 10380 if (!ArgTInfo) 10381 ArgTInfo = Context.getTrivialTypeSourceInfo(ArgTy, TypeLoc); 10382 10383 return BuildBuiltinOffsetOf(BuiltinLoc, ArgTInfo, CompPtr, NumComponents, 10384 RParenLoc); 10385 } 10386 10387 10388 ExprResult Sema::ActOnChooseExpr(SourceLocation BuiltinLoc, 10389 Expr *CondExpr, 10390 Expr *LHSExpr, Expr *RHSExpr, 10391 SourceLocation RPLoc) { 10392 assert((CondExpr && LHSExpr && RHSExpr) && "Missing type argument(s)"); 10393 10394 ExprValueKind VK = VK_RValue; 10395 ExprObjectKind OK = OK_Ordinary; 10396 QualType resType; 10397 bool ValueDependent = false; 10398 bool CondIsTrue = false; 10399 if (CondExpr->isTypeDependent() || CondExpr->isValueDependent()) { 10400 resType = Context.DependentTy; 10401 ValueDependent = true; 10402 } else { 10403 // The conditional expression is required to be a constant expression. 10404 llvm::APSInt condEval(32); 10405 ExprResult CondICE 10406 = VerifyIntegerConstantExpression(CondExpr, &condEval, 10407 diag::err_typecheck_choose_expr_requires_constant, false); 10408 if (CondICE.isInvalid()) 10409 return ExprError(); 10410 CondExpr = CondICE.get(); 10411 CondIsTrue = condEval.getZExtValue(); 10412 10413 // If the condition is > zero, then the AST type is the same as the LSHExpr. 10414 Expr *ActiveExpr = CondIsTrue ? LHSExpr : RHSExpr; 10415 10416 resType = ActiveExpr->getType(); 10417 ValueDependent = ActiveExpr->isValueDependent(); 10418 VK = ActiveExpr->getValueKind(); 10419 OK = ActiveExpr->getObjectKind(); 10420 } 10421 10422 return new (Context) 10423 ChooseExpr(BuiltinLoc, CondExpr, LHSExpr, RHSExpr, resType, VK, OK, RPLoc, 10424 CondIsTrue, resType->isDependentType(), ValueDependent); 10425 } 10426 10427 //===----------------------------------------------------------------------===// 10428 // Clang Extensions. 10429 //===----------------------------------------------------------------------===// 10430 10431 /// ActOnBlockStart - This callback is invoked when a block literal is started. 10432 void Sema::ActOnBlockStart(SourceLocation CaretLoc, Scope *CurScope) { 10433 BlockDecl *Block = BlockDecl::Create(Context, CurContext, CaretLoc); 10434 10435 if (LangOpts.CPlusPlus) { 10436 Decl *ManglingContextDecl; 10437 if (MangleNumberingContext *MCtx = 10438 getCurrentMangleNumberContext(Block->getDeclContext(), 10439 ManglingContextDecl)) { 10440 unsigned ManglingNumber = MCtx->getManglingNumber(Block); 10441 Block->setBlockMangling(ManglingNumber, ManglingContextDecl); 10442 } 10443 } 10444 10445 PushBlockScope(CurScope, Block); 10446 CurContext->addDecl(Block); 10447 if (CurScope) 10448 PushDeclContext(CurScope, Block); 10449 else 10450 CurContext = Block; 10451 10452 getCurBlock()->HasImplicitReturnType = true; 10453 10454 // Enter a new evaluation context to insulate the block from any 10455 // cleanups from the enclosing full-expression. 10456 PushExpressionEvaluationContext(PotentiallyEvaluated); 10457 } 10458 10459 void Sema::ActOnBlockArguments(SourceLocation CaretLoc, Declarator &ParamInfo, 10460 Scope *CurScope) { 10461 assert(ParamInfo.getIdentifier() == nullptr && 10462 "block-id should have no identifier!"); 10463 assert(ParamInfo.getContext() == Declarator::BlockLiteralContext); 10464 BlockScopeInfo *CurBlock = getCurBlock(); 10465 10466 TypeSourceInfo *Sig = GetTypeForDeclarator(ParamInfo, CurScope); 10467 QualType T = Sig->getType(); 10468 10469 // FIXME: We should allow unexpanded parameter packs here, but that would, 10470 // in turn, make the block expression contain unexpanded parameter packs. 10471 if (DiagnoseUnexpandedParameterPack(CaretLoc, Sig, UPPC_Block)) { 10472 // Drop the parameters. 10473 FunctionProtoType::ExtProtoInfo EPI; 10474 EPI.HasTrailingReturn = false; 10475 EPI.TypeQuals |= DeclSpec::TQ_const; 10476 T = Context.getFunctionType(Context.DependentTy, None, EPI); 10477 Sig = Context.getTrivialTypeSourceInfo(T); 10478 } 10479 10480 // GetTypeForDeclarator always produces a function type for a block 10481 // literal signature. Furthermore, it is always a FunctionProtoType 10482 // unless the function was written with a typedef. 10483 assert(T->isFunctionType() && 10484 "GetTypeForDeclarator made a non-function block signature"); 10485 10486 // Look for an explicit signature in that function type. 10487 FunctionProtoTypeLoc ExplicitSignature; 10488 10489 TypeLoc tmp = Sig->getTypeLoc().IgnoreParens(); 10490 if ((ExplicitSignature = tmp.getAs<FunctionProtoTypeLoc>())) { 10491 10492 // Check whether that explicit signature was synthesized by 10493 // GetTypeForDeclarator. If so, don't save that as part of the 10494 // written signature. 10495 if (ExplicitSignature.getLocalRangeBegin() == 10496 ExplicitSignature.getLocalRangeEnd()) { 10497 // This would be much cheaper if we stored TypeLocs instead of 10498 // TypeSourceInfos. 10499 TypeLoc Result = ExplicitSignature.getReturnLoc(); 10500 unsigned Size = Result.getFullDataSize(); 10501 Sig = Context.CreateTypeSourceInfo(Result.getType(), Size); 10502 Sig->getTypeLoc().initializeFullCopy(Result, Size); 10503 10504 ExplicitSignature = FunctionProtoTypeLoc(); 10505 } 10506 } 10507 10508 CurBlock->TheDecl->setSignatureAsWritten(Sig); 10509 CurBlock->FunctionType = T; 10510 10511 const FunctionType *Fn = T->getAs<FunctionType>(); 10512 QualType RetTy = Fn->getReturnType(); 10513 bool isVariadic = 10514 (isa<FunctionProtoType>(Fn) && cast<FunctionProtoType>(Fn)->isVariadic()); 10515 10516 CurBlock->TheDecl->setIsVariadic(isVariadic); 10517 10518 // Context.DependentTy is used as a placeholder for a missing block 10519 // return type. TODO: what should we do with declarators like: 10520 // ^ * { ... } 10521 // If the answer is "apply template argument deduction".... 10522 if (RetTy != Context.DependentTy) { 10523 CurBlock->ReturnType = RetTy; 10524 CurBlock->TheDecl->setBlockMissingReturnType(false); 10525 CurBlock->HasImplicitReturnType = false; 10526 } 10527 10528 // Push block parameters from the declarator if we had them. 10529 SmallVector<ParmVarDecl*, 8> Params; 10530 if (ExplicitSignature) { 10531 for (unsigned I = 0, E = ExplicitSignature.getNumParams(); I != E; ++I) { 10532 ParmVarDecl *Param = ExplicitSignature.getParam(I); 10533 if (Param->getIdentifier() == nullptr && 10534 !Param->isImplicit() && 10535 !Param->isInvalidDecl() && 10536 !getLangOpts().CPlusPlus) 10537 Diag(Param->getLocation(), diag::err_parameter_name_omitted); 10538 Params.push_back(Param); 10539 } 10540 10541 // Fake up parameter variables if we have a typedef, like 10542 // ^ fntype { ... } 10543 } else if (const FunctionProtoType *Fn = T->getAs<FunctionProtoType>()) { 10544 for (const auto &I : Fn->param_types()) { 10545 ParmVarDecl *Param = BuildParmVarDeclForTypedef( 10546 CurBlock->TheDecl, ParamInfo.getLocStart(), I); 10547 Params.push_back(Param); 10548 } 10549 } 10550 10551 // Set the parameters on the block decl. 10552 if (!Params.empty()) { 10553 CurBlock->TheDecl->setParams(Params); 10554 CheckParmsForFunctionDef(CurBlock->TheDecl->param_begin(), 10555 CurBlock->TheDecl->param_end(), 10556 /*CheckParameterNames=*/false); 10557 } 10558 10559 // Finally we can process decl attributes. 10560 ProcessDeclAttributes(CurScope, CurBlock->TheDecl, ParamInfo); 10561 10562 // Put the parameter variables in scope. 10563 for (auto AI : CurBlock->TheDecl->params()) { 10564 AI->setOwningFunction(CurBlock->TheDecl); 10565 10566 // If this has an identifier, add it to the scope stack. 10567 if (AI->getIdentifier()) { 10568 CheckShadow(CurBlock->TheScope, AI); 10569 10570 PushOnScopeChains(AI, CurBlock->TheScope); 10571 } 10572 } 10573 } 10574 10575 /// ActOnBlockError - If there is an error parsing a block, this callback 10576 /// is invoked to pop the information about the block from the action impl. 10577 void Sema::ActOnBlockError(SourceLocation CaretLoc, Scope *CurScope) { 10578 // Leave the expression-evaluation context. 10579 DiscardCleanupsInEvaluationContext(); 10580 PopExpressionEvaluationContext(); 10581 10582 // Pop off CurBlock, handle nested blocks. 10583 PopDeclContext(); 10584 PopFunctionScopeInfo(); 10585 } 10586 10587 /// ActOnBlockStmtExpr - This is called when the body of a block statement 10588 /// literal was successfully completed. ^(int x){...} 10589 ExprResult Sema::ActOnBlockStmtExpr(SourceLocation CaretLoc, 10590 Stmt *Body, Scope *CurScope) { 10591 // If blocks are disabled, emit an error. 10592 if (!LangOpts.Blocks) 10593 Diag(CaretLoc, diag::err_blocks_disable); 10594 10595 // Leave the expression-evaluation context. 10596 if (hasAnyUnrecoverableErrorsInThisFunction()) 10597 DiscardCleanupsInEvaluationContext(); 10598 assert(!ExprNeedsCleanups && "cleanups within block not correctly bound!"); 10599 PopExpressionEvaluationContext(); 10600 10601 BlockScopeInfo *BSI = cast<BlockScopeInfo>(FunctionScopes.back()); 10602 10603 if (BSI->HasImplicitReturnType) 10604 deduceClosureReturnType(*BSI); 10605 10606 PopDeclContext(); 10607 10608 QualType RetTy = Context.VoidTy; 10609 if (!BSI->ReturnType.isNull()) 10610 RetTy = BSI->ReturnType; 10611 10612 bool NoReturn = BSI->TheDecl->hasAttr<NoReturnAttr>(); 10613 QualType BlockTy; 10614 10615 // Set the captured variables on the block. 10616 // FIXME: Share capture structure between BlockDecl and CapturingScopeInfo! 10617 SmallVector<BlockDecl::Capture, 4> Captures; 10618 for (unsigned i = 0, e = BSI->Captures.size(); i != e; i++) { 10619 CapturingScopeInfo::Capture &Cap = BSI->Captures[i]; 10620 if (Cap.isThisCapture()) 10621 continue; 10622 BlockDecl::Capture NewCap(Cap.getVariable(), Cap.isBlockCapture(), 10623 Cap.isNested(), Cap.getInitExpr()); 10624 Captures.push_back(NewCap); 10625 } 10626 BSI->TheDecl->setCaptures(Context, Captures.begin(), Captures.end(), 10627 BSI->CXXThisCaptureIndex != 0); 10628 10629 // If the user wrote a function type in some form, try to use that. 10630 if (!BSI->FunctionType.isNull()) { 10631 const FunctionType *FTy = BSI->FunctionType->getAs<FunctionType>(); 10632 10633 FunctionType::ExtInfo Ext = FTy->getExtInfo(); 10634 if (NoReturn && !Ext.getNoReturn()) Ext = Ext.withNoReturn(true); 10635 10636 // Turn protoless block types into nullary block types. 10637 if (isa<FunctionNoProtoType>(FTy)) { 10638 FunctionProtoType::ExtProtoInfo EPI; 10639 EPI.ExtInfo = Ext; 10640 BlockTy = Context.getFunctionType(RetTy, None, EPI); 10641 10642 // Otherwise, if we don't need to change anything about the function type, 10643 // preserve its sugar structure. 10644 } else if (FTy->getReturnType() == RetTy && 10645 (!NoReturn || FTy->getNoReturnAttr())) { 10646 BlockTy = BSI->FunctionType; 10647 10648 // Otherwise, make the minimal modifications to the function type. 10649 } else { 10650 const FunctionProtoType *FPT = cast<FunctionProtoType>(FTy); 10651 FunctionProtoType::ExtProtoInfo EPI = FPT->getExtProtoInfo(); 10652 EPI.TypeQuals = 0; // FIXME: silently? 10653 EPI.ExtInfo = Ext; 10654 BlockTy = Context.getFunctionType(RetTy, FPT->getParamTypes(), EPI); 10655 } 10656 10657 // If we don't have a function type, just build one from nothing. 10658 } else { 10659 FunctionProtoType::ExtProtoInfo EPI; 10660 EPI.ExtInfo = FunctionType::ExtInfo().withNoReturn(NoReturn); 10661 BlockTy = Context.getFunctionType(RetTy, None, EPI); 10662 } 10663 10664 DiagnoseUnusedParameters(BSI->TheDecl->param_begin(), 10665 BSI->TheDecl->param_end()); 10666 BlockTy = Context.getBlockPointerType(BlockTy); 10667 10668 // If needed, diagnose invalid gotos and switches in the block. 10669 if (getCurFunction()->NeedsScopeChecking() && 10670 !PP.isCodeCompletionEnabled()) 10671 DiagnoseInvalidJumps(cast<CompoundStmt>(Body)); 10672 10673 BSI->TheDecl->setBody(cast<CompoundStmt>(Body)); 10674 10675 // Try to apply the named return value optimization. We have to check again 10676 // if we can do this, though, because blocks keep return statements around 10677 // to deduce an implicit return type. 10678 if (getLangOpts().CPlusPlus && RetTy->isRecordType() && 10679 !BSI->TheDecl->isDependentContext()) 10680 computeNRVO(Body, BSI); 10681 10682 BlockExpr *Result = new (Context) BlockExpr(BSI->TheDecl, BlockTy); 10683 AnalysisBasedWarnings::Policy WP = AnalysisWarnings.getDefaultPolicy(); 10684 PopFunctionScopeInfo(&WP, Result->getBlockDecl(), Result); 10685 10686 // If the block isn't obviously global, i.e. it captures anything at 10687 // all, then we need to do a few things in the surrounding context: 10688 if (Result->getBlockDecl()->hasCaptures()) { 10689 // First, this expression has a new cleanup object. 10690 ExprCleanupObjects.push_back(Result->getBlockDecl()); 10691 ExprNeedsCleanups = true; 10692 10693 // It also gets a branch-protected scope if any of the captured 10694 // variables needs destruction. 10695 for (const auto &CI : Result->getBlockDecl()->captures()) { 10696 const VarDecl *var = CI.getVariable(); 10697 if (var->getType().isDestructedType() != QualType::DK_none) { 10698 getCurFunction()->setHasBranchProtectedScope(); 10699 break; 10700 } 10701 } 10702 } 10703 10704 return Result; 10705 } 10706 10707 ExprResult Sema::ActOnVAArg(SourceLocation BuiltinLoc, 10708 Expr *E, ParsedType Ty, 10709 SourceLocation RPLoc) { 10710 TypeSourceInfo *TInfo; 10711 GetTypeFromParser(Ty, &TInfo); 10712 return BuildVAArgExpr(BuiltinLoc, E, TInfo, RPLoc); 10713 } 10714 10715 ExprResult Sema::BuildVAArgExpr(SourceLocation BuiltinLoc, 10716 Expr *E, TypeSourceInfo *TInfo, 10717 SourceLocation RPLoc) { 10718 Expr *OrigExpr = E; 10719 10720 // Get the va_list type 10721 QualType VaListType = Context.getBuiltinVaListType(); 10722 if (VaListType->isArrayType()) { 10723 // Deal with implicit array decay; for example, on x86-64, 10724 // va_list is an array, but it's supposed to decay to 10725 // a pointer for va_arg. 10726 VaListType = Context.getArrayDecayedType(VaListType); 10727 // Make sure the input expression also decays appropriately. 10728 ExprResult Result = UsualUnaryConversions(E); 10729 if (Result.isInvalid()) 10730 return ExprError(); 10731 E = Result.get(); 10732 } else if (VaListType->isRecordType() && getLangOpts().CPlusPlus) { 10733 // If va_list is a record type and we are compiling in C++ mode, 10734 // check the argument using reference binding. 10735 InitializedEntity Entity 10736 = InitializedEntity::InitializeParameter(Context, 10737 Context.getLValueReferenceType(VaListType), false); 10738 ExprResult Init = PerformCopyInitialization(Entity, SourceLocation(), E); 10739 if (Init.isInvalid()) 10740 return ExprError(); 10741 E = Init.getAs<Expr>(); 10742 } else { 10743 // Otherwise, the va_list argument must be an l-value because 10744 // it is modified by va_arg. 10745 if (!E->isTypeDependent() && 10746 CheckForModifiableLvalue(E, BuiltinLoc, *this)) 10747 return ExprError(); 10748 } 10749 10750 if (!E->isTypeDependent() && 10751 !Context.hasSameType(VaListType, E->getType())) { 10752 return ExprError(Diag(E->getLocStart(), 10753 diag::err_first_argument_to_va_arg_not_of_type_va_list) 10754 << OrigExpr->getType() << E->getSourceRange()); 10755 } 10756 10757 if (!TInfo->getType()->isDependentType()) { 10758 if (RequireCompleteType(TInfo->getTypeLoc().getBeginLoc(), TInfo->getType(), 10759 diag::err_second_parameter_to_va_arg_incomplete, 10760 TInfo->getTypeLoc())) 10761 return ExprError(); 10762 10763 if (RequireNonAbstractType(TInfo->getTypeLoc().getBeginLoc(), 10764 TInfo->getType(), 10765 diag::err_second_parameter_to_va_arg_abstract, 10766 TInfo->getTypeLoc())) 10767 return ExprError(); 10768 10769 if (!TInfo->getType().isPODType(Context)) { 10770 Diag(TInfo->getTypeLoc().getBeginLoc(), 10771 TInfo->getType()->isObjCLifetimeType() 10772 ? diag::warn_second_parameter_to_va_arg_ownership_qualified 10773 : diag::warn_second_parameter_to_va_arg_not_pod) 10774 << TInfo->getType() 10775 << TInfo->getTypeLoc().getSourceRange(); 10776 } 10777 10778 // Check for va_arg where arguments of the given type will be promoted 10779 // (i.e. this va_arg is guaranteed to have undefined behavior). 10780 QualType PromoteType; 10781 if (TInfo->getType()->isPromotableIntegerType()) { 10782 PromoteType = Context.getPromotedIntegerType(TInfo->getType()); 10783 if (Context.typesAreCompatible(PromoteType, TInfo->getType())) 10784 PromoteType = QualType(); 10785 } 10786 if (TInfo->getType()->isSpecificBuiltinType(BuiltinType::Float)) 10787 PromoteType = Context.DoubleTy; 10788 if (!PromoteType.isNull()) 10789 DiagRuntimeBehavior(TInfo->getTypeLoc().getBeginLoc(), E, 10790 PDiag(diag::warn_second_parameter_to_va_arg_never_compatible) 10791 << TInfo->getType() 10792 << PromoteType 10793 << TInfo->getTypeLoc().getSourceRange()); 10794 } 10795 10796 QualType T = TInfo->getType().getNonLValueExprType(Context); 10797 return new (Context) VAArgExpr(BuiltinLoc, E, TInfo, RPLoc, T); 10798 } 10799 10800 ExprResult Sema::ActOnGNUNullExpr(SourceLocation TokenLoc) { 10801 // The type of __null will be int or long, depending on the size of 10802 // pointers on the target. 10803 QualType Ty; 10804 unsigned pw = Context.getTargetInfo().getPointerWidth(0); 10805 if (pw == Context.getTargetInfo().getIntWidth()) 10806 Ty = Context.IntTy; 10807 else if (pw == Context.getTargetInfo().getLongWidth()) 10808 Ty = Context.LongTy; 10809 else if (pw == Context.getTargetInfo().getLongLongWidth()) 10810 Ty = Context.LongLongTy; 10811 else { 10812 llvm_unreachable("I don't know size of pointer!"); 10813 } 10814 10815 return new (Context) GNUNullExpr(Ty, TokenLoc); 10816 } 10817 10818 bool 10819 Sema::ConversionToObjCStringLiteralCheck(QualType DstType, Expr *&Exp) { 10820 if (!getLangOpts().ObjC1) 10821 return false; 10822 10823 const ObjCObjectPointerType *PT = DstType->getAs<ObjCObjectPointerType>(); 10824 if (!PT) 10825 return false; 10826 10827 if (!PT->isObjCIdType()) { 10828 // Check if the destination is the 'NSString' interface. 10829 const ObjCInterfaceDecl *ID = PT->getInterfaceDecl(); 10830 if (!ID || !ID->getIdentifier()->isStr("NSString")) 10831 return false; 10832 } 10833 10834 // Ignore any parens, implicit casts (should only be 10835 // array-to-pointer decays), and not-so-opaque values. The last is 10836 // important for making this trigger for property assignments. 10837 Expr *SrcExpr = Exp->IgnoreParenImpCasts(); 10838 if (OpaqueValueExpr *OV = dyn_cast<OpaqueValueExpr>(SrcExpr)) 10839 if (OV->getSourceExpr()) 10840 SrcExpr = OV->getSourceExpr()->IgnoreParenImpCasts(); 10841 10842 StringLiteral *SL = dyn_cast<StringLiteral>(SrcExpr); 10843 if (!SL || !SL->isAscii()) 10844 return false; 10845 Diag(SL->getLocStart(), diag::err_missing_atsign_prefix) 10846 << FixItHint::CreateInsertion(SL->getLocStart(), "@"); 10847 Exp = BuildObjCStringLiteral(SL->getLocStart(), SL).get(); 10848 return true; 10849 } 10850 10851 bool Sema::DiagnoseAssignmentResult(AssignConvertType ConvTy, 10852 SourceLocation Loc, 10853 QualType DstType, QualType SrcType, 10854 Expr *SrcExpr, AssignmentAction Action, 10855 bool *Complained) { 10856 if (Complained) 10857 *Complained = false; 10858 10859 // Decode the result (notice that AST's are still created for extensions). 10860 bool CheckInferredResultType = false; 10861 bool isInvalid = false; 10862 unsigned DiagKind = 0; 10863 FixItHint Hint; 10864 ConversionFixItGenerator ConvHints; 10865 bool MayHaveConvFixit = false; 10866 bool MayHaveFunctionDiff = false; 10867 const ObjCInterfaceDecl *IFace = nullptr; 10868 const ObjCProtocolDecl *PDecl = nullptr; 10869 10870 switch (ConvTy) { 10871 case Compatible: 10872 DiagnoseAssignmentEnum(DstType, SrcType, SrcExpr); 10873 return false; 10874 10875 case PointerToInt: 10876 DiagKind = diag::ext_typecheck_convert_pointer_int; 10877 ConvHints.tryToFixConversion(SrcExpr, SrcType, DstType, *this); 10878 MayHaveConvFixit = true; 10879 break; 10880 case IntToPointer: 10881 DiagKind = diag::ext_typecheck_convert_int_pointer; 10882 ConvHints.tryToFixConversion(SrcExpr, SrcType, DstType, *this); 10883 MayHaveConvFixit = true; 10884 break; 10885 case IncompatiblePointer: 10886 DiagKind = 10887 (Action == AA_Passing_CFAudited ? 10888 diag::err_arc_typecheck_convert_incompatible_pointer : 10889 diag::ext_typecheck_convert_incompatible_pointer); 10890 CheckInferredResultType = DstType->isObjCObjectPointerType() && 10891 SrcType->isObjCObjectPointerType(); 10892 if (Hint.isNull() && !CheckInferredResultType) { 10893 ConvHints.tryToFixConversion(SrcExpr, SrcType, DstType, *this); 10894 } 10895 else if (CheckInferredResultType) { 10896 SrcType = SrcType.getUnqualifiedType(); 10897 DstType = DstType.getUnqualifiedType(); 10898 } 10899 MayHaveConvFixit = true; 10900 break; 10901 case IncompatiblePointerSign: 10902 DiagKind = diag::ext_typecheck_convert_incompatible_pointer_sign; 10903 break; 10904 case FunctionVoidPointer: 10905 DiagKind = diag::ext_typecheck_convert_pointer_void_func; 10906 break; 10907 case IncompatiblePointerDiscardsQualifiers: { 10908 // Perform array-to-pointer decay if necessary. 10909 if (SrcType->isArrayType()) SrcType = Context.getArrayDecayedType(SrcType); 10910 10911 Qualifiers lhq = SrcType->getPointeeType().getQualifiers(); 10912 Qualifiers rhq = DstType->getPointeeType().getQualifiers(); 10913 if (lhq.getAddressSpace() != rhq.getAddressSpace()) { 10914 DiagKind = diag::err_typecheck_incompatible_address_space; 10915 break; 10916 10917 10918 } else if (lhq.getObjCLifetime() != rhq.getObjCLifetime()) { 10919 DiagKind = diag::err_typecheck_incompatible_ownership; 10920 break; 10921 } 10922 10923 llvm_unreachable("unknown error case for discarding qualifiers!"); 10924 // fallthrough 10925 } 10926 case CompatiblePointerDiscardsQualifiers: 10927 // If the qualifiers lost were because we were applying the 10928 // (deprecated) C++ conversion from a string literal to a char* 10929 // (or wchar_t*), then there was no error (C++ 4.2p2). FIXME: 10930 // Ideally, this check would be performed in 10931 // checkPointerTypesForAssignment. However, that would require a 10932 // bit of refactoring (so that the second argument is an 10933 // expression, rather than a type), which should be done as part 10934 // of a larger effort to fix checkPointerTypesForAssignment for 10935 // C++ semantics. 10936 if (getLangOpts().CPlusPlus && 10937 IsStringLiteralToNonConstPointerConversion(SrcExpr, DstType)) 10938 return false; 10939 DiagKind = diag::ext_typecheck_convert_discards_qualifiers; 10940 break; 10941 case IncompatibleNestedPointerQualifiers: 10942 DiagKind = diag::ext_nested_pointer_qualifier_mismatch; 10943 break; 10944 case IntToBlockPointer: 10945 DiagKind = diag::err_int_to_block_pointer; 10946 break; 10947 case IncompatibleBlockPointer: 10948 DiagKind = diag::err_typecheck_convert_incompatible_block_pointer; 10949 break; 10950 case IncompatibleObjCQualifiedId: { 10951 if (SrcType->isObjCQualifiedIdType()) { 10952 const ObjCObjectPointerType *srcOPT = 10953 SrcType->getAs<ObjCObjectPointerType>(); 10954 for (auto *srcProto : srcOPT->quals()) { 10955 PDecl = srcProto; 10956 break; 10957 } 10958 if (const ObjCInterfaceType *IFaceT = 10959 DstType->getAs<ObjCObjectPointerType>()->getInterfaceType()) 10960 IFace = IFaceT->getDecl(); 10961 } 10962 else if (DstType->isObjCQualifiedIdType()) { 10963 const ObjCObjectPointerType *dstOPT = 10964 DstType->getAs<ObjCObjectPointerType>(); 10965 for (auto *dstProto : dstOPT->quals()) { 10966 PDecl = dstProto; 10967 break; 10968 } 10969 if (const ObjCInterfaceType *IFaceT = 10970 SrcType->getAs<ObjCObjectPointerType>()->getInterfaceType()) 10971 IFace = IFaceT->getDecl(); 10972 } 10973 DiagKind = diag::warn_incompatible_qualified_id; 10974 break; 10975 } 10976 case IncompatibleVectors: 10977 DiagKind = diag::warn_incompatible_vectors; 10978 break; 10979 case IncompatibleObjCWeakRef: 10980 DiagKind = diag::err_arc_weak_unavailable_assign; 10981 break; 10982 case Incompatible: 10983 DiagKind = diag::err_typecheck_convert_incompatible; 10984 ConvHints.tryToFixConversion(SrcExpr, SrcType, DstType, *this); 10985 MayHaveConvFixit = true; 10986 isInvalid = true; 10987 MayHaveFunctionDiff = true; 10988 break; 10989 } 10990 10991 QualType FirstType, SecondType; 10992 switch (Action) { 10993 case AA_Assigning: 10994 case AA_Initializing: 10995 // The destination type comes first. 10996 FirstType = DstType; 10997 SecondType = SrcType; 10998 break; 10999 11000 case AA_Returning: 11001 case AA_Passing: 11002 case AA_Passing_CFAudited: 11003 case AA_Converting: 11004 case AA_Sending: 11005 case AA_Casting: 11006 // The source type comes first. 11007 FirstType = SrcType; 11008 SecondType = DstType; 11009 break; 11010 } 11011 11012 PartialDiagnostic FDiag = PDiag(DiagKind); 11013 if (Action == AA_Passing_CFAudited) 11014 FDiag << FirstType << SecondType << SrcExpr->getSourceRange(); 11015 else 11016 FDiag << FirstType << SecondType << Action << SrcExpr->getSourceRange(); 11017 11018 // If we can fix the conversion, suggest the FixIts. 11019 assert(ConvHints.isNull() || Hint.isNull()); 11020 if (!ConvHints.isNull()) { 11021 for (std::vector<FixItHint>::iterator HI = ConvHints.Hints.begin(), 11022 HE = ConvHints.Hints.end(); HI != HE; ++HI) 11023 FDiag << *HI; 11024 } else { 11025 FDiag << Hint; 11026 } 11027 if (MayHaveConvFixit) { FDiag << (unsigned) (ConvHints.Kind); } 11028 11029 if (MayHaveFunctionDiff) 11030 HandleFunctionTypeMismatch(FDiag, SecondType, FirstType); 11031 11032 Diag(Loc, FDiag); 11033 if (DiagKind == diag::warn_incompatible_qualified_id && 11034 PDecl && IFace && !IFace->hasDefinition()) 11035 Diag(IFace->getLocation(), diag::not_incomplete_class_and_qualified_id) 11036 << IFace->getName() << PDecl->getName(); 11037 11038 if (SecondType == Context.OverloadTy) 11039 NoteAllOverloadCandidates(OverloadExpr::find(SrcExpr).Expression, 11040 FirstType); 11041 11042 if (CheckInferredResultType) 11043 EmitRelatedResultTypeNote(SrcExpr); 11044 11045 if (Action == AA_Returning && ConvTy == IncompatiblePointer) 11046 EmitRelatedResultTypeNoteForReturn(DstType); 11047 11048 if (Complained) 11049 *Complained = true; 11050 return isInvalid; 11051 } 11052 11053 ExprResult Sema::VerifyIntegerConstantExpression(Expr *E, 11054 llvm::APSInt *Result) { 11055 class SimpleICEDiagnoser : public VerifyICEDiagnoser { 11056 public: 11057 void diagnoseNotICE(Sema &S, SourceLocation Loc, SourceRange SR) override { 11058 S.Diag(Loc, diag::err_expr_not_ice) << S.LangOpts.CPlusPlus << SR; 11059 } 11060 } Diagnoser; 11061 11062 return VerifyIntegerConstantExpression(E, Result, Diagnoser); 11063 } 11064 11065 ExprResult Sema::VerifyIntegerConstantExpression(Expr *E, 11066 llvm::APSInt *Result, 11067 unsigned DiagID, 11068 bool AllowFold) { 11069 class IDDiagnoser : public VerifyICEDiagnoser { 11070 unsigned DiagID; 11071 11072 public: 11073 IDDiagnoser(unsigned DiagID) 11074 : VerifyICEDiagnoser(DiagID == 0), DiagID(DiagID) { } 11075 11076 void diagnoseNotICE(Sema &S, SourceLocation Loc, SourceRange SR) override { 11077 S.Diag(Loc, DiagID) << SR; 11078 } 11079 } Diagnoser(DiagID); 11080 11081 return VerifyIntegerConstantExpression(E, Result, Diagnoser, AllowFold); 11082 } 11083 11084 void Sema::VerifyICEDiagnoser::diagnoseFold(Sema &S, SourceLocation Loc, 11085 SourceRange SR) { 11086 S.Diag(Loc, diag::ext_expr_not_ice) << SR << S.LangOpts.CPlusPlus; 11087 } 11088 11089 ExprResult 11090 Sema::VerifyIntegerConstantExpression(Expr *E, llvm::APSInt *Result, 11091 VerifyICEDiagnoser &Diagnoser, 11092 bool AllowFold) { 11093 SourceLocation DiagLoc = E->getLocStart(); 11094 11095 if (getLangOpts().CPlusPlus11) { 11096 // C++11 [expr.const]p5: 11097 // If an expression of literal class type is used in a context where an 11098 // integral constant expression is required, then that class type shall 11099 // have a single non-explicit conversion function to an integral or 11100 // unscoped enumeration type 11101 ExprResult Converted; 11102 class CXX11ConvertDiagnoser : public ICEConvertDiagnoser { 11103 public: 11104 CXX11ConvertDiagnoser(bool Silent) 11105 : ICEConvertDiagnoser(/*AllowScopedEnumerations*/false, 11106 Silent, true) {} 11107 11108 SemaDiagnosticBuilder diagnoseNotInt(Sema &S, SourceLocation Loc, 11109 QualType T) override { 11110 return S.Diag(Loc, diag::err_ice_not_integral) << T; 11111 } 11112 11113 SemaDiagnosticBuilder diagnoseIncomplete( 11114 Sema &S, SourceLocation Loc, QualType T) override { 11115 return S.Diag(Loc, diag::err_ice_incomplete_type) << T; 11116 } 11117 11118 SemaDiagnosticBuilder diagnoseExplicitConv( 11119 Sema &S, SourceLocation Loc, QualType T, QualType ConvTy) override { 11120 return S.Diag(Loc, diag::err_ice_explicit_conversion) << T << ConvTy; 11121 } 11122 11123 SemaDiagnosticBuilder noteExplicitConv( 11124 Sema &S, CXXConversionDecl *Conv, QualType ConvTy) override { 11125 return S.Diag(Conv->getLocation(), diag::note_ice_conversion_here) 11126 << ConvTy->isEnumeralType() << ConvTy; 11127 } 11128 11129 SemaDiagnosticBuilder diagnoseAmbiguous( 11130 Sema &S, SourceLocation Loc, QualType T) override { 11131 return S.Diag(Loc, diag::err_ice_ambiguous_conversion) << T; 11132 } 11133 11134 SemaDiagnosticBuilder noteAmbiguous( 11135 Sema &S, CXXConversionDecl *Conv, QualType ConvTy) override { 11136 return S.Diag(Conv->getLocation(), diag::note_ice_conversion_here) 11137 << ConvTy->isEnumeralType() << ConvTy; 11138 } 11139 11140 SemaDiagnosticBuilder diagnoseConversion( 11141 Sema &S, SourceLocation Loc, QualType T, QualType ConvTy) override { 11142 llvm_unreachable("conversion functions are permitted"); 11143 } 11144 } ConvertDiagnoser(Diagnoser.Suppress); 11145 11146 Converted = PerformContextualImplicitConversion(DiagLoc, E, 11147 ConvertDiagnoser); 11148 if (Converted.isInvalid()) 11149 return Converted; 11150 E = Converted.get(); 11151 if (!E->getType()->isIntegralOrUnscopedEnumerationType()) 11152 return ExprError(); 11153 } else if (!E->getType()->isIntegralOrUnscopedEnumerationType()) { 11154 // An ICE must be of integral or unscoped enumeration type. 11155 if (!Diagnoser.Suppress) 11156 Diagnoser.diagnoseNotICE(*this, DiagLoc, E->getSourceRange()); 11157 return ExprError(); 11158 } 11159 11160 // Circumvent ICE checking in C++11 to avoid evaluating the expression twice 11161 // in the non-ICE case. 11162 if (!getLangOpts().CPlusPlus11 && E->isIntegerConstantExpr(Context)) { 11163 if (Result) 11164 *Result = E->EvaluateKnownConstInt(Context); 11165 return E; 11166 } 11167 11168 Expr::EvalResult EvalResult; 11169 SmallVector<PartialDiagnosticAt, 8> Notes; 11170 EvalResult.Diag = &Notes; 11171 11172 // Try to evaluate the expression, and produce diagnostics explaining why it's 11173 // not a constant expression as a side-effect. 11174 bool Folded = E->EvaluateAsRValue(EvalResult, Context) && 11175 EvalResult.Val.isInt() && !EvalResult.HasSideEffects; 11176 11177 // In C++11, we can rely on diagnostics being produced for any expression 11178 // which is not a constant expression. If no diagnostics were produced, then 11179 // this is a constant expression. 11180 if (Folded && getLangOpts().CPlusPlus11 && Notes.empty()) { 11181 if (Result) 11182 *Result = EvalResult.Val.getInt(); 11183 return E; 11184 } 11185 11186 // If our only note is the usual "invalid subexpression" note, just point 11187 // the caret at its location rather than producing an essentially 11188 // redundant note. 11189 if (Notes.size() == 1 && Notes[0].second.getDiagID() == 11190 diag::note_invalid_subexpr_in_const_expr) { 11191 DiagLoc = Notes[0].first; 11192 Notes.clear(); 11193 } 11194 11195 if (!Folded || !AllowFold) { 11196 if (!Diagnoser.Suppress) { 11197 Diagnoser.diagnoseNotICE(*this, DiagLoc, E->getSourceRange()); 11198 for (unsigned I = 0, N = Notes.size(); I != N; ++I) 11199 Diag(Notes[I].first, Notes[I].second); 11200 } 11201 11202 return ExprError(); 11203 } 11204 11205 Diagnoser.diagnoseFold(*this, DiagLoc, E->getSourceRange()); 11206 for (unsigned I = 0, N = Notes.size(); I != N; ++I) 11207 Diag(Notes[I].first, Notes[I].second); 11208 11209 if (Result) 11210 *Result = EvalResult.Val.getInt(); 11211 return E; 11212 } 11213 11214 namespace { 11215 // Handle the case where we conclude a expression which we speculatively 11216 // considered to be unevaluated is actually evaluated. 11217 class TransformToPE : public TreeTransform<TransformToPE> { 11218 typedef TreeTransform<TransformToPE> BaseTransform; 11219 11220 public: 11221 TransformToPE(Sema &SemaRef) : BaseTransform(SemaRef) { } 11222 11223 // Make sure we redo semantic analysis 11224 bool AlwaysRebuild() { return true; } 11225 11226 // Make sure we handle LabelStmts correctly. 11227 // FIXME: This does the right thing, but maybe we need a more general 11228 // fix to TreeTransform? 11229 StmtResult TransformLabelStmt(LabelStmt *S) { 11230 S->getDecl()->setStmt(nullptr); 11231 return BaseTransform::TransformLabelStmt(S); 11232 } 11233 11234 // We need to special-case DeclRefExprs referring to FieldDecls which 11235 // are not part of a member pointer formation; normal TreeTransforming 11236 // doesn't catch this case because of the way we represent them in the AST. 11237 // FIXME: This is a bit ugly; is it really the best way to handle this 11238 // case? 11239 // 11240 // Error on DeclRefExprs referring to FieldDecls. 11241 ExprResult TransformDeclRefExpr(DeclRefExpr *E) { 11242 if (isa<FieldDecl>(E->getDecl()) && 11243 !SemaRef.isUnevaluatedContext()) 11244 return SemaRef.Diag(E->getLocation(), 11245 diag::err_invalid_non_static_member_use) 11246 << E->getDecl() << E->getSourceRange(); 11247 11248 return BaseTransform::TransformDeclRefExpr(E); 11249 } 11250 11251 // Exception: filter out member pointer formation 11252 ExprResult TransformUnaryOperator(UnaryOperator *E) { 11253 if (E->getOpcode() == UO_AddrOf && E->getType()->isMemberPointerType()) 11254 return E; 11255 11256 return BaseTransform::TransformUnaryOperator(E); 11257 } 11258 11259 ExprResult TransformLambdaExpr(LambdaExpr *E) { 11260 // Lambdas never need to be transformed. 11261 return E; 11262 } 11263 }; 11264 } 11265 11266 ExprResult Sema::TransformToPotentiallyEvaluated(Expr *E) { 11267 assert(isUnevaluatedContext() && 11268 "Should only transform unevaluated expressions"); 11269 ExprEvalContexts.back().Context = 11270 ExprEvalContexts[ExprEvalContexts.size()-2].Context; 11271 if (isUnevaluatedContext()) 11272 return E; 11273 return TransformToPE(*this).TransformExpr(E); 11274 } 11275 11276 void 11277 Sema::PushExpressionEvaluationContext(ExpressionEvaluationContext NewContext, 11278 Decl *LambdaContextDecl, 11279 bool IsDecltype) { 11280 ExprEvalContexts.push_back( 11281 ExpressionEvaluationContextRecord(NewContext, 11282 ExprCleanupObjects.size(), 11283 ExprNeedsCleanups, 11284 LambdaContextDecl, 11285 IsDecltype)); 11286 ExprNeedsCleanups = false; 11287 if (!MaybeODRUseExprs.empty()) 11288 std::swap(MaybeODRUseExprs, ExprEvalContexts.back().SavedMaybeODRUseExprs); 11289 } 11290 11291 void 11292 Sema::PushExpressionEvaluationContext(ExpressionEvaluationContext NewContext, 11293 ReuseLambdaContextDecl_t, 11294 bool IsDecltype) { 11295 Decl *ClosureContextDecl = ExprEvalContexts.back().ManglingContextDecl; 11296 PushExpressionEvaluationContext(NewContext, ClosureContextDecl, IsDecltype); 11297 } 11298 11299 void Sema::PopExpressionEvaluationContext() { 11300 ExpressionEvaluationContextRecord& Rec = ExprEvalContexts.back(); 11301 11302 if (!Rec.Lambdas.empty()) { 11303 if (Rec.isUnevaluated() || Rec.Context == ConstantEvaluated) { 11304 unsigned D; 11305 if (Rec.isUnevaluated()) { 11306 // C++11 [expr.prim.lambda]p2: 11307 // A lambda-expression shall not appear in an unevaluated operand 11308 // (Clause 5). 11309 D = diag::err_lambda_unevaluated_operand; 11310 } else { 11311 // C++1y [expr.const]p2: 11312 // A conditional-expression e is a core constant expression unless the 11313 // evaluation of e, following the rules of the abstract machine, would 11314 // evaluate [...] a lambda-expression. 11315 D = diag::err_lambda_in_constant_expression; 11316 } 11317 for (unsigned I = 0, N = Rec.Lambdas.size(); I != N; ++I) 11318 Diag(Rec.Lambdas[I]->getLocStart(), D); 11319 } else { 11320 // Mark the capture expressions odr-used. This was deferred 11321 // during lambda expression creation. 11322 for (unsigned I = 0, N = Rec.Lambdas.size(); I != N; ++I) { 11323 LambdaExpr *Lambda = Rec.Lambdas[I]; 11324 for (LambdaExpr::capture_init_iterator 11325 C = Lambda->capture_init_begin(), 11326 CEnd = Lambda->capture_init_end(); 11327 C != CEnd; ++C) { 11328 MarkDeclarationsReferencedInExpr(*C); 11329 } 11330 } 11331 } 11332 } 11333 11334 // When are coming out of an unevaluated context, clear out any 11335 // temporaries that we may have created as part of the evaluation of 11336 // the expression in that context: they aren't relevant because they 11337 // will never be constructed. 11338 if (Rec.isUnevaluated() || Rec.Context == ConstantEvaluated) { 11339 ExprCleanupObjects.erase(ExprCleanupObjects.begin() + Rec.NumCleanupObjects, 11340 ExprCleanupObjects.end()); 11341 ExprNeedsCleanups = Rec.ParentNeedsCleanups; 11342 CleanupVarDeclMarking(); 11343 std::swap(MaybeODRUseExprs, Rec.SavedMaybeODRUseExprs); 11344 // Otherwise, merge the contexts together. 11345 } else { 11346 ExprNeedsCleanups |= Rec.ParentNeedsCleanups; 11347 MaybeODRUseExprs.insert(Rec.SavedMaybeODRUseExprs.begin(), 11348 Rec.SavedMaybeODRUseExprs.end()); 11349 } 11350 11351 // Pop the current expression evaluation context off the stack. 11352 ExprEvalContexts.pop_back(); 11353 } 11354 11355 void Sema::DiscardCleanupsInEvaluationContext() { 11356 ExprCleanupObjects.erase( 11357 ExprCleanupObjects.begin() + ExprEvalContexts.back().NumCleanupObjects, 11358 ExprCleanupObjects.end()); 11359 ExprNeedsCleanups = false; 11360 MaybeODRUseExprs.clear(); 11361 } 11362 11363 ExprResult Sema::HandleExprEvaluationContextForTypeof(Expr *E) { 11364 if (!E->getType()->isVariablyModifiedType()) 11365 return E; 11366 return TransformToPotentiallyEvaluated(E); 11367 } 11368 11369 static bool IsPotentiallyEvaluatedContext(Sema &SemaRef) { 11370 // Do not mark anything as "used" within a dependent context; wait for 11371 // an instantiation. 11372 if (SemaRef.CurContext->isDependentContext()) 11373 return false; 11374 11375 switch (SemaRef.ExprEvalContexts.back().Context) { 11376 case Sema::Unevaluated: 11377 case Sema::UnevaluatedAbstract: 11378 // We are in an expression that is not potentially evaluated; do nothing. 11379 // (Depending on how you read the standard, we actually do need to do 11380 // something here for null pointer constants, but the standard's 11381 // definition of a null pointer constant is completely crazy.) 11382 return false; 11383 11384 case Sema::ConstantEvaluated: 11385 case Sema::PotentiallyEvaluated: 11386 // We are in a potentially evaluated expression (or a constant-expression 11387 // in C++03); we need to do implicit template instantiation, implicitly 11388 // define class members, and mark most declarations as used. 11389 return true; 11390 11391 case Sema::PotentiallyEvaluatedIfUsed: 11392 // Referenced declarations will only be used if the construct in the 11393 // containing expression is used. 11394 return false; 11395 } 11396 llvm_unreachable("Invalid context"); 11397 } 11398 11399 /// \brief Mark a function referenced, and check whether it is odr-used 11400 /// (C++ [basic.def.odr]p2, C99 6.9p3) 11401 void Sema::MarkFunctionReferenced(SourceLocation Loc, FunctionDecl *Func) { 11402 assert(Func && "No function?"); 11403 11404 Func->setReferenced(); 11405 11406 // C++11 [basic.def.odr]p3: 11407 // A function whose name appears as a potentially-evaluated expression is 11408 // odr-used if it is the unique lookup result or the selected member of a 11409 // set of overloaded functions [...]. 11410 // 11411 // We (incorrectly) mark overload resolution as an unevaluated context, so we 11412 // can just check that here. Skip the rest of this function if we've already 11413 // marked the function as used. 11414 if (Func->isUsed(false) || !IsPotentiallyEvaluatedContext(*this)) { 11415 // C++11 [temp.inst]p3: 11416 // Unless a function template specialization has been explicitly 11417 // instantiated or explicitly specialized, the function template 11418 // specialization is implicitly instantiated when the specialization is 11419 // referenced in a context that requires a function definition to exist. 11420 // 11421 // We consider constexpr function templates to be referenced in a context 11422 // that requires a definition to exist whenever they are referenced. 11423 // 11424 // FIXME: This instantiates constexpr functions too frequently. If this is 11425 // really an unevaluated context (and we're not just in the definition of a 11426 // function template or overload resolution or other cases which we 11427 // incorrectly consider to be unevaluated contexts), and we're not in a 11428 // subexpression which we actually need to evaluate (for instance, a 11429 // template argument, array bound or an expression in a braced-init-list), 11430 // we are not permitted to instantiate this constexpr function definition. 11431 // 11432 // FIXME: This also implicitly defines special members too frequently. They 11433 // are only supposed to be implicitly defined if they are odr-used, but they 11434 // are not odr-used from constant expressions in unevaluated contexts. 11435 // However, they cannot be referenced if they are deleted, and they are 11436 // deleted whenever the implicit definition of the special member would 11437 // fail. 11438 if (!Func->isConstexpr() || Func->getBody()) 11439 return; 11440 CXXMethodDecl *MD = dyn_cast<CXXMethodDecl>(Func); 11441 if (!Func->isImplicitlyInstantiable() && (!MD || MD->isUserProvided())) 11442 return; 11443 } 11444 11445 // Note that this declaration has been used. 11446 if (CXXConstructorDecl *Constructor = dyn_cast<CXXConstructorDecl>(Func)) { 11447 Constructor = cast<CXXConstructorDecl>(Constructor->getFirstDecl()); 11448 if (Constructor->isDefaulted() && !Constructor->isDeleted()) { 11449 if (Constructor->isDefaultConstructor()) { 11450 if (Constructor->isTrivial() && !Constructor->hasAttr<DLLExportAttr>()) 11451 return; 11452 DefineImplicitDefaultConstructor(Loc, Constructor); 11453 } else if (Constructor->isCopyConstructor()) { 11454 DefineImplicitCopyConstructor(Loc, Constructor); 11455 } else if (Constructor->isMoveConstructor()) { 11456 DefineImplicitMoveConstructor(Loc, Constructor); 11457 } 11458 } else if (Constructor->getInheritedConstructor()) { 11459 DefineInheritingConstructor(Loc, Constructor); 11460 } 11461 } else if (CXXDestructorDecl *Destructor = 11462 dyn_cast<CXXDestructorDecl>(Func)) { 11463 Destructor = cast<CXXDestructorDecl>(Destructor->getFirstDecl()); 11464 if (Destructor->isDefaulted() && !Destructor->isDeleted()) 11465 DefineImplicitDestructor(Loc, Destructor); 11466 if (Destructor->isVirtual()) 11467 MarkVTableUsed(Loc, Destructor->getParent()); 11468 } else if (CXXMethodDecl *MethodDecl = dyn_cast<CXXMethodDecl>(Func)) { 11469 if (MethodDecl->isOverloadedOperator() && 11470 MethodDecl->getOverloadedOperator() == OO_Equal) { 11471 MethodDecl = cast<CXXMethodDecl>(MethodDecl->getFirstDecl()); 11472 if (MethodDecl->isDefaulted() && !MethodDecl->isDeleted()) { 11473 if (MethodDecl->isCopyAssignmentOperator()) 11474 DefineImplicitCopyAssignment(Loc, MethodDecl); 11475 else 11476 DefineImplicitMoveAssignment(Loc, MethodDecl); 11477 } 11478 } else if (isa<CXXConversionDecl>(MethodDecl) && 11479 MethodDecl->getParent()->isLambda()) { 11480 CXXConversionDecl *Conversion = 11481 cast<CXXConversionDecl>(MethodDecl->getFirstDecl()); 11482 if (Conversion->isLambdaToBlockPointerConversion()) 11483 DefineImplicitLambdaToBlockPointerConversion(Loc, Conversion); 11484 else 11485 DefineImplicitLambdaToFunctionPointerConversion(Loc, Conversion); 11486 } else if (MethodDecl->isVirtual()) 11487 MarkVTableUsed(Loc, MethodDecl->getParent()); 11488 } 11489 11490 // Recursive functions should be marked when used from another function. 11491 // FIXME: Is this really right? 11492 if (CurContext == Func) return; 11493 11494 // Resolve the exception specification for any function which is 11495 // used: CodeGen will need it. 11496 const FunctionProtoType *FPT = Func->getType()->getAs<FunctionProtoType>(); 11497 if (FPT && isUnresolvedExceptionSpec(FPT->getExceptionSpecType())) 11498 ResolveExceptionSpec(Loc, FPT); 11499 11500 // Implicit instantiation of function templates and member functions of 11501 // class templates. 11502 if (Func->isImplicitlyInstantiable()) { 11503 bool AlreadyInstantiated = false; 11504 SourceLocation PointOfInstantiation = Loc; 11505 if (FunctionTemplateSpecializationInfo *SpecInfo 11506 = Func->getTemplateSpecializationInfo()) { 11507 if (SpecInfo->getPointOfInstantiation().isInvalid()) 11508 SpecInfo->setPointOfInstantiation(Loc); 11509 else if (SpecInfo->getTemplateSpecializationKind() 11510 == TSK_ImplicitInstantiation) { 11511 AlreadyInstantiated = true; 11512 PointOfInstantiation = SpecInfo->getPointOfInstantiation(); 11513 } 11514 } else if (MemberSpecializationInfo *MSInfo 11515 = Func->getMemberSpecializationInfo()) { 11516 if (MSInfo->getPointOfInstantiation().isInvalid()) 11517 MSInfo->setPointOfInstantiation(Loc); 11518 else if (MSInfo->getTemplateSpecializationKind() 11519 == TSK_ImplicitInstantiation) { 11520 AlreadyInstantiated = true; 11521 PointOfInstantiation = MSInfo->getPointOfInstantiation(); 11522 } 11523 } 11524 11525 if (!AlreadyInstantiated || Func->isConstexpr()) { 11526 if (isa<CXXRecordDecl>(Func->getDeclContext()) && 11527 cast<CXXRecordDecl>(Func->getDeclContext())->isLocalClass() && 11528 ActiveTemplateInstantiations.size()) 11529 PendingLocalImplicitInstantiations.push_back( 11530 std::make_pair(Func, PointOfInstantiation)); 11531 else if (Func->isConstexpr()) 11532 // Do not defer instantiations of constexpr functions, to avoid the 11533 // expression evaluator needing to call back into Sema if it sees a 11534 // call to such a function. 11535 InstantiateFunctionDefinition(PointOfInstantiation, Func); 11536 else { 11537 PendingInstantiations.push_back(std::make_pair(Func, 11538 PointOfInstantiation)); 11539 // Notify the consumer that a function was implicitly instantiated. 11540 Consumer.HandleCXXImplicitFunctionInstantiation(Func); 11541 } 11542 } 11543 } else { 11544 // Walk redefinitions, as some of them may be instantiable. 11545 for (auto i : Func->redecls()) { 11546 if (!i->isUsed(false) && i->isImplicitlyInstantiable()) 11547 MarkFunctionReferenced(Loc, i); 11548 } 11549 } 11550 11551 // Keep track of used but undefined functions. 11552 if (!Func->isDefined()) { 11553 if (mightHaveNonExternalLinkage(Func)) 11554 UndefinedButUsed.insert(std::make_pair(Func->getCanonicalDecl(), Loc)); 11555 else if (Func->getMostRecentDecl()->isInlined() && 11556 (LangOpts.CPlusPlus || !LangOpts.GNUInline) && 11557 !Func->getMostRecentDecl()->hasAttr<GNUInlineAttr>()) 11558 UndefinedButUsed.insert(std::make_pair(Func->getCanonicalDecl(), Loc)); 11559 } 11560 11561 // Normally the most current decl is marked used while processing the use and 11562 // any subsequent decls are marked used by decl merging. This fails with 11563 // template instantiation since marking can happen at the end of the file 11564 // and, because of the two phase lookup, this function is called with at 11565 // decl in the middle of a decl chain. We loop to maintain the invariant 11566 // that once a decl is used, all decls after it are also used. 11567 for (FunctionDecl *F = Func->getMostRecentDecl();; F = F->getPreviousDecl()) { 11568 F->markUsed(Context); 11569 if (F == Func) 11570 break; 11571 } 11572 } 11573 11574 static void 11575 diagnoseUncapturableValueReference(Sema &S, SourceLocation loc, 11576 VarDecl *var, DeclContext *DC) { 11577 DeclContext *VarDC = var->getDeclContext(); 11578 11579 // If the parameter still belongs to the translation unit, then 11580 // we're actually just using one parameter in the declaration of 11581 // the next. 11582 if (isa<ParmVarDecl>(var) && 11583 isa<TranslationUnitDecl>(VarDC)) 11584 return; 11585 11586 // For C code, don't diagnose about capture if we're not actually in code 11587 // right now; it's impossible to write a non-constant expression outside of 11588 // function context, so we'll get other (more useful) diagnostics later. 11589 // 11590 // For C++, things get a bit more nasty... it would be nice to suppress this 11591 // diagnostic for certain cases like using a local variable in an array bound 11592 // for a member of a local class, but the correct predicate is not obvious. 11593 if (!S.getLangOpts().CPlusPlus && !S.CurContext->isFunctionOrMethod()) 11594 return; 11595 11596 if (isa<CXXMethodDecl>(VarDC) && 11597 cast<CXXRecordDecl>(VarDC->getParent())->isLambda()) { 11598 S.Diag(loc, diag::err_reference_to_local_var_in_enclosing_lambda) 11599 << var->getIdentifier(); 11600 } else if (FunctionDecl *fn = dyn_cast<FunctionDecl>(VarDC)) { 11601 S.Diag(loc, diag::err_reference_to_local_var_in_enclosing_function) 11602 << var->getIdentifier() << fn->getDeclName(); 11603 } else if (isa<BlockDecl>(VarDC)) { 11604 S.Diag(loc, diag::err_reference_to_local_var_in_enclosing_block) 11605 << var->getIdentifier(); 11606 } else { 11607 // FIXME: Is there any other context where a local variable can be 11608 // declared? 11609 S.Diag(loc, diag::err_reference_to_local_var_in_enclosing_context) 11610 << var->getIdentifier(); 11611 } 11612 11613 S.Diag(var->getLocation(), diag::note_entity_declared_at) 11614 << var->getIdentifier(); 11615 11616 // FIXME: Add additional diagnostic info about class etc. which prevents 11617 // capture. 11618 } 11619 11620 11621 static bool isVariableAlreadyCapturedInScopeInfo(CapturingScopeInfo *CSI, VarDecl *Var, 11622 bool &SubCapturesAreNested, 11623 QualType &CaptureType, 11624 QualType &DeclRefType) { 11625 // Check whether we've already captured it. 11626 if (CSI->CaptureMap.count(Var)) { 11627 // If we found a capture, any subcaptures are nested. 11628 SubCapturesAreNested = true; 11629 11630 // Retrieve the capture type for this variable. 11631 CaptureType = CSI->getCapture(Var).getCaptureType(); 11632 11633 // Compute the type of an expression that refers to this variable. 11634 DeclRefType = CaptureType.getNonReferenceType(); 11635 11636 const CapturingScopeInfo::Capture &Cap = CSI->getCapture(Var); 11637 if (Cap.isCopyCapture() && 11638 !(isa<LambdaScopeInfo>(CSI) && cast<LambdaScopeInfo>(CSI)->Mutable)) 11639 DeclRefType.addConst(); 11640 return true; 11641 } 11642 return false; 11643 } 11644 11645 // Only block literals, captured statements, and lambda expressions can 11646 // capture; other scopes don't work. 11647 static DeclContext *getParentOfCapturingContextOrNull(DeclContext *DC, VarDecl *Var, 11648 SourceLocation Loc, 11649 const bool Diagnose, Sema &S) { 11650 if (isa<BlockDecl>(DC) || isa<CapturedDecl>(DC) || isLambdaCallOperator(DC)) 11651 return getLambdaAwareParentOfDeclContext(DC); 11652 else { 11653 if (Diagnose) 11654 diagnoseUncapturableValueReference(S, Loc, Var, DC); 11655 } 11656 return nullptr; 11657 } 11658 11659 // Certain capturing entities (lambdas, blocks etc.) are not allowed to capture 11660 // certain types of variables (unnamed, variably modified types etc.) 11661 // so check for eligibility. 11662 static bool isVariableCapturable(CapturingScopeInfo *CSI, VarDecl *Var, 11663 SourceLocation Loc, 11664 const bool Diagnose, Sema &S) { 11665 11666 bool IsBlock = isa<BlockScopeInfo>(CSI); 11667 bool IsLambda = isa<LambdaScopeInfo>(CSI); 11668 11669 // Lambdas are not allowed to capture unnamed variables 11670 // (e.g. anonymous unions). 11671 // FIXME: The C++11 rule don't actually state this explicitly, but I'm 11672 // assuming that's the intent. 11673 if (IsLambda && !Var->getDeclName()) { 11674 if (Diagnose) { 11675 S.Diag(Loc, diag::err_lambda_capture_anonymous_var); 11676 S.Diag(Var->getLocation(), diag::note_declared_at); 11677 } 11678 return false; 11679 } 11680 11681 // Prohibit variably-modified types; they're difficult to deal with. 11682 if (Var->getType()->isVariablyModifiedType() && (IsBlock || IsLambda)) { 11683 if (Diagnose) { 11684 if (IsBlock) 11685 S.Diag(Loc, diag::err_ref_vm_type); 11686 else 11687 S.Diag(Loc, diag::err_lambda_capture_vm_type) << Var->getDeclName(); 11688 S.Diag(Var->getLocation(), diag::note_previous_decl) 11689 << Var->getDeclName(); 11690 } 11691 return false; 11692 } 11693 // Prohibit structs with flexible array members too. 11694 // We cannot capture what is in the tail end of the struct. 11695 if (const RecordType *VTTy = Var->getType()->getAs<RecordType>()) { 11696 if (VTTy->getDecl()->hasFlexibleArrayMember()) { 11697 if (Diagnose) { 11698 if (IsBlock) 11699 S.Diag(Loc, diag::err_ref_flexarray_type); 11700 else 11701 S.Diag(Loc, diag::err_lambda_capture_flexarray_type) 11702 << Var->getDeclName(); 11703 S.Diag(Var->getLocation(), diag::note_previous_decl) 11704 << Var->getDeclName(); 11705 } 11706 return false; 11707 } 11708 } 11709 const bool HasBlocksAttr = Var->hasAttr<BlocksAttr>(); 11710 // Lambdas and captured statements are not allowed to capture __block 11711 // variables; they don't support the expected semantics. 11712 if (HasBlocksAttr && (IsLambda || isa<CapturedRegionScopeInfo>(CSI))) { 11713 if (Diagnose) { 11714 S.Diag(Loc, diag::err_capture_block_variable) 11715 << Var->getDeclName() << !IsLambda; 11716 S.Diag(Var->getLocation(), diag::note_previous_decl) 11717 << Var->getDeclName(); 11718 } 11719 return false; 11720 } 11721 11722 return true; 11723 } 11724 11725 // Returns true if the capture by block was successful. 11726 static bool captureInBlock(BlockScopeInfo *BSI, VarDecl *Var, 11727 SourceLocation Loc, 11728 const bool BuildAndDiagnose, 11729 QualType &CaptureType, 11730 QualType &DeclRefType, 11731 const bool Nested, 11732 Sema &S) { 11733 Expr *CopyExpr = nullptr; 11734 bool ByRef = false; 11735 11736 // Blocks are not allowed to capture arrays. 11737 if (CaptureType->isArrayType()) { 11738 if (BuildAndDiagnose) { 11739 S.Diag(Loc, diag::err_ref_array_type); 11740 S.Diag(Var->getLocation(), diag::note_previous_decl) 11741 << Var->getDeclName(); 11742 } 11743 return false; 11744 } 11745 11746 // Forbid the block-capture of autoreleasing variables. 11747 if (CaptureType.getObjCLifetime() == Qualifiers::OCL_Autoreleasing) { 11748 if (BuildAndDiagnose) { 11749 S.Diag(Loc, diag::err_arc_autoreleasing_capture) 11750 << /*block*/ 0; 11751 S.Diag(Var->getLocation(), diag::note_previous_decl) 11752 << Var->getDeclName(); 11753 } 11754 return false; 11755 } 11756 const bool HasBlocksAttr = Var->hasAttr<BlocksAttr>(); 11757 if (HasBlocksAttr || CaptureType->isReferenceType()) { 11758 // Block capture by reference does not change the capture or 11759 // declaration reference types. 11760 ByRef = true; 11761 } else { 11762 // Block capture by copy introduces 'const'. 11763 CaptureType = CaptureType.getNonReferenceType().withConst(); 11764 DeclRefType = CaptureType; 11765 11766 if (S.getLangOpts().CPlusPlus && BuildAndDiagnose) { 11767 if (const RecordType *Record = DeclRefType->getAs<RecordType>()) { 11768 // The capture logic needs the destructor, so make sure we mark it. 11769 // Usually this is unnecessary because most local variables have 11770 // their destructors marked at declaration time, but parameters are 11771 // an exception because it's technically only the call site that 11772 // actually requires the destructor. 11773 if (isa<ParmVarDecl>(Var)) 11774 S.FinalizeVarWithDestructor(Var, Record); 11775 11776 // Enter a new evaluation context to insulate the copy 11777 // full-expression. 11778 EnterExpressionEvaluationContext scope(S, S.PotentiallyEvaluated); 11779 11780 // According to the blocks spec, the capture of a variable from 11781 // the stack requires a const copy constructor. This is not true 11782 // of the copy/move done to move a __block variable to the heap. 11783 Expr *DeclRef = new (S.Context) DeclRefExpr(Var, Nested, 11784 DeclRefType.withConst(), 11785 VK_LValue, Loc); 11786 11787 ExprResult Result 11788 = S.PerformCopyInitialization( 11789 InitializedEntity::InitializeBlock(Var->getLocation(), 11790 CaptureType, false), 11791 Loc, DeclRef); 11792 11793 // Build a full-expression copy expression if initialization 11794 // succeeded and used a non-trivial constructor. Recover from 11795 // errors by pretending that the copy isn't necessary. 11796 if (!Result.isInvalid() && 11797 !cast<CXXConstructExpr>(Result.get())->getConstructor() 11798 ->isTrivial()) { 11799 Result = S.MaybeCreateExprWithCleanups(Result); 11800 CopyExpr = Result.get(); 11801 } 11802 } 11803 } 11804 } 11805 11806 // Actually capture the variable. 11807 if (BuildAndDiagnose) 11808 BSI->addCapture(Var, HasBlocksAttr, ByRef, Nested, Loc, 11809 SourceLocation(), CaptureType, CopyExpr); 11810 11811 return true; 11812 11813 } 11814 11815 11816 /// \brief Capture the given variable in the captured region. 11817 static bool captureInCapturedRegion(CapturedRegionScopeInfo *RSI, 11818 VarDecl *Var, 11819 SourceLocation Loc, 11820 const bool BuildAndDiagnose, 11821 QualType &CaptureType, 11822 QualType &DeclRefType, 11823 const bool RefersToEnclosingLocal, 11824 Sema &S) { 11825 11826 // By default, capture variables by reference. 11827 bool ByRef = true; 11828 // Using an LValue reference type is consistent with Lambdas (see below). 11829 CaptureType = S.Context.getLValueReferenceType(DeclRefType); 11830 Expr *CopyExpr = nullptr; 11831 if (BuildAndDiagnose) { 11832 // The current implementation assumes that all variables are captured 11833 // by references. Since there is no capture by copy, no expression 11834 // evaluation will be needed. 11835 RecordDecl *RD = RSI->TheRecordDecl; 11836 11837 FieldDecl *Field 11838 = FieldDecl::Create(S.Context, RD, Loc, Loc, nullptr, CaptureType, 11839 S.Context.getTrivialTypeSourceInfo(CaptureType, Loc), 11840 nullptr, false, ICIS_NoInit); 11841 Field->setImplicit(true); 11842 Field->setAccess(AS_private); 11843 RD->addDecl(Field); 11844 11845 CopyExpr = new (S.Context) DeclRefExpr(Var, RefersToEnclosingLocal, 11846 DeclRefType, VK_LValue, Loc); 11847 Var->setReferenced(true); 11848 Var->markUsed(S.Context); 11849 } 11850 11851 // Actually capture the variable. 11852 if (BuildAndDiagnose) 11853 RSI->addCapture(Var, /*isBlock*/false, ByRef, RefersToEnclosingLocal, Loc, 11854 SourceLocation(), CaptureType, CopyExpr); 11855 11856 11857 return true; 11858 } 11859 11860 /// \brief Create a field within the lambda class for the variable 11861 /// being captured. Handle Array captures. 11862 static ExprResult addAsFieldToClosureType(Sema &S, 11863 LambdaScopeInfo *LSI, 11864 VarDecl *Var, QualType FieldType, 11865 QualType DeclRefType, 11866 SourceLocation Loc, 11867 bool RefersToEnclosingLocal) { 11868 CXXRecordDecl *Lambda = LSI->Lambda; 11869 11870 // Build the non-static data member. 11871 FieldDecl *Field 11872 = FieldDecl::Create(S.Context, Lambda, Loc, Loc, nullptr, FieldType, 11873 S.Context.getTrivialTypeSourceInfo(FieldType, Loc), 11874 nullptr, false, ICIS_NoInit); 11875 Field->setImplicit(true); 11876 Field->setAccess(AS_private); 11877 Lambda->addDecl(Field); 11878 11879 // C++11 [expr.prim.lambda]p21: 11880 // When the lambda-expression is evaluated, the entities that 11881 // are captured by copy are used to direct-initialize each 11882 // corresponding non-static data member of the resulting closure 11883 // object. (For array members, the array elements are 11884 // direct-initialized in increasing subscript order.) These 11885 // initializations are performed in the (unspecified) order in 11886 // which the non-static data members are declared. 11887 11888 // Introduce a new evaluation context for the initialization, so 11889 // that temporaries introduced as part of the capture are retained 11890 // to be re-"exported" from the lambda expression itself. 11891 EnterExpressionEvaluationContext scope(S, Sema::PotentiallyEvaluated); 11892 11893 // C++ [expr.prim.labda]p12: 11894 // An entity captured by a lambda-expression is odr-used (3.2) in 11895 // the scope containing the lambda-expression. 11896 Expr *Ref = new (S.Context) DeclRefExpr(Var, RefersToEnclosingLocal, 11897 DeclRefType, VK_LValue, Loc); 11898 Var->setReferenced(true); 11899 Var->markUsed(S.Context); 11900 11901 // When the field has array type, create index variables for each 11902 // dimension of the array. We use these index variables to subscript 11903 // the source array, and other clients (e.g., CodeGen) will perform 11904 // the necessary iteration with these index variables. 11905 SmallVector<VarDecl *, 4> IndexVariables; 11906 QualType BaseType = FieldType; 11907 QualType SizeType = S.Context.getSizeType(); 11908 LSI->ArrayIndexStarts.push_back(LSI->ArrayIndexVars.size()); 11909 while (const ConstantArrayType *Array 11910 = S.Context.getAsConstantArrayType(BaseType)) { 11911 // Create the iteration variable for this array index. 11912 IdentifierInfo *IterationVarName = nullptr; 11913 { 11914 SmallString<8> Str; 11915 llvm::raw_svector_ostream OS(Str); 11916 OS << "__i" << IndexVariables.size(); 11917 IterationVarName = &S.Context.Idents.get(OS.str()); 11918 } 11919 VarDecl *IterationVar 11920 = VarDecl::Create(S.Context, S.CurContext, Loc, Loc, 11921 IterationVarName, SizeType, 11922 S.Context.getTrivialTypeSourceInfo(SizeType, Loc), 11923 SC_None); 11924 IndexVariables.push_back(IterationVar); 11925 LSI->ArrayIndexVars.push_back(IterationVar); 11926 11927 // Create a reference to the iteration variable. 11928 ExprResult IterationVarRef 11929 = S.BuildDeclRefExpr(IterationVar, SizeType, VK_LValue, Loc); 11930 assert(!IterationVarRef.isInvalid() && 11931 "Reference to invented variable cannot fail!"); 11932 IterationVarRef = S.DefaultLvalueConversion(IterationVarRef.get()); 11933 assert(!IterationVarRef.isInvalid() && 11934 "Conversion of invented variable cannot fail!"); 11935 11936 // Subscript the array with this iteration variable. 11937 ExprResult Subscript = S.CreateBuiltinArraySubscriptExpr( 11938 Ref, Loc, IterationVarRef.get(), Loc); 11939 if (Subscript.isInvalid()) { 11940 S.CleanupVarDeclMarking(); 11941 S.DiscardCleanupsInEvaluationContext(); 11942 return ExprError(); 11943 } 11944 11945 Ref = Subscript.get(); 11946 BaseType = Array->getElementType(); 11947 } 11948 11949 // Construct the entity that we will be initializing. For an array, this 11950 // will be first element in the array, which may require several levels 11951 // of array-subscript entities. 11952 SmallVector<InitializedEntity, 4> Entities; 11953 Entities.reserve(1 + IndexVariables.size()); 11954 Entities.push_back( 11955 InitializedEntity::InitializeLambdaCapture(Var->getIdentifier(), 11956 Field->getType(), Loc)); 11957 for (unsigned I = 0, N = IndexVariables.size(); I != N; ++I) 11958 Entities.push_back(InitializedEntity::InitializeElement(S.Context, 11959 0, 11960 Entities.back())); 11961 11962 InitializationKind InitKind 11963 = InitializationKind::CreateDirect(Loc, Loc, Loc); 11964 InitializationSequence Init(S, Entities.back(), InitKind, Ref); 11965 ExprResult Result(true); 11966 if (!Init.Diagnose(S, Entities.back(), InitKind, Ref)) 11967 Result = Init.Perform(S, Entities.back(), InitKind, Ref); 11968 11969 // If this initialization requires any cleanups (e.g., due to a 11970 // default argument to a copy constructor), note that for the 11971 // lambda. 11972 if (S.ExprNeedsCleanups) 11973 LSI->ExprNeedsCleanups = true; 11974 11975 // Exit the expression evaluation context used for the capture. 11976 S.CleanupVarDeclMarking(); 11977 S.DiscardCleanupsInEvaluationContext(); 11978 return Result; 11979 } 11980 11981 11982 11983 /// \brief Capture the given variable in the lambda. 11984 static bool captureInLambda(LambdaScopeInfo *LSI, 11985 VarDecl *Var, 11986 SourceLocation Loc, 11987 const bool BuildAndDiagnose, 11988 QualType &CaptureType, 11989 QualType &DeclRefType, 11990 const bool RefersToEnclosingLocal, 11991 const Sema::TryCaptureKind Kind, 11992 SourceLocation EllipsisLoc, 11993 const bool IsTopScope, 11994 Sema &S) { 11995 11996 // Determine whether we are capturing by reference or by value. 11997 bool ByRef = false; 11998 if (IsTopScope && Kind != Sema::TryCapture_Implicit) { 11999 ByRef = (Kind == Sema::TryCapture_ExplicitByRef); 12000 } else { 12001 ByRef = (LSI->ImpCaptureStyle == LambdaScopeInfo::ImpCap_LambdaByref); 12002 } 12003 12004 // Compute the type of the field that will capture this variable. 12005 if (ByRef) { 12006 // C++11 [expr.prim.lambda]p15: 12007 // An entity is captured by reference if it is implicitly or 12008 // explicitly captured but not captured by copy. It is 12009 // unspecified whether additional unnamed non-static data 12010 // members are declared in the closure type for entities 12011 // captured by reference. 12012 // 12013 // FIXME: It is not clear whether we want to build an lvalue reference 12014 // to the DeclRefType or to CaptureType.getNonReferenceType(). GCC appears 12015 // to do the former, while EDG does the latter. Core issue 1249 will 12016 // clarify, but for now we follow GCC because it's a more permissive and 12017 // easily defensible position. 12018 CaptureType = S.Context.getLValueReferenceType(DeclRefType); 12019 } else { 12020 // C++11 [expr.prim.lambda]p14: 12021 // For each entity captured by copy, an unnamed non-static 12022 // data member is declared in the closure type. The 12023 // declaration order of these members is unspecified. The type 12024 // of such a data member is the type of the corresponding 12025 // captured entity if the entity is not a reference to an 12026 // object, or the referenced type otherwise. [Note: If the 12027 // captured entity is a reference to a function, the 12028 // corresponding data member is also a reference to a 12029 // function. - end note ] 12030 if (const ReferenceType *RefType = CaptureType->getAs<ReferenceType>()){ 12031 if (!RefType->getPointeeType()->isFunctionType()) 12032 CaptureType = RefType->getPointeeType(); 12033 } 12034 12035 // Forbid the lambda copy-capture of autoreleasing variables. 12036 if (CaptureType.getObjCLifetime() == Qualifiers::OCL_Autoreleasing) { 12037 if (BuildAndDiagnose) { 12038 S.Diag(Loc, diag::err_arc_autoreleasing_capture) << /*lambda*/ 1; 12039 S.Diag(Var->getLocation(), diag::note_previous_decl) 12040 << Var->getDeclName(); 12041 } 12042 return false; 12043 } 12044 12045 // Make sure that by-copy captures are of a complete and non-abstract type. 12046 if (BuildAndDiagnose) { 12047 if (!CaptureType->isDependentType() && 12048 S.RequireCompleteType(Loc, CaptureType, 12049 diag::err_capture_of_incomplete_type, 12050 Var->getDeclName())) 12051 return false; 12052 12053 if (S.RequireNonAbstractType(Loc, CaptureType, 12054 diag::err_capture_of_abstract_type)) 12055 return false; 12056 } 12057 } 12058 12059 // Capture this variable in the lambda. 12060 Expr *CopyExpr = nullptr; 12061 if (BuildAndDiagnose) { 12062 ExprResult Result = addAsFieldToClosureType(S, LSI, Var, 12063 CaptureType, DeclRefType, Loc, 12064 RefersToEnclosingLocal); 12065 if (!Result.isInvalid()) 12066 CopyExpr = Result.get(); 12067 } 12068 12069 // Compute the type of a reference to this captured variable. 12070 if (ByRef) 12071 DeclRefType = CaptureType.getNonReferenceType(); 12072 else { 12073 // C++ [expr.prim.lambda]p5: 12074 // The closure type for a lambda-expression has a public inline 12075 // function call operator [...]. This function call operator is 12076 // declared const (9.3.1) if and only if the lambda-expression’s 12077 // parameter-declaration-clause is not followed by mutable. 12078 DeclRefType = CaptureType.getNonReferenceType(); 12079 if (!LSI->Mutable && !CaptureType->isReferenceType()) 12080 DeclRefType.addConst(); 12081 } 12082 12083 // Add the capture. 12084 if (BuildAndDiagnose) 12085 LSI->addCapture(Var, /*IsBlock=*/false, ByRef, RefersToEnclosingLocal, 12086 Loc, EllipsisLoc, CaptureType, CopyExpr); 12087 12088 return true; 12089 } 12090 12091 12092 bool Sema::tryCaptureVariable(VarDecl *Var, SourceLocation ExprLoc, 12093 TryCaptureKind Kind, SourceLocation EllipsisLoc, 12094 bool BuildAndDiagnose, 12095 QualType &CaptureType, 12096 QualType &DeclRefType, 12097 const unsigned *const FunctionScopeIndexToStopAt) { 12098 bool Nested = false; 12099 12100 DeclContext *DC = CurContext; 12101 const unsigned MaxFunctionScopesIndex = FunctionScopeIndexToStopAt 12102 ? *FunctionScopeIndexToStopAt : FunctionScopes.size() - 1; 12103 // We need to sync up the Declaration Context with the 12104 // FunctionScopeIndexToStopAt 12105 if (FunctionScopeIndexToStopAt) { 12106 unsigned FSIndex = FunctionScopes.size() - 1; 12107 while (FSIndex != MaxFunctionScopesIndex) { 12108 DC = getLambdaAwareParentOfDeclContext(DC); 12109 --FSIndex; 12110 } 12111 } 12112 12113 12114 // If the variable is declared in the current context (and is not an 12115 // init-capture), there is no need to capture it. 12116 if (!Var->isInitCapture() && Var->getDeclContext() == DC) return true; 12117 if (!Var->hasLocalStorage()) return true; 12118 12119 // Walk up the stack to determine whether we can capture the variable, 12120 // performing the "simple" checks that don't depend on type. We stop when 12121 // we've either hit the declared scope of the variable or find an existing 12122 // capture of that variable. We start from the innermost capturing-entity 12123 // (the DC) and ensure that all intervening capturing-entities 12124 // (blocks/lambdas etc.) between the innermost capturer and the variable`s 12125 // declcontext can either capture the variable or have already captured 12126 // the variable. 12127 CaptureType = Var->getType(); 12128 DeclRefType = CaptureType.getNonReferenceType(); 12129 bool Explicit = (Kind != TryCapture_Implicit); 12130 unsigned FunctionScopesIndex = MaxFunctionScopesIndex; 12131 do { 12132 // Only block literals, captured statements, and lambda expressions can 12133 // capture; other scopes don't work. 12134 DeclContext *ParentDC = getParentOfCapturingContextOrNull(DC, Var, 12135 ExprLoc, 12136 BuildAndDiagnose, 12137 *this); 12138 if (!ParentDC) return true; 12139 12140 FunctionScopeInfo *FSI = FunctionScopes[FunctionScopesIndex]; 12141 CapturingScopeInfo *CSI = cast<CapturingScopeInfo>(FSI); 12142 12143 12144 // Check whether we've already captured it. 12145 if (isVariableAlreadyCapturedInScopeInfo(CSI, Var, Nested, CaptureType, 12146 DeclRefType)) 12147 break; 12148 // If we are instantiating a generic lambda call operator body, 12149 // we do not want to capture new variables. What was captured 12150 // during either a lambdas transformation or initial parsing 12151 // should be used. 12152 if (isGenericLambdaCallOperatorSpecialization(DC)) { 12153 if (BuildAndDiagnose) { 12154 LambdaScopeInfo *LSI = cast<LambdaScopeInfo>(CSI); 12155 if (LSI->ImpCaptureStyle == CapturingScopeInfo::ImpCap_None) { 12156 Diag(ExprLoc, diag::err_lambda_impcap) << Var->getDeclName(); 12157 Diag(Var->getLocation(), diag::note_previous_decl) 12158 << Var->getDeclName(); 12159 Diag(LSI->Lambda->getLocStart(), diag::note_lambda_decl); 12160 } else 12161 diagnoseUncapturableValueReference(*this, ExprLoc, Var, DC); 12162 } 12163 return true; 12164 } 12165 // Certain capturing entities (lambdas, blocks etc.) are not allowed to capture 12166 // certain types of variables (unnamed, variably modified types etc.) 12167 // so check for eligibility. 12168 if (!isVariableCapturable(CSI, Var, ExprLoc, BuildAndDiagnose, *this)) 12169 return true; 12170 12171 // Try to capture variable-length arrays types. 12172 if (Var->getType()->isVariablyModifiedType()) { 12173 // We're going to walk down into the type and look for VLA 12174 // expressions. 12175 QualType QTy = Var->getType(); 12176 if (ParmVarDecl *PVD = dyn_cast_or_null<ParmVarDecl>(Var)) 12177 QTy = PVD->getOriginalType(); 12178 do { 12179 const Type *Ty = QTy.getTypePtr(); 12180 switch (Ty->getTypeClass()) { 12181 #define TYPE(Class, Base) 12182 #define ABSTRACT_TYPE(Class, Base) 12183 #define NON_CANONICAL_TYPE(Class, Base) 12184 #define DEPENDENT_TYPE(Class, Base) case Type::Class: 12185 #define NON_CANONICAL_UNLESS_DEPENDENT_TYPE(Class, Base) 12186 #include "clang/AST/TypeNodes.def" 12187 QTy = QualType(); 12188 break; 12189 // These types are never variably-modified. 12190 case Type::Builtin: 12191 case Type::Complex: 12192 case Type::Vector: 12193 case Type::ExtVector: 12194 case Type::Record: 12195 case Type::Enum: 12196 case Type::Elaborated: 12197 case Type::TemplateSpecialization: 12198 case Type::ObjCObject: 12199 case Type::ObjCInterface: 12200 case Type::ObjCObjectPointer: 12201 llvm_unreachable("type class is never variably-modified!"); 12202 case Type::Adjusted: 12203 QTy = cast<AdjustedType>(Ty)->getOriginalType(); 12204 break; 12205 case Type::Decayed: 12206 QTy = cast<DecayedType>(Ty)->getPointeeType(); 12207 break; 12208 case Type::Pointer: 12209 QTy = cast<PointerType>(Ty)->getPointeeType(); 12210 break; 12211 case Type::BlockPointer: 12212 QTy = cast<BlockPointerType>(Ty)->getPointeeType(); 12213 break; 12214 case Type::LValueReference: 12215 case Type::RValueReference: 12216 QTy = cast<ReferenceType>(Ty)->getPointeeType(); 12217 break; 12218 case Type::MemberPointer: 12219 QTy = cast<MemberPointerType>(Ty)->getPointeeType(); 12220 break; 12221 case Type::ConstantArray: 12222 case Type::IncompleteArray: 12223 // Losing element qualification here is fine. 12224 QTy = cast<ArrayType>(Ty)->getElementType(); 12225 break; 12226 case Type::VariableArray: { 12227 // Losing element qualification here is fine. 12228 const VariableArrayType *Vat = cast<VariableArrayType>(Ty); 12229 12230 // Unknown size indication requires no size computation. 12231 // Otherwise, evaluate and record it. 12232 if (Expr *Size = Vat->getSizeExpr()) { 12233 MarkDeclarationsReferencedInExpr(Size); 12234 } 12235 QTy = Vat->getElementType(); 12236 break; 12237 } 12238 case Type::FunctionProto: 12239 case Type::FunctionNoProto: 12240 QTy = cast<FunctionType>(Ty)->getReturnType(); 12241 break; 12242 case Type::Paren: 12243 case Type::TypeOf: 12244 case Type::UnaryTransform: 12245 case Type::Attributed: 12246 case Type::SubstTemplateTypeParm: 12247 case Type::PackExpansion: 12248 // Keep walking after single level desugaring. 12249 QTy = QTy.getSingleStepDesugaredType(getASTContext()); 12250 break; 12251 case Type::Typedef: 12252 QTy = cast<TypedefType>(Ty)->desugar(); 12253 break; 12254 case Type::Decltype: 12255 QTy = cast<DecltypeType>(Ty)->desugar(); 12256 break; 12257 case Type::Auto: 12258 QTy = cast<AutoType>(Ty)->getDeducedType(); 12259 break; 12260 case Type::TypeOfExpr: 12261 QTy = cast<TypeOfExprType>(Ty)->getUnderlyingExpr()->getType(); 12262 break; 12263 case Type::Atomic: 12264 QTy = cast<AtomicType>(Ty)->getValueType(); 12265 break; 12266 } 12267 } while (!QTy.isNull() && QTy->isVariablyModifiedType()); 12268 } 12269 12270 if (CSI->ImpCaptureStyle == CapturingScopeInfo::ImpCap_None && !Explicit) { 12271 // No capture-default, and this is not an explicit capture 12272 // so cannot capture this variable. 12273 if (BuildAndDiagnose) { 12274 Diag(ExprLoc, diag::err_lambda_impcap) << Var->getDeclName(); 12275 Diag(Var->getLocation(), diag::note_previous_decl) 12276 << Var->getDeclName(); 12277 Diag(cast<LambdaScopeInfo>(CSI)->Lambda->getLocStart(), 12278 diag::note_lambda_decl); 12279 // FIXME: If we error out because an outer lambda can not implicitly 12280 // capture a variable that an inner lambda explicitly captures, we 12281 // should have the inner lambda do the explicit capture - because 12282 // it makes for cleaner diagnostics later. This would purely be done 12283 // so that the diagnostic does not misleadingly claim that a variable 12284 // can not be captured by a lambda implicitly even though it is captured 12285 // explicitly. Suggestion: 12286 // - create const bool VariableCaptureWasInitiallyExplicit = Explicit 12287 // at the function head 12288 // - cache the StartingDeclContext - this must be a lambda 12289 // - captureInLambda in the innermost lambda the variable. 12290 } 12291 return true; 12292 } 12293 12294 FunctionScopesIndex--; 12295 DC = ParentDC; 12296 Explicit = false; 12297 } while (!Var->getDeclContext()->Equals(DC)); 12298 12299 // Walk back down the scope stack, (e.g. from outer lambda to inner lambda) 12300 // computing the type of the capture at each step, checking type-specific 12301 // requirements, and adding captures if requested. 12302 // If the variable had already been captured previously, we start capturing 12303 // at the lambda nested within that one. 12304 for (unsigned I = ++FunctionScopesIndex, N = MaxFunctionScopesIndex + 1; I != N; 12305 ++I) { 12306 CapturingScopeInfo *CSI = cast<CapturingScopeInfo>(FunctionScopes[I]); 12307 12308 if (BlockScopeInfo *BSI = dyn_cast<BlockScopeInfo>(CSI)) { 12309 if (!captureInBlock(BSI, Var, ExprLoc, 12310 BuildAndDiagnose, CaptureType, 12311 DeclRefType, Nested, *this)) 12312 return true; 12313 Nested = true; 12314 } else if (CapturedRegionScopeInfo *RSI = dyn_cast<CapturedRegionScopeInfo>(CSI)) { 12315 if (!captureInCapturedRegion(RSI, Var, ExprLoc, 12316 BuildAndDiagnose, CaptureType, 12317 DeclRefType, Nested, *this)) 12318 return true; 12319 Nested = true; 12320 } else { 12321 LambdaScopeInfo *LSI = cast<LambdaScopeInfo>(CSI); 12322 if (!captureInLambda(LSI, Var, ExprLoc, 12323 BuildAndDiagnose, CaptureType, 12324 DeclRefType, Nested, Kind, EllipsisLoc, 12325 /*IsTopScope*/I == N - 1, *this)) 12326 return true; 12327 Nested = true; 12328 } 12329 } 12330 return false; 12331 } 12332 12333 bool Sema::tryCaptureVariable(VarDecl *Var, SourceLocation Loc, 12334 TryCaptureKind Kind, SourceLocation EllipsisLoc) { 12335 QualType CaptureType; 12336 QualType DeclRefType; 12337 return tryCaptureVariable(Var, Loc, Kind, EllipsisLoc, 12338 /*BuildAndDiagnose=*/true, CaptureType, 12339 DeclRefType, nullptr); 12340 } 12341 12342 QualType Sema::getCapturedDeclRefType(VarDecl *Var, SourceLocation Loc) { 12343 QualType CaptureType; 12344 QualType DeclRefType; 12345 12346 // Determine whether we can capture this variable. 12347 if (tryCaptureVariable(Var, Loc, TryCapture_Implicit, SourceLocation(), 12348 /*BuildAndDiagnose=*/false, CaptureType, 12349 DeclRefType, nullptr)) 12350 return QualType(); 12351 12352 return DeclRefType; 12353 } 12354 12355 12356 12357 // If either the type of the variable or the initializer is dependent, 12358 // return false. Otherwise, determine whether the variable is a constant 12359 // expression. Use this if you need to know if a variable that might or 12360 // might not be dependent is truly a constant expression. 12361 static inline bool IsVariableNonDependentAndAConstantExpression(VarDecl *Var, 12362 ASTContext &Context) { 12363 12364 if (Var->getType()->isDependentType()) 12365 return false; 12366 const VarDecl *DefVD = nullptr; 12367 Var->getAnyInitializer(DefVD); 12368 if (!DefVD) 12369 return false; 12370 EvaluatedStmt *Eval = DefVD->ensureEvaluatedStmt(); 12371 Expr *Init = cast<Expr>(Eval->Value); 12372 if (Init->isValueDependent()) 12373 return false; 12374 return IsVariableAConstantExpression(Var, Context); 12375 } 12376 12377 12378 void Sema::UpdateMarkingForLValueToRValue(Expr *E) { 12379 // Per C++11 [basic.def.odr], a variable is odr-used "unless it is 12380 // an object that satisfies the requirements for appearing in a 12381 // constant expression (5.19) and the lvalue-to-rvalue conversion (4.1) 12382 // is immediately applied." This function handles the lvalue-to-rvalue 12383 // conversion part. 12384 MaybeODRUseExprs.erase(E->IgnoreParens()); 12385 12386 // If we are in a lambda, check if this DeclRefExpr or MemberExpr refers 12387 // to a variable that is a constant expression, and if so, identify it as 12388 // a reference to a variable that does not involve an odr-use of that 12389 // variable. 12390 if (LambdaScopeInfo *LSI = getCurLambda()) { 12391 Expr *SansParensExpr = E->IgnoreParens(); 12392 VarDecl *Var = nullptr; 12393 if (DeclRefExpr *DRE = dyn_cast<DeclRefExpr>(SansParensExpr)) 12394 Var = dyn_cast<VarDecl>(DRE->getFoundDecl()); 12395 else if (MemberExpr *ME = dyn_cast<MemberExpr>(SansParensExpr)) 12396 Var = dyn_cast<VarDecl>(ME->getMemberDecl()); 12397 12398 if (Var && IsVariableNonDependentAndAConstantExpression(Var, Context)) 12399 LSI->markVariableExprAsNonODRUsed(SansParensExpr); 12400 } 12401 } 12402 12403 ExprResult Sema::ActOnConstantExpression(ExprResult Res) { 12404 if (!Res.isUsable()) 12405 return Res; 12406 12407 // If a constant-expression is a reference to a variable where we delay 12408 // deciding whether it is an odr-use, just assume we will apply the 12409 // lvalue-to-rvalue conversion. In the one case where this doesn't happen 12410 // (a non-type template argument), we have special handling anyway. 12411 UpdateMarkingForLValueToRValue(Res.get()); 12412 return Res; 12413 } 12414 12415 void Sema::CleanupVarDeclMarking() { 12416 for (llvm::SmallPtrSetIterator<Expr*> i = MaybeODRUseExprs.begin(), 12417 e = MaybeODRUseExprs.end(); 12418 i != e; ++i) { 12419 VarDecl *Var; 12420 SourceLocation Loc; 12421 if (DeclRefExpr *DRE = dyn_cast<DeclRefExpr>(*i)) { 12422 Var = cast<VarDecl>(DRE->getDecl()); 12423 Loc = DRE->getLocation(); 12424 } else if (MemberExpr *ME = dyn_cast<MemberExpr>(*i)) { 12425 Var = cast<VarDecl>(ME->getMemberDecl()); 12426 Loc = ME->getMemberLoc(); 12427 } else { 12428 llvm_unreachable("Unexpected expression"); 12429 } 12430 12431 MarkVarDeclODRUsed(Var, Loc, *this, 12432 /*MaxFunctionScopeIndex Pointer*/ nullptr); 12433 } 12434 12435 MaybeODRUseExprs.clear(); 12436 } 12437 12438 12439 static void DoMarkVarDeclReferenced(Sema &SemaRef, SourceLocation Loc, 12440 VarDecl *Var, Expr *E) { 12441 assert((!E || isa<DeclRefExpr>(E) || isa<MemberExpr>(E)) && 12442 "Invalid Expr argument to DoMarkVarDeclReferenced"); 12443 Var->setReferenced(); 12444 12445 TemplateSpecializationKind TSK = Var->getTemplateSpecializationKind(); 12446 bool MarkODRUsed = true; 12447 12448 // If the context is not potentially evaluated, this is not an odr-use and 12449 // does not trigger instantiation. 12450 if (!IsPotentiallyEvaluatedContext(SemaRef)) { 12451 if (SemaRef.isUnevaluatedContext()) 12452 return; 12453 12454 // If we don't yet know whether this context is going to end up being an 12455 // evaluated context, and we're referencing a variable from an enclosing 12456 // scope, add a potential capture. 12457 // 12458 // FIXME: Is this necessary? These contexts are only used for default 12459 // arguments, where local variables can't be used. 12460 const bool RefersToEnclosingScope = 12461 (SemaRef.CurContext != Var->getDeclContext() && 12462 Var->getDeclContext()->isFunctionOrMethod() && Var->hasLocalStorage()); 12463 if (RefersToEnclosingScope) { 12464 if (LambdaScopeInfo *const LSI = SemaRef.getCurLambda()) { 12465 // If a variable could potentially be odr-used, defer marking it so 12466 // until we finish analyzing the full expression for any 12467 // lvalue-to-rvalue 12468 // or discarded value conversions that would obviate odr-use. 12469 // Add it to the list of potential captures that will be analyzed 12470 // later (ActOnFinishFullExpr) for eventual capture and odr-use marking 12471 // unless the variable is a reference that was initialized by a constant 12472 // expression (this will never need to be captured or odr-used). 12473 assert(E && "Capture variable should be used in an expression."); 12474 if (!Var->getType()->isReferenceType() || 12475 !IsVariableNonDependentAndAConstantExpression(Var, SemaRef.Context)) 12476 LSI->addPotentialCapture(E->IgnoreParens()); 12477 } 12478 } 12479 12480 if (!isTemplateInstantiation(TSK)) 12481 return; 12482 12483 // Instantiate, but do not mark as odr-used, variable templates. 12484 MarkODRUsed = false; 12485 } 12486 12487 VarTemplateSpecializationDecl *VarSpec = 12488 dyn_cast<VarTemplateSpecializationDecl>(Var); 12489 assert(!isa<VarTemplatePartialSpecializationDecl>(Var) && 12490 "Can't instantiate a partial template specialization."); 12491 12492 // Perform implicit instantiation of static data members, static data member 12493 // templates of class templates, and variable template specializations. Delay 12494 // instantiations of variable templates, except for those that could be used 12495 // in a constant expression. 12496 if (isTemplateInstantiation(TSK)) { 12497 bool TryInstantiating = TSK == TSK_ImplicitInstantiation; 12498 12499 if (TryInstantiating && !isa<VarTemplateSpecializationDecl>(Var)) { 12500 if (Var->getPointOfInstantiation().isInvalid()) { 12501 // This is a modification of an existing AST node. Notify listeners. 12502 if (ASTMutationListener *L = SemaRef.getASTMutationListener()) 12503 L->StaticDataMemberInstantiated(Var); 12504 } else if (!Var->isUsableInConstantExpressions(SemaRef.Context)) 12505 // Don't bother trying to instantiate it again, unless we might need 12506 // its initializer before we get to the end of the TU. 12507 TryInstantiating = false; 12508 } 12509 12510 if (Var->getPointOfInstantiation().isInvalid()) 12511 Var->setTemplateSpecializationKind(TSK, Loc); 12512 12513 if (TryInstantiating) { 12514 SourceLocation PointOfInstantiation = Var->getPointOfInstantiation(); 12515 bool InstantiationDependent = false; 12516 bool IsNonDependent = 12517 VarSpec ? !TemplateSpecializationType::anyDependentTemplateArguments( 12518 VarSpec->getTemplateArgsInfo(), InstantiationDependent) 12519 : true; 12520 12521 // Do not instantiate specializations that are still type-dependent. 12522 if (IsNonDependent) { 12523 if (Var->isUsableInConstantExpressions(SemaRef.Context)) { 12524 // Do not defer instantiations of variables which could be used in a 12525 // constant expression. 12526 SemaRef.InstantiateVariableDefinition(PointOfInstantiation, Var); 12527 } else { 12528 SemaRef.PendingInstantiations 12529 .push_back(std::make_pair(Var, PointOfInstantiation)); 12530 } 12531 } 12532 } 12533 } 12534 12535 if(!MarkODRUsed) return; 12536 12537 // Per C++11 [basic.def.odr], a variable is odr-used "unless it satisfies 12538 // the requirements for appearing in a constant expression (5.19) and, if 12539 // it is an object, the lvalue-to-rvalue conversion (4.1) 12540 // is immediately applied." We check the first part here, and 12541 // Sema::UpdateMarkingForLValueToRValue deals with the second part. 12542 // Note that we use the C++11 definition everywhere because nothing in 12543 // C++03 depends on whether we get the C++03 version correct. The second 12544 // part does not apply to references, since they are not objects. 12545 if (E && IsVariableAConstantExpression(Var, SemaRef.Context)) { 12546 // A reference initialized by a constant expression can never be 12547 // odr-used, so simply ignore it. 12548 if (!Var->getType()->isReferenceType()) 12549 SemaRef.MaybeODRUseExprs.insert(E); 12550 } else 12551 MarkVarDeclODRUsed(Var, Loc, SemaRef, 12552 /*MaxFunctionScopeIndex ptr*/ nullptr); 12553 } 12554 12555 /// \brief Mark a variable referenced, and check whether it is odr-used 12556 /// (C++ [basic.def.odr]p2, C99 6.9p3). Note that this should not be 12557 /// used directly for normal expressions referring to VarDecl. 12558 void Sema::MarkVariableReferenced(SourceLocation Loc, VarDecl *Var) { 12559 DoMarkVarDeclReferenced(*this, Loc, Var, nullptr); 12560 } 12561 12562 static void MarkExprReferenced(Sema &SemaRef, SourceLocation Loc, 12563 Decl *D, Expr *E, bool OdrUse) { 12564 if (VarDecl *Var = dyn_cast<VarDecl>(D)) { 12565 DoMarkVarDeclReferenced(SemaRef, Loc, Var, E); 12566 return; 12567 } 12568 12569 SemaRef.MarkAnyDeclReferenced(Loc, D, OdrUse); 12570 12571 // If this is a call to a method via a cast, also mark the method in the 12572 // derived class used in case codegen can devirtualize the call. 12573 const MemberExpr *ME = dyn_cast<MemberExpr>(E); 12574 if (!ME) 12575 return; 12576 CXXMethodDecl *MD = dyn_cast<CXXMethodDecl>(ME->getMemberDecl()); 12577 if (!MD) 12578 return; 12579 const Expr *Base = ME->getBase(); 12580 const CXXRecordDecl *MostDerivedClassDecl = Base->getBestDynamicClassType(); 12581 if (!MostDerivedClassDecl) 12582 return; 12583 CXXMethodDecl *DM = MD->getCorrespondingMethodInClass(MostDerivedClassDecl); 12584 if (!DM || DM->isPure()) 12585 return; 12586 SemaRef.MarkAnyDeclReferenced(Loc, DM, OdrUse); 12587 } 12588 12589 /// \brief Perform reference-marking and odr-use handling for a DeclRefExpr. 12590 void Sema::MarkDeclRefReferenced(DeclRefExpr *E) { 12591 // TODO: update this with DR# once a defect report is filed. 12592 // C++11 defect. The address of a pure member should not be an ODR use, even 12593 // if it's a qualified reference. 12594 bool OdrUse = true; 12595 if (CXXMethodDecl *Method = dyn_cast<CXXMethodDecl>(E->getDecl())) 12596 if (Method->isVirtual()) 12597 OdrUse = false; 12598 MarkExprReferenced(*this, E->getLocation(), E->getDecl(), E, OdrUse); 12599 } 12600 12601 /// \brief Perform reference-marking and odr-use handling for a MemberExpr. 12602 void Sema::MarkMemberReferenced(MemberExpr *E) { 12603 // C++11 [basic.def.odr]p2: 12604 // A non-overloaded function whose name appears as a potentially-evaluated 12605 // expression or a member of a set of candidate functions, if selected by 12606 // overload resolution when referred to from a potentially-evaluated 12607 // expression, is odr-used, unless it is a pure virtual function and its 12608 // name is not explicitly qualified. 12609 bool OdrUse = true; 12610 if (!E->hasQualifier()) { 12611 if (CXXMethodDecl *Method = dyn_cast<CXXMethodDecl>(E->getMemberDecl())) 12612 if (Method->isPure()) 12613 OdrUse = false; 12614 } 12615 SourceLocation Loc = E->getMemberLoc().isValid() ? 12616 E->getMemberLoc() : E->getLocStart(); 12617 MarkExprReferenced(*this, Loc, E->getMemberDecl(), E, OdrUse); 12618 } 12619 12620 /// \brief Perform marking for a reference to an arbitrary declaration. It 12621 /// marks the declaration referenced, and performs odr-use checking for 12622 /// functions and variables. This method should not be used when building a 12623 /// normal expression which refers to a variable. 12624 void Sema::MarkAnyDeclReferenced(SourceLocation Loc, Decl *D, bool OdrUse) { 12625 if (OdrUse) { 12626 if (VarDecl *VD = dyn_cast<VarDecl>(D)) { 12627 MarkVariableReferenced(Loc, VD); 12628 return; 12629 } 12630 if (FunctionDecl *FD = dyn_cast<FunctionDecl>(D)) { 12631 MarkFunctionReferenced(Loc, FD); 12632 return; 12633 } 12634 } 12635 D->setReferenced(); 12636 } 12637 12638 namespace { 12639 // Mark all of the declarations referenced 12640 // FIXME: Not fully implemented yet! We need to have a better understanding 12641 // of when we're entering 12642 class MarkReferencedDecls : public RecursiveASTVisitor<MarkReferencedDecls> { 12643 Sema &S; 12644 SourceLocation Loc; 12645 12646 public: 12647 typedef RecursiveASTVisitor<MarkReferencedDecls> Inherited; 12648 12649 MarkReferencedDecls(Sema &S, SourceLocation Loc) : S(S), Loc(Loc) { } 12650 12651 bool TraverseTemplateArgument(const TemplateArgument &Arg); 12652 bool TraverseRecordType(RecordType *T); 12653 }; 12654 } 12655 12656 bool MarkReferencedDecls::TraverseTemplateArgument( 12657 const TemplateArgument &Arg) { 12658 if (Arg.getKind() == TemplateArgument::Declaration) { 12659 if (Decl *D = Arg.getAsDecl()) 12660 S.MarkAnyDeclReferenced(Loc, D, true); 12661 } 12662 12663 return Inherited::TraverseTemplateArgument(Arg); 12664 } 12665 12666 bool MarkReferencedDecls::TraverseRecordType(RecordType *T) { 12667 if (ClassTemplateSpecializationDecl *Spec 12668 = dyn_cast<ClassTemplateSpecializationDecl>(T->getDecl())) { 12669 const TemplateArgumentList &Args = Spec->getTemplateArgs(); 12670 return TraverseTemplateArguments(Args.data(), Args.size()); 12671 } 12672 12673 return true; 12674 } 12675 12676 void Sema::MarkDeclarationsReferencedInType(SourceLocation Loc, QualType T) { 12677 MarkReferencedDecls Marker(*this, Loc); 12678 Marker.TraverseType(Context.getCanonicalType(T)); 12679 } 12680 12681 namespace { 12682 /// \brief Helper class that marks all of the declarations referenced by 12683 /// potentially-evaluated subexpressions as "referenced". 12684 class EvaluatedExprMarker : public EvaluatedExprVisitor<EvaluatedExprMarker> { 12685 Sema &S; 12686 bool SkipLocalVariables; 12687 12688 public: 12689 typedef EvaluatedExprVisitor<EvaluatedExprMarker> Inherited; 12690 12691 EvaluatedExprMarker(Sema &S, bool SkipLocalVariables) 12692 : Inherited(S.Context), S(S), SkipLocalVariables(SkipLocalVariables) { } 12693 12694 void VisitDeclRefExpr(DeclRefExpr *E) { 12695 // If we were asked not to visit local variables, don't. 12696 if (SkipLocalVariables) { 12697 if (VarDecl *VD = dyn_cast<VarDecl>(E->getDecl())) 12698 if (VD->hasLocalStorage()) 12699 return; 12700 } 12701 12702 S.MarkDeclRefReferenced(E); 12703 } 12704 12705 void VisitMemberExpr(MemberExpr *E) { 12706 S.MarkMemberReferenced(E); 12707 Inherited::VisitMemberExpr(E); 12708 } 12709 12710 void VisitCXXBindTemporaryExpr(CXXBindTemporaryExpr *E) { 12711 S.MarkFunctionReferenced(E->getLocStart(), 12712 const_cast<CXXDestructorDecl*>(E->getTemporary()->getDestructor())); 12713 Visit(E->getSubExpr()); 12714 } 12715 12716 void VisitCXXNewExpr(CXXNewExpr *E) { 12717 if (E->getOperatorNew()) 12718 S.MarkFunctionReferenced(E->getLocStart(), E->getOperatorNew()); 12719 if (E->getOperatorDelete()) 12720 S.MarkFunctionReferenced(E->getLocStart(), E->getOperatorDelete()); 12721 Inherited::VisitCXXNewExpr(E); 12722 } 12723 12724 void VisitCXXDeleteExpr(CXXDeleteExpr *E) { 12725 if (E->getOperatorDelete()) 12726 S.MarkFunctionReferenced(E->getLocStart(), E->getOperatorDelete()); 12727 QualType Destroyed = S.Context.getBaseElementType(E->getDestroyedType()); 12728 if (const RecordType *DestroyedRec = Destroyed->getAs<RecordType>()) { 12729 CXXRecordDecl *Record = cast<CXXRecordDecl>(DestroyedRec->getDecl()); 12730 S.MarkFunctionReferenced(E->getLocStart(), 12731 S.LookupDestructor(Record)); 12732 } 12733 12734 Inherited::VisitCXXDeleteExpr(E); 12735 } 12736 12737 void VisitCXXConstructExpr(CXXConstructExpr *E) { 12738 S.MarkFunctionReferenced(E->getLocStart(), E->getConstructor()); 12739 Inherited::VisitCXXConstructExpr(E); 12740 } 12741 12742 void VisitCXXDefaultArgExpr(CXXDefaultArgExpr *E) { 12743 Visit(E->getExpr()); 12744 } 12745 12746 void VisitImplicitCastExpr(ImplicitCastExpr *E) { 12747 Inherited::VisitImplicitCastExpr(E); 12748 12749 if (E->getCastKind() == CK_LValueToRValue) 12750 S.UpdateMarkingForLValueToRValue(E->getSubExpr()); 12751 } 12752 }; 12753 } 12754 12755 /// \brief Mark any declarations that appear within this expression or any 12756 /// potentially-evaluated subexpressions as "referenced". 12757 /// 12758 /// \param SkipLocalVariables If true, don't mark local variables as 12759 /// 'referenced'. 12760 void Sema::MarkDeclarationsReferencedInExpr(Expr *E, 12761 bool SkipLocalVariables) { 12762 EvaluatedExprMarker(*this, SkipLocalVariables).Visit(E); 12763 } 12764 12765 /// \brief Emit a diagnostic that describes an effect on the run-time behavior 12766 /// of the program being compiled. 12767 /// 12768 /// This routine emits the given diagnostic when the code currently being 12769 /// type-checked is "potentially evaluated", meaning that there is a 12770 /// possibility that the code will actually be executable. Code in sizeof() 12771 /// expressions, code used only during overload resolution, etc., are not 12772 /// potentially evaluated. This routine will suppress such diagnostics or, 12773 /// in the absolutely nutty case of potentially potentially evaluated 12774 /// expressions (C++ typeid), queue the diagnostic to potentially emit it 12775 /// later. 12776 /// 12777 /// This routine should be used for all diagnostics that describe the run-time 12778 /// behavior of a program, such as passing a non-POD value through an ellipsis. 12779 /// Failure to do so will likely result in spurious diagnostics or failures 12780 /// during overload resolution or within sizeof/alignof/typeof/typeid. 12781 bool Sema::DiagRuntimeBehavior(SourceLocation Loc, const Stmt *Statement, 12782 const PartialDiagnostic &PD) { 12783 switch (ExprEvalContexts.back().Context) { 12784 case Unevaluated: 12785 case UnevaluatedAbstract: 12786 // The argument will never be evaluated, so don't complain. 12787 break; 12788 12789 case ConstantEvaluated: 12790 // Relevant diagnostics should be produced by constant evaluation. 12791 break; 12792 12793 case PotentiallyEvaluated: 12794 case PotentiallyEvaluatedIfUsed: 12795 if (Statement && getCurFunctionOrMethodDecl()) { 12796 FunctionScopes.back()->PossiblyUnreachableDiags. 12797 push_back(sema::PossiblyUnreachableDiag(PD, Loc, Statement)); 12798 } 12799 else 12800 Diag(Loc, PD); 12801 12802 return true; 12803 } 12804 12805 return false; 12806 } 12807 12808 bool Sema::CheckCallReturnType(QualType ReturnType, SourceLocation Loc, 12809 CallExpr *CE, FunctionDecl *FD) { 12810 if (ReturnType->isVoidType() || !ReturnType->isIncompleteType()) 12811 return false; 12812 12813 // If we're inside a decltype's expression, don't check for a valid return 12814 // type or construct temporaries until we know whether this is the last call. 12815 if (ExprEvalContexts.back().IsDecltype) { 12816 ExprEvalContexts.back().DelayedDecltypeCalls.push_back(CE); 12817 return false; 12818 } 12819 12820 class CallReturnIncompleteDiagnoser : public TypeDiagnoser { 12821 FunctionDecl *FD; 12822 CallExpr *CE; 12823 12824 public: 12825 CallReturnIncompleteDiagnoser(FunctionDecl *FD, CallExpr *CE) 12826 : FD(FD), CE(CE) { } 12827 12828 void diagnose(Sema &S, SourceLocation Loc, QualType T) override { 12829 if (!FD) { 12830 S.Diag(Loc, diag::err_call_incomplete_return) 12831 << T << CE->getSourceRange(); 12832 return; 12833 } 12834 12835 S.Diag(Loc, diag::err_call_function_incomplete_return) 12836 << CE->getSourceRange() << FD->getDeclName() << T; 12837 S.Diag(FD->getLocation(), diag::note_entity_declared_at) 12838 << FD->getDeclName(); 12839 } 12840 } Diagnoser(FD, CE); 12841 12842 if (RequireCompleteType(Loc, ReturnType, Diagnoser)) 12843 return true; 12844 12845 return false; 12846 } 12847 12848 // Diagnose the s/=/==/ and s/\|=/!=/ typos. Note that adding parentheses 12849 // will prevent this condition from triggering, which is what we want. 12850 void Sema::DiagnoseAssignmentAsCondition(Expr *E) { 12851 SourceLocation Loc; 12852 12853 unsigned diagnostic = diag::warn_condition_is_assignment; 12854 bool IsOrAssign = false; 12855 12856 if (BinaryOperator *Op = dyn_cast<BinaryOperator>(E)) { 12857 if (Op->getOpcode() != BO_Assign && Op->getOpcode() != BO_OrAssign) 12858 return; 12859 12860 IsOrAssign = Op->getOpcode() == BO_OrAssign; 12861 12862 // Greylist some idioms by putting them into a warning subcategory. 12863 if (ObjCMessageExpr *ME 12864 = dyn_cast<ObjCMessageExpr>(Op->getRHS()->IgnoreParenCasts())) { 12865 Selector Sel = ME->getSelector(); 12866 12867 // self = [<foo> init...] 12868 if (isSelfExpr(Op->getLHS()) && ME->getMethodFamily() == OMF_init) 12869 diagnostic = diag::warn_condition_is_idiomatic_assignment; 12870 12871 // <foo> = [<bar> nextObject] 12872 else if (Sel.isUnarySelector() && Sel.getNameForSlot(0) == "nextObject") 12873 diagnostic = diag::warn_condition_is_idiomatic_assignment; 12874 } 12875 12876 Loc = Op->getOperatorLoc(); 12877 } else if (CXXOperatorCallExpr *Op = dyn_cast<CXXOperatorCallExpr>(E)) { 12878 if (Op->getOperator() != OO_Equal && Op->getOperator() != OO_PipeEqual) 12879 return; 12880 12881 IsOrAssign = Op->getOperator() == OO_PipeEqual; 12882 Loc = Op->getOperatorLoc(); 12883 } else if (PseudoObjectExpr *POE = dyn_cast<PseudoObjectExpr>(E)) 12884 return DiagnoseAssignmentAsCondition(POE->getSyntacticForm()); 12885 else { 12886 // Not an assignment. 12887 return; 12888 } 12889 12890 Diag(Loc, diagnostic) << E->getSourceRange(); 12891 12892 SourceLocation Open = E->getLocStart(); 12893 SourceLocation Close = PP.getLocForEndOfToken(E->getSourceRange().getEnd()); 12894 Diag(Loc, diag::note_condition_assign_silence) 12895 << FixItHint::CreateInsertion(Open, "(") 12896 << FixItHint::CreateInsertion(Close, ")"); 12897 12898 if (IsOrAssign) 12899 Diag(Loc, diag::note_condition_or_assign_to_comparison) 12900 << FixItHint::CreateReplacement(Loc, "!="); 12901 else 12902 Diag(Loc, diag::note_condition_assign_to_comparison) 12903 << FixItHint::CreateReplacement(Loc, "=="); 12904 } 12905 12906 /// \brief Redundant parentheses over an equality comparison can indicate 12907 /// that the user intended an assignment used as condition. 12908 void Sema::DiagnoseEqualityWithExtraParens(ParenExpr *ParenE) { 12909 // Don't warn if the parens came from a macro. 12910 SourceLocation parenLoc = ParenE->getLocStart(); 12911 if (parenLoc.isInvalid() || parenLoc.isMacroID()) 12912 return; 12913 // Don't warn for dependent expressions. 12914 if (ParenE->isTypeDependent()) 12915 return; 12916 12917 Expr *E = ParenE->IgnoreParens(); 12918 12919 if (BinaryOperator *opE = dyn_cast<BinaryOperator>(E)) 12920 if (opE->getOpcode() == BO_EQ && 12921 opE->getLHS()->IgnoreParenImpCasts()->isModifiableLvalue(Context) 12922 == Expr::MLV_Valid) { 12923 SourceLocation Loc = opE->getOperatorLoc(); 12924 12925 Diag(Loc, diag::warn_equality_with_extra_parens) << E->getSourceRange(); 12926 SourceRange ParenERange = ParenE->getSourceRange(); 12927 Diag(Loc, diag::note_equality_comparison_silence) 12928 << FixItHint::CreateRemoval(ParenERange.getBegin()) 12929 << FixItHint::CreateRemoval(ParenERange.getEnd()); 12930 Diag(Loc, diag::note_equality_comparison_to_assign) 12931 << FixItHint::CreateReplacement(Loc, "="); 12932 } 12933 } 12934 12935 ExprResult Sema::CheckBooleanCondition(Expr *E, SourceLocation Loc) { 12936 DiagnoseAssignmentAsCondition(E); 12937 if (ParenExpr *parenE = dyn_cast<ParenExpr>(E)) 12938 DiagnoseEqualityWithExtraParens(parenE); 12939 12940 ExprResult result = CheckPlaceholderExpr(E); 12941 if (result.isInvalid()) return ExprError(); 12942 E = result.get(); 12943 12944 if (!E->isTypeDependent()) { 12945 if (getLangOpts().CPlusPlus) 12946 return CheckCXXBooleanCondition(E); // C++ 6.4p4 12947 12948 ExprResult ERes = DefaultFunctionArrayLvalueConversion(E); 12949 if (ERes.isInvalid()) 12950 return ExprError(); 12951 E = ERes.get(); 12952 12953 QualType T = E->getType(); 12954 if (!T->isScalarType()) { // C99 6.8.4.1p1 12955 Diag(Loc, diag::err_typecheck_statement_requires_scalar) 12956 << T << E->getSourceRange(); 12957 return ExprError(); 12958 } 12959 } 12960 12961 return E; 12962 } 12963 12964 ExprResult Sema::ActOnBooleanCondition(Scope *S, SourceLocation Loc, 12965 Expr *SubExpr) { 12966 if (!SubExpr) 12967 return ExprError(); 12968 12969 return CheckBooleanCondition(SubExpr, Loc); 12970 } 12971 12972 namespace { 12973 /// A visitor for rebuilding a call to an __unknown_any expression 12974 /// to have an appropriate type. 12975 struct RebuildUnknownAnyFunction 12976 : StmtVisitor<RebuildUnknownAnyFunction, ExprResult> { 12977 12978 Sema &S; 12979 12980 RebuildUnknownAnyFunction(Sema &S) : S(S) {} 12981 12982 ExprResult VisitStmt(Stmt *S) { 12983 llvm_unreachable("unexpected statement!"); 12984 } 12985 12986 ExprResult VisitExpr(Expr *E) { 12987 S.Diag(E->getExprLoc(), diag::err_unsupported_unknown_any_call) 12988 << E->getSourceRange(); 12989 return ExprError(); 12990 } 12991 12992 /// Rebuild an expression which simply semantically wraps another 12993 /// expression which it shares the type and value kind of. 12994 template <class T> ExprResult rebuildSugarExpr(T *E) { 12995 ExprResult SubResult = Visit(E->getSubExpr()); 12996 if (SubResult.isInvalid()) return ExprError(); 12997 12998 Expr *SubExpr = SubResult.get(); 12999 E->setSubExpr(SubExpr); 13000 E->setType(SubExpr->getType()); 13001 E->setValueKind(SubExpr->getValueKind()); 13002 assert(E->getObjectKind() == OK_Ordinary); 13003 return E; 13004 } 13005 13006 ExprResult VisitParenExpr(ParenExpr *E) { 13007 return rebuildSugarExpr(E); 13008 } 13009 13010 ExprResult VisitUnaryExtension(UnaryOperator *E) { 13011 return rebuildSugarExpr(E); 13012 } 13013 13014 ExprResult VisitUnaryAddrOf(UnaryOperator *E) { 13015 ExprResult SubResult = Visit(E->getSubExpr()); 13016 if (SubResult.isInvalid()) return ExprError(); 13017 13018 Expr *SubExpr = SubResult.get(); 13019 E->setSubExpr(SubExpr); 13020 E->setType(S.Context.getPointerType(SubExpr->getType())); 13021 assert(E->getValueKind() == VK_RValue); 13022 assert(E->getObjectKind() == OK_Ordinary); 13023 return E; 13024 } 13025 13026 ExprResult resolveDecl(Expr *E, ValueDecl *VD) { 13027 if (!isa<FunctionDecl>(VD)) return VisitExpr(E); 13028 13029 E->setType(VD->getType()); 13030 13031 assert(E->getValueKind() == VK_RValue); 13032 if (S.getLangOpts().CPlusPlus && 13033 !(isa<CXXMethodDecl>(VD) && 13034 cast<CXXMethodDecl>(VD)->isInstance())) 13035 E->setValueKind(VK_LValue); 13036 13037 return E; 13038 } 13039 13040 ExprResult VisitMemberExpr(MemberExpr *E) { 13041 return resolveDecl(E, E->getMemberDecl()); 13042 } 13043 13044 ExprResult VisitDeclRefExpr(DeclRefExpr *E) { 13045 return resolveDecl(E, E->getDecl()); 13046 } 13047 }; 13048 } 13049 13050 /// Given a function expression of unknown-any type, try to rebuild it 13051 /// to have a function type. 13052 static ExprResult rebuildUnknownAnyFunction(Sema &S, Expr *FunctionExpr) { 13053 ExprResult Result = RebuildUnknownAnyFunction(S).Visit(FunctionExpr); 13054 if (Result.isInvalid()) return ExprError(); 13055 return S.DefaultFunctionArrayConversion(Result.get()); 13056 } 13057 13058 namespace { 13059 /// A visitor for rebuilding an expression of type __unknown_anytype 13060 /// into one which resolves the type directly on the referring 13061 /// expression. Strict preservation of the original source 13062 /// structure is not a goal. 13063 struct RebuildUnknownAnyExpr 13064 : StmtVisitor<RebuildUnknownAnyExpr, ExprResult> { 13065 13066 Sema &S; 13067 13068 /// The current destination type. 13069 QualType DestType; 13070 13071 RebuildUnknownAnyExpr(Sema &S, QualType CastType) 13072 : S(S), DestType(CastType) {} 13073 13074 ExprResult VisitStmt(Stmt *S) { 13075 llvm_unreachable("unexpected statement!"); 13076 } 13077 13078 ExprResult VisitExpr(Expr *E) { 13079 S.Diag(E->getExprLoc(), diag::err_unsupported_unknown_any_expr) 13080 << E->getSourceRange(); 13081 return ExprError(); 13082 } 13083 13084 ExprResult VisitCallExpr(CallExpr *E); 13085 ExprResult VisitObjCMessageExpr(ObjCMessageExpr *E); 13086 13087 /// Rebuild an expression which simply semantically wraps another 13088 /// expression which it shares the type and value kind of. 13089 template <class T> ExprResult rebuildSugarExpr(T *E) { 13090 ExprResult SubResult = Visit(E->getSubExpr()); 13091 if (SubResult.isInvalid()) return ExprError(); 13092 Expr *SubExpr = SubResult.get(); 13093 E->setSubExpr(SubExpr); 13094 E->setType(SubExpr->getType()); 13095 E->setValueKind(SubExpr->getValueKind()); 13096 assert(E->getObjectKind() == OK_Ordinary); 13097 return E; 13098 } 13099 13100 ExprResult VisitParenExpr(ParenExpr *E) { 13101 return rebuildSugarExpr(E); 13102 } 13103 13104 ExprResult VisitUnaryExtension(UnaryOperator *E) { 13105 return rebuildSugarExpr(E); 13106 } 13107 13108 ExprResult VisitUnaryAddrOf(UnaryOperator *E) { 13109 const PointerType *Ptr = DestType->getAs<PointerType>(); 13110 if (!Ptr) { 13111 S.Diag(E->getOperatorLoc(), diag::err_unknown_any_addrof) 13112 << E->getSourceRange(); 13113 return ExprError(); 13114 } 13115 assert(E->getValueKind() == VK_RValue); 13116 assert(E->getObjectKind() == OK_Ordinary); 13117 E->setType(DestType); 13118 13119 // Build the sub-expression as if it were an object of the pointee type. 13120 DestType = Ptr->getPointeeType(); 13121 ExprResult SubResult = Visit(E->getSubExpr()); 13122 if (SubResult.isInvalid()) return ExprError(); 13123 E->setSubExpr(SubResult.get()); 13124 return E; 13125 } 13126 13127 ExprResult VisitImplicitCastExpr(ImplicitCastExpr *E); 13128 13129 ExprResult resolveDecl(Expr *E, ValueDecl *VD); 13130 13131 ExprResult VisitMemberExpr(MemberExpr *E) { 13132 return resolveDecl(E, E->getMemberDecl()); 13133 } 13134 13135 ExprResult VisitDeclRefExpr(DeclRefExpr *E) { 13136 return resolveDecl(E, E->getDecl()); 13137 } 13138 }; 13139 } 13140 13141 /// Rebuilds a call expression which yielded __unknown_anytype. 13142 ExprResult RebuildUnknownAnyExpr::VisitCallExpr(CallExpr *E) { 13143 Expr *CalleeExpr = E->getCallee(); 13144 13145 enum FnKind { 13146 FK_MemberFunction, 13147 FK_FunctionPointer, 13148 FK_BlockPointer 13149 }; 13150 13151 FnKind Kind; 13152 QualType CalleeType = CalleeExpr->getType(); 13153 if (CalleeType == S.Context.BoundMemberTy) { 13154 assert(isa<CXXMemberCallExpr>(E) || isa<CXXOperatorCallExpr>(E)); 13155 Kind = FK_MemberFunction; 13156 CalleeType = Expr::findBoundMemberType(CalleeExpr); 13157 } else if (const PointerType *Ptr = CalleeType->getAs<PointerType>()) { 13158 CalleeType = Ptr->getPointeeType(); 13159 Kind = FK_FunctionPointer; 13160 } else { 13161 CalleeType = CalleeType->castAs<BlockPointerType>()->getPointeeType(); 13162 Kind = FK_BlockPointer; 13163 } 13164 const FunctionType *FnType = CalleeType->castAs<FunctionType>(); 13165 13166 // Verify that this is a legal result type of a function. 13167 if (DestType->isArrayType() || DestType->isFunctionType()) { 13168 unsigned diagID = diag::err_func_returning_array_function; 13169 if (Kind == FK_BlockPointer) 13170 diagID = diag::err_block_returning_array_function; 13171 13172 S.Diag(E->getExprLoc(), diagID) 13173 << DestType->isFunctionType() << DestType; 13174 return ExprError(); 13175 } 13176 13177 // Otherwise, go ahead and set DestType as the call's result. 13178 E->setType(DestType.getNonLValueExprType(S.Context)); 13179 E->setValueKind(Expr::getValueKindForType(DestType)); 13180 assert(E->getObjectKind() == OK_Ordinary); 13181 13182 // Rebuild the function type, replacing the result type with DestType. 13183 const FunctionProtoType *Proto = dyn_cast<FunctionProtoType>(FnType); 13184 if (Proto) { 13185 // __unknown_anytype(...) is a special case used by the debugger when 13186 // it has no idea what a function's signature is. 13187 // 13188 // We want to build this call essentially under the K&R 13189 // unprototyped rules, but making a FunctionNoProtoType in C++ 13190 // would foul up all sorts of assumptions. However, we cannot 13191 // simply pass all arguments as variadic arguments, nor can we 13192 // portably just call the function under a non-variadic type; see 13193 // the comment on IR-gen's TargetInfo::isNoProtoCallVariadic. 13194 // However, it turns out that in practice it is generally safe to 13195 // call a function declared as "A foo(B,C,D);" under the prototype 13196 // "A foo(B,C,D,...);". The only known exception is with the 13197 // Windows ABI, where any variadic function is implicitly cdecl 13198 // regardless of its normal CC. Therefore we change the parameter 13199 // types to match the types of the arguments. 13200 // 13201 // This is a hack, but it is far superior to moving the 13202 // corresponding target-specific code from IR-gen to Sema/AST. 13203 13204 ArrayRef<QualType> ParamTypes = Proto->getParamTypes(); 13205 SmallVector<QualType, 8> ArgTypes; 13206 if (ParamTypes.empty() && Proto->isVariadic()) { // the special case 13207 ArgTypes.reserve(E->getNumArgs()); 13208 for (unsigned i = 0, e = E->getNumArgs(); i != e; ++i) { 13209 Expr *Arg = E->getArg(i); 13210 QualType ArgType = Arg->getType(); 13211 if (E->isLValue()) { 13212 ArgType = S.Context.getLValueReferenceType(ArgType); 13213 } else if (E->isXValue()) { 13214 ArgType = S.Context.getRValueReferenceType(ArgType); 13215 } 13216 ArgTypes.push_back(ArgType); 13217 } 13218 ParamTypes = ArgTypes; 13219 } 13220 DestType = S.Context.getFunctionType(DestType, ParamTypes, 13221 Proto->getExtProtoInfo()); 13222 } else { 13223 DestType = S.Context.getFunctionNoProtoType(DestType, 13224 FnType->getExtInfo()); 13225 } 13226 13227 // Rebuild the appropriate pointer-to-function type. 13228 switch (Kind) { 13229 case FK_MemberFunction: 13230 // Nothing to do. 13231 break; 13232 13233 case FK_FunctionPointer: 13234 DestType = S.Context.getPointerType(DestType); 13235 break; 13236 13237 case FK_BlockPointer: 13238 DestType = S.Context.getBlockPointerType(DestType); 13239 break; 13240 } 13241 13242 // Finally, we can recurse. 13243 ExprResult CalleeResult = Visit(CalleeExpr); 13244 if (!CalleeResult.isUsable()) return ExprError(); 13245 E->setCallee(CalleeResult.get()); 13246 13247 // Bind a temporary if necessary. 13248 return S.MaybeBindToTemporary(E); 13249 } 13250 13251 ExprResult RebuildUnknownAnyExpr::VisitObjCMessageExpr(ObjCMessageExpr *E) { 13252 // Verify that this is a legal result type of a call. 13253 if (DestType->isArrayType() || DestType->isFunctionType()) { 13254 S.Diag(E->getExprLoc(), diag::err_func_returning_array_function) 13255 << DestType->isFunctionType() << DestType; 13256 return ExprError(); 13257 } 13258 13259 // Rewrite the method result type if available. 13260 if (ObjCMethodDecl *Method = E->getMethodDecl()) { 13261 assert(Method->getReturnType() == S.Context.UnknownAnyTy); 13262 Method->setReturnType(DestType); 13263 } 13264 13265 // Change the type of the message. 13266 E->setType(DestType.getNonReferenceType()); 13267 E->setValueKind(Expr::getValueKindForType(DestType)); 13268 13269 return S.MaybeBindToTemporary(E); 13270 } 13271 13272 ExprResult RebuildUnknownAnyExpr::VisitImplicitCastExpr(ImplicitCastExpr *E) { 13273 // The only case we should ever see here is a function-to-pointer decay. 13274 if (E->getCastKind() == CK_FunctionToPointerDecay) { 13275 assert(E->getValueKind() == VK_RValue); 13276 assert(E->getObjectKind() == OK_Ordinary); 13277 13278 E->setType(DestType); 13279 13280 // Rebuild the sub-expression as the pointee (function) type. 13281 DestType = DestType->castAs<PointerType>()->getPointeeType(); 13282 13283 ExprResult Result = Visit(E->getSubExpr()); 13284 if (!Result.isUsable()) return ExprError(); 13285 13286 E->setSubExpr(Result.get()); 13287 return E; 13288 } else if (E->getCastKind() == CK_LValueToRValue) { 13289 assert(E->getValueKind() == VK_RValue); 13290 assert(E->getObjectKind() == OK_Ordinary); 13291 13292 assert(isa<BlockPointerType>(E->getType())); 13293 13294 E->setType(DestType); 13295 13296 // The sub-expression has to be a lvalue reference, so rebuild it as such. 13297 DestType = S.Context.getLValueReferenceType(DestType); 13298 13299 ExprResult Result = Visit(E->getSubExpr()); 13300 if (!Result.isUsable()) return ExprError(); 13301 13302 E->setSubExpr(Result.get()); 13303 return E; 13304 } else { 13305 llvm_unreachable("Unhandled cast type!"); 13306 } 13307 } 13308 13309 ExprResult RebuildUnknownAnyExpr::resolveDecl(Expr *E, ValueDecl *VD) { 13310 ExprValueKind ValueKind = VK_LValue; 13311 QualType Type = DestType; 13312 13313 // We know how to make this work for certain kinds of decls: 13314 13315 // - functions 13316 if (FunctionDecl *FD = dyn_cast<FunctionDecl>(VD)) { 13317 if (const PointerType *Ptr = Type->getAs<PointerType>()) { 13318 DestType = Ptr->getPointeeType(); 13319 ExprResult Result = resolveDecl(E, VD); 13320 if (Result.isInvalid()) return ExprError(); 13321 return S.ImpCastExprToType(Result.get(), Type, 13322 CK_FunctionToPointerDecay, VK_RValue); 13323 } 13324 13325 if (!Type->isFunctionType()) { 13326 S.Diag(E->getExprLoc(), diag::err_unknown_any_function) 13327 << VD << E->getSourceRange(); 13328 return ExprError(); 13329 } 13330 13331 if (CXXMethodDecl *MD = dyn_cast<CXXMethodDecl>(FD)) 13332 if (MD->isInstance()) { 13333 ValueKind = VK_RValue; 13334 Type = S.Context.BoundMemberTy; 13335 } 13336 13337 // Function references aren't l-values in C. 13338 if (!S.getLangOpts().CPlusPlus) 13339 ValueKind = VK_RValue; 13340 13341 // - variables 13342 } else if (isa<VarDecl>(VD)) { 13343 if (const ReferenceType *RefTy = Type->getAs<ReferenceType>()) { 13344 Type = RefTy->getPointeeType(); 13345 } else if (Type->isFunctionType()) { 13346 S.Diag(E->getExprLoc(), diag::err_unknown_any_var_function_type) 13347 << VD << E->getSourceRange(); 13348 return ExprError(); 13349 } 13350 13351 // - nothing else 13352 } else { 13353 S.Diag(E->getExprLoc(), diag::err_unsupported_unknown_any_decl) 13354 << VD << E->getSourceRange(); 13355 return ExprError(); 13356 } 13357 13358 // Modifying the declaration like this is friendly to IR-gen but 13359 // also really dangerous. 13360 VD->setType(DestType); 13361 E->setType(Type); 13362 E->setValueKind(ValueKind); 13363 return E; 13364 } 13365 13366 /// Check a cast of an unknown-any type. We intentionally only 13367 /// trigger this for C-style casts. 13368 ExprResult Sema::checkUnknownAnyCast(SourceRange TypeRange, QualType CastType, 13369 Expr *CastExpr, CastKind &CastKind, 13370 ExprValueKind &VK, CXXCastPath &Path) { 13371 // Rewrite the casted expression from scratch. 13372 ExprResult result = RebuildUnknownAnyExpr(*this, CastType).Visit(CastExpr); 13373 if (!result.isUsable()) return ExprError(); 13374 13375 CastExpr = result.get(); 13376 VK = CastExpr->getValueKind(); 13377 CastKind = CK_NoOp; 13378 13379 return CastExpr; 13380 } 13381 13382 ExprResult Sema::forceUnknownAnyToType(Expr *E, QualType ToType) { 13383 return RebuildUnknownAnyExpr(*this, ToType).Visit(E); 13384 } 13385 13386 ExprResult Sema::checkUnknownAnyArg(SourceLocation callLoc, 13387 Expr *arg, QualType ¶mType) { 13388 // If the syntactic form of the argument is not an explicit cast of 13389 // any sort, just do default argument promotion. 13390 ExplicitCastExpr *castArg = dyn_cast<ExplicitCastExpr>(arg->IgnoreParens()); 13391 if (!castArg) { 13392 ExprResult result = DefaultArgumentPromotion(arg); 13393 if (result.isInvalid()) return ExprError(); 13394 paramType = result.get()->getType(); 13395 return result; 13396 } 13397 13398 // Otherwise, use the type that was written in the explicit cast. 13399 assert(!arg->hasPlaceholderType()); 13400 paramType = castArg->getTypeAsWritten(); 13401 13402 // Copy-initialize a parameter of that type. 13403 InitializedEntity entity = 13404 InitializedEntity::InitializeParameter(Context, paramType, 13405 /*consumed*/ false); 13406 return PerformCopyInitialization(entity, callLoc, arg); 13407 } 13408 13409 static ExprResult diagnoseUnknownAnyExpr(Sema &S, Expr *E) { 13410 Expr *orig = E; 13411 unsigned diagID = diag::err_uncasted_use_of_unknown_any; 13412 while (true) { 13413 E = E->IgnoreParenImpCasts(); 13414 if (CallExpr *call = dyn_cast<CallExpr>(E)) { 13415 E = call->getCallee(); 13416 diagID = diag::err_uncasted_call_of_unknown_any; 13417 } else { 13418 break; 13419 } 13420 } 13421 13422 SourceLocation loc; 13423 NamedDecl *d; 13424 if (DeclRefExpr *ref = dyn_cast<DeclRefExpr>(E)) { 13425 loc = ref->getLocation(); 13426 d = ref->getDecl(); 13427 } else if (MemberExpr *mem = dyn_cast<MemberExpr>(E)) { 13428 loc = mem->getMemberLoc(); 13429 d = mem->getMemberDecl(); 13430 } else if (ObjCMessageExpr *msg = dyn_cast<ObjCMessageExpr>(E)) { 13431 diagID = diag::err_uncasted_call_of_unknown_any; 13432 loc = msg->getSelectorStartLoc(); 13433 d = msg->getMethodDecl(); 13434 if (!d) { 13435 S.Diag(loc, diag::err_uncasted_send_to_unknown_any_method) 13436 << static_cast<unsigned>(msg->isClassMessage()) << msg->getSelector() 13437 << orig->getSourceRange(); 13438 return ExprError(); 13439 } 13440 } else { 13441 S.Diag(E->getExprLoc(), diag::err_unsupported_unknown_any_expr) 13442 << E->getSourceRange(); 13443 return ExprError(); 13444 } 13445 13446 S.Diag(loc, diagID) << d << orig->getSourceRange(); 13447 13448 // Never recoverable. 13449 return ExprError(); 13450 } 13451 13452 /// Check for operands with placeholder types and complain if found. 13453 /// Returns true if there was an error and no recovery was possible. 13454 ExprResult Sema::CheckPlaceholderExpr(Expr *E) { 13455 const BuiltinType *placeholderType = E->getType()->getAsPlaceholderType(); 13456 if (!placeholderType) return E; 13457 13458 switch (placeholderType->getKind()) { 13459 13460 // Overloaded expressions. 13461 case BuiltinType::Overload: { 13462 // Try to resolve a single function template specialization. 13463 // This is obligatory. 13464 ExprResult result = E; 13465 if (ResolveAndFixSingleFunctionTemplateSpecialization(result, false)) { 13466 return result; 13467 13468 // If that failed, try to recover with a call. 13469 } else { 13470 tryToRecoverWithCall(result, PDiag(diag::err_ovl_unresolvable), 13471 /*complain*/ true); 13472 return result; 13473 } 13474 } 13475 13476 // Bound member functions. 13477 case BuiltinType::BoundMember: { 13478 ExprResult result = E; 13479 tryToRecoverWithCall(result, PDiag(diag::err_bound_member_function), 13480 /*complain*/ true); 13481 return result; 13482 } 13483 13484 // ARC unbridged casts. 13485 case BuiltinType::ARCUnbridgedCast: { 13486 Expr *realCast = stripARCUnbridgedCast(E); 13487 diagnoseARCUnbridgedCast(realCast); 13488 return realCast; 13489 } 13490 13491 // Expressions of unknown type. 13492 case BuiltinType::UnknownAny: 13493 return diagnoseUnknownAnyExpr(*this, E); 13494 13495 // Pseudo-objects. 13496 case BuiltinType::PseudoObject: 13497 return checkPseudoObjectRValue(E); 13498 13499 case BuiltinType::BuiltinFn: { 13500 // Accept __noop without parens by implicitly converting it to a call expr. 13501 auto *DRE = dyn_cast<DeclRefExpr>(E->IgnoreParenImpCasts()); 13502 if (DRE) { 13503 auto *FD = cast<FunctionDecl>(DRE->getDecl()); 13504 if (FD->getBuiltinID() == Builtin::BI__noop) { 13505 E = ImpCastExprToType(E, Context.getPointerType(FD->getType()), 13506 CK_BuiltinFnToFnPtr).get(); 13507 return new (Context) CallExpr(Context, E, None, Context.IntTy, 13508 VK_RValue, SourceLocation()); 13509 } 13510 } 13511 13512 Diag(E->getLocStart(), diag::err_builtin_fn_use); 13513 return ExprError(); 13514 } 13515 13516 // Everything else should be impossible. 13517 #define BUILTIN_TYPE(Id, SingletonId) \ 13518 case BuiltinType::Id: 13519 #define PLACEHOLDER_TYPE(Id, SingletonId) 13520 #include "clang/AST/BuiltinTypes.def" 13521 break; 13522 } 13523 13524 llvm_unreachable("invalid placeholder type!"); 13525 } 13526 13527 bool Sema::CheckCaseExpression(Expr *E) { 13528 if (E->isTypeDependent()) 13529 return true; 13530 if (E->isValueDependent() || E->isIntegerConstantExpr(Context)) 13531 return E->getType()->isIntegralOrEnumerationType(); 13532 return false; 13533 } 13534 13535 /// ActOnObjCBoolLiteral - Parse {__objc_yes,__objc_no} literals. 13536 ExprResult 13537 Sema::ActOnObjCBoolLiteral(SourceLocation OpLoc, tok::TokenKind Kind) { 13538 assert((Kind == tok::kw___objc_yes || Kind == tok::kw___objc_no) && 13539 "Unknown Objective-C Boolean value!"); 13540 QualType BoolT = Context.ObjCBuiltinBoolTy; 13541 if (!Context.getBOOLDecl()) { 13542 LookupResult Result(*this, &Context.Idents.get("BOOL"), OpLoc, 13543 Sema::LookupOrdinaryName); 13544 if (LookupName(Result, getCurScope()) && Result.isSingleResult()) { 13545 NamedDecl *ND = Result.getFoundDecl(); 13546 if (TypedefDecl *TD = dyn_cast<TypedefDecl>(ND)) 13547 Context.setBOOLDecl(TD); 13548 } 13549 } 13550 if (Context.getBOOLDecl()) 13551 BoolT = Context.getBOOLType(); 13552 return new (Context) 13553 ObjCBoolLiteralExpr(Kind == tok::kw___objc_yes, BoolT, OpLoc); 13554 } 13555