1 //===--- SemaExpr.cpp - Semantic Analysis for Expressions -----------------===// 2 // 3 // Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions. 4 // See https://llvm.org/LICENSE.txt for license information. 5 // SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception 6 // 7 //===----------------------------------------------------------------------===// 8 // 9 // This file implements semantic analysis for expressions. 10 // 11 //===----------------------------------------------------------------------===// 12 13 #include "TreeTransform.h" 14 #include "UsedDeclVisitor.h" 15 #include "clang/AST/ASTConsumer.h" 16 #include "clang/AST/ASTContext.h" 17 #include "clang/AST/ASTLambda.h" 18 #include "clang/AST/ASTMutationListener.h" 19 #include "clang/AST/CXXInheritance.h" 20 #include "clang/AST/DeclObjC.h" 21 #include "clang/AST/DeclTemplate.h" 22 #include "clang/AST/EvaluatedExprVisitor.h" 23 #include "clang/AST/Expr.h" 24 #include "clang/AST/ExprCXX.h" 25 #include "clang/AST/ExprObjC.h" 26 #include "clang/AST/ExprOpenMP.h" 27 #include "clang/AST/OperationKinds.h" 28 #include "clang/AST/ParentMapContext.h" 29 #include "clang/AST/RecursiveASTVisitor.h" 30 #include "clang/AST/Type.h" 31 #include "clang/AST/TypeLoc.h" 32 #include "clang/Basic/Builtins.h" 33 #include "clang/Basic/DiagnosticSema.h" 34 #include "clang/Basic/PartialDiagnostic.h" 35 #include "clang/Basic/SourceManager.h" 36 #include "clang/Basic/Specifiers.h" 37 #include "clang/Basic/TargetInfo.h" 38 #include "clang/Lex/LiteralSupport.h" 39 #include "clang/Lex/Preprocessor.h" 40 #include "clang/Sema/AnalysisBasedWarnings.h" 41 #include "clang/Sema/DeclSpec.h" 42 #include "clang/Sema/DelayedDiagnostic.h" 43 #include "clang/Sema/Designator.h" 44 #include "clang/Sema/Initialization.h" 45 #include "clang/Sema/Lookup.h" 46 #include "clang/Sema/Overload.h" 47 #include "clang/Sema/ParsedTemplate.h" 48 #include "clang/Sema/Scope.h" 49 #include "clang/Sema/ScopeInfo.h" 50 #include "clang/Sema/SemaFixItUtils.h" 51 #include "clang/Sema/SemaInternal.h" 52 #include "clang/Sema/Template.h" 53 #include "llvm/ADT/STLExtras.h" 54 #include "llvm/ADT/StringExtras.h" 55 #include "llvm/Support/Casting.h" 56 #include "llvm/Support/ConvertUTF.h" 57 #include "llvm/Support/SaveAndRestore.h" 58 #include "llvm/Support/TypeSize.h" 59 60 using namespace clang; 61 using namespace sema; 62 63 /// Determine whether the use of this declaration is valid, without 64 /// emitting diagnostics. 65 bool Sema::CanUseDecl(NamedDecl *D, bool TreatUnavailableAsInvalid) { 66 // See if this is an auto-typed variable whose initializer we are parsing. 67 if (ParsingInitForAutoVars.count(D)) 68 return false; 69 70 // See if this is a deleted function. 71 if (FunctionDecl *FD = dyn_cast<FunctionDecl>(D)) { 72 if (FD->isDeleted()) 73 return false; 74 75 // If the function has a deduced return type, and we can't deduce it, 76 // then we can't use it either. 77 if (getLangOpts().CPlusPlus14 && FD->getReturnType()->isUndeducedType() && 78 DeduceReturnType(FD, SourceLocation(), /*Diagnose*/ false)) 79 return false; 80 81 // See if this is an aligned allocation/deallocation function that is 82 // unavailable. 83 if (TreatUnavailableAsInvalid && 84 isUnavailableAlignedAllocationFunction(*FD)) 85 return false; 86 } 87 88 // See if this function is unavailable. 89 if (TreatUnavailableAsInvalid && D->getAvailability() == AR_Unavailable && 90 cast<Decl>(CurContext)->getAvailability() != AR_Unavailable) 91 return false; 92 93 if (isa<UnresolvedUsingIfExistsDecl>(D)) 94 return false; 95 96 return true; 97 } 98 99 static void DiagnoseUnusedOfDecl(Sema &S, NamedDecl *D, SourceLocation Loc) { 100 // Warn if this is used but marked unused. 101 if (const auto *A = D->getAttr<UnusedAttr>()) { 102 // [[maybe_unused]] should not diagnose uses, but __attribute__((unused)) 103 // should diagnose them. 104 if (A->getSemanticSpelling() != UnusedAttr::CXX11_maybe_unused && 105 A->getSemanticSpelling() != UnusedAttr::C2x_maybe_unused) { 106 const Decl *DC = cast_or_null<Decl>(S.getCurObjCLexicalContext()); 107 if (DC && !DC->hasAttr<UnusedAttr>()) 108 S.Diag(Loc, diag::warn_used_but_marked_unused) << D; 109 } 110 } 111 } 112 113 /// Emit a note explaining that this function is deleted. 114 void Sema::NoteDeletedFunction(FunctionDecl *Decl) { 115 assert(Decl && Decl->isDeleted()); 116 117 if (Decl->isDefaulted()) { 118 // If the method was explicitly defaulted, point at that declaration. 119 if (!Decl->isImplicit()) 120 Diag(Decl->getLocation(), diag::note_implicitly_deleted); 121 122 // Try to diagnose why this special member function was implicitly 123 // deleted. This might fail, if that reason no longer applies. 124 DiagnoseDeletedDefaultedFunction(Decl); 125 return; 126 } 127 128 auto *Ctor = dyn_cast<CXXConstructorDecl>(Decl); 129 if (Ctor && Ctor->isInheritingConstructor()) 130 return NoteDeletedInheritingConstructor(Ctor); 131 132 Diag(Decl->getLocation(), diag::note_availability_specified_here) 133 << Decl << 1; 134 } 135 136 /// Determine whether a FunctionDecl was ever declared with an 137 /// explicit storage class. 138 static bool hasAnyExplicitStorageClass(const FunctionDecl *D) { 139 for (auto I : D->redecls()) { 140 if (I->getStorageClass() != SC_None) 141 return true; 142 } 143 return false; 144 } 145 146 /// Check whether we're in an extern inline function and referring to a 147 /// variable or function with internal linkage (C11 6.7.4p3). 148 /// 149 /// This is only a warning because we used to silently accept this code, but 150 /// in many cases it will not behave correctly. This is not enabled in C++ mode 151 /// because the restriction language is a bit weaker (C++11 [basic.def.odr]p6) 152 /// and so while there may still be user mistakes, most of the time we can't 153 /// prove that there are errors. 154 static void diagnoseUseOfInternalDeclInInlineFunction(Sema &S, 155 const NamedDecl *D, 156 SourceLocation Loc) { 157 // This is disabled under C++; there are too many ways for this to fire in 158 // contexts where the warning is a false positive, or where it is technically 159 // correct but benign. 160 if (S.getLangOpts().CPlusPlus) 161 return; 162 163 // Check if this is an inlined function or method. 164 FunctionDecl *Current = S.getCurFunctionDecl(); 165 if (!Current) 166 return; 167 if (!Current->isInlined()) 168 return; 169 if (!Current->isExternallyVisible()) 170 return; 171 172 // Check if the decl has internal linkage. 173 if (D->getFormalLinkage() != InternalLinkage) 174 return; 175 176 // Downgrade from ExtWarn to Extension if 177 // (1) the supposedly external inline function is in the main file, 178 // and probably won't be included anywhere else. 179 // (2) the thing we're referencing is a pure function. 180 // (3) the thing we're referencing is another inline function. 181 // This last can give us false negatives, but it's better than warning on 182 // wrappers for simple C library functions. 183 const FunctionDecl *UsedFn = dyn_cast<FunctionDecl>(D); 184 bool DowngradeWarning = S.getSourceManager().isInMainFile(Loc); 185 if (!DowngradeWarning && UsedFn) 186 DowngradeWarning = UsedFn->isInlined() || UsedFn->hasAttr<ConstAttr>(); 187 188 S.Diag(Loc, DowngradeWarning ? diag::ext_internal_in_extern_inline_quiet 189 : diag::ext_internal_in_extern_inline) 190 << /*IsVar=*/!UsedFn << D; 191 192 S.MaybeSuggestAddingStaticToDecl(Current); 193 194 S.Diag(D->getCanonicalDecl()->getLocation(), diag::note_entity_declared_at) 195 << D; 196 } 197 198 void Sema::MaybeSuggestAddingStaticToDecl(const FunctionDecl *Cur) { 199 const FunctionDecl *First = Cur->getFirstDecl(); 200 201 // Suggest "static" on the function, if possible. 202 if (!hasAnyExplicitStorageClass(First)) { 203 SourceLocation DeclBegin = First->getSourceRange().getBegin(); 204 Diag(DeclBegin, diag::note_convert_inline_to_static) 205 << Cur << FixItHint::CreateInsertion(DeclBegin, "static "); 206 } 207 } 208 209 /// Determine whether the use of this declaration is valid, and 210 /// emit any corresponding diagnostics. 211 /// 212 /// This routine diagnoses various problems with referencing 213 /// declarations that can occur when using a declaration. For example, 214 /// it might warn if a deprecated or unavailable declaration is being 215 /// used, or produce an error (and return true) if a C++0x deleted 216 /// function is being used. 217 /// 218 /// \returns true if there was an error (this declaration cannot be 219 /// referenced), false otherwise. 220 /// 221 bool Sema::DiagnoseUseOfDecl(NamedDecl *D, ArrayRef<SourceLocation> Locs, 222 const ObjCInterfaceDecl *UnknownObjCClass, 223 bool ObjCPropertyAccess, 224 bool AvoidPartialAvailabilityChecks, 225 ObjCInterfaceDecl *ClassReceiver) { 226 SourceLocation Loc = Locs.front(); 227 if (getLangOpts().CPlusPlus && isa<FunctionDecl>(D)) { 228 // If there were any diagnostics suppressed by template argument deduction, 229 // emit them now. 230 auto Pos = SuppressedDiagnostics.find(D->getCanonicalDecl()); 231 if (Pos != SuppressedDiagnostics.end()) { 232 for (const PartialDiagnosticAt &Suppressed : Pos->second) 233 Diag(Suppressed.first, Suppressed.second); 234 235 // Clear out the list of suppressed diagnostics, so that we don't emit 236 // them again for this specialization. However, we don't obsolete this 237 // entry from the table, because we want to avoid ever emitting these 238 // diagnostics again. 239 Pos->second.clear(); 240 } 241 242 // C++ [basic.start.main]p3: 243 // The function 'main' shall not be used within a program. 244 if (cast<FunctionDecl>(D)->isMain()) 245 Diag(Loc, diag::ext_main_used); 246 247 diagnoseUnavailableAlignedAllocation(*cast<FunctionDecl>(D), Loc); 248 } 249 250 // See if this is an auto-typed variable whose initializer we are parsing. 251 if (ParsingInitForAutoVars.count(D)) { 252 if (isa<BindingDecl>(D)) { 253 Diag(Loc, diag::err_binding_cannot_appear_in_own_initializer) 254 << D->getDeclName(); 255 } else { 256 Diag(Loc, diag::err_auto_variable_cannot_appear_in_own_initializer) 257 << D->getDeclName() << cast<VarDecl>(D)->getType(); 258 } 259 return true; 260 } 261 262 if (FunctionDecl *FD = dyn_cast<FunctionDecl>(D)) { 263 // See if this is a deleted function. 264 if (FD->isDeleted()) { 265 auto *Ctor = dyn_cast<CXXConstructorDecl>(FD); 266 if (Ctor && Ctor->isInheritingConstructor()) 267 Diag(Loc, diag::err_deleted_inherited_ctor_use) 268 << Ctor->getParent() 269 << Ctor->getInheritedConstructor().getConstructor()->getParent(); 270 else 271 Diag(Loc, diag::err_deleted_function_use); 272 NoteDeletedFunction(FD); 273 return true; 274 } 275 276 // [expr.prim.id]p4 277 // A program that refers explicitly or implicitly to a function with a 278 // trailing requires-clause whose constraint-expression is not satisfied, 279 // other than to declare it, is ill-formed. [...] 280 // 281 // See if this is a function with constraints that need to be satisfied. 282 // Check this before deducing the return type, as it might instantiate the 283 // definition. 284 if (FD->getTrailingRequiresClause()) { 285 ConstraintSatisfaction Satisfaction; 286 if (CheckFunctionConstraints(FD, Satisfaction, Loc)) 287 // A diagnostic will have already been generated (non-constant 288 // constraint expression, for example) 289 return true; 290 if (!Satisfaction.IsSatisfied) { 291 Diag(Loc, 292 diag::err_reference_to_function_with_unsatisfied_constraints) 293 << D; 294 DiagnoseUnsatisfiedConstraint(Satisfaction); 295 return true; 296 } 297 } 298 299 // If the function has a deduced return type, and we can't deduce it, 300 // then we can't use it either. 301 if (getLangOpts().CPlusPlus14 && FD->getReturnType()->isUndeducedType() && 302 DeduceReturnType(FD, Loc)) 303 return true; 304 305 if (getLangOpts().CUDA && !CheckCUDACall(Loc, FD)) 306 return true; 307 308 if (getLangOpts().SYCLIsDevice && !checkSYCLDeviceFunction(Loc, FD)) 309 return true; 310 } 311 312 if (auto *MD = dyn_cast<CXXMethodDecl>(D)) { 313 // Lambdas are only default-constructible or assignable in C++2a onwards. 314 if (MD->getParent()->isLambda() && 315 ((isa<CXXConstructorDecl>(MD) && 316 cast<CXXConstructorDecl>(MD)->isDefaultConstructor()) || 317 MD->isCopyAssignmentOperator() || MD->isMoveAssignmentOperator())) { 318 Diag(Loc, diag::warn_cxx17_compat_lambda_def_ctor_assign) 319 << !isa<CXXConstructorDecl>(MD); 320 } 321 } 322 323 auto getReferencedObjCProp = [](const NamedDecl *D) -> 324 const ObjCPropertyDecl * { 325 if (const auto *MD = dyn_cast<ObjCMethodDecl>(D)) 326 return MD->findPropertyDecl(); 327 return nullptr; 328 }; 329 if (const ObjCPropertyDecl *ObjCPDecl = getReferencedObjCProp(D)) { 330 if (diagnoseArgIndependentDiagnoseIfAttrs(ObjCPDecl, Loc)) 331 return true; 332 } else if (diagnoseArgIndependentDiagnoseIfAttrs(D, Loc)) { 333 return true; 334 } 335 336 // [OpenMP 4.0], 2.15 declare reduction Directive, Restrictions 337 // Only the variables omp_in and omp_out are allowed in the combiner. 338 // Only the variables omp_priv and omp_orig are allowed in the 339 // initializer-clause. 340 auto *DRD = dyn_cast<OMPDeclareReductionDecl>(CurContext); 341 if (LangOpts.OpenMP && DRD && !CurContext->containsDecl(D) && 342 isa<VarDecl>(D)) { 343 Diag(Loc, diag::err_omp_wrong_var_in_declare_reduction) 344 << getCurFunction()->HasOMPDeclareReductionCombiner; 345 Diag(D->getLocation(), diag::note_entity_declared_at) << D; 346 return true; 347 } 348 349 // [OpenMP 5.0], 2.19.7.3. declare mapper Directive, Restrictions 350 // List-items in map clauses on this construct may only refer to the declared 351 // variable var and entities that could be referenced by a procedure defined 352 // at the same location 353 if (LangOpts.OpenMP && isa<VarDecl>(D) && 354 !isOpenMPDeclareMapperVarDeclAllowed(cast<VarDecl>(D))) { 355 Diag(Loc, diag::err_omp_declare_mapper_wrong_var) 356 << getOpenMPDeclareMapperVarName(); 357 Diag(D->getLocation(), diag::note_entity_declared_at) << D; 358 return true; 359 } 360 361 if (const auto *EmptyD = dyn_cast<UnresolvedUsingIfExistsDecl>(D)) { 362 Diag(Loc, diag::err_use_of_empty_using_if_exists); 363 Diag(EmptyD->getLocation(), diag::note_empty_using_if_exists_here); 364 return true; 365 } 366 367 DiagnoseAvailabilityOfDecl(D, Locs, UnknownObjCClass, ObjCPropertyAccess, 368 AvoidPartialAvailabilityChecks, ClassReceiver); 369 370 DiagnoseUnusedOfDecl(*this, D, Loc); 371 372 diagnoseUseOfInternalDeclInInlineFunction(*this, D, Loc); 373 374 if (auto *VD = dyn_cast<ValueDecl>(D)) 375 checkTypeSupport(VD->getType(), Loc, VD); 376 377 if (LangOpts.SYCLIsDevice || (LangOpts.OpenMP && LangOpts.OpenMPIsDevice)) { 378 if (!Context.getTargetInfo().isTLSSupported()) 379 if (const auto *VD = dyn_cast<VarDecl>(D)) 380 if (VD->getTLSKind() != VarDecl::TLS_None) 381 targetDiag(*Locs.begin(), diag::err_thread_unsupported); 382 } 383 384 if (isa<ParmVarDecl>(D) && isa<RequiresExprBodyDecl>(D->getDeclContext()) && 385 !isUnevaluatedContext()) { 386 // C++ [expr.prim.req.nested] p3 387 // A local parameter shall only appear as an unevaluated operand 388 // (Clause 8) within the constraint-expression. 389 Diag(Loc, diag::err_requires_expr_parameter_referenced_in_evaluated_context) 390 << D; 391 Diag(D->getLocation(), diag::note_entity_declared_at) << D; 392 return true; 393 } 394 395 return false; 396 } 397 398 /// DiagnoseSentinelCalls - This routine checks whether a call or 399 /// message-send is to a declaration with the sentinel attribute, and 400 /// if so, it checks that the requirements of the sentinel are 401 /// satisfied. 402 void Sema::DiagnoseSentinelCalls(NamedDecl *D, SourceLocation Loc, 403 ArrayRef<Expr *> Args) { 404 const SentinelAttr *attr = D->getAttr<SentinelAttr>(); 405 if (!attr) 406 return; 407 408 // The number of formal parameters of the declaration. 409 unsigned numFormalParams; 410 411 // The kind of declaration. This is also an index into a %select in 412 // the diagnostic. 413 enum CalleeType { CT_Function, CT_Method, CT_Block } calleeType; 414 415 if (ObjCMethodDecl *MD = dyn_cast<ObjCMethodDecl>(D)) { 416 numFormalParams = MD->param_size(); 417 calleeType = CT_Method; 418 } else if (FunctionDecl *FD = dyn_cast<FunctionDecl>(D)) { 419 numFormalParams = FD->param_size(); 420 calleeType = CT_Function; 421 } else if (isa<VarDecl>(D)) { 422 QualType type = cast<ValueDecl>(D)->getType(); 423 const FunctionType *fn = nullptr; 424 if (const PointerType *ptr = type->getAs<PointerType>()) { 425 fn = ptr->getPointeeType()->getAs<FunctionType>(); 426 if (!fn) return; 427 calleeType = CT_Function; 428 } else if (const BlockPointerType *ptr = type->getAs<BlockPointerType>()) { 429 fn = ptr->getPointeeType()->castAs<FunctionType>(); 430 calleeType = CT_Block; 431 } else { 432 return; 433 } 434 435 if (const FunctionProtoType *proto = dyn_cast<FunctionProtoType>(fn)) { 436 numFormalParams = proto->getNumParams(); 437 } else { 438 numFormalParams = 0; 439 } 440 } else { 441 return; 442 } 443 444 // "nullPos" is the number of formal parameters at the end which 445 // effectively count as part of the variadic arguments. This is 446 // useful if you would prefer to not have *any* formal parameters, 447 // but the language forces you to have at least one. 448 unsigned nullPos = attr->getNullPos(); 449 assert((nullPos == 0 || nullPos == 1) && "invalid null position on sentinel"); 450 numFormalParams = (nullPos > numFormalParams ? 0 : numFormalParams - nullPos); 451 452 // The number of arguments which should follow the sentinel. 453 unsigned numArgsAfterSentinel = attr->getSentinel(); 454 455 // If there aren't enough arguments for all the formal parameters, 456 // the sentinel, and the args after the sentinel, complain. 457 if (Args.size() < numFormalParams + numArgsAfterSentinel + 1) { 458 Diag(Loc, diag::warn_not_enough_argument) << D->getDeclName(); 459 Diag(D->getLocation(), diag::note_sentinel_here) << int(calleeType); 460 return; 461 } 462 463 // Otherwise, find the sentinel expression. 464 Expr *sentinelExpr = Args[Args.size() - numArgsAfterSentinel - 1]; 465 if (!sentinelExpr) return; 466 if (sentinelExpr->isValueDependent()) return; 467 if (Context.isSentinelNullExpr(sentinelExpr)) return; 468 469 // Pick a reasonable string to insert. Optimistically use 'nil', 'nullptr', 470 // or 'NULL' if those are actually defined in the context. Only use 471 // 'nil' for ObjC methods, where it's much more likely that the 472 // variadic arguments form a list of object pointers. 473 SourceLocation MissingNilLoc = getLocForEndOfToken(sentinelExpr->getEndLoc()); 474 std::string NullValue; 475 if (calleeType == CT_Method && PP.isMacroDefined("nil")) 476 NullValue = "nil"; 477 else if (getLangOpts().CPlusPlus11) 478 NullValue = "nullptr"; 479 else if (PP.isMacroDefined("NULL")) 480 NullValue = "NULL"; 481 else 482 NullValue = "(void*) 0"; 483 484 if (MissingNilLoc.isInvalid()) 485 Diag(Loc, diag::warn_missing_sentinel) << int(calleeType); 486 else 487 Diag(MissingNilLoc, diag::warn_missing_sentinel) 488 << int(calleeType) 489 << FixItHint::CreateInsertion(MissingNilLoc, ", " + NullValue); 490 Diag(D->getLocation(), diag::note_sentinel_here) << int(calleeType); 491 } 492 493 SourceRange Sema::getExprRange(Expr *E) const { 494 return E ? E->getSourceRange() : SourceRange(); 495 } 496 497 //===----------------------------------------------------------------------===// 498 // Standard Promotions and Conversions 499 //===----------------------------------------------------------------------===// 500 501 /// DefaultFunctionArrayConversion (C99 6.3.2.1p3, C99 6.3.2.1p4). 502 ExprResult Sema::DefaultFunctionArrayConversion(Expr *E, bool Diagnose) { 503 // Handle any placeholder expressions which made it here. 504 if (E->hasPlaceholderType()) { 505 ExprResult result = CheckPlaceholderExpr(E); 506 if (result.isInvalid()) return ExprError(); 507 E = result.get(); 508 } 509 510 QualType Ty = E->getType(); 511 assert(!Ty.isNull() && "DefaultFunctionArrayConversion - missing type"); 512 513 if (Ty->isFunctionType()) { 514 if (auto *DRE = dyn_cast<DeclRefExpr>(E->IgnoreParenCasts())) 515 if (auto *FD = dyn_cast<FunctionDecl>(DRE->getDecl())) 516 if (!checkAddressOfFunctionIsAvailable(FD, Diagnose, E->getExprLoc())) 517 return ExprError(); 518 519 E = ImpCastExprToType(E, Context.getPointerType(Ty), 520 CK_FunctionToPointerDecay).get(); 521 } else if (Ty->isArrayType()) { 522 // In C90 mode, arrays only promote to pointers if the array expression is 523 // an lvalue. The relevant legalese is C90 6.2.2.1p3: "an lvalue that has 524 // type 'array of type' is converted to an expression that has type 'pointer 525 // to type'...". In C99 this was changed to: C99 6.3.2.1p3: "an expression 526 // that has type 'array of type' ...". The relevant change is "an lvalue" 527 // (C90) to "an expression" (C99). 528 // 529 // C++ 4.2p1: 530 // An lvalue or rvalue of type "array of N T" or "array of unknown bound of 531 // T" can be converted to an rvalue of type "pointer to T". 532 // 533 if (getLangOpts().C99 || getLangOpts().CPlusPlus || E->isLValue()) { 534 ExprResult Res = ImpCastExprToType(E, Context.getArrayDecayedType(Ty), 535 CK_ArrayToPointerDecay); 536 if (Res.isInvalid()) 537 return ExprError(); 538 E = Res.get(); 539 } 540 } 541 return E; 542 } 543 544 static void CheckForNullPointerDereference(Sema &S, Expr *E) { 545 // Check to see if we are dereferencing a null pointer. If so, 546 // and if not volatile-qualified, this is undefined behavior that the 547 // optimizer will delete, so warn about it. People sometimes try to use this 548 // to get a deterministic trap and are surprised by clang's behavior. This 549 // only handles the pattern "*null", which is a very syntactic check. 550 const auto *UO = dyn_cast<UnaryOperator>(E->IgnoreParenCasts()); 551 if (UO && UO->getOpcode() == UO_Deref && 552 UO->getSubExpr()->getType()->isPointerType()) { 553 const LangAS AS = 554 UO->getSubExpr()->getType()->getPointeeType().getAddressSpace(); 555 if ((!isTargetAddressSpace(AS) || 556 (isTargetAddressSpace(AS) && toTargetAddressSpace(AS) == 0)) && 557 UO->getSubExpr()->IgnoreParenCasts()->isNullPointerConstant( 558 S.Context, Expr::NPC_ValueDependentIsNotNull) && 559 !UO->getType().isVolatileQualified()) { 560 S.DiagRuntimeBehavior(UO->getOperatorLoc(), UO, 561 S.PDiag(diag::warn_indirection_through_null) 562 << UO->getSubExpr()->getSourceRange()); 563 S.DiagRuntimeBehavior(UO->getOperatorLoc(), UO, 564 S.PDiag(diag::note_indirection_through_null)); 565 } 566 } 567 } 568 569 static void DiagnoseDirectIsaAccess(Sema &S, const ObjCIvarRefExpr *OIRE, 570 SourceLocation AssignLoc, 571 const Expr* RHS) { 572 const ObjCIvarDecl *IV = OIRE->getDecl(); 573 if (!IV) 574 return; 575 576 DeclarationName MemberName = IV->getDeclName(); 577 IdentifierInfo *Member = MemberName.getAsIdentifierInfo(); 578 if (!Member || !Member->isStr("isa")) 579 return; 580 581 const Expr *Base = OIRE->getBase(); 582 QualType BaseType = Base->getType(); 583 if (OIRE->isArrow()) 584 BaseType = BaseType->getPointeeType(); 585 if (const ObjCObjectType *OTy = BaseType->getAs<ObjCObjectType>()) 586 if (ObjCInterfaceDecl *IDecl = OTy->getInterface()) { 587 ObjCInterfaceDecl *ClassDeclared = nullptr; 588 ObjCIvarDecl *IV = IDecl->lookupInstanceVariable(Member, ClassDeclared); 589 if (!ClassDeclared->getSuperClass() 590 && (*ClassDeclared->ivar_begin()) == IV) { 591 if (RHS) { 592 NamedDecl *ObjectSetClass = 593 S.LookupSingleName(S.TUScope, 594 &S.Context.Idents.get("object_setClass"), 595 SourceLocation(), S.LookupOrdinaryName); 596 if (ObjectSetClass) { 597 SourceLocation RHSLocEnd = S.getLocForEndOfToken(RHS->getEndLoc()); 598 S.Diag(OIRE->getExprLoc(), diag::warn_objc_isa_assign) 599 << FixItHint::CreateInsertion(OIRE->getBeginLoc(), 600 "object_setClass(") 601 << FixItHint::CreateReplacement( 602 SourceRange(OIRE->getOpLoc(), AssignLoc), ",") 603 << FixItHint::CreateInsertion(RHSLocEnd, ")"); 604 } 605 else 606 S.Diag(OIRE->getLocation(), diag::warn_objc_isa_assign); 607 } else { 608 NamedDecl *ObjectGetClass = 609 S.LookupSingleName(S.TUScope, 610 &S.Context.Idents.get("object_getClass"), 611 SourceLocation(), S.LookupOrdinaryName); 612 if (ObjectGetClass) 613 S.Diag(OIRE->getExprLoc(), diag::warn_objc_isa_use) 614 << FixItHint::CreateInsertion(OIRE->getBeginLoc(), 615 "object_getClass(") 616 << FixItHint::CreateReplacement( 617 SourceRange(OIRE->getOpLoc(), OIRE->getEndLoc()), ")"); 618 else 619 S.Diag(OIRE->getLocation(), diag::warn_objc_isa_use); 620 } 621 S.Diag(IV->getLocation(), diag::note_ivar_decl); 622 } 623 } 624 } 625 626 ExprResult Sema::DefaultLvalueConversion(Expr *E) { 627 // Handle any placeholder expressions which made it here. 628 if (E->hasPlaceholderType()) { 629 ExprResult result = CheckPlaceholderExpr(E); 630 if (result.isInvalid()) return ExprError(); 631 E = result.get(); 632 } 633 634 // C++ [conv.lval]p1: 635 // A glvalue of a non-function, non-array type T can be 636 // converted to a prvalue. 637 if (!E->isGLValue()) return E; 638 639 QualType T = E->getType(); 640 assert(!T.isNull() && "r-value conversion on typeless expression?"); 641 642 // lvalue-to-rvalue conversion cannot be applied to function or array types. 643 if (T->isFunctionType() || T->isArrayType()) 644 return E; 645 646 // We don't want to throw lvalue-to-rvalue casts on top of 647 // expressions of certain types in C++. 648 if (getLangOpts().CPlusPlus && 649 (E->getType() == Context.OverloadTy || 650 T->isDependentType() || 651 T->isRecordType())) 652 return E; 653 654 // The C standard is actually really unclear on this point, and 655 // DR106 tells us what the result should be but not why. It's 656 // generally best to say that void types just doesn't undergo 657 // lvalue-to-rvalue at all. Note that expressions of unqualified 658 // 'void' type are never l-values, but qualified void can be. 659 if (T->isVoidType()) 660 return E; 661 662 // OpenCL usually rejects direct accesses to values of 'half' type. 663 if (getLangOpts().OpenCL && 664 !getOpenCLOptions().isAvailableOption("cl_khr_fp16", getLangOpts()) && 665 T->isHalfType()) { 666 Diag(E->getExprLoc(), diag::err_opencl_half_load_store) 667 << 0 << T; 668 return ExprError(); 669 } 670 671 CheckForNullPointerDereference(*this, E); 672 if (const ObjCIsaExpr *OISA = dyn_cast<ObjCIsaExpr>(E->IgnoreParenCasts())) { 673 NamedDecl *ObjectGetClass = LookupSingleName(TUScope, 674 &Context.Idents.get("object_getClass"), 675 SourceLocation(), LookupOrdinaryName); 676 if (ObjectGetClass) 677 Diag(E->getExprLoc(), diag::warn_objc_isa_use) 678 << FixItHint::CreateInsertion(OISA->getBeginLoc(), "object_getClass(") 679 << FixItHint::CreateReplacement( 680 SourceRange(OISA->getOpLoc(), OISA->getIsaMemberLoc()), ")"); 681 else 682 Diag(E->getExprLoc(), diag::warn_objc_isa_use); 683 } 684 else if (const ObjCIvarRefExpr *OIRE = 685 dyn_cast<ObjCIvarRefExpr>(E->IgnoreParenCasts())) 686 DiagnoseDirectIsaAccess(*this, OIRE, SourceLocation(), /* Expr*/nullptr); 687 688 // C++ [conv.lval]p1: 689 // [...] If T is a non-class type, the type of the prvalue is the 690 // cv-unqualified version of T. Otherwise, the type of the 691 // rvalue is T. 692 // 693 // C99 6.3.2.1p2: 694 // If the lvalue has qualified type, the value has the unqualified 695 // version of the type of the lvalue; otherwise, the value has the 696 // type of the lvalue. 697 if (T.hasQualifiers()) 698 T = T.getUnqualifiedType(); 699 700 // Under the MS ABI, lock down the inheritance model now. 701 if (T->isMemberPointerType() && 702 Context.getTargetInfo().getCXXABI().isMicrosoft()) 703 (void)isCompleteType(E->getExprLoc(), T); 704 705 ExprResult Res = CheckLValueToRValueConversionOperand(E); 706 if (Res.isInvalid()) 707 return Res; 708 E = Res.get(); 709 710 // Loading a __weak object implicitly retains the value, so we need a cleanup to 711 // balance that. 712 if (E->getType().getObjCLifetime() == Qualifiers::OCL_Weak) 713 Cleanup.setExprNeedsCleanups(true); 714 715 if (E->getType().isDestructedType() == QualType::DK_nontrivial_c_struct) 716 Cleanup.setExprNeedsCleanups(true); 717 718 // C++ [conv.lval]p3: 719 // If T is cv std::nullptr_t, the result is a null pointer constant. 720 CastKind CK = T->isNullPtrType() ? CK_NullToPointer : CK_LValueToRValue; 721 Res = ImplicitCastExpr::Create(Context, T, CK, E, nullptr, VK_PRValue, 722 CurFPFeatureOverrides()); 723 724 // C11 6.3.2.1p2: 725 // ... if the lvalue has atomic type, the value has the non-atomic version 726 // of the type of the lvalue ... 727 if (const AtomicType *Atomic = T->getAs<AtomicType>()) { 728 T = Atomic->getValueType().getUnqualifiedType(); 729 Res = ImplicitCastExpr::Create(Context, T, CK_AtomicToNonAtomic, Res.get(), 730 nullptr, VK_PRValue, FPOptionsOverride()); 731 } 732 733 return Res; 734 } 735 736 ExprResult Sema::DefaultFunctionArrayLvalueConversion(Expr *E, bool Diagnose) { 737 ExprResult Res = DefaultFunctionArrayConversion(E, Diagnose); 738 if (Res.isInvalid()) 739 return ExprError(); 740 Res = DefaultLvalueConversion(Res.get()); 741 if (Res.isInvalid()) 742 return ExprError(); 743 return Res; 744 } 745 746 /// CallExprUnaryConversions - a special case of an unary conversion 747 /// performed on a function designator of a call expression. 748 ExprResult Sema::CallExprUnaryConversions(Expr *E) { 749 QualType Ty = E->getType(); 750 ExprResult Res = E; 751 // Only do implicit cast for a function type, but not for a pointer 752 // to function type. 753 if (Ty->isFunctionType()) { 754 Res = ImpCastExprToType(E, Context.getPointerType(Ty), 755 CK_FunctionToPointerDecay); 756 if (Res.isInvalid()) 757 return ExprError(); 758 } 759 Res = DefaultLvalueConversion(Res.get()); 760 if (Res.isInvalid()) 761 return ExprError(); 762 return Res.get(); 763 } 764 765 /// UsualUnaryConversions - Performs various conversions that are common to most 766 /// operators (C99 6.3). The conversions of array and function types are 767 /// sometimes suppressed. For example, the array->pointer conversion doesn't 768 /// apply if the array is an argument to the sizeof or address (&) operators. 769 /// In these instances, this routine should *not* be called. 770 ExprResult Sema::UsualUnaryConversions(Expr *E) { 771 // First, convert to an r-value. 772 ExprResult Res = DefaultFunctionArrayLvalueConversion(E); 773 if (Res.isInvalid()) 774 return ExprError(); 775 E = Res.get(); 776 777 QualType Ty = E->getType(); 778 assert(!Ty.isNull() && "UsualUnaryConversions - missing type"); 779 780 LangOptions::FPEvalMethodKind EvalMethod = CurFPFeatures.getFPEvalMethod(); 781 if (EvalMethod != LangOptions::FEM_Source && Ty->isFloatingType() && 782 (getLangOpts().getFPEvalMethod() != 783 LangOptions::FPEvalMethodKind::FEM_UnsetOnCommandLine || 784 PP.getLastFPEvalPragmaLocation().isValid())) { 785 switch (EvalMethod) { 786 default: 787 llvm_unreachable("Unrecognized float evaluation method"); 788 break; 789 case LangOptions::FEM_UnsetOnCommandLine: 790 llvm_unreachable("Float evaluation method should be set by now"); 791 break; 792 case LangOptions::FEM_Double: 793 if (Context.getFloatingTypeOrder(Context.DoubleTy, Ty) > 0) 794 // Widen the expression to double. 795 return Ty->isComplexType() 796 ? ImpCastExprToType(E, 797 Context.getComplexType(Context.DoubleTy), 798 CK_FloatingComplexCast) 799 : ImpCastExprToType(E, Context.DoubleTy, CK_FloatingCast); 800 break; 801 case LangOptions::FEM_Extended: 802 if (Context.getFloatingTypeOrder(Context.LongDoubleTy, Ty) > 0) 803 // Widen the expression to long double. 804 return Ty->isComplexType() 805 ? ImpCastExprToType( 806 E, Context.getComplexType(Context.LongDoubleTy), 807 CK_FloatingComplexCast) 808 : ImpCastExprToType(E, Context.LongDoubleTy, 809 CK_FloatingCast); 810 break; 811 } 812 } 813 814 // Half FP have to be promoted to float unless it is natively supported 815 if (Ty->isHalfType() && !getLangOpts().NativeHalfType) 816 return ImpCastExprToType(Res.get(), Context.FloatTy, CK_FloatingCast); 817 818 // Try to perform integral promotions if the object has a theoretically 819 // promotable type. 820 if (Ty->isIntegralOrUnscopedEnumerationType()) { 821 // C99 6.3.1.1p2: 822 // 823 // The following may be used in an expression wherever an int or 824 // unsigned int may be used: 825 // - an object or expression with an integer type whose integer 826 // conversion rank is less than or equal to the rank of int 827 // and unsigned int. 828 // - A bit-field of type _Bool, int, signed int, or unsigned int. 829 // 830 // If an int can represent all values of the original type, the 831 // value is converted to an int; otherwise, it is converted to an 832 // unsigned int. These are called the integer promotions. All 833 // other types are unchanged by the integer promotions. 834 835 QualType PTy = Context.isPromotableBitField(E); 836 if (!PTy.isNull()) { 837 E = ImpCastExprToType(E, PTy, CK_IntegralCast).get(); 838 return E; 839 } 840 if (Ty->isPromotableIntegerType()) { 841 QualType PT = Context.getPromotedIntegerType(Ty); 842 E = ImpCastExprToType(E, PT, CK_IntegralCast).get(); 843 return E; 844 } 845 } 846 return E; 847 } 848 849 /// DefaultArgumentPromotion (C99 6.5.2.2p6). Used for function calls that 850 /// do not have a prototype. Arguments that have type float or __fp16 851 /// are promoted to double. All other argument types are converted by 852 /// UsualUnaryConversions(). 853 ExprResult Sema::DefaultArgumentPromotion(Expr *E) { 854 QualType Ty = E->getType(); 855 assert(!Ty.isNull() && "DefaultArgumentPromotion - missing type"); 856 857 ExprResult Res = UsualUnaryConversions(E); 858 if (Res.isInvalid()) 859 return ExprError(); 860 E = Res.get(); 861 862 // If this is a 'float' or '__fp16' (CVR qualified or typedef) 863 // promote to double. 864 // Note that default argument promotion applies only to float (and 865 // half/fp16); it does not apply to _Float16. 866 const BuiltinType *BTy = Ty->getAs<BuiltinType>(); 867 if (BTy && (BTy->getKind() == BuiltinType::Half || 868 BTy->getKind() == BuiltinType::Float)) { 869 if (getLangOpts().OpenCL && 870 !getOpenCLOptions().isAvailableOption("cl_khr_fp64", getLangOpts())) { 871 if (BTy->getKind() == BuiltinType::Half) { 872 E = ImpCastExprToType(E, Context.FloatTy, CK_FloatingCast).get(); 873 } 874 } else { 875 E = ImpCastExprToType(E, Context.DoubleTy, CK_FloatingCast).get(); 876 } 877 } 878 if (BTy && 879 getLangOpts().getExtendIntArgs() == 880 LangOptions::ExtendArgsKind::ExtendTo64 && 881 Context.getTargetInfo().supportsExtendIntArgs() && Ty->isIntegerType() && 882 Context.getTypeSizeInChars(BTy) < 883 Context.getTypeSizeInChars(Context.LongLongTy)) { 884 E = (Ty->isUnsignedIntegerType()) 885 ? ImpCastExprToType(E, Context.UnsignedLongLongTy, CK_IntegralCast) 886 .get() 887 : ImpCastExprToType(E, Context.LongLongTy, CK_IntegralCast).get(); 888 assert(8 == Context.getTypeSizeInChars(Context.LongLongTy).getQuantity() && 889 "Unexpected typesize for LongLongTy"); 890 } 891 892 // C++ performs lvalue-to-rvalue conversion as a default argument 893 // promotion, even on class types, but note: 894 // C++11 [conv.lval]p2: 895 // When an lvalue-to-rvalue conversion occurs in an unevaluated 896 // operand or a subexpression thereof the value contained in the 897 // referenced object is not accessed. Otherwise, if the glvalue 898 // has a class type, the conversion copy-initializes a temporary 899 // of type T from the glvalue and the result of the conversion 900 // is a prvalue for the temporary. 901 // FIXME: add some way to gate this entire thing for correctness in 902 // potentially potentially evaluated contexts. 903 if (getLangOpts().CPlusPlus && E->isGLValue() && !isUnevaluatedContext()) { 904 ExprResult Temp = PerformCopyInitialization( 905 InitializedEntity::InitializeTemporary(E->getType()), 906 E->getExprLoc(), E); 907 if (Temp.isInvalid()) 908 return ExprError(); 909 E = Temp.get(); 910 } 911 912 return E; 913 } 914 915 /// Determine the degree of POD-ness for an expression. 916 /// Incomplete types are considered POD, since this check can be performed 917 /// when we're in an unevaluated context. 918 Sema::VarArgKind Sema::isValidVarArgType(const QualType &Ty) { 919 if (Ty->isIncompleteType()) { 920 // C++11 [expr.call]p7: 921 // After these conversions, if the argument does not have arithmetic, 922 // enumeration, pointer, pointer to member, or class type, the program 923 // is ill-formed. 924 // 925 // Since we've already performed array-to-pointer and function-to-pointer 926 // decay, the only such type in C++ is cv void. This also handles 927 // initializer lists as variadic arguments. 928 if (Ty->isVoidType()) 929 return VAK_Invalid; 930 931 if (Ty->isObjCObjectType()) 932 return VAK_Invalid; 933 return VAK_Valid; 934 } 935 936 if (Ty.isDestructedType() == QualType::DK_nontrivial_c_struct) 937 return VAK_Invalid; 938 939 if (Ty.isCXX98PODType(Context)) 940 return VAK_Valid; 941 942 // C++11 [expr.call]p7: 943 // Passing a potentially-evaluated argument of class type (Clause 9) 944 // having a non-trivial copy constructor, a non-trivial move constructor, 945 // or a non-trivial destructor, with no corresponding parameter, 946 // is conditionally-supported with implementation-defined semantics. 947 if (getLangOpts().CPlusPlus11 && !Ty->isDependentType()) 948 if (CXXRecordDecl *Record = Ty->getAsCXXRecordDecl()) 949 if (!Record->hasNonTrivialCopyConstructor() && 950 !Record->hasNonTrivialMoveConstructor() && 951 !Record->hasNonTrivialDestructor()) 952 return VAK_ValidInCXX11; 953 954 if (getLangOpts().ObjCAutoRefCount && Ty->isObjCLifetimeType()) 955 return VAK_Valid; 956 957 if (Ty->isObjCObjectType()) 958 return VAK_Invalid; 959 960 if (getLangOpts().MSVCCompat) 961 return VAK_MSVCUndefined; 962 963 // FIXME: In C++11, these cases are conditionally-supported, meaning we're 964 // permitted to reject them. We should consider doing so. 965 return VAK_Undefined; 966 } 967 968 void Sema::checkVariadicArgument(const Expr *E, VariadicCallType CT) { 969 // Don't allow one to pass an Objective-C interface to a vararg. 970 const QualType &Ty = E->getType(); 971 VarArgKind VAK = isValidVarArgType(Ty); 972 973 // Complain about passing non-POD types through varargs. 974 switch (VAK) { 975 case VAK_ValidInCXX11: 976 DiagRuntimeBehavior( 977 E->getBeginLoc(), nullptr, 978 PDiag(diag::warn_cxx98_compat_pass_non_pod_arg_to_vararg) << Ty << CT); 979 LLVM_FALLTHROUGH; 980 case VAK_Valid: 981 if (Ty->isRecordType()) { 982 // This is unlikely to be what the user intended. If the class has a 983 // 'c_str' member function, the user probably meant to call that. 984 DiagRuntimeBehavior(E->getBeginLoc(), nullptr, 985 PDiag(diag::warn_pass_class_arg_to_vararg) 986 << Ty << CT << hasCStrMethod(E) << ".c_str()"); 987 } 988 break; 989 990 case VAK_Undefined: 991 case VAK_MSVCUndefined: 992 DiagRuntimeBehavior(E->getBeginLoc(), nullptr, 993 PDiag(diag::warn_cannot_pass_non_pod_arg_to_vararg) 994 << getLangOpts().CPlusPlus11 << Ty << CT); 995 break; 996 997 case VAK_Invalid: 998 if (Ty.isDestructedType() == QualType::DK_nontrivial_c_struct) 999 Diag(E->getBeginLoc(), 1000 diag::err_cannot_pass_non_trivial_c_struct_to_vararg) 1001 << Ty << CT; 1002 else if (Ty->isObjCObjectType()) 1003 DiagRuntimeBehavior(E->getBeginLoc(), nullptr, 1004 PDiag(diag::err_cannot_pass_objc_interface_to_vararg) 1005 << Ty << CT); 1006 else 1007 Diag(E->getBeginLoc(), diag::err_cannot_pass_to_vararg) 1008 << isa<InitListExpr>(E) << Ty << CT; 1009 break; 1010 } 1011 } 1012 1013 /// DefaultVariadicArgumentPromotion - Like DefaultArgumentPromotion, but 1014 /// will create a trap if the resulting type is not a POD type. 1015 ExprResult Sema::DefaultVariadicArgumentPromotion(Expr *E, VariadicCallType CT, 1016 FunctionDecl *FDecl) { 1017 if (const BuiltinType *PlaceholderTy = E->getType()->getAsPlaceholderType()) { 1018 // Strip the unbridged-cast placeholder expression off, if applicable. 1019 if (PlaceholderTy->getKind() == BuiltinType::ARCUnbridgedCast && 1020 (CT == VariadicMethod || 1021 (FDecl && FDecl->hasAttr<CFAuditedTransferAttr>()))) { 1022 E = stripARCUnbridgedCast(E); 1023 1024 // Otherwise, do normal placeholder checking. 1025 } else { 1026 ExprResult ExprRes = CheckPlaceholderExpr(E); 1027 if (ExprRes.isInvalid()) 1028 return ExprError(); 1029 E = ExprRes.get(); 1030 } 1031 } 1032 1033 ExprResult ExprRes = DefaultArgumentPromotion(E); 1034 if (ExprRes.isInvalid()) 1035 return ExprError(); 1036 1037 // Copy blocks to the heap. 1038 if (ExprRes.get()->getType()->isBlockPointerType()) 1039 maybeExtendBlockObject(ExprRes); 1040 1041 E = ExprRes.get(); 1042 1043 // Diagnostics regarding non-POD argument types are 1044 // emitted along with format string checking in Sema::CheckFunctionCall(). 1045 if (isValidVarArgType(E->getType()) == VAK_Undefined) { 1046 // Turn this into a trap. 1047 CXXScopeSpec SS; 1048 SourceLocation TemplateKWLoc; 1049 UnqualifiedId Name; 1050 Name.setIdentifier(PP.getIdentifierInfo("__builtin_trap"), 1051 E->getBeginLoc()); 1052 ExprResult TrapFn = ActOnIdExpression(TUScope, SS, TemplateKWLoc, Name, 1053 /*HasTrailingLParen=*/true, 1054 /*IsAddressOfOperand=*/false); 1055 if (TrapFn.isInvalid()) 1056 return ExprError(); 1057 1058 ExprResult Call = BuildCallExpr(TUScope, TrapFn.get(), E->getBeginLoc(), 1059 None, E->getEndLoc()); 1060 if (Call.isInvalid()) 1061 return ExprError(); 1062 1063 ExprResult Comma = 1064 ActOnBinOp(TUScope, E->getBeginLoc(), tok::comma, Call.get(), E); 1065 if (Comma.isInvalid()) 1066 return ExprError(); 1067 return Comma.get(); 1068 } 1069 1070 if (!getLangOpts().CPlusPlus && 1071 RequireCompleteType(E->getExprLoc(), E->getType(), 1072 diag::err_call_incomplete_argument)) 1073 return ExprError(); 1074 1075 return E; 1076 } 1077 1078 /// Converts an integer to complex float type. Helper function of 1079 /// UsualArithmeticConversions() 1080 /// 1081 /// \return false if the integer expression is an integer type and is 1082 /// successfully converted to the complex type. 1083 static bool handleIntegerToComplexFloatConversion(Sema &S, ExprResult &IntExpr, 1084 ExprResult &ComplexExpr, 1085 QualType IntTy, 1086 QualType ComplexTy, 1087 bool SkipCast) { 1088 if (IntTy->isComplexType() || IntTy->isRealFloatingType()) return true; 1089 if (SkipCast) return false; 1090 if (IntTy->isIntegerType()) { 1091 QualType fpTy = cast<ComplexType>(ComplexTy)->getElementType(); 1092 IntExpr = S.ImpCastExprToType(IntExpr.get(), fpTy, CK_IntegralToFloating); 1093 IntExpr = S.ImpCastExprToType(IntExpr.get(), ComplexTy, 1094 CK_FloatingRealToComplex); 1095 } else { 1096 assert(IntTy->isComplexIntegerType()); 1097 IntExpr = S.ImpCastExprToType(IntExpr.get(), ComplexTy, 1098 CK_IntegralComplexToFloatingComplex); 1099 } 1100 return false; 1101 } 1102 1103 /// Handle arithmetic conversion with complex types. Helper function of 1104 /// UsualArithmeticConversions() 1105 static QualType handleComplexFloatConversion(Sema &S, ExprResult &LHS, 1106 ExprResult &RHS, QualType LHSType, 1107 QualType RHSType, 1108 bool IsCompAssign) { 1109 // if we have an integer operand, the result is the complex type. 1110 if (!handleIntegerToComplexFloatConversion(S, RHS, LHS, RHSType, LHSType, 1111 /*skipCast*/false)) 1112 return LHSType; 1113 if (!handleIntegerToComplexFloatConversion(S, LHS, RHS, LHSType, RHSType, 1114 /*skipCast*/IsCompAssign)) 1115 return RHSType; 1116 1117 // This handles complex/complex, complex/float, or float/complex. 1118 // When both operands are complex, the shorter operand is converted to the 1119 // type of the longer, and that is the type of the result. This corresponds 1120 // to what is done when combining two real floating-point operands. 1121 // The fun begins when size promotion occur across type domains. 1122 // From H&S 6.3.4: When one operand is complex and the other is a real 1123 // floating-point type, the less precise type is converted, within it's 1124 // real or complex domain, to the precision of the other type. For example, 1125 // when combining a "long double" with a "double _Complex", the 1126 // "double _Complex" is promoted to "long double _Complex". 1127 1128 // Compute the rank of the two types, regardless of whether they are complex. 1129 int Order = S.Context.getFloatingTypeOrder(LHSType, RHSType); 1130 1131 auto *LHSComplexType = dyn_cast<ComplexType>(LHSType); 1132 auto *RHSComplexType = dyn_cast<ComplexType>(RHSType); 1133 QualType LHSElementType = 1134 LHSComplexType ? LHSComplexType->getElementType() : LHSType; 1135 QualType RHSElementType = 1136 RHSComplexType ? RHSComplexType->getElementType() : RHSType; 1137 1138 QualType ResultType = S.Context.getComplexType(LHSElementType); 1139 if (Order < 0) { 1140 // Promote the precision of the LHS if not an assignment. 1141 ResultType = S.Context.getComplexType(RHSElementType); 1142 if (!IsCompAssign) { 1143 if (LHSComplexType) 1144 LHS = 1145 S.ImpCastExprToType(LHS.get(), ResultType, CK_FloatingComplexCast); 1146 else 1147 LHS = S.ImpCastExprToType(LHS.get(), RHSElementType, CK_FloatingCast); 1148 } 1149 } else if (Order > 0) { 1150 // Promote the precision of the RHS. 1151 if (RHSComplexType) 1152 RHS = S.ImpCastExprToType(RHS.get(), ResultType, CK_FloatingComplexCast); 1153 else 1154 RHS = S.ImpCastExprToType(RHS.get(), LHSElementType, CK_FloatingCast); 1155 } 1156 return ResultType; 1157 } 1158 1159 /// Handle arithmetic conversion from integer to float. Helper function 1160 /// of UsualArithmeticConversions() 1161 static QualType handleIntToFloatConversion(Sema &S, ExprResult &FloatExpr, 1162 ExprResult &IntExpr, 1163 QualType FloatTy, QualType IntTy, 1164 bool ConvertFloat, bool ConvertInt) { 1165 if (IntTy->isIntegerType()) { 1166 if (ConvertInt) 1167 // Convert intExpr to the lhs floating point type. 1168 IntExpr = S.ImpCastExprToType(IntExpr.get(), FloatTy, 1169 CK_IntegralToFloating); 1170 return FloatTy; 1171 } 1172 1173 // Convert both sides to the appropriate complex float. 1174 assert(IntTy->isComplexIntegerType()); 1175 QualType result = S.Context.getComplexType(FloatTy); 1176 1177 // _Complex int -> _Complex float 1178 if (ConvertInt) 1179 IntExpr = S.ImpCastExprToType(IntExpr.get(), result, 1180 CK_IntegralComplexToFloatingComplex); 1181 1182 // float -> _Complex float 1183 if (ConvertFloat) 1184 FloatExpr = S.ImpCastExprToType(FloatExpr.get(), result, 1185 CK_FloatingRealToComplex); 1186 1187 return result; 1188 } 1189 1190 /// Handle arithmethic conversion with floating point types. Helper 1191 /// function of UsualArithmeticConversions() 1192 static QualType handleFloatConversion(Sema &S, ExprResult &LHS, 1193 ExprResult &RHS, QualType LHSType, 1194 QualType RHSType, bool IsCompAssign) { 1195 bool LHSFloat = LHSType->isRealFloatingType(); 1196 bool RHSFloat = RHSType->isRealFloatingType(); 1197 1198 // N1169 4.1.4: If one of the operands has a floating type and the other 1199 // operand has a fixed-point type, the fixed-point operand 1200 // is converted to the floating type [...] 1201 if (LHSType->isFixedPointType() || RHSType->isFixedPointType()) { 1202 if (LHSFloat) 1203 RHS = S.ImpCastExprToType(RHS.get(), LHSType, CK_FixedPointToFloating); 1204 else if (!IsCompAssign) 1205 LHS = S.ImpCastExprToType(LHS.get(), RHSType, CK_FixedPointToFloating); 1206 return LHSFloat ? LHSType : RHSType; 1207 } 1208 1209 // If we have two real floating types, convert the smaller operand 1210 // to the bigger result. 1211 if (LHSFloat && RHSFloat) { 1212 int order = S.Context.getFloatingTypeOrder(LHSType, RHSType); 1213 if (order > 0) { 1214 RHS = S.ImpCastExprToType(RHS.get(), LHSType, CK_FloatingCast); 1215 return LHSType; 1216 } 1217 1218 assert(order < 0 && "illegal float comparison"); 1219 if (!IsCompAssign) 1220 LHS = S.ImpCastExprToType(LHS.get(), RHSType, CK_FloatingCast); 1221 return RHSType; 1222 } 1223 1224 if (LHSFloat) { 1225 // Half FP has to be promoted to float unless it is natively supported 1226 if (LHSType->isHalfType() && !S.getLangOpts().NativeHalfType) 1227 LHSType = S.Context.FloatTy; 1228 1229 return handleIntToFloatConversion(S, LHS, RHS, LHSType, RHSType, 1230 /*ConvertFloat=*/!IsCompAssign, 1231 /*ConvertInt=*/ true); 1232 } 1233 assert(RHSFloat); 1234 return handleIntToFloatConversion(S, RHS, LHS, RHSType, LHSType, 1235 /*ConvertFloat=*/ true, 1236 /*ConvertInt=*/!IsCompAssign); 1237 } 1238 1239 /// Diagnose attempts to convert between __float128, __ibm128 and 1240 /// long double if there is no support for such conversion. 1241 /// Helper function of UsualArithmeticConversions(). 1242 static bool unsupportedTypeConversion(const Sema &S, QualType LHSType, 1243 QualType RHSType) { 1244 // No issue if either is not a floating point type. 1245 if (!LHSType->isFloatingType() || !RHSType->isFloatingType()) 1246 return false; 1247 1248 // No issue if both have the same 128-bit float semantics. 1249 auto *LHSComplex = LHSType->getAs<ComplexType>(); 1250 auto *RHSComplex = RHSType->getAs<ComplexType>(); 1251 1252 QualType LHSElem = LHSComplex ? LHSComplex->getElementType() : LHSType; 1253 QualType RHSElem = RHSComplex ? RHSComplex->getElementType() : RHSType; 1254 1255 const llvm::fltSemantics &LHSSem = S.Context.getFloatTypeSemantics(LHSElem); 1256 const llvm::fltSemantics &RHSSem = S.Context.getFloatTypeSemantics(RHSElem); 1257 1258 if ((&LHSSem != &llvm::APFloat::PPCDoubleDouble() || 1259 &RHSSem != &llvm::APFloat::IEEEquad()) && 1260 (&LHSSem != &llvm::APFloat::IEEEquad() || 1261 &RHSSem != &llvm::APFloat::PPCDoubleDouble())) 1262 return false; 1263 1264 return true; 1265 } 1266 1267 typedef ExprResult PerformCastFn(Sema &S, Expr *operand, QualType toType); 1268 1269 namespace { 1270 /// These helper callbacks are placed in an anonymous namespace to 1271 /// permit their use as function template parameters. 1272 ExprResult doIntegralCast(Sema &S, Expr *op, QualType toType) { 1273 return S.ImpCastExprToType(op, toType, CK_IntegralCast); 1274 } 1275 1276 ExprResult doComplexIntegralCast(Sema &S, Expr *op, QualType toType) { 1277 return S.ImpCastExprToType(op, S.Context.getComplexType(toType), 1278 CK_IntegralComplexCast); 1279 } 1280 } 1281 1282 /// Handle integer arithmetic conversions. Helper function of 1283 /// UsualArithmeticConversions() 1284 template <PerformCastFn doLHSCast, PerformCastFn doRHSCast> 1285 static QualType handleIntegerConversion(Sema &S, ExprResult &LHS, 1286 ExprResult &RHS, QualType LHSType, 1287 QualType RHSType, bool IsCompAssign) { 1288 // The rules for this case are in C99 6.3.1.8 1289 int order = S.Context.getIntegerTypeOrder(LHSType, RHSType); 1290 bool LHSSigned = LHSType->hasSignedIntegerRepresentation(); 1291 bool RHSSigned = RHSType->hasSignedIntegerRepresentation(); 1292 if (LHSSigned == RHSSigned) { 1293 // Same signedness; use the higher-ranked type 1294 if (order >= 0) { 1295 RHS = (*doRHSCast)(S, RHS.get(), LHSType); 1296 return LHSType; 1297 } else if (!IsCompAssign) 1298 LHS = (*doLHSCast)(S, LHS.get(), RHSType); 1299 return RHSType; 1300 } else if (order != (LHSSigned ? 1 : -1)) { 1301 // The unsigned type has greater than or equal rank to the 1302 // signed type, so use the unsigned type 1303 if (RHSSigned) { 1304 RHS = (*doRHSCast)(S, RHS.get(), LHSType); 1305 return LHSType; 1306 } else if (!IsCompAssign) 1307 LHS = (*doLHSCast)(S, LHS.get(), RHSType); 1308 return RHSType; 1309 } else if (S.Context.getIntWidth(LHSType) != S.Context.getIntWidth(RHSType)) { 1310 // The two types are different widths; if we are here, that 1311 // means the signed type is larger than the unsigned type, so 1312 // use the signed type. 1313 if (LHSSigned) { 1314 RHS = (*doRHSCast)(S, RHS.get(), LHSType); 1315 return LHSType; 1316 } else if (!IsCompAssign) 1317 LHS = (*doLHSCast)(S, LHS.get(), RHSType); 1318 return RHSType; 1319 } else { 1320 // The signed type is higher-ranked than the unsigned type, 1321 // but isn't actually any bigger (like unsigned int and long 1322 // on most 32-bit systems). Use the unsigned type corresponding 1323 // to the signed type. 1324 QualType result = 1325 S.Context.getCorrespondingUnsignedType(LHSSigned ? LHSType : RHSType); 1326 RHS = (*doRHSCast)(S, RHS.get(), result); 1327 if (!IsCompAssign) 1328 LHS = (*doLHSCast)(S, LHS.get(), result); 1329 return result; 1330 } 1331 } 1332 1333 /// Handle conversions with GCC complex int extension. Helper function 1334 /// of UsualArithmeticConversions() 1335 static QualType handleComplexIntConversion(Sema &S, ExprResult &LHS, 1336 ExprResult &RHS, QualType LHSType, 1337 QualType RHSType, 1338 bool IsCompAssign) { 1339 const ComplexType *LHSComplexInt = LHSType->getAsComplexIntegerType(); 1340 const ComplexType *RHSComplexInt = RHSType->getAsComplexIntegerType(); 1341 1342 if (LHSComplexInt && RHSComplexInt) { 1343 QualType LHSEltType = LHSComplexInt->getElementType(); 1344 QualType RHSEltType = RHSComplexInt->getElementType(); 1345 QualType ScalarType = 1346 handleIntegerConversion<doComplexIntegralCast, doComplexIntegralCast> 1347 (S, LHS, RHS, LHSEltType, RHSEltType, IsCompAssign); 1348 1349 return S.Context.getComplexType(ScalarType); 1350 } 1351 1352 if (LHSComplexInt) { 1353 QualType LHSEltType = LHSComplexInt->getElementType(); 1354 QualType ScalarType = 1355 handleIntegerConversion<doComplexIntegralCast, doIntegralCast> 1356 (S, LHS, RHS, LHSEltType, RHSType, IsCompAssign); 1357 QualType ComplexType = S.Context.getComplexType(ScalarType); 1358 RHS = S.ImpCastExprToType(RHS.get(), ComplexType, 1359 CK_IntegralRealToComplex); 1360 1361 return ComplexType; 1362 } 1363 1364 assert(RHSComplexInt); 1365 1366 QualType RHSEltType = RHSComplexInt->getElementType(); 1367 QualType ScalarType = 1368 handleIntegerConversion<doIntegralCast, doComplexIntegralCast> 1369 (S, LHS, RHS, LHSType, RHSEltType, IsCompAssign); 1370 QualType ComplexType = S.Context.getComplexType(ScalarType); 1371 1372 if (!IsCompAssign) 1373 LHS = S.ImpCastExprToType(LHS.get(), ComplexType, 1374 CK_IntegralRealToComplex); 1375 return ComplexType; 1376 } 1377 1378 /// Return the rank of a given fixed point or integer type. The value itself 1379 /// doesn't matter, but the values must be increasing with proper increasing 1380 /// rank as described in N1169 4.1.1. 1381 static unsigned GetFixedPointRank(QualType Ty) { 1382 const auto *BTy = Ty->getAs<BuiltinType>(); 1383 assert(BTy && "Expected a builtin type."); 1384 1385 switch (BTy->getKind()) { 1386 case BuiltinType::ShortFract: 1387 case BuiltinType::UShortFract: 1388 case BuiltinType::SatShortFract: 1389 case BuiltinType::SatUShortFract: 1390 return 1; 1391 case BuiltinType::Fract: 1392 case BuiltinType::UFract: 1393 case BuiltinType::SatFract: 1394 case BuiltinType::SatUFract: 1395 return 2; 1396 case BuiltinType::LongFract: 1397 case BuiltinType::ULongFract: 1398 case BuiltinType::SatLongFract: 1399 case BuiltinType::SatULongFract: 1400 return 3; 1401 case BuiltinType::ShortAccum: 1402 case BuiltinType::UShortAccum: 1403 case BuiltinType::SatShortAccum: 1404 case BuiltinType::SatUShortAccum: 1405 return 4; 1406 case BuiltinType::Accum: 1407 case BuiltinType::UAccum: 1408 case BuiltinType::SatAccum: 1409 case BuiltinType::SatUAccum: 1410 return 5; 1411 case BuiltinType::LongAccum: 1412 case BuiltinType::ULongAccum: 1413 case BuiltinType::SatLongAccum: 1414 case BuiltinType::SatULongAccum: 1415 return 6; 1416 default: 1417 if (BTy->isInteger()) 1418 return 0; 1419 llvm_unreachable("Unexpected fixed point or integer type"); 1420 } 1421 } 1422 1423 /// handleFixedPointConversion - Fixed point operations between fixed 1424 /// point types and integers or other fixed point types do not fall under 1425 /// usual arithmetic conversion since these conversions could result in loss 1426 /// of precsision (N1169 4.1.4). These operations should be calculated with 1427 /// the full precision of their result type (N1169 4.1.6.2.1). 1428 static QualType handleFixedPointConversion(Sema &S, QualType LHSTy, 1429 QualType RHSTy) { 1430 assert((LHSTy->isFixedPointType() || RHSTy->isFixedPointType()) && 1431 "Expected at least one of the operands to be a fixed point type"); 1432 assert((LHSTy->isFixedPointOrIntegerType() || 1433 RHSTy->isFixedPointOrIntegerType()) && 1434 "Special fixed point arithmetic operation conversions are only " 1435 "applied to ints or other fixed point types"); 1436 1437 // If one operand has signed fixed-point type and the other operand has 1438 // unsigned fixed-point type, then the unsigned fixed-point operand is 1439 // converted to its corresponding signed fixed-point type and the resulting 1440 // type is the type of the converted operand. 1441 if (RHSTy->isSignedFixedPointType() && LHSTy->isUnsignedFixedPointType()) 1442 LHSTy = S.Context.getCorrespondingSignedFixedPointType(LHSTy); 1443 else if (RHSTy->isUnsignedFixedPointType() && LHSTy->isSignedFixedPointType()) 1444 RHSTy = S.Context.getCorrespondingSignedFixedPointType(RHSTy); 1445 1446 // The result type is the type with the highest rank, whereby a fixed-point 1447 // conversion rank is always greater than an integer conversion rank; if the 1448 // type of either of the operands is a saturating fixedpoint type, the result 1449 // type shall be the saturating fixed-point type corresponding to the type 1450 // with the highest rank; the resulting value is converted (taking into 1451 // account rounding and overflow) to the precision of the resulting type. 1452 // Same ranks between signed and unsigned types are resolved earlier, so both 1453 // types are either signed or both unsigned at this point. 1454 unsigned LHSTyRank = GetFixedPointRank(LHSTy); 1455 unsigned RHSTyRank = GetFixedPointRank(RHSTy); 1456 1457 QualType ResultTy = LHSTyRank > RHSTyRank ? LHSTy : RHSTy; 1458 1459 if (LHSTy->isSaturatedFixedPointType() || RHSTy->isSaturatedFixedPointType()) 1460 ResultTy = S.Context.getCorrespondingSaturatedType(ResultTy); 1461 1462 return ResultTy; 1463 } 1464 1465 /// Check that the usual arithmetic conversions can be performed on this pair of 1466 /// expressions that might be of enumeration type. 1467 static void checkEnumArithmeticConversions(Sema &S, Expr *LHS, Expr *RHS, 1468 SourceLocation Loc, 1469 Sema::ArithConvKind ACK) { 1470 // C++2a [expr.arith.conv]p1: 1471 // If one operand is of enumeration type and the other operand is of a 1472 // different enumeration type or a floating-point type, this behavior is 1473 // deprecated ([depr.arith.conv.enum]). 1474 // 1475 // Warn on this in all language modes. Produce a deprecation warning in C++20. 1476 // Eventually we will presumably reject these cases (in C++23 onwards?). 1477 QualType L = LHS->getType(), R = RHS->getType(); 1478 bool LEnum = L->isUnscopedEnumerationType(), 1479 REnum = R->isUnscopedEnumerationType(); 1480 bool IsCompAssign = ACK == Sema::ACK_CompAssign; 1481 if ((!IsCompAssign && LEnum && R->isFloatingType()) || 1482 (REnum && L->isFloatingType())) { 1483 S.Diag(Loc, S.getLangOpts().CPlusPlus20 1484 ? diag::warn_arith_conv_enum_float_cxx20 1485 : diag::warn_arith_conv_enum_float) 1486 << LHS->getSourceRange() << RHS->getSourceRange() 1487 << (int)ACK << LEnum << L << R; 1488 } else if (!IsCompAssign && LEnum && REnum && 1489 !S.Context.hasSameUnqualifiedType(L, R)) { 1490 unsigned DiagID; 1491 if (!L->castAs<EnumType>()->getDecl()->hasNameForLinkage() || 1492 !R->castAs<EnumType>()->getDecl()->hasNameForLinkage()) { 1493 // If either enumeration type is unnamed, it's less likely that the 1494 // user cares about this, but this situation is still deprecated in 1495 // C++2a. Use a different warning group. 1496 DiagID = S.getLangOpts().CPlusPlus20 1497 ? diag::warn_arith_conv_mixed_anon_enum_types_cxx20 1498 : diag::warn_arith_conv_mixed_anon_enum_types; 1499 } else if (ACK == Sema::ACK_Conditional) { 1500 // Conditional expressions are separated out because they have 1501 // historically had a different warning flag. 1502 DiagID = S.getLangOpts().CPlusPlus20 1503 ? diag::warn_conditional_mixed_enum_types_cxx20 1504 : diag::warn_conditional_mixed_enum_types; 1505 } else if (ACK == Sema::ACK_Comparison) { 1506 // Comparison expressions are separated out because they have 1507 // historically had a different warning flag. 1508 DiagID = S.getLangOpts().CPlusPlus20 1509 ? diag::warn_comparison_mixed_enum_types_cxx20 1510 : diag::warn_comparison_mixed_enum_types; 1511 } else { 1512 DiagID = S.getLangOpts().CPlusPlus20 1513 ? diag::warn_arith_conv_mixed_enum_types_cxx20 1514 : diag::warn_arith_conv_mixed_enum_types; 1515 } 1516 S.Diag(Loc, DiagID) << LHS->getSourceRange() << RHS->getSourceRange() 1517 << (int)ACK << L << R; 1518 } 1519 } 1520 1521 /// UsualArithmeticConversions - Performs various conversions that are common to 1522 /// binary operators (C99 6.3.1.8). If both operands aren't arithmetic, this 1523 /// routine returns the first non-arithmetic type found. The client is 1524 /// responsible for emitting appropriate error diagnostics. 1525 QualType Sema::UsualArithmeticConversions(ExprResult &LHS, ExprResult &RHS, 1526 SourceLocation Loc, 1527 ArithConvKind ACK) { 1528 checkEnumArithmeticConversions(*this, LHS.get(), RHS.get(), Loc, ACK); 1529 1530 if (ACK != ACK_CompAssign) { 1531 LHS = UsualUnaryConversions(LHS.get()); 1532 if (LHS.isInvalid()) 1533 return QualType(); 1534 } 1535 1536 RHS = UsualUnaryConversions(RHS.get()); 1537 if (RHS.isInvalid()) 1538 return QualType(); 1539 1540 // For conversion purposes, we ignore any qualifiers. 1541 // For example, "const float" and "float" are equivalent. 1542 QualType LHSType = 1543 Context.getCanonicalType(LHS.get()->getType()).getUnqualifiedType(); 1544 QualType RHSType = 1545 Context.getCanonicalType(RHS.get()->getType()).getUnqualifiedType(); 1546 1547 // For conversion purposes, we ignore any atomic qualifier on the LHS. 1548 if (const AtomicType *AtomicLHS = LHSType->getAs<AtomicType>()) 1549 LHSType = AtomicLHS->getValueType(); 1550 1551 // If both types are identical, no conversion is needed. 1552 if (LHSType == RHSType) 1553 return LHSType; 1554 1555 // If either side is a non-arithmetic type (e.g. a pointer), we are done. 1556 // The caller can deal with this (e.g. pointer + int). 1557 if (!LHSType->isArithmeticType() || !RHSType->isArithmeticType()) 1558 return QualType(); 1559 1560 // Apply unary and bitfield promotions to the LHS's type. 1561 QualType LHSUnpromotedType = LHSType; 1562 if (LHSType->isPromotableIntegerType()) 1563 LHSType = Context.getPromotedIntegerType(LHSType); 1564 QualType LHSBitfieldPromoteTy = Context.isPromotableBitField(LHS.get()); 1565 if (!LHSBitfieldPromoteTy.isNull()) 1566 LHSType = LHSBitfieldPromoteTy; 1567 if (LHSType != LHSUnpromotedType && ACK != ACK_CompAssign) 1568 LHS = ImpCastExprToType(LHS.get(), LHSType, CK_IntegralCast); 1569 1570 // If both types are identical, no conversion is needed. 1571 if (LHSType == RHSType) 1572 return LHSType; 1573 1574 // At this point, we have two different arithmetic types. 1575 1576 // Diagnose attempts to convert between __ibm128, __float128 and long double 1577 // where such conversions currently can't be handled. 1578 if (unsupportedTypeConversion(*this, LHSType, RHSType)) 1579 return QualType(); 1580 1581 // Handle complex types first (C99 6.3.1.8p1). 1582 if (LHSType->isComplexType() || RHSType->isComplexType()) 1583 return handleComplexFloatConversion(*this, LHS, RHS, LHSType, RHSType, 1584 ACK == ACK_CompAssign); 1585 1586 // Now handle "real" floating types (i.e. float, double, long double). 1587 if (LHSType->isRealFloatingType() || RHSType->isRealFloatingType()) 1588 return handleFloatConversion(*this, LHS, RHS, LHSType, RHSType, 1589 ACK == ACK_CompAssign); 1590 1591 // Handle GCC complex int extension. 1592 if (LHSType->isComplexIntegerType() || RHSType->isComplexIntegerType()) 1593 return handleComplexIntConversion(*this, LHS, RHS, LHSType, RHSType, 1594 ACK == ACK_CompAssign); 1595 1596 if (LHSType->isFixedPointType() || RHSType->isFixedPointType()) 1597 return handleFixedPointConversion(*this, LHSType, RHSType); 1598 1599 // Finally, we have two differing integer types. 1600 return handleIntegerConversion<doIntegralCast, doIntegralCast> 1601 (*this, LHS, RHS, LHSType, RHSType, ACK == ACK_CompAssign); 1602 } 1603 1604 //===----------------------------------------------------------------------===// 1605 // Semantic Analysis for various Expression Types 1606 //===----------------------------------------------------------------------===// 1607 1608 1609 ExprResult 1610 Sema::ActOnGenericSelectionExpr(SourceLocation KeyLoc, 1611 SourceLocation DefaultLoc, 1612 SourceLocation RParenLoc, 1613 Expr *ControllingExpr, 1614 ArrayRef<ParsedType> ArgTypes, 1615 ArrayRef<Expr *> ArgExprs) { 1616 unsigned NumAssocs = ArgTypes.size(); 1617 assert(NumAssocs == ArgExprs.size()); 1618 1619 TypeSourceInfo **Types = new TypeSourceInfo*[NumAssocs]; 1620 for (unsigned i = 0; i < NumAssocs; ++i) { 1621 if (ArgTypes[i]) 1622 (void) GetTypeFromParser(ArgTypes[i], &Types[i]); 1623 else 1624 Types[i] = nullptr; 1625 } 1626 1627 ExprResult ER = CreateGenericSelectionExpr(KeyLoc, DefaultLoc, RParenLoc, 1628 ControllingExpr, 1629 llvm::makeArrayRef(Types, NumAssocs), 1630 ArgExprs); 1631 delete [] Types; 1632 return ER; 1633 } 1634 1635 ExprResult 1636 Sema::CreateGenericSelectionExpr(SourceLocation KeyLoc, 1637 SourceLocation DefaultLoc, 1638 SourceLocation RParenLoc, 1639 Expr *ControllingExpr, 1640 ArrayRef<TypeSourceInfo *> Types, 1641 ArrayRef<Expr *> Exprs) { 1642 unsigned NumAssocs = Types.size(); 1643 assert(NumAssocs == Exprs.size()); 1644 1645 // Decay and strip qualifiers for the controlling expression type, and handle 1646 // placeholder type replacement. See committee discussion from WG14 DR423. 1647 { 1648 EnterExpressionEvaluationContext Unevaluated( 1649 *this, Sema::ExpressionEvaluationContext::Unevaluated); 1650 ExprResult R = DefaultFunctionArrayLvalueConversion(ControllingExpr); 1651 if (R.isInvalid()) 1652 return ExprError(); 1653 ControllingExpr = R.get(); 1654 } 1655 1656 bool TypeErrorFound = false, 1657 IsResultDependent = ControllingExpr->isTypeDependent(), 1658 ContainsUnexpandedParameterPack 1659 = ControllingExpr->containsUnexpandedParameterPack(); 1660 1661 // The controlling expression is an unevaluated operand, so side effects are 1662 // likely unintended. 1663 if (!inTemplateInstantiation() && !IsResultDependent && 1664 ControllingExpr->HasSideEffects(Context, false)) 1665 Diag(ControllingExpr->getExprLoc(), 1666 diag::warn_side_effects_unevaluated_context); 1667 1668 for (unsigned i = 0; i < NumAssocs; ++i) { 1669 if (Exprs[i]->containsUnexpandedParameterPack()) 1670 ContainsUnexpandedParameterPack = true; 1671 1672 if (Types[i]) { 1673 if (Types[i]->getType()->containsUnexpandedParameterPack()) 1674 ContainsUnexpandedParameterPack = true; 1675 1676 if (Types[i]->getType()->isDependentType()) { 1677 IsResultDependent = true; 1678 } else { 1679 // C11 6.5.1.1p2 "The type name in a generic association shall specify a 1680 // complete object type other than a variably modified type." 1681 unsigned D = 0; 1682 if (Types[i]->getType()->isIncompleteType()) 1683 D = diag::err_assoc_type_incomplete; 1684 else if (!Types[i]->getType()->isObjectType()) 1685 D = diag::err_assoc_type_nonobject; 1686 else if (Types[i]->getType()->isVariablyModifiedType()) 1687 D = diag::err_assoc_type_variably_modified; 1688 else { 1689 // Because the controlling expression undergoes lvalue conversion, 1690 // array conversion, and function conversion, an association which is 1691 // of array type, function type, or is qualified can never be 1692 // reached. We will warn about this so users are less surprised by 1693 // the unreachable association. However, we don't have to handle 1694 // function types; that's not an object type, so it's handled above. 1695 // 1696 // The logic is somewhat different for C++ because C++ has different 1697 // lvalue to rvalue conversion rules than C. [conv.lvalue]p1 says, 1698 // If T is a non-class type, the type of the prvalue is the cv- 1699 // unqualified version of T. Otherwise, the type of the prvalue is T. 1700 // The result of these rules is that all qualified types in an 1701 // association in C are unreachable, and in C++, only qualified non- 1702 // class types are unreachable. 1703 unsigned Reason = 0; 1704 QualType QT = Types[i]->getType(); 1705 if (QT->isArrayType()) 1706 Reason = 1; 1707 else if (QT.hasQualifiers() && 1708 (!LangOpts.CPlusPlus || !QT->isRecordType())) 1709 Reason = 2; 1710 1711 if (Reason) 1712 Diag(Types[i]->getTypeLoc().getBeginLoc(), 1713 diag::warn_unreachable_association) 1714 << QT << (Reason - 1); 1715 } 1716 1717 if (D != 0) { 1718 Diag(Types[i]->getTypeLoc().getBeginLoc(), D) 1719 << Types[i]->getTypeLoc().getSourceRange() 1720 << Types[i]->getType(); 1721 TypeErrorFound = true; 1722 } 1723 1724 // C11 6.5.1.1p2 "No two generic associations in the same generic 1725 // selection shall specify compatible types." 1726 for (unsigned j = i+1; j < NumAssocs; ++j) 1727 if (Types[j] && !Types[j]->getType()->isDependentType() && 1728 Context.typesAreCompatible(Types[i]->getType(), 1729 Types[j]->getType())) { 1730 Diag(Types[j]->getTypeLoc().getBeginLoc(), 1731 diag::err_assoc_compatible_types) 1732 << Types[j]->getTypeLoc().getSourceRange() 1733 << Types[j]->getType() 1734 << Types[i]->getType(); 1735 Diag(Types[i]->getTypeLoc().getBeginLoc(), 1736 diag::note_compat_assoc) 1737 << Types[i]->getTypeLoc().getSourceRange() 1738 << Types[i]->getType(); 1739 TypeErrorFound = true; 1740 } 1741 } 1742 } 1743 } 1744 if (TypeErrorFound) 1745 return ExprError(); 1746 1747 // If we determined that the generic selection is result-dependent, don't 1748 // try to compute the result expression. 1749 if (IsResultDependent) 1750 return GenericSelectionExpr::Create(Context, KeyLoc, ControllingExpr, Types, 1751 Exprs, DefaultLoc, RParenLoc, 1752 ContainsUnexpandedParameterPack); 1753 1754 SmallVector<unsigned, 1> CompatIndices; 1755 unsigned DefaultIndex = -1U; 1756 // Look at the canonical type of the controlling expression in case it was a 1757 // deduced type like __auto_type. However, when issuing diagnostics, use the 1758 // type the user wrote in source rather than the canonical one. 1759 for (unsigned i = 0; i < NumAssocs; ++i) { 1760 if (!Types[i]) 1761 DefaultIndex = i; 1762 else if (Context.typesAreCompatible( 1763 ControllingExpr->getType().getCanonicalType(), 1764 Types[i]->getType())) 1765 CompatIndices.push_back(i); 1766 } 1767 1768 // C11 6.5.1.1p2 "The controlling expression of a generic selection shall have 1769 // type compatible with at most one of the types named in its generic 1770 // association list." 1771 if (CompatIndices.size() > 1) { 1772 // We strip parens here because the controlling expression is typically 1773 // parenthesized in macro definitions. 1774 ControllingExpr = ControllingExpr->IgnoreParens(); 1775 Diag(ControllingExpr->getBeginLoc(), diag::err_generic_sel_multi_match) 1776 << ControllingExpr->getSourceRange() << ControllingExpr->getType() 1777 << (unsigned)CompatIndices.size(); 1778 for (unsigned I : CompatIndices) { 1779 Diag(Types[I]->getTypeLoc().getBeginLoc(), 1780 diag::note_compat_assoc) 1781 << Types[I]->getTypeLoc().getSourceRange() 1782 << Types[I]->getType(); 1783 } 1784 return ExprError(); 1785 } 1786 1787 // C11 6.5.1.1p2 "If a generic selection has no default generic association, 1788 // its controlling expression shall have type compatible with exactly one of 1789 // the types named in its generic association list." 1790 if (DefaultIndex == -1U && CompatIndices.size() == 0) { 1791 // We strip parens here because the controlling expression is typically 1792 // parenthesized in macro definitions. 1793 ControllingExpr = ControllingExpr->IgnoreParens(); 1794 Diag(ControllingExpr->getBeginLoc(), diag::err_generic_sel_no_match) 1795 << ControllingExpr->getSourceRange() << ControllingExpr->getType(); 1796 return ExprError(); 1797 } 1798 1799 // C11 6.5.1.1p3 "If a generic selection has a generic association with a 1800 // type name that is compatible with the type of the controlling expression, 1801 // then the result expression of the generic selection is the expression 1802 // in that generic association. Otherwise, the result expression of the 1803 // generic selection is the expression in the default generic association." 1804 unsigned ResultIndex = 1805 CompatIndices.size() ? CompatIndices[0] : DefaultIndex; 1806 1807 return GenericSelectionExpr::Create( 1808 Context, KeyLoc, ControllingExpr, Types, Exprs, DefaultLoc, RParenLoc, 1809 ContainsUnexpandedParameterPack, ResultIndex); 1810 } 1811 1812 /// getUDSuffixLoc - Create a SourceLocation for a ud-suffix, given the 1813 /// location of the token and the offset of the ud-suffix within it. 1814 static SourceLocation getUDSuffixLoc(Sema &S, SourceLocation TokLoc, 1815 unsigned Offset) { 1816 return Lexer::AdvanceToTokenCharacter(TokLoc, Offset, S.getSourceManager(), 1817 S.getLangOpts()); 1818 } 1819 1820 /// BuildCookedLiteralOperatorCall - A user-defined literal was found. Look up 1821 /// the corresponding cooked (non-raw) literal operator, and build a call to it. 1822 static ExprResult BuildCookedLiteralOperatorCall(Sema &S, Scope *Scope, 1823 IdentifierInfo *UDSuffix, 1824 SourceLocation UDSuffixLoc, 1825 ArrayRef<Expr*> Args, 1826 SourceLocation LitEndLoc) { 1827 assert(Args.size() <= 2 && "too many arguments for literal operator"); 1828 1829 QualType ArgTy[2]; 1830 for (unsigned ArgIdx = 0; ArgIdx != Args.size(); ++ArgIdx) { 1831 ArgTy[ArgIdx] = Args[ArgIdx]->getType(); 1832 if (ArgTy[ArgIdx]->isArrayType()) 1833 ArgTy[ArgIdx] = S.Context.getArrayDecayedType(ArgTy[ArgIdx]); 1834 } 1835 1836 DeclarationName OpName = 1837 S.Context.DeclarationNames.getCXXLiteralOperatorName(UDSuffix); 1838 DeclarationNameInfo OpNameInfo(OpName, UDSuffixLoc); 1839 OpNameInfo.setCXXLiteralOperatorNameLoc(UDSuffixLoc); 1840 1841 LookupResult R(S, OpName, UDSuffixLoc, Sema::LookupOrdinaryName); 1842 if (S.LookupLiteralOperator(Scope, R, llvm::makeArrayRef(ArgTy, Args.size()), 1843 /*AllowRaw*/ false, /*AllowTemplate*/ false, 1844 /*AllowStringTemplatePack*/ false, 1845 /*DiagnoseMissing*/ true) == Sema::LOLR_Error) 1846 return ExprError(); 1847 1848 return S.BuildLiteralOperatorCall(R, OpNameInfo, Args, LitEndLoc); 1849 } 1850 1851 /// ActOnStringLiteral - The specified tokens were lexed as pasted string 1852 /// fragments (e.g. "foo" "bar" L"baz"). The result string has to handle string 1853 /// concatenation ([C99 5.1.1.2, translation phase #6]), so it may come from 1854 /// multiple tokens. However, the common case is that StringToks points to one 1855 /// string. 1856 /// 1857 ExprResult 1858 Sema::ActOnStringLiteral(ArrayRef<Token> StringToks, Scope *UDLScope) { 1859 assert(!StringToks.empty() && "Must have at least one string!"); 1860 1861 StringLiteralParser Literal(StringToks, PP); 1862 if (Literal.hadError) 1863 return ExprError(); 1864 1865 SmallVector<SourceLocation, 4> StringTokLocs; 1866 for (const Token &Tok : StringToks) 1867 StringTokLocs.push_back(Tok.getLocation()); 1868 1869 QualType CharTy = Context.CharTy; 1870 StringLiteral::StringKind Kind = StringLiteral::Ascii; 1871 if (Literal.isWide()) { 1872 CharTy = Context.getWideCharType(); 1873 Kind = StringLiteral::Wide; 1874 } else if (Literal.isUTF8()) { 1875 if (getLangOpts().Char8) 1876 CharTy = Context.Char8Ty; 1877 Kind = StringLiteral::UTF8; 1878 } else if (Literal.isUTF16()) { 1879 CharTy = Context.Char16Ty; 1880 Kind = StringLiteral::UTF16; 1881 } else if (Literal.isUTF32()) { 1882 CharTy = Context.Char32Ty; 1883 Kind = StringLiteral::UTF32; 1884 } else if (Literal.isPascal()) { 1885 CharTy = Context.UnsignedCharTy; 1886 } 1887 1888 // Warn on initializing an array of char from a u8 string literal; this 1889 // becomes ill-formed in C++2a. 1890 if (getLangOpts().CPlusPlus && !getLangOpts().CPlusPlus20 && 1891 !getLangOpts().Char8 && Kind == StringLiteral::UTF8) { 1892 Diag(StringTokLocs.front(), diag::warn_cxx20_compat_utf8_string); 1893 1894 // Create removals for all 'u8' prefixes in the string literal(s). This 1895 // ensures C++2a compatibility (but may change the program behavior when 1896 // built by non-Clang compilers for which the execution character set is 1897 // not always UTF-8). 1898 auto RemovalDiag = PDiag(diag::note_cxx20_compat_utf8_string_remove_u8); 1899 SourceLocation RemovalDiagLoc; 1900 for (const Token &Tok : StringToks) { 1901 if (Tok.getKind() == tok::utf8_string_literal) { 1902 if (RemovalDiagLoc.isInvalid()) 1903 RemovalDiagLoc = Tok.getLocation(); 1904 RemovalDiag << FixItHint::CreateRemoval(CharSourceRange::getCharRange( 1905 Tok.getLocation(), 1906 Lexer::AdvanceToTokenCharacter(Tok.getLocation(), 2, 1907 getSourceManager(), getLangOpts()))); 1908 } 1909 } 1910 Diag(RemovalDiagLoc, RemovalDiag); 1911 } 1912 1913 QualType StrTy = 1914 Context.getStringLiteralArrayType(CharTy, Literal.GetNumStringChars()); 1915 1916 // Pass &StringTokLocs[0], StringTokLocs.size() to factory! 1917 StringLiteral *Lit = StringLiteral::Create(Context, Literal.GetString(), 1918 Kind, Literal.Pascal, StrTy, 1919 &StringTokLocs[0], 1920 StringTokLocs.size()); 1921 if (Literal.getUDSuffix().empty()) 1922 return Lit; 1923 1924 // We're building a user-defined literal. 1925 IdentifierInfo *UDSuffix = &Context.Idents.get(Literal.getUDSuffix()); 1926 SourceLocation UDSuffixLoc = 1927 getUDSuffixLoc(*this, StringTokLocs[Literal.getUDSuffixToken()], 1928 Literal.getUDSuffixOffset()); 1929 1930 // Make sure we're allowed user-defined literals here. 1931 if (!UDLScope) 1932 return ExprError(Diag(UDSuffixLoc, diag::err_invalid_string_udl)); 1933 1934 // C++11 [lex.ext]p5: The literal L is treated as a call of the form 1935 // operator "" X (str, len) 1936 QualType SizeType = Context.getSizeType(); 1937 1938 DeclarationName OpName = 1939 Context.DeclarationNames.getCXXLiteralOperatorName(UDSuffix); 1940 DeclarationNameInfo OpNameInfo(OpName, UDSuffixLoc); 1941 OpNameInfo.setCXXLiteralOperatorNameLoc(UDSuffixLoc); 1942 1943 QualType ArgTy[] = { 1944 Context.getArrayDecayedType(StrTy), SizeType 1945 }; 1946 1947 LookupResult R(*this, OpName, UDSuffixLoc, LookupOrdinaryName); 1948 switch (LookupLiteralOperator(UDLScope, R, ArgTy, 1949 /*AllowRaw*/ false, /*AllowTemplate*/ true, 1950 /*AllowStringTemplatePack*/ true, 1951 /*DiagnoseMissing*/ true, Lit)) { 1952 1953 case LOLR_Cooked: { 1954 llvm::APInt Len(Context.getIntWidth(SizeType), Literal.GetNumStringChars()); 1955 IntegerLiteral *LenArg = IntegerLiteral::Create(Context, Len, SizeType, 1956 StringTokLocs[0]); 1957 Expr *Args[] = { Lit, LenArg }; 1958 1959 return BuildLiteralOperatorCall(R, OpNameInfo, Args, StringTokLocs.back()); 1960 } 1961 1962 case LOLR_Template: { 1963 TemplateArgumentListInfo ExplicitArgs; 1964 TemplateArgument Arg(Lit); 1965 TemplateArgumentLocInfo ArgInfo(Lit); 1966 ExplicitArgs.addArgument(TemplateArgumentLoc(Arg, ArgInfo)); 1967 return BuildLiteralOperatorCall(R, OpNameInfo, None, StringTokLocs.back(), 1968 &ExplicitArgs); 1969 } 1970 1971 case LOLR_StringTemplatePack: { 1972 TemplateArgumentListInfo ExplicitArgs; 1973 1974 unsigned CharBits = Context.getIntWidth(CharTy); 1975 bool CharIsUnsigned = CharTy->isUnsignedIntegerType(); 1976 llvm::APSInt Value(CharBits, CharIsUnsigned); 1977 1978 TemplateArgument TypeArg(CharTy); 1979 TemplateArgumentLocInfo TypeArgInfo(Context.getTrivialTypeSourceInfo(CharTy)); 1980 ExplicitArgs.addArgument(TemplateArgumentLoc(TypeArg, TypeArgInfo)); 1981 1982 for (unsigned I = 0, N = Lit->getLength(); I != N; ++I) { 1983 Value = Lit->getCodeUnit(I); 1984 TemplateArgument Arg(Context, Value, CharTy); 1985 TemplateArgumentLocInfo ArgInfo; 1986 ExplicitArgs.addArgument(TemplateArgumentLoc(Arg, ArgInfo)); 1987 } 1988 return BuildLiteralOperatorCall(R, OpNameInfo, None, StringTokLocs.back(), 1989 &ExplicitArgs); 1990 } 1991 case LOLR_Raw: 1992 case LOLR_ErrorNoDiagnostic: 1993 llvm_unreachable("unexpected literal operator lookup result"); 1994 case LOLR_Error: 1995 return ExprError(); 1996 } 1997 llvm_unreachable("unexpected literal operator lookup result"); 1998 } 1999 2000 DeclRefExpr * 2001 Sema::BuildDeclRefExpr(ValueDecl *D, QualType Ty, ExprValueKind VK, 2002 SourceLocation Loc, 2003 const CXXScopeSpec *SS) { 2004 DeclarationNameInfo NameInfo(D->getDeclName(), Loc); 2005 return BuildDeclRefExpr(D, Ty, VK, NameInfo, SS); 2006 } 2007 2008 DeclRefExpr * 2009 Sema::BuildDeclRefExpr(ValueDecl *D, QualType Ty, ExprValueKind VK, 2010 const DeclarationNameInfo &NameInfo, 2011 const CXXScopeSpec *SS, NamedDecl *FoundD, 2012 SourceLocation TemplateKWLoc, 2013 const TemplateArgumentListInfo *TemplateArgs) { 2014 NestedNameSpecifierLoc NNS = 2015 SS ? SS->getWithLocInContext(Context) : NestedNameSpecifierLoc(); 2016 return BuildDeclRefExpr(D, Ty, VK, NameInfo, NNS, FoundD, TemplateKWLoc, 2017 TemplateArgs); 2018 } 2019 2020 // CUDA/HIP: Check whether a captured reference variable is referencing a 2021 // host variable in a device or host device lambda. 2022 static bool isCapturingReferenceToHostVarInCUDADeviceLambda(const Sema &S, 2023 VarDecl *VD) { 2024 if (!S.getLangOpts().CUDA || !VD->hasInit()) 2025 return false; 2026 assert(VD->getType()->isReferenceType()); 2027 2028 // Check whether the reference variable is referencing a host variable. 2029 auto *DRE = dyn_cast<DeclRefExpr>(VD->getInit()); 2030 if (!DRE) 2031 return false; 2032 auto *Referee = dyn_cast<VarDecl>(DRE->getDecl()); 2033 if (!Referee || !Referee->hasGlobalStorage() || 2034 Referee->hasAttr<CUDADeviceAttr>()) 2035 return false; 2036 2037 // Check whether the current function is a device or host device lambda. 2038 // Check whether the reference variable is a capture by getDeclContext() 2039 // since refersToEnclosingVariableOrCapture() is not ready at this point. 2040 auto *MD = dyn_cast_or_null<CXXMethodDecl>(S.CurContext); 2041 if (MD && MD->getParent()->isLambda() && 2042 MD->getOverloadedOperator() == OO_Call && MD->hasAttr<CUDADeviceAttr>() && 2043 VD->getDeclContext() != MD) 2044 return true; 2045 2046 return false; 2047 } 2048 2049 NonOdrUseReason Sema::getNonOdrUseReasonInCurrentContext(ValueDecl *D) { 2050 // A declaration named in an unevaluated operand never constitutes an odr-use. 2051 if (isUnevaluatedContext()) 2052 return NOUR_Unevaluated; 2053 2054 // C++2a [basic.def.odr]p4: 2055 // A variable x whose name appears as a potentially-evaluated expression e 2056 // is odr-used by e unless [...] x is a reference that is usable in 2057 // constant expressions. 2058 // CUDA/HIP: 2059 // If a reference variable referencing a host variable is captured in a 2060 // device or host device lambda, the value of the referee must be copied 2061 // to the capture and the reference variable must be treated as odr-use 2062 // since the value of the referee is not known at compile time and must 2063 // be loaded from the captured. 2064 if (VarDecl *VD = dyn_cast<VarDecl>(D)) { 2065 if (VD->getType()->isReferenceType() && 2066 !(getLangOpts().OpenMP && isOpenMPCapturedDecl(D)) && 2067 !isCapturingReferenceToHostVarInCUDADeviceLambda(*this, VD) && 2068 VD->isUsableInConstantExpressions(Context)) 2069 return NOUR_Constant; 2070 } 2071 2072 // All remaining non-variable cases constitute an odr-use. For variables, we 2073 // need to wait and see how the expression is used. 2074 return NOUR_None; 2075 } 2076 2077 /// BuildDeclRefExpr - Build an expression that references a 2078 /// declaration that does not require a closure capture. 2079 DeclRefExpr * 2080 Sema::BuildDeclRefExpr(ValueDecl *D, QualType Ty, ExprValueKind VK, 2081 const DeclarationNameInfo &NameInfo, 2082 NestedNameSpecifierLoc NNS, NamedDecl *FoundD, 2083 SourceLocation TemplateKWLoc, 2084 const TemplateArgumentListInfo *TemplateArgs) { 2085 bool RefersToCapturedVariable = 2086 isa<VarDecl>(D) && 2087 NeedToCaptureVariable(cast<VarDecl>(D), NameInfo.getLoc()); 2088 2089 DeclRefExpr *E = DeclRefExpr::Create( 2090 Context, NNS, TemplateKWLoc, D, RefersToCapturedVariable, NameInfo, Ty, 2091 VK, FoundD, TemplateArgs, getNonOdrUseReasonInCurrentContext(D)); 2092 MarkDeclRefReferenced(E); 2093 2094 // C++ [except.spec]p17: 2095 // An exception-specification is considered to be needed when: 2096 // - in an expression, the function is the unique lookup result or 2097 // the selected member of a set of overloaded functions. 2098 // 2099 // We delay doing this until after we've built the function reference and 2100 // marked it as used so that: 2101 // a) if the function is defaulted, we get errors from defining it before / 2102 // instead of errors from computing its exception specification, and 2103 // b) if the function is a defaulted comparison, we can use the body we 2104 // build when defining it as input to the exception specification 2105 // computation rather than computing a new body. 2106 if (auto *FPT = Ty->getAs<FunctionProtoType>()) { 2107 if (isUnresolvedExceptionSpec(FPT->getExceptionSpecType())) { 2108 if (auto *NewFPT = ResolveExceptionSpec(NameInfo.getLoc(), FPT)) 2109 E->setType(Context.getQualifiedType(NewFPT, Ty.getQualifiers())); 2110 } 2111 } 2112 2113 if (getLangOpts().ObjCWeak && isa<VarDecl>(D) && 2114 Ty.getObjCLifetime() == Qualifiers::OCL_Weak && !isUnevaluatedContext() && 2115 !Diags.isIgnored(diag::warn_arc_repeated_use_of_weak, E->getBeginLoc())) 2116 getCurFunction()->recordUseOfWeak(E); 2117 2118 FieldDecl *FD = dyn_cast<FieldDecl>(D); 2119 if (IndirectFieldDecl *IFD = dyn_cast<IndirectFieldDecl>(D)) 2120 FD = IFD->getAnonField(); 2121 if (FD) { 2122 UnusedPrivateFields.remove(FD); 2123 // Just in case we're building an illegal pointer-to-member. 2124 if (FD->isBitField()) 2125 E->setObjectKind(OK_BitField); 2126 } 2127 2128 // C++ [expr.prim]/8: The expression [...] is a bit-field if the identifier 2129 // designates a bit-field. 2130 if (auto *BD = dyn_cast<BindingDecl>(D)) 2131 if (auto *BE = BD->getBinding()) 2132 E->setObjectKind(BE->getObjectKind()); 2133 2134 return E; 2135 } 2136 2137 /// Decomposes the given name into a DeclarationNameInfo, its location, and 2138 /// possibly a list of template arguments. 2139 /// 2140 /// If this produces template arguments, it is permitted to call 2141 /// DecomposeTemplateName. 2142 /// 2143 /// This actually loses a lot of source location information for 2144 /// non-standard name kinds; we should consider preserving that in 2145 /// some way. 2146 void 2147 Sema::DecomposeUnqualifiedId(const UnqualifiedId &Id, 2148 TemplateArgumentListInfo &Buffer, 2149 DeclarationNameInfo &NameInfo, 2150 const TemplateArgumentListInfo *&TemplateArgs) { 2151 if (Id.getKind() == UnqualifiedIdKind::IK_TemplateId) { 2152 Buffer.setLAngleLoc(Id.TemplateId->LAngleLoc); 2153 Buffer.setRAngleLoc(Id.TemplateId->RAngleLoc); 2154 2155 ASTTemplateArgsPtr TemplateArgsPtr(Id.TemplateId->getTemplateArgs(), 2156 Id.TemplateId->NumArgs); 2157 translateTemplateArguments(TemplateArgsPtr, Buffer); 2158 2159 TemplateName TName = Id.TemplateId->Template.get(); 2160 SourceLocation TNameLoc = Id.TemplateId->TemplateNameLoc; 2161 NameInfo = Context.getNameForTemplate(TName, TNameLoc); 2162 TemplateArgs = &Buffer; 2163 } else { 2164 NameInfo = GetNameFromUnqualifiedId(Id); 2165 TemplateArgs = nullptr; 2166 } 2167 } 2168 2169 static void emitEmptyLookupTypoDiagnostic( 2170 const TypoCorrection &TC, Sema &SemaRef, const CXXScopeSpec &SS, 2171 DeclarationName Typo, SourceLocation TypoLoc, ArrayRef<Expr *> Args, 2172 unsigned DiagnosticID, unsigned DiagnosticSuggestID) { 2173 DeclContext *Ctx = 2174 SS.isEmpty() ? nullptr : SemaRef.computeDeclContext(SS, false); 2175 if (!TC) { 2176 // Emit a special diagnostic for failed member lookups. 2177 // FIXME: computing the declaration context might fail here (?) 2178 if (Ctx) 2179 SemaRef.Diag(TypoLoc, diag::err_no_member) << Typo << Ctx 2180 << SS.getRange(); 2181 else 2182 SemaRef.Diag(TypoLoc, DiagnosticID) << Typo; 2183 return; 2184 } 2185 2186 std::string CorrectedStr = TC.getAsString(SemaRef.getLangOpts()); 2187 bool DroppedSpecifier = 2188 TC.WillReplaceSpecifier() && Typo.getAsString() == CorrectedStr; 2189 unsigned NoteID = TC.getCorrectionDeclAs<ImplicitParamDecl>() 2190 ? diag::note_implicit_param_decl 2191 : diag::note_previous_decl; 2192 if (!Ctx) 2193 SemaRef.diagnoseTypo(TC, SemaRef.PDiag(DiagnosticSuggestID) << Typo, 2194 SemaRef.PDiag(NoteID)); 2195 else 2196 SemaRef.diagnoseTypo(TC, SemaRef.PDiag(diag::err_no_member_suggest) 2197 << Typo << Ctx << DroppedSpecifier 2198 << SS.getRange(), 2199 SemaRef.PDiag(NoteID)); 2200 } 2201 2202 /// Diagnose a lookup that found results in an enclosing class during error 2203 /// recovery. This usually indicates that the results were found in a dependent 2204 /// base class that could not be searched as part of a template definition. 2205 /// Always issues a diagnostic (though this may be only a warning in MS 2206 /// compatibility mode). 2207 /// 2208 /// Return \c true if the error is unrecoverable, or \c false if the caller 2209 /// should attempt to recover using these lookup results. 2210 bool Sema::DiagnoseDependentMemberLookup(LookupResult &R) { 2211 // During a default argument instantiation the CurContext points 2212 // to a CXXMethodDecl; but we can't apply a this-> fixit inside a 2213 // function parameter list, hence add an explicit check. 2214 bool isDefaultArgument = 2215 !CodeSynthesisContexts.empty() && 2216 CodeSynthesisContexts.back().Kind == 2217 CodeSynthesisContext::DefaultFunctionArgumentInstantiation; 2218 CXXMethodDecl *CurMethod = dyn_cast<CXXMethodDecl>(CurContext); 2219 bool isInstance = CurMethod && CurMethod->isInstance() && 2220 R.getNamingClass() == CurMethod->getParent() && 2221 !isDefaultArgument; 2222 2223 // There are two ways we can find a class-scope declaration during template 2224 // instantiation that we did not find in the template definition: if it is a 2225 // member of a dependent base class, or if it is declared after the point of 2226 // use in the same class. Distinguish these by comparing the class in which 2227 // the member was found to the naming class of the lookup. 2228 unsigned DiagID = diag::err_found_in_dependent_base; 2229 unsigned NoteID = diag::note_member_declared_at; 2230 if (R.getRepresentativeDecl()->getDeclContext()->Equals(R.getNamingClass())) { 2231 DiagID = getLangOpts().MSVCCompat ? diag::ext_found_later_in_class 2232 : diag::err_found_later_in_class; 2233 } else if (getLangOpts().MSVCCompat) { 2234 DiagID = diag::ext_found_in_dependent_base; 2235 NoteID = diag::note_dependent_member_use; 2236 } 2237 2238 if (isInstance) { 2239 // Give a code modification hint to insert 'this->'. 2240 Diag(R.getNameLoc(), DiagID) 2241 << R.getLookupName() 2242 << FixItHint::CreateInsertion(R.getNameLoc(), "this->"); 2243 CheckCXXThisCapture(R.getNameLoc()); 2244 } else { 2245 // FIXME: Add a FixItHint to insert 'Base::' or 'Derived::' (assuming 2246 // they're not shadowed). 2247 Diag(R.getNameLoc(), DiagID) << R.getLookupName(); 2248 } 2249 2250 for (NamedDecl *D : R) 2251 Diag(D->getLocation(), NoteID); 2252 2253 // Return true if we are inside a default argument instantiation 2254 // and the found name refers to an instance member function, otherwise 2255 // the caller will try to create an implicit member call and this is wrong 2256 // for default arguments. 2257 // 2258 // FIXME: Is this special case necessary? We could allow the caller to 2259 // diagnose this. 2260 if (isDefaultArgument && ((*R.begin())->isCXXInstanceMember())) { 2261 Diag(R.getNameLoc(), diag::err_member_call_without_object); 2262 return true; 2263 } 2264 2265 // Tell the callee to try to recover. 2266 return false; 2267 } 2268 2269 /// Diagnose an empty lookup. 2270 /// 2271 /// \return false if new lookup candidates were found 2272 bool Sema::DiagnoseEmptyLookup(Scope *S, CXXScopeSpec &SS, LookupResult &R, 2273 CorrectionCandidateCallback &CCC, 2274 TemplateArgumentListInfo *ExplicitTemplateArgs, 2275 ArrayRef<Expr *> Args, TypoExpr **Out) { 2276 DeclarationName Name = R.getLookupName(); 2277 2278 unsigned diagnostic = diag::err_undeclared_var_use; 2279 unsigned diagnostic_suggest = diag::err_undeclared_var_use_suggest; 2280 if (Name.getNameKind() == DeclarationName::CXXOperatorName || 2281 Name.getNameKind() == DeclarationName::CXXLiteralOperatorName || 2282 Name.getNameKind() == DeclarationName::CXXConversionFunctionName) { 2283 diagnostic = diag::err_undeclared_use; 2284 diagnostic_suggest = diag::err_undeclared_use_suggest; 2285 } 2286 2287 // If the original lookup was an unqualified lookup, fake an 2288 // unqualified lookup. This is useful when (for example) the 2289 // original lookup would not have found something because it was a 2290 // dependent name. 2291 DeclContext *DC = SS.isEmpty() ? CurContext : nullptr; 2292 while (DC) { 2293 if (isa<CXXRecordDecl>(DC)) { 2294 LookupQualifiedName(R, DC); 2295 2296 if (!R.empty()) { 2297 // Don't give errors about ambiguities in this lookup. 2298 R.suppressDiagnostics(); 2299 2300 // If there's a best viable function among the results, only mention 2301 // that one in the notes. 2302 OverloadCandidateSet Candidates(R.getNameLoc(), 2303 OverloadCandidateSet::CSK_Normal); 2304 AddOverloadedCallCandidates(R, ExplicitTemplateArgs, Args, Candidates); 2305 OverloadCandidateSet::iterator Best; 2306 if (Candidates.BestViableFunction(*this, R.getNameLoc(), Best) == 2307 OR_Success) { 2308 R.clear(); 2309 R.addDecl(Best->FoundDecl.getDecl(), Best->FoundDecl.getAccess()); 2310 R.resolveKind(); 2311 } 2312 2313 return DiagnoseDependentMemberLookup(R); 2314 } 2315 2316 R.clear(); 2317 } 2318 2319 DC = DC->getLookupParent(); 2320 } 2321 2322 // We didn't find anything, so try to correct for a typo. 2323 TypoCorrection Corrected; 2324 if (S && Out) { 2325 SourceLocation TypoLoc = R.getNameLoc(); 2326 assert(!ExplicitTemplateArgs && 2327 "Diagnosing an empty lookup with explicit template args!"); 2328 *Out = CorrectTypoDelayed( 2329 R.getLookupNameInfo(), R.getLookupKind(), S, &SS, CCC, 2330 [=](const TypoCorrection &TC) { 2331 emitEmptyLookupTypoDiagnostic(TC, *this, SS, Name, TypoLoc, Args, 2332 diagnostic, diagnostic_suggest); 2333 }, 2334 nullptr, CTK_ErrorRecovery); 2335 if (*Out) 2336 return true; 2337 } else if (S && 2338 (Corrected = CorrectTypo(R.getLookupNameInfo(), R.getLookupKind(), 2339 S, &SS, CCC, CTK_ErrorRecovery))) { 2340 std::string CorrectedStr(Corrected.getAsString(getLangOpts())); 2341 bool DroppedSpecifier = 2342 Corrected.WillReplaceSpecifier() && Name.getAsString() == CorrectedStr; 2343 R.setLookupName(Corrected.getCorrection()); 2344 2345 bool AcceptableWithRecovery = false; 2346 bool AcceptableWithoutRecovery = false; 2347 NamedDecl *ND = Corrected.getFoundDecl(); 2348 if (ND) { 2349 if (Corrected.isOverloaded()) { 2350 OverloadCandidateSet OCS(R.getNameLoc(), 2351 OverloadCandidateSet::CSK_Normal); 2352 OverloadCandidateSet::iterator Best; 2353 for (NamedDecl *CD : Corrected) { 2354 if (FunctionTemplateDecl *FTD = 2355 dyn_cast<FunctionTemplateDecl>(CD)) 2356 AddTemplateOverloadCandidate( 2357 FTD, DeclAccessPair::make(FTD, AS_none), ExplicitTemplateArgs, 2358 Args, OCS); 2359 else if (FunctionDecl *FD = dyn_cast<FunctionDecl>(CD)) 2360 if (!ExplicitTemplateArgs || ExplicitTemplateArgs->size() == 0) 2361 AddOverloadCandidate(FD, DeclAccessPair::make(FD, AS_none), 2362 Args, OCS); 2363 } 2364 switch (OCS.BestViableFunction(*this, R.getNameLoc(), Best)) { 2365 case OR_Success: 2366 ND = Best->FoundDecl; 2367 Corrected.setCorrectionDecl(ND); 2368 break; 2369 default: 2370 // FIXME: Arbitrarily pick the first declaration for the note. 2371 Corrected.setCorrectionDecl(ND); 2372 break; 2373 } 2374 } 2375 R.addDecl(ND); 2376 if (getLangOpts().CPlusPlus && ND->isCXXClassMember()) { 2377 CXXRecordDecl *Record = nullptr; 2378 if (Corrected.getCorrectionSpecifier()) { 2379 const Type *Ty = Corrected.getCorrectionSpecifier()->getAsType(); 2380 Record = Ty->getAsCXXRecordDecl(); 2381 } 2382 if (!Record) 2383 Record = cast<CXXRecordDecl>( 2384 ND->getDeclContext()->getRedeclContext()); 2385 R.setNamingClass(Record); 2386 } 2387 2388 auto *UnderlyingND = ND->getUnderlyingDecl(); 2389 AcceptableWithRecovery = isa<ValueDecl>(UnderlyingND) || 2390 isa<FunctionTemplateDecl>(UnderlyingND); 2391 // FIXME: If we ended up with a typo for a type name or 2392 // Objective-C class name, we're in trouble because the parser 2393 // is in the wrong place to recover. Suggest the typo 2394 // correction, but don't make it a fix-it since we're not going 2395 // to recover well anyway. 2396 AcceptableWithoutRecovery = isa<TypeDecl>(UnderlyingND) || 2397 getAsTypeTemplateDecl(UnderlyingND) || 2398 isa<ObjCInterfaceDecl>(UnderlyingND); 2399 } else { 2400 // FIXME: We found a keyword. Suggest it, but don't provide a fix-it 2401 // because we aren't able to recover. 2402 AcceptableWithoutRecovery = true; 2403 } 2404 2405 if (AcceptableWithRecovery || AcceptableWithoutRecovery) { 2406 unsigned NoteID = Corrected.getCorrectionDeclAs<ImplicitParamDecl>() 2407 ? diag::note_implicit_param_decl 2408 : diag::note_previous_decl; 2409 if (SS.isEmpty()) 2410 diagnoseTypo(Corrected, PDiag(diagnostic_suggest) << Name, 2411 PDiag(NoteID), AcceptableWithRecovery); 2412 else 2413 diagnoseTypo(Corrected, PDiag(diag::err_no_member_suggest) 2414 << Name << computeDeclContext(SS, false) 2415 << DroppedSpecifier << SS.getRange(), 2416 PDiag(NoteID), AcceptableWithRecovery); 2417 2418 // Tell the callee whether to try to recover. 2419 return !AcceptableWithRecovery; 2420 } 2421 } 2422 R.clear(); 2423 2424 // Emit a special diagnostic for failed member lookups. 2425 // FIXME: computing the declaration context might fail here (?) 2426 if (!SS.isEmpty()) { 2427 Diag(R.getNameLoc(), diag::err_no_member) 2428 << Name << computeDeclContext(SS, false) 2429 << SS.getRange(); 2430 return true; 2431 } 2432 2433 // Give up, we can't recover. 2434 Diag(R.getNameLoc(), diagnostic) << Name; 2435 return true; 2436 } 2437 2438 /// In Microsoft mode, if we are inside a template class whose parent class has 2439 /// dependent base classes, and we can't resolve an unqualified identifier, then 2440 /// assume the identifier is a member of a dependent base class. We can only 2441 /// recover successfully in static methods, instance methods, and other contexts 2442 /// where 'this' is available. This doesn't precisely match MSVC's 2443 /// instantiation model, but it's close enough. 2444 static Expr * 2445 recoverFromMSUnqualifiedLookup(Sema &S, ASTContext &Context, 2446 DeclarationNameInfo &NameInfo, 2447 SourceLocation TemplateKWLoc, 2448 const TemplateArgumentListInfo *TemplateArgs) { 2449 // Only try to recover from lookup into dependent bases in static methods or 2450 // contexts where 'this' is available. 2451 QualType ThisType = S.getCurrentThisType(); 2452 const CXXRecordDecl *RD = nullptr; 2453 if (!ThisType.isNull()) 2454 RD = ThisType->getPointeeType()->getAsCXXRecordDecl(); 2455 else if (auto *MD = dyn_cast<CXXMethodDecl>(S.CurContext)) 2456 RD = MD->getParent(); 2457 if (!RD || !RD->hasAnyDependentBases()) 2458 return nullptr; 2459 2460 // Diagnose this as unqualified lookup into a dependent base class. If 'this' 2461 // is available, suggest inserting 'this->' as a fixit. 2462 SourceLocation Loc = NameInfo.getLoc(); 2463 auto DB = S.Diag(Loc, diag::ext_undeclared_unqual_id_with_dependent_base); 2464 DB << NameInfo.getName() << RD; 2465 2466 if (!ThisType.isNull()) { 2467 DB << FixItHint::CreateInsertion(Loc, "this->"); 2468 return CXXDependentScopeMemberExpr::Create( 2469 Context, /*This=*/nullptr, ThisType, /*IsArrow=*/true, 2470 /*Op=*/SourceLocation(), NestedNameSpecifierLoc(), TemplateKWLoc, 2471 /*FirstQualifierFoundInScope=*/nullptr, NameInfo, TemplateArgs); 2472 } 2473 2474 // Synthesize a fake NNS that points to the derived class. This will 2475 // perform name lookup during template instantiation. 2476 CXXScopeSpec SS; 2477 auto *NNS = 2478 NestedNameSpecifier::Create(Context, nullptr, true, RD->getTypeForDecl()); 2479 SS.MakeTrivial(Context, NNS, SourceRange(Loc, Loc)); 2480 return DependentScopeDeclRefExpr::Create( 2481 Context, SS.getWithLocInContext(Context), TemplateKWLoc, NameInfo, 2482 TemplateArgs); 2483 } 2484 2485 ExprResult 2486 Sema::ActOnIdExpression(Scope *S, CXXScopeSpec &SS, 2487 SourceLocation TemplateKWLoc, UnqualifiedId &Id, 2488 bool HasTrailingLParen, bool IsAddressOfOperand, 2489 CorrectionCandidateCallback *CCC, 2490 bool IsInlineAsmIdentifier, Token *KeywordReplacement) { 2491 assert(!(IsAddressOfOperand && HasTrailingLParen) && 2492 "cannot be direct & operand and have a trailing lparen"); 2493 if (SS.isInvalid()) 2494 return ExprError(); 2495 2496 TemplateArgumentListInfo TemplateArgsBuffer; 2497 2498 // Decompose the UnqualifiedId into the following data. 2499 DeclarationNameInfo NameInfo; 2500 const TemplateArgumentListInfo *TemplateArgs; 2501 DecomposeUnqualifiedId(Id, TemplateArgsBuffer, NameInfo, TemplateArgs); 2502 2503 DeclarationName Name = NameInfo.getName(); 2504 IdentifierInfo *II = Name.getAsIdentifierInfo(); 2505 SourceLocation NameLoc = NameInfo.getLoc(); 2506 2507 if (II && II->isEditorPlaceholder()) { 2508 // FIXME: When typed placeholders are supported we can create a typed 2509 // placeholder expression node. 2510 return ExprError(); 2511 } 2512 2513 // C++ [temp.dep.expr]p3: 2514 // An id-expression is type-dependent if it contains: 2515 // -- an identifier that was declared with a dependent type, 2516 // (note: handled after lookup) 2517 // -- a template-id that is dependent, 2518 // (note: handled in BuildTemplateIdExpr) 2519 // -- a conversion-function-id that specifies a dependent type, 2520 // -- a nested-name-specifier that contains a class-name that 2521 // names a dependent type. 2522 // Determine whether this is a member of an unknown specialization; 2523 // we need to handle these differently. 2524 bool DependentID = false; 2525 if (Name.getNameKind() == DeclarationName::CXXConversionFunctionName && 2526 Name.getCXXNameType()->isDependentType()) { 2527 DependentID = true; 2528 } else if (SS.isSet()) { 2529 if (DeclContext *DC = computeDeclContext(SS, false)) { 2530 if (RequireCompleteDeclContext(SS, DC)) 2531 return ExprError(); 2532 } else { 2533 DependentID = true; 2534 } 2535 } 2536 2537 if (DependentID) 2538 return ActOnDependentIdExpression(SS, TemplateKWLoc, NameInfo, 2539 IsAddressOfOperand, TemplateArgs); 2540 2541 // Perform the required lookup. 2542 LookupResult R(*this, NameInfo, 2543 (Id.getKind() == UnqualifiedIdKind::IK_ImplicitSelfParam) 2544 ? LookupObjCImplicitSelfParam 2545 : LookupOrdinaryName); 2546 if (TemplateKWLoc.isValid() || TemplateArgs) { 2547 // Lookup the template name again to correctly establish the context in 2548 // which it was found. This is really unfortunate as we already did the 2549 // lookup to determine that it was a template name in the first place. If 2550 // this becomes a performance hit, we can work harder to preserve those 2551 // results until we get here but it's likely not worth it. 2552 bool MemberOfUnknownSpecialization; 2553 AssumedTemplateKind AssumedTemplate; 2554 if (LookupTemplateName(R, S, SS, QualType(), /*EnteringContext=*/false, 2555 MemberOfUnknownSpecialization, TemplateKWLoc, 2556 &AssumedTemplate)) 2557 return ExprError(); 2558 2559 if (MemberOfUnknownSpecialization || 2560 (R.getResultKind() == LookupResult::NotFoundInCurrentInstantiation)) 2561 return ActOnDependentIdExpression(SS, TemplateKWLoc, NameInfo, 2562 IsAddressOfOperand, TemplateArgs); 2563 } else { 2564 bool IvarLookupFollowUp = II && !SS.isSet() && getCurMethodDecl(); 2565 LookupParsedName(R, S, &SS, !IvarLookupFollowUp); 2566 2567 // If the result might be in a dependent base class, this is a dependent 2568 // id-expression. 2569 if (R.getResultKind() == LookupResult::NotFoundInCurrentInstantiation) 2570 return ActOnDependentIdExpression(SS, TemplateKWLoc, NameInfo, 2571 IsAddressOfOperand, TemplateArgs); 2572 2573 // If this reference is in an Objective-C method, then we need to do 2574 // some special Objective-C lookup, too. 2575 if (IvarLookupFollowUp) { 2576 ExprResult E(LookupInObjCMethod(R, S, II, true)); 2577 if (E.isInvalid()) 2578 return ExprError(); 2579 2580 if (Expr *Ex = E.getAs<Expr>()) 2581 return Ex; 2582 } 2583 } 2584 2585 if (R.isAmbiguous()) 2586 return ExprError(); 2587 2588 // This could be an implicitly declared function reference if the language 2589 // mode allows it as a feature. 2590 if (R.empty() && HasTrailingLParen && II && 2591 getLangOpts().implicitFunctionsAllowed()) { 2592 NamedDecl *D = ImplicitlyDefineFunction(NameLoc, *II, S); 2593 if (D) R.addDecl(D); 2594 } 2595 2596 // Determine whether this name might be a candidate for 2597 // argument-dependent lookup. 2598 bool ADL = UseArgumentDependentLookup(SS, R, HasTrailingLParen); 2599 2600 if (R.empty() && !ADL) { 2601 if (SS.isEmpty() && getLangOpts().MSVCCompat) { 2602 if (Expr *E = recoverFromMSUnqualifiedLookup(*this, Context, NameInfo, 2603 TemplateKWLoc, TemplateArgs)) 2604 return E; 2605 } 2606 2607 // Don't diagnose an empty lookup for inline assembly. 2608 if (IsInlineAsmIdentifier) 2609 return ExprError(); 2610 2611 // If this name wasn't predeclared and if this is not a function 2612 // call, diagnose the problem. 2613 TypoExpr *TE = nullptr; 2614 DefaultFilterCCC DefaultValidator(II, SS.isValid() ? SS.getScopeRep() 2615 : nullptr); 2616 DefaultValidator.IsAddressOfOperand = IsAddressOfOperand; 2617 assert((!CCC || CCC->IsAddressOfOperand == IsAddressOfOperand) && 2618 "Typo correction callback misconfigured"); 2619 if (CCC) { 2620 // Make sure the callback knows what the typo being diagnosed is. 2621 CCC->setTypoName(II); 2622 if (SS.isValid()) 2623 CCC->setTypoNNS(SS.getScopeRep()); 2624 } 2625 // FIXME: DiagnoseEmptyLookup produces bad diagnostics if we're looking for 2626 // a template name, but we happen to have always already looked up the name 2627 // before we get here if it must be a template name. 2628 if (DiagnoseEmptyLookup(S, SS, R, CCC ? *CCC : DefaultValidator, nullptr, 2629 None, &TE)) { 2630 if (TE && KeywordReplacement) { 2631 auto &State = getTypoExprState(TE); 2632 auto BestTC = State.Consumer->getNextCorrection(); 2633 if (BestTC.isKeyword()) { 2634 auto *II = BestTC.getCorrectionAsIdentifierInfo(); 2635 if (State.DiagHandler) 2636 State.DiagHandler(BestTC); 2637 KeywordReplacement->startToken(); 2638 KeywordReplacement->setKind(II->getTokenID()); 2639 KeywordReplacement->setIdentifierInfo(II); 2640 KeywordReplacement->setLocation(BestTC.getCorrectionRange().getBegin()); 2641 // Clean up the state associated with the TypoExpr, since it has 2642 // now been diagnosed (without a call to CorrectDelayedTyposInExpr). 2643 clearDelayedTypo(TE); 2644 // Signal that a correction to a keyword was performed by returning a 2645 // valid-but-null ExprResult. 2646 return (Expr*)nullptr; 2647 } 2648 State.Consumer->resetCorrectionStream(); 2649 } 2650 return TE ? TE : ExprError(); 2651 } 2652 2653 assert(!R.empty() && 2654 "DiagnoseEmptyLookup returned false but added no results"); 2655 2656 // If we found an Objective-C instance variable, let 2657 // LookupInObjCMethod build the appropriate expression to 2658 // reference the ivar. 2659 if (ObjCIvarDecl *Ivar = R.getAsSingle<ObjCIvarDecl>()) { 2660 R.clear(); 2661 ExprResult E(LookupInObjCMethod(R, S, Ivar->getIdentifier())); 2662 // In a hopelessly buggy code, Objective-C instance variable 2663 // lookup fails and no expression will be built to reference it. 2664 if (!E.isInvalid() && !E.get()) 2665 return ExprError(); 2666 return E; 2667 } 2668 } 2669 2670 // This is guaranteed from this point on. 2671 assert(!R.empty() || ADL); 2672 2673 // Check whether this might be a C++ implicit instance member access. 2674 // C++ [class.mfct.non-static]p3: 2675 // When an id-expression that is not part of a class member access 2676 // syntax and not used to form a pointer to member is used in the 2677 // body of a non-static member function of class X, if name lookup 2678 // resolves the name in the id-expression to a non-static non-type 2679 // member of some class C, the id-expression is transformed into a 2680 // class member access expression using (*this) as the 2681 // postfix-expression to the left of the . operator. 2682 // 2683 // But we don't actually need to do this for '&' operands if R 2684 // resolved to a function or overloaded function set, because the 2685 // expression is ill-formed if it actually works out to be a 2686 // non-static member function: 2687 // 2688 // C++ [expr.ref]p4: 2689 // Otherwise, if E1.E2 refers to a non-static member function. . . 2690 // [t]he expression can be used only as the left-hand operand of a 2691 // member function call. 2692 // 2693 // There are other safeguards against such uses, but it's important 2694 // to get this right here so that we don't end up making a 2695 // spuriously dependent expression if we're inside a dependent 2696 // instance method. 2697 if (!R.empty() && (*R.begin())->isCXXClassMember()) { 2698 bool MightBeImplicitMember; 2699 if (!IsAddressOfOperand) 2700 MightBeImplicitMember = true; 2701 else if (!SS.isEmpty()) 2702 MightBeImplicitMember = false; 2703 else if (R.isOverloadedResult()) 2704 MightBeImplicitMember = false; 2705 else if (R.isUnresolvableResult()) 2706 MightBeImplicitMember = true; 2707 else 2708 MightBeImplicitMember = isa<FieldDecl>(R.getFoundDecl()) || 2709 isa<IndirectFieldDecl>(R.getFoundDecl()) || 2710 isa<MSPropertyDecl>(R.getFoundDecl()); 2711 2712 if (MightBeImplicitMember) 2713 return BuildPossibleImplicitMemberExpr(SS, TemplateKWLoc, 2714 R, TemplateArgs, S); 2715 } 2716 2717 if (TemplateArgs || TemplateKWLoc.isValid()) { 2718 2719 // In C++1y, if this is a variable template id, then check it 2720 // in BuildTemplateIdExpr(). 2721 // The single lookup result must be a variable template declaration. 2722 if (Id.getKind() == UnqualifiedIdKind::IK_TemplateId && Id.TemplateId && 2723 Id.TemplateId->Kind == TNK_Var_template) { 2724 assert(R.getAsSingle<VarTemplateDecl>() && 2725 "There should only be one declaration found."); 2726 } 2727 2728 return BuildTemplateIdExpr(SS, TemplateKWLoc, R, ADL, TemplateArgs); 2729 } 2730 2731 return BuildDeclarationNameExpr(SS, R, ADL); 2732 } 2733 2734 /// BuildQualifiedDeclarationNameExpr - Build a C++ qualified 2735 /// declaration name, generally during template instantiation. 2736 /// There's a large number of things which don't need to be done along 2737 /// this path. 2738 ExprResult Sema::BuildQualifiedDeclarationNameExpr( 2739 CXXScopeSpec &SS, const DeclarationNameInfo &NameInfo, 2740 bool IsAddressOfOperand, const Scope *S, TypeSourceInfo **RecoveryTSI) { 2741 DeclContext *DC = computeDeclContext(SS, false); 2742 if (!DC) 2743 return BuildDependentDeclRefExpr(SS, /*TemplateKWLoc=*/SourceLocation(), 2744 NameInfo, /*TemplateArgs=*/nullptr); 2745 2746 if (RequireCompleteDeclContext(SS, DC)) 2747 return ExprError(); 2748 2749 LookupResult R(*this, NameInfo, LookupOrdinaryName); 2750 LookupQualifiedName(R, DC); 2751 2752 if (R.isAmbiguous()) 2753 return ExprError(); 2754 2755 if (R.getResultKind() == LookupResult::NotFoundInCurrentInstantiation) 2756 return BuildDependentDeclRefExpr(SS, /*TemplateKWLoc=*/SourceLocation(), 2757 NameInfo, /*TemplateArgs=*/nullptr); 2758 2759 if (R.empty()) { 2760 // Don't diagnose problems with invalid record decl, the secondary no_member 2761 // diagnostic during template instantiation is likely bogus, e.g. if a class 2762 // is invalid because it's derived from an invalid base class, then missing 2763 // members were likely supposed to be inherited. 2764 if (const auto *CD = dyn_cast<CXXRecordDecl>(DC)) 2765 if (CD->isInvalidDecl()) 2766 return ExprError(); 2767 Diag(NameInfo.getLoc(), diag::err_no_member) 2768 << NameInfo.getName() << DC << SS.getRange(); 2769 return ExprError(); 2770 } 2771 2772 if (const TypeDecl *TD = R.getAsSingle<TypeDecl>()) { 2773 // Diagnose a missing typename if this resolved unambiguously to a type in 2774 // a dependent context. If we can recover with a type, downgrade this to 2775 // a warning in Microsoft compatibility mode. 2776 unsigned DiagID = diag::err_typename_missing; 2777 if (RecoveryTSI && getLangOpts().MSVCCompat) 2778 DiagID = diag::ext_typename_missing; 2779 SourceLocation Loc = SS.getBeginLoc(); 2780 auto D = Diag(Loc, DiagID); 2781 D << SS.getScopeRep() << NameInfo.getName().getAsString() 2782 << SourceRange(Loc, NameInfo.getEndLoc()); 2783 2784 // Don't recover if the caller isn't expecting us to or if we're in a SFINAE 2785 // context. 2786 if (!RecoveryTSI) 2787 return ExprError(); 2788 2789 // Only issue the fixit if we're prepared to recover. 2790 D << FixItHint::CreateInsertion(Loc, "typename "); 2791 2792 // Recover by pretending this was an elaborated type. 2793 QualType Ty = Context.getTypeDeclType(TD); 2794 TypeLocBuilder TLB; 2795 TLB.pushTypeSpec(Ty).setNameLoc(NameInfo.getLoc()); 2796 2797 QualType ET = getElaboratedType(ETK_None, SS, Ty); 2798 ElaboratedTypeLoc QTL = TLB.push<ElaboratedTypeLoc>(ET); 2799 QTL.setElaboratedKeywordLoc(SourceLocation()); 2800 QTL.setQualifierLoc(SS.getWithLocInContext(Context)); 2801 2802 *RecoveryTSI = TLB.getTypeSourceInfo(Context, ET); 2803 2804 return ExprEmpty(); 2805 } 2806 2807 // Defend against this resolving to an implicit member access. We usually 2808 // won't get here if this might be a legitimate a class member (we end up in 2809 // BuildMemberReferenceExpr instead), but this can be valid if we're forming 2810 // a pointer-to-member or in an unevaluated context in C++11. 2811 if (!R.empty() && (*R.begin())->isCXXClassMember() && !IsAddressOfOperand) 2812 return BuildPossibleImplicitMemberExpr(SS, 2813 /*TemplateKWLoc=*/SourceLocation(), 2814 R, /*TemplateArgs=*/nullptr, S); 2815 2816 return BuildDeclarationNameExpr(SS, R, /* ADL */ false); 2817 } 2818 2819 /// The parser has read a name in, and Sema has detected that we're currently 2820 /// inside an ObjC method. Perform some additional checks and determine if we 2821 /// should form a reference to an ivar. 2822 /// 2823 /// Ideally, most of this would be done by lookup, but there's 2824 /// actually quite a lot of extra work involved. 2825 DeclResult Sema::LookupIvarInObjCMethod(LookupResult &Lookup, Scope *S, 2826 IdentifierInfo *II) { 2827 SourceLocation Loc = Lookup.getNameLoc(); 2828 ObjCMethodDecl *CurMethod = getCurMethodDecl(); 2829 2830 // Check for error condition which is already reported. 2831 if (!CurMethod) 2832 return DeclResult(true); 2833 2834 // There are two cases to handle here. 1) scoped lookup could have failed, 2835 // in which case we should look for an ivar. 2) scoped lookup could have 2836 // found a decl, but that decl is outside the current instance method (i.e. 2837 // a global variable). In these two cases, we do a lookup for an ivar with 2838 // this name, if the lookup sucedes, we replace it our current decl. 2839 2840 // If we're in a class method, we don't normally want to look for 2841 // ivars. But if we don't find anything else, and there's an 2842 // ivar, that's an error. 2843 bool IsClassMethod = CurMethod->isClassMethod(); 2844 2845 bool LookForIvars; 2846 if (Lookup.empty()) 2847 LookForIvars = true; 2848 else if (IsClassMethod) 2849 LookForIvars = false; 2850 else 2851 LookForIvars = (Lookup.isSingleResult() && 2852 Lookup.getFoundDecl()->isDefinedOutsideFunctionOrMethod()); 2853 ObjCInterfaceDecl *IFace = nullptr; 2854 if (LookForIvars) { 2855 IFace = CurMethod->getClassInterface(); 2856 ObjCInterfaceDecl *ClassDeclared; 2857 ObjCIvarDecl *IV = nullptr; 2858 if (IFace && (IV = IFace->lookupInstanceVariable(II, ClassDeclared))) { 2859 // Diagnose using an ivar in a class method. 2860 if (IsClassMethod) { 2861 Diag(Loc, diag::err_ivar_use_in_class_method) << IV->getDeclName(); 2862 return DeclResult(true); 2863 } 2864 2865 // Diagnose the use of an ivar outside of the declaring class. 2866 if (IV->getAccessControl() == ObjCIvarDecl::Private && 2867 !declaresSameEntity(ClassDeclared, IFace) && 2868 !getLangOpts().DebuggerSupport) 2869 Diag(Loc, diag::err_private_ivar_access) << IV->getDeclName(); 2870 2871 // Success. 2872 return IV; 2873 } 2874 } else if (CurMethod->isInstanceMethod()) { 2875 // We should warn if a local variable hides an ivar. 2876 if (ObjCInterfaceDecl *IFace = CurMethod->getClassInterface()) { 2877 ObjCInterfaceDecl *ClassDeclared; 2878 if (ObjCIvarDecl *IV = IFace->lookupInstanceVariable(II, ClassDeclared)) { 2879 if (IV->getAccessControl() != ObjCIvarDecl::Private || 2880 declaresSameEntity(IFace, ClassDeclared)) 2881 Diag(Loc, diag::warn_ivar_use_hidden) << IV->getDeclName(); 2882 } 2883 } 2884 } else if (Lookup.isSingleResult() && 2885 Lookup.getFoundDecl()->isDefinedOutsideFunctionOrMethod()) { 2886 // If accessing a stand-alone ivar in a class method, this is an error. 2887 if (const ObjCIvarDecl *IV = 2888 dyn_cast<ObjCIvarDecl>(Lookup.getFoundDecl())) { 2889 Diag(Loc, diag::err_ivar_use_in_class_method) << IV->getDeclName(); 2890 return DeclResult(true); 2891 } 2892 } 2893 2894 // Didn't encounter an error, didn't find an ivar. 2895 return DeclResult(false); 2896 } 2897 2898 ExprResult Sema::BuildIvarRefExpr(Scope *S, SourceLocation Loc, 2899 ObjCIvarDecl *IV) { 2900 ObjCMethodDecl *CurMethod = getCurMethodDecl(); 2901 assert(CurMethod && CurMethod->isInstanceMethod() && 2902 "should not reference ivar from this context"); 2903 2904 ObjCInterfaceDecl *IFace = CurMethod->getClassInterface(); 2905 assert(IFace && "should not reference ivar from this context"); 2906 2907 // If we're referencing an invalid decl, just return this as a silent 2908 // error node. The error diagnostic was already emitted on the decl. 2909 if (IV->isInvalidDecl()) 2910 return ExprError(); 2911 2912 // Check if referencing a field with __attribute__((deprecated)). 2913 if (DiagnoseUseOfDecl(IV, Loc)) 2914 return ExprError(); 2915 2916 // FIXME: This should use a new expr for a direct reference, don't 2917 // turn this into Self->ivar, just return a BareIVarExpr or something. 2918 IdentifierInfo &II = Context.Idents.get("self"); 2919 UnqualifiedId SelfName; 2920 SelfName.setImplicitSelfParam(&II); 2921 CXXScopeSpec SelfScopeSpec; 2922 SourceLocation TemplateKWLoc; 2923 ExprResult SelfExpr = 2924 ActOnIdExpression(S, SelfScopeSpec, TemplateKWLoc, SelfName, 2925 /*HasTrailingLParen=*/false, 2926 /*IsAddressOfOperand=*/false); 2927 if (SelfExpr.isInvalid()) 2928 return ExprError(); 2929 2930 SelfExpr = DefaultLvalueConversion(SelfExpr.get()); 2931 if (SelfExpr.isInvalid()) 2932 return ExprError(); 2933 2934 MarkAnyDeclReferenced(Loc, IV, true); 2935 2936 ObjCMethodFamily MF = CurMethod->getMethodFamily(); 2937 if (MF != OMF_init && MF != OMF_dealloc && MF != OMF_finalize && 2938 !IvarBacksCurrentMethodAccessor(IFace, CurMethod, IV)) 2939 Diag(Loc, diag::warn_direct_ivar_access) << IV->getDeclName(); 2940 2941 ObjCIvarRefExpr *Result = new (Context) 2942 ObjCIvarRefExpr(IV, IV->getUsageType(SelfExpr.get()->getType()), Loc, 2943 IV->getLocation(), SelfExpr.get(), true, true); 2944 2945 if (IV->getType().getObjCLifetime() == Qualifiers::OCL_Weak) { 2946 if (!isUnevaluatedContext() && 2947 !Diags.isIgnored(diag::warn_arc_repeated_use_of_weak, Loc)) 2948 getCurFunction()->recordUseOfWeak(Result); 2949 } 2950 if (getLangOpts().ObjCAutoRefCount) 2951 if (const BlockDecl *BD = CurContext->getInnermostBlockDecl()) 2952 ImplicitlyRetainedSelfLocs.push_back({Loc, BD}); 2953 2954 return Result; 2955 } 2956 2957 /// The parser has read a name in, and Sema has detected that we're currently 2958 /// inside an ObjC method. Perform some additional checks and determine if we 2959 /// should form a reference to an ivar. If so, build an expression referencing 2960 /// that ivar. 2961 ExprResult 2962 Sema::LookupInObjCMethod(LookupResult &Lookup, Scope *S, 2963 IdentifierInfo *II, bool AllowBuiltinCreation) { 2964 // FIXME: Integrate this lookup step into LookupParsedName. 2965 DeclResult Ivar = LookupIvarInObjCMethod(Lookup, S, II); 2966 if (Ivar.isInvalid()) 2967 return ExprError(); 2968 if (Ivar.isUsable()) 2969 return BuildIvarRefExpr(S, Lookup.getNameLoc(), 2970 cast<ObjCIvarDecl>(Ivar.get())); 2971 2972 if (Lookup.empty() && II && AllowBuiltinCreation) 2973 LookupBuiltin(Lookup); 2974 2975 // Sentinel value saying that we didn't do anything special. 2976 return ExprResult(false); 2977 } 2978 2979 /// Cast a base object to a member's actual type. 2980 /// 2981 /// There are two relevant checks: 2982 /// 2983 /// C++ [class.access.base]p7: 2984 /// 2985 /// If a class member access operator [...] is used to access a non-static 2986 /// data member or non-static member function, the reference is ill-formed if 2987 /// the left operand [...] cannot be implicitly converted to a pointer to the 2988 /// naming class of the right operand. 2989 /// 2990 /// C++ [expr.ref]p7: 2991 /// 2992 /// If E2 is a non-static data member or a non-static member function, the 2993 /// program is ill-formed if the class of which E2 is directly a member is an 2994 /// ambiguous base (11.8) of the naming class (11.9.3) of E2. 2995 /// 2996 /// Note that the latter check does not consider access; the access of the 2997 /// "real" base class is checked as appropriate when checking the access of the 2998 /// member name. 2999 ExprResult 3000 Sema::PerformObjectMemberConversion(Expr *From, 3001 NestedNameSpecifier *Qualifier, 3002 NamedDecl *FoundDecl, 3003 NamedDecl *Member) { 3004 CXXRecordDecl *RD = dyn_cast<CXXRecordDecl>(Member->getDeclContext()); 3005 if (!RD) 3006 return From; 3007 3008 QualType DestRecordType; 3009 QualType DestType; 3010 QualType FromRecordType; 3011 QualType FromType = From->getType(); 3012 bool PointerConversions = false; 3013 if (isa<FieldDecl>(Member)) { 3014 DestRecordType = Context.getCanonicalType(Context.getTypeDeclType(RD)); 3015 auto FromPtrType = FromType->getAs<PointerType>(); 3016 DestRecordType = Context.getAddrSpaceQualType( 3017 DestRecordType, FromPtrType 3018 ? FromType->getPointeeType().getAddressSpace() 3019 : FromType.getAddressSpace()); 3020 3021 if (FromPtrType) { 3022 DestType = Context.getPointerType(DestRecordType); 3023 FromRecordType = FromPtrType->getPointeeType(); 3024 PointerConversions = true; 3025 } else { 3026 DestType = DestRecordType; 3027 FromRecordType = FromType; 3028 } 3029 } else if (CXXMethodDecl *Method = dyn_cast<CXXMethodDecl>(Member)) { 3030 if (Method->isStatic()) 3031 return From; 3032 3033 DestType = Method->getThisType(); 3034 DestRecordType = DestType->getPointeeType(); 3035 3036 if (FromType->getAs<PointerType>()) { 3037 FromRecordType = FromType->getPointeeType(); 3038 PointerConversions = true; 3039 } else { 3040 FromRecordType = FromType; 3041 DestType = DestRecordType; 3042 } 3043 3044 LangAS FromAS = FromRecordType.getAddressSpace(); 3045 LangAS DestAS = DestRecordType.getAddressSpace(); 3046 if (FromAS != DestAS) { 3047 QualType FromRecordTypeWithoutAS = 3048 Context.removeAddrSpaceQualType(FromRecordType); 3049 QualType FromTypeWithDestAS = 3050 Context.getAddrSpaceQualType(FromRecordTypeWithoutAS, DestAS); 3051 if (PointerConversions) 3052 FromTypeWithDestAS = Context.getPointerType(FromTypeWithDestAS); 3053 From = ImpCastExprToType(From, FromTypeWithDestAS, 3054 CK_AddressSpaceConversion, From->getValueKind()) 3055 .get(); 3056 } 3057 } else { 3058 // No conversion necessary. 3059 return From; 3060 } 3061 3062 if (DestType->isDependentType() || FromType->isDependentType()) 3063 return From; 3064 3065 // If the unqualified types are the same, no conversion is necessary. 3066 if (Context.hasSameUnqualifiedType(FromRecordType, DestRecordType)) 3067 return From; 3068 3069 SourceRange FromRange = From->getSourceRange(); 3070 SourceLocation FromLoc = FromRange.getBegin(); 3071 3072 ExprValueKind VK = From->getValueKind(); 3073 3074 // C++ [class.member.lookup]p8: 3075 // [...] Ambiguities can often be resolved by qualifying a name with its 3076 // class name. 3077 // 3078 // If the member was a qualified name and the qualified referred to a 3079 // specific base subobject type, we'll cast to that intermediate type 3080 // first and then to the object in which the member is declared. That allows 3081 // one to resolve ambiguities in, e.g., a diamond-shaped hierarchy such as: 3082 // 3083 // class Base { public: int x; }; 3084 // class Derived1 : public Base { }; 3085 // class Derived2 : public Base { }; 3086 // class VeryDerived : public Derived1, public Derived2 { void f(); }; 3087 // 3088 // void VeryDerived::f() { 3089 // x = 17; // error: ambiguous base subobjects 3090 // Derived1::x = 17; // okay, pick the Base subobject of Derived1 3091 // } 3092 if (Qualifier && Qualifier->getAsType()) { 3093 QualType QType = QualType(Qualifier->getAsType(), 0); 3094 assert(QType->isRecordType() && "lookup done with non-record type"); 3095 3096 QualType QRecordType = QualType(QType->castAs<RecordType>(), 0); 3097 3098 // In C++98, the qualifier type doesn't actually have to be a base 3099 // type of the object type, in which case we just ignore it. 3100 // Otherwise build the appropriate casts. 3101 if (IsDerivedFrom(FromLoc, FromRecordType, QRecordType)) { 3102 CXXCastPath BasePath; 3103 if (CheckDerivedToBaseConversion(FromRecordType, QRecordType, 3104 FromLoc, FromRange, &BasePath)) 3105 return ExprError(); 3106 3107 if (PointerConversions) 3108 QType = Context.getPointerType(QType); 3109 From = ImpCastExprToType(From, QType, CK_UncheckedDerivedToBase, 3110 VK, &BasePath).get(); 3111 3112 FromType = QType; 3113 FromRecordType = QRecordType; 3114 3115 // If the qualifier type was the same as the destination type, 3116 // we're done. 3117 if (Context.hasSameUnqualifiedType(FromRecordType, DestRecordType)) 3118 return From; 3119 } 3120 } 3121 3122 CXXCastPath BasePath; 3123 if (CheckDerivedToBaseConversion(FromRecordType, DestRecordType, 3124 FromLoc, FromRange, &BasePath, 3125 /*IgnoreAccess=*/true)) 3126 return ExprError(); 3127 3128 return ImpCastExprToType(From, DestType, CK_UncheckedDerivedToBase, 3129 VK, &BasePath); 3130 } 3131 3132 bool Sema::UseArgumentDependentLookup(const CXXScopeSpec &SS, 3133 const LookupResult &R, 3134 bool HasTrailingLParen) { 3135 // Only when used directly as the postfix-expression of a call. 3136 if (!HasTrailingLParen) 3137 return false; 3138 3139 // Never if a scope specifier was provided. 3140 if (SS.isSet()) 3141 return false; 3142 3143 // Only in C++ or ObjC++. 3144 if (!getLangOpts().CPlusPlus) 3145 return false; 3146 3147 // Turn off ADL when we find certain kinds of declarations during 3148 // normal lookup: 3149 for (NamedDecl *D : R) { 3150 // C++0x [basic.lookup.argdep]p3: 3151 // -- a declaration of a class member 3152 // Since using decls preserve this property, we check this on the 3153 // original decl. 3154 if (D->isCXXClassMember()) 3155 return false; 3156 3157 // C++0x [basic.lookup.argdep]p3: 3158 // -- a block-scope function declaration that is not a 3159 // using-declaration 3160 // NOTE: we also trigger this for function templates (in fact, we 3161 // don't check the decl type at all, since all other decl types 3162 // turn off ADL anyway). 3163 if (isa<UsingShadowDecl>(D)) 3164 D = cast<UsingShadowDecl>(D)->getTargetDecl(); 3165 else if (D->getLexicalDeclContext()->isFunctionOrMethod()) 3166 return false; 3167 3168 // C++0x [basic.lookup.argdep]p3: 3169 // -- a declaration that is neither a function or a function 3170 // template 3171 // And also for builtin functions. 3172 if (isa<FunctionDecl>(D)) { 3173 FunctionDecl *FDecl = cast<FunctionDecl>(D); 3174 3175 // But also builtin functions. 3176 if (FDecl->getBuiltinID() && FDecl->isImplicit()) 3177 return false; 3178 } else if (!isa<FunctionTemplateDecl>(D)) 3179 return false; 3180 } 3181 3182 return true; 3183 } 3184 3185 3186 /// Diagnoses obvious problems with the use of the given declaration 3187 /// as an expression. This is only actually called for lookups that 3188 /// were not overloaded, and it doesn't promise that the declaration 3189 /// will in fact be used. 3190 static bool CheckDeclInExpr(Sema &S, SourceLocation Loc, NamedDecl *D) { 3191 if (D->isInvalidDecl()) 3192 return true; 3193 3194 if (isa<TypedefNameDecl>(D)) { 3195 S.Diag(Loc, diag::err_unexpected_typedef) << D->getDeclName(); 3196 return true; 3197 } 3198 3199 if (isa<ObjCInterfaceDecl>(D)) { 3200 S.Diag(Loc, diag::err_unexpected_interface) << D->getDeclName(); 3201 return true; 3202 } 3203 3204 if (isa<NamespaceDecl>(D)) { 3205 S.Diag(Loc, diag::err_unexpected_namespace) << D->getDeclName(); 3206 return true; 3207 } 3208 3209 return false; 3210 } 3211 3212 // Certain multiversion types should be treated as overloaded even when there is 3213 // only one result. 3214 static bool ShouldLookupResultBeMultiVersionOverload(const LookupResult &R) { 3215 assert(R.isSingleResult() && "Expected only a single result"); 3216 const auto *FD = dyn_cast<FunctionDecl>(R.getFoundDecl()); 3217 return FD && 3218 (FD->isCPUDispatchMultiVersion() || FD->isCPUSpecificMultiVersion()); 3219 } 3220 3221 ExprResult Sema::BuildDeclarationNameExpr(const CXXScopeSpec &SS, 3222 LookupResult &R, bool NeedsADL, 3223 bool AcceptInvalidDecl) { 3224 // If this is a single, fully-resolved result and we don't need ADL, 3225 // just build an ordinary singleton decl ref. 3226 if (!NeedsADL && R.isSingleResult() && 3227 !R.getAsSingle<FunctionTemplateDecl>() && 3228 !ShouldLookupResultBeMultiVersionOverload(R)) 3229 return BuildDeclarationNameExpr(SS, R.getLookupNameInfo(), R.getFoundDecl(), 3230 R.getRepresentativeDecl(), nullptr, 3231 AcceptInvalidDecl); 3232 3233 // We only need to check the declaration if there's exactly one 3234 // result, because in the overloaded case the results can only be 3235 // functions and function templates. 3236 if (R.isSingleResult() && !ShouldLookupResultBeMultiVersionOverload(R) && 3237 CheckDeclInExpr(*this, R.getNameLoc(), R.getFoundDecl())) 3238 return ExprError(); 3239 3240 // Otherwise, just build an unresolved lookup expression. Suppress 3241 // any lookup-related diagnostics; we'll hash these out later, when 3242 // we've picked a target. 3243 R.suppressDiagnostics(); 3244 3245 UnresolvedLookupExpr *ULE 3246 = UnresolvedLookupExpr::Create(Context, R.getNamingClass(), 3247 SS.getWithLocInContext(Context), 3248 R.getLookupNameInfo(), 3249 NeedsADL, R.isOverloadedResult(), 3250 R.begin(), R.end()); 3251 3252 return ULE; 3253 } 3254 3255 static void diagnoseUncapturableValueReference(Sema &S, SourceLocation loc, 3256 ValueDecl *var); 3257 3258 /// Complete semantic analysis for a reference to the given declaration. 3259 ExprResult Sema::BuildDeclarationNameExpr( 3260 const CXXScopeSpec &SS, const DeclarationNameInfo &NameInfo, NamedDecl *D, 3261 NamedDecl *FoundD, const TemplateArgumentListInfo *TemplateArgs, 3262 bool AcceptInvalidDecl) { 3263 assert(D && "Cannot refer to a NULL declaration"); 3264 assert(!isa<FunctionTemplateDecl>(D) && 3265 "Cannot refer unambiguously to a function template"); 3266 3267 SourceLocation Loc = NameInfo.getLoc(); 3268 if (CheckDeclInExpr(*this, Loc, D)) { 3269 // Recovery from invalid cases (e.g. D is an invalid Decl). 3270 // We use the dependent type for the RecoveryExpr to prevent bogus follow-up 3271 // diagnostics, as invalid decls use int as a fallback type. 3272 return CreateRecoveryExpr(NameInfo.getBeginLoc(), NameInfo.getEndLoc(), {}); 3273 } 3274 3275 if (TemplateDecl *Template = dyn_cast<TemplateDecl>(D)) { 3276 // Specifically diagnose references to class templates that are missing 3277 // a template argument list. 3278 diagnoseMissingTemplateArguments(TemplateName(Template), Loc); 3279 return ExprError(); 3280 } 3281 3282 // Make sure that we're referring to a value. 3283 if (!isa<ValueDecl, UnresolvedUsingIfExistsDecl>(D)) { 3284 Diag(Loc, diag::err_ref_non_value) << D << SS.getRange(); 3285 Diag(D->getLocation(), diag::note_declared_at); 3286 return ExprError(); 3287 } 3288 3289 // Check whether this declaration can be used. Note that we suppress 3290 // this check when we're going to perform argument-dependent lookup 3291 // on this function name, because this might not be the function 3292 // that overload resolution actually selects. 3293 if (DiagnoseUseOfDecl(D, Loc)) 3294 return ExprError(); 3295 3296 auto *VD = cast<ValueDecl>(D); 3297 3298 // Only create DeclRefExpr's for valid Decl's. 3299 if (VD->isInvalidDecl() && !AcceptInvalidDecl) 3300 return ExprError(); 3301 3302 // Handle members of anonymous structs and unions. If we got here, 3303 // and the reference is to a class member indirect field, then this 3304 // must be the subject of a pointer-to-member expression. 3305 if (IndirectFieldDecl *indirectField = dyn_cast<IndirectFieldDecl>(VD)) 3306 if (!indirectField->isCXXClassMember()) 3307 return BuildAnonymousStructUnionMemberReference(SS, NameInfo.getLoc(), 3308 indirectField); 3309 3310 QualType type = VD->getType(); 3311 if (type.isNull()) 3312 return ExprError(); 3313 ExprValueKind valueKind = VK_PRValue; 3314 3315 // In 'T ...V;', the type of the declaration 'V' is 'T...', but the type of 3316 // a reference to 'V' is simply (unexpanded) 'T'. The type, like the value, 3317 // is expanded by some outer '...' in the context of the use. 3318 type = type.getNonPackExpansionType(); 3319 3320 switch (D->getKind()) { 3321 // Ignore all the non-ValueDecl kinds. 3322 #define ABSTRACT_DECL(kind) 3323 #define VALUE(type, base) 3324 #define DECL(type, base) case Decl::type: 3325 #include "clang/AST/DeclNodes.inc" 3326 llvm_unreachable("invalid value decl kind"); 3327 3328 // These shouldn't make it here. 3329 case Decl::ObjCAtDefsField: 3330 llvm_unreachable("forming non-member reference to ivar?"); 3331 3332 // Enum constants are always r-values and never references. 3333 // Unresolved using declarations are dependent. 3334 case Decl::EnumConstant: 3335 case Decl::UnresolvedUsingValue: 3336 case Decl::OMPDeclareReduction: 3337 case Decl::OMPDeclareMapper: 3338 valueKind = VK_PRValue; 3339 break; 3340 3341 // Fields and indirect fields that got here must be for 3342 // pointer-to-member expressions; we just call them l-values for 3343 // internal consistency, because this subexpression doesn't really 3344 // exist in the high-level semantics. 3345 case Decl::Field: 3346 case Decl::IndirectField: 3347 case Decl::ObjCIvar: 3348 assert(getLangOpts().CPlusPlus && "building reference to field in C?"); 3349 3350 // These can't have reference type in well-formed programs, but 3351 // for internal consistency we do this anyway. 3352 type = type.getNonReferenceType(); 3353 valueKind = VK_LValue; 3354 break; 3355 3356 // Non-type template parameters are either l-values or r-values 3357 // depending on the type. 3358 case Decl::NonTypeTemplateParm: { 3359 if (const ReferenceType *reftype = type->getAs<ReferenceType>()) { 3360 type = reftype->getPointeeType(); 3361 valueKind = VK_LValue; // even if the parameter is an r-value reference 3362 break; 3363 } 3364 3365 // [expr.prim.id.unqual]p2: 3366 // If the entity is a template parameter object for a template 3367 // parameter of type T, the type of the expression is const T. 3368 // [...] The expression is an lvalue if the entity is a [...] template 3369 // parameter object. 3370 if (type->isRecordType()) { 3371 type = type.getUnqualifiedType().withConst(); 3372 valueKind = VK_LValue; 3373 break; 3374 } 3375 3376 // For non-references, we need to strip qualifiers just in case 3377 // the template parameter was declared as 'const int' or whatever. 3378 valueKind = VK_PRValue; 3379 type = type.getUnqualifiedType(); 3380 break; 3381 } 3382 3383 case Decl::Var: 3384 case Decl::VarTemplateSpecialization: 3385 case Decl::VarTemplatePartialSpecialization: 3386 case Decl::Decomposition: 3387 case Decl::OMPCapturedExpr: 3388 // In C, "extern void blah;" is valid and is an r-value. 3389 if (!getLangOpts().CPlusPlus && !type.hasQualifiers() && 3390 type->isVoidType()) { 3391 valueKind = VK_PRValue; 3392 break; 3393 } 3394 LLVM_FALLTHROUGH; 3395 3396 case Decl::ImplicitParam: 3397 case Decl::ParmVar: { 3398 // These are always l-values. 3399 valueKind = VK_LValue; 3400 type = type.getNonReferenceType(); 3401 3402 // FIXME: Does the addition of const really only apply in 3403 // potentially-evaluated contexts? Since the variable isn't actually 3404 // captured in an unevaluated context, it seems that the answer is no. 3405 if (!isUnevaluatedContext()) { 3406 QualType CapturedType = getCapturedDeclRefType(cast<VarDecl>(VD), Loc); 3407 if (!CapturedType.isNull()) 3408 type = CapturedType; 3409 } 3410 3411 break; 3412 } 3413 3414 case Decl::Binding: { 3415 // These are always lvalues. 3416 valueKind = VK_LValue; 3417 type = type.getNonReferenceType(); 3418 // FIXME: Support lambda-capture of BindingDecls, once CWG actually 3419 // decides how that's supposed to work. 3420 auto *BD = cast<BindingDecl>(VD); 3421 if (BD->getDeclContext() != CurContext) { 3422 auto *DD = dyn_cast_or_null<VarDecl>(BD->getDecomposedDecl()); 3423 if (DD && DD->hasLocalStorage()) 3424 diagnoseUncapturableValueReference(*this, Loc, BD); 3425 } 3426 break; 3427 } 3428 3429 case Decl::Function: { 3430 if (unsigned BID = cast<FunctionDecl>(VD)->getBuiltinID()) { 3431 if (!Context.BuiltinInfo.isDirectlyAddressable(BID)) { 3432 type = Context.BuiltinFnTy; 3433 valueKind = VK_PRValue; 3434 break; 3435 } 3436 } 3437 3438 const FunctionType *fty = type->castAs<FunctionType>(); 3439 3440 // If we're referring to a function with an __unknown_anytype 3441 // result type, make the entire expression __unknown_anytype. 3442 if (fty->getReturnType() == Context.UnknownAnyTy) { 3443 type = Context.UnknownAnyTy; 3444 valueKind = VK_PRValue; 3445 break; 3446 } 3447 3448 // Functions are l-values in C++. 3449 if (getLangOpts().CPlusPlus) { 3450 valueKind = VK_LValue; 3451 break; 3452 } 3453 3454 // C99 DR 316 says that, if a function type comes from a 3455 // function definition (without a prototype), that type is only 3456 // used for checking compatibility. Therefore, when referencing 3457 // the function, we pretend that we don't have the full function 3458 // type. 3459 if (!cast<FunctionDecl>(VD)->hasPrototype() && isa<FunctionProtoType>(fty)) 3460 type = Context.getFunctionNoProtoType(fty->getReturnType(), 3461 fty->getExtInfo()); 3462 3463 // Functions are r-values in C. 3464 valueKind = VK_PRValue; 3465 break; 3466 } 3467 3468 case Decl::CXXDeductionGuide: 3469 llvm_unreachable("building reference to deduction guide"); 3470 3471 case Decl::MSProperty: 3472 case Decl::MSGuid: 3473 case Decl::TemplateParamObject: 3474 // FIXME: Should MSGuidDecl and template parameter objects be subject to 3475 // capture in OpenMP, or duplicated between host and device? 3476 valueKind = VK_LValue; 3477 break; 3478 3479 case Decl::UnnamedGlobalConstant: 3480 valueKind = VK_LValue; 3481 break; 3482 3483 case Decl::CXXMethod: 3484 // If we're referring to a method with an __unknown_anytype 3485 // result type, make the entire expression __unknown_anytype. 3486 // This should only be possible with a type written directly. 3487 if (const FunctionProtoType *proto = 3488 dyn_cast<FunctionProtoType>(VD->getType())) 3489 if (proto->getReturnType() == Context.UnknownAnyTy) { 3490 type = Context.UnknownAnyTy; 3491 valueKind = VK_PRValue; 3492 break; 3493 } 3494 3495 // C++ methods are l-values if static, r-values if non-static. 3496 if (cast<CXXMethodDecl>(VD)->isStatic()) { 3497 valueKind = VK_LValue; 3498 break; 3499 } 3500 LLVM_FALLTHROUGH; 3501 3502 case Decl::CXXConversion: 3503 case Decl::CXXDestructor: 3504 case Decl::CXXConstructor: 3505 valueKind = VK_PRValue; 3506 break; 3507 } 3508 3509 return BuildDeclRefExpr(VD, type, valueKind, NameInfo, &SS, FoundD, 3510 /*FIXME: TemplateKWLoc*/ SourceLocation(), 3511 TemplateArgs); 3512 } 3513 3514 static void ConvertUTF8ToWideString(unsigned CharByteWidth, StringRef Source, 3515 SmallString<32> &Target) { 3516 Target.resize(CharByteWidth * (Source.size() + 1)); 3517 char *ResultPtr = &Target[0]; 3518 const llvm::UTF8 *ErrorPtr; 3519 bool success = 3520 llvm::ConvertUTF8toWide(CharByteWidth, Source, ResultPtr, ErrorPtr); 3521 (void)success; 3522 assert(success); 3523 Target.resize(ResultPtr - &Target[0]); 3524 } 3525 3526 ExprResult Sema::BuildPredefinedExpr(SourceLocation Loc, 3527 PredefinedExpr::IdentKind IK) { 3528 // Pick the current block, lambda, captured statement or function. 3529 Decl *currentDecl = nullptr; 3530 if (const BlockScopeInfo *BSI = getCurBlock()) 3531 currentDecl = BSI->TheDecl; 3532 else if (const LambdaScopeInfo *LSI = getCurLambda()) 3533 currentDecl = LSI->CallOperator; 3534 else if (const CapturedRegionScopeInfo *CSI = getCurCapturedRegion()) 3535 currentDecl = CSI->TheCapturedDecl; 3536 else 3537 currentDecl = getCurFunctionOrMethodDecl(); 3538 3539 if (!currentDecl) { 3540 Diag(Loc, diag::ext_predef_outside_function); 3541 currentDecl = Context.getTranslationUnitDecl(); 3542 } 3543 3544 QualType ResTy; 3545 StringLiteral *SL = nullptr; 3546 if (cast<DeclContext>(currentDecl)->isDependentContext()) 3547 ResTy = Context.DependentTy; 3548 else { 3549 // Pre-defined identifiers are of type char[x], where x is the length of 3550 // the string. 3551 auto Str = PredefinedExpr::ComputeName(IK, currentDecl); 3552 unsigned Length = Str.length(); 3553 3554 llvm::APInt LengthI(32, Length + 1); 3555 if (IK == PredefinedExpr::LFunction || IK == PredefinedExpr::LFuncSig) { 3556 ResTy = 3557 Context.adjustStringLiteralBaseType(Context.WideCharTy.withConst()); 3558 SmallString<32> RawChars; 3559 ConvertUTF8ToWideString(Context.getTypeSizeInChars(ResTy).getQuantity(), 3560 Str, RawChars); 3561 ResTy = Context.getConstantArrayType(ResTy, LengthI, nullptr, 3562 ArrayType::Normal, 3563 /*IndexTypeQuals*/ 0); 3564 SL = StringLiteral::Create(Context, RawChars, StringLiteral::Wide, 3565 /*Pascal*/ false, ResTy, Loc); 3566 } else { 3567 ResTy = Context.adjustStringLiteralBaseType(Context.CharTy.withConst()); 3568 ResTy = Context.getConstantArrayType(ResTy, LengthI, nullptr, 3569 ArrayType::Normal, 3570 /*IndexTypeQuals*/ 0); 3571 SL = StringLiteral::Create(Context, Str, StringLiteral::Ascii, 3572 /*Pascal*/ false, ResTy, Loc); 3573 } 3574 } 3575 3576 return PredefinedExpr::Create(Context, Loc, ResTy, IK, SL); 3577 } 3578 3579 ExprResult Sema::BuildSYCLUniqueStableNameExpr(SourceLocation OpLoc, 3580 SourceLocation LParen, 3581 SourceLocation RParen, 3582 TypeSourceInfo *TSI) { 3583 return SYCLUniqueStableNameExpr::Create(Context, OpLoc, LParen, RParen, TSI); 3584 } 3585 3586 ExprResult Sema::ActOnSYCLUniqueStableNameExpr(SourceLocation OpLoc, 3587 SourceLocation LParen, 3588 SourceLocation RParen, 3589 ParsedType ParsedTy) { 3590 TypeSourceInfo *TSI = nullptr; 3591 QualType Ty = GetTypeFromParser(ParsedTy, &TSI); 3592 3593 if (Ty.isNull()) 3594 return ExprError(); 3595 if (!TSI) 3596 TSI = Context.getTrivialTypeSourceInfo(Ty, LParen); 3597 3598 return BuildSYCLUniqueStableNameExpr(OpLoc, LParen, RParen, TSI); 3599 } 3600 3601 ExprResult Sema::ActOnPredefinedExpr(SourceLocation Loc, tok::TokenKind Kind) { 3602 PredefinedExpr::IdentKind IK; 3603 3604 switch (Kind) { 3605 default: llvm_unreachable("Unknown simple primary expr!"); 3606 case tok::kw___func__: IK = PredefinedExpr::Func; break; // [C99 6.4.2.2] 3607 case tok::kw___FUNCTION__: IK = PredefinedExpr::Function; break; 3608 case tok::kw___FUNCDNAME__: IK = PredefinedExpr::FuncDName; break; // [MS] 3609 case tok::kw___FUNCSIG__: IK = PredefinedExpr::FuncSig; break; // [MS] 3610 case tok::kw_L__FUNCTION__: IK = PredefinedExpr::LFunction; break; // [MS] 3611 case tok::kw_L__FUNCSIG__: IK = PredefinedExpr::LFuncSig; break; // [MS] 3612 case tok::kw___PRETTY_FUNCTION__: IK = PredefinedExpr::PrettyFunction; break; 3613 } 3614 3615 return BuildPredefinedExpr(Loc, IK); 3616 } 3617 3618 ExprResult Sema::ActOnCharacterConstant(const Token &Tok, Scope *UDLScope) { 3619 SmallString<16> CharBuffer; 3620 bool Invalid = false; 3621 StringRef ThisTok = PP.getSpelling(Tok, CharBuffer, &Invalid); 3622 if (Invalid) 3623 return ExprError(); 3624 3625 CharLiteralParser Literal(ThisTok.begin(), ThisTok.end(), Tok.getLocation(), 3626 PP, Tok.getKind()); 3627 if (Literal.hadError()) 3628 return ExprError(); 3629 3630 QualType Ty; 3631 if (Literal.isWide()) 3632 Ty = Context.WideCharTy; // L'x' -> wchar_t in C and C++. 3633 else if (Literal.isUTF8() && getLangOpts().C2x) 3634 Ty = Context.UnsignedCharTy; // u8'x' -> unsigned char in C2x 3635 else if (Literal.isUTF8() && getLangOpts().Char8) 3636 Ty = Context.Char8Ty; // u8'x' -> char8_t when it exists. 3637 else if (Literal.isUTF16()) 3638 Ty = Context.Char16Ty; // u'x' -> char16_t in C11 and C++11. 3639 else if (Literal.isUTF32()) 3640 Ty = Context.Char32Ty; // U'x' -> char32_t in C11 and C++11. 3641 else if (!getLangOpts().CPlusPlus || Literal.isMultiChar()) 3642 Ty = Context.IntTy; // 'x' -> int in C, 'wxyz' -> int in C++. 3643 else 3644 Ty = Context.CharTy; // 'x' -> char in C++; 3645 // u8'x' -> char in C11-C17 and in C++ without char8_t. 3646 3647 CharacterLiteral::CharacterKind Kind = CharacterLiteral::Ascii; 3648 if (Literal.isWide()) 3649 Kind = CharacterLiteral::Wide; 3650 else if (Literal.isUTF16()) 3651 Kind = CharacterLiteral::UTF16; 3652 else if (Literal.isUTF32()) 3653 Kind = CharacterLiteral::UTF32; 3654 else if (Literal.isUTF8()) 3655 Kind = CharacterLiteral::UTF8; 3656 3657 Expr *Lit = new (Context) CharacterLiteral(Literal.getValue(), Kind, Ty, 3658 Tok.getLocation()); 3659 3660 if (Literal.getUDSuffix().empty()) 3661 return Lit; 3662 3663 // We're building a user-defined literal. 3664 IdentifierInfo *UDSuffix = &Context.Idents.get(Literal.getUDSuffix()); 3665 SourceLocation UDSuffixLoc = 3666 getUDSuffixLoc(*this, Tok.getLocation(), Literal.getUDSuffixOffset()); 3667 3668 // Make sure we're allowed user-defined literals here. 3669 if (!UDLScope) 3670 return ExprError(Diag(UDSuffixLoc, diag::err_invalid_character_udl)); 3671 3672 // C++11 [lex.ext]p6: The literal L is treated as a call of the form 3673 // operator "" X (ch) 3674 return BuildCookedLiteralOperatorCall(*this, UDLScope, UDSuffix, UDSuffixLoc, 3675 Lit, Tok.getLocation()); 3676 } 3677 3678 ExprResult Sema::ActOnIntegerConstant(SourceLocation Loc, uint64_t Val) { 3679 unsigned IntSize = Context.getTargetInfo().getIntWidth(); 3680 return IntegerLiteral::Create(Context, llvm::APInt(IntSize, Val), 3681 Context.IntTy, Loc); 3682 } 3683 3684 static Expr *BuildFloatingLiteral(Sema &S, NumericLiteralParser &Literal, 3685 QualType Ty, SourceLocation Loc) { 3686 const llvm::fltSemantics &Format = S.Context.getFloatTypeSemantics(Ty); 3687 3688 using llvm::APFloat; 3689 APFloat Val(Format); 3690 3691 APFloat::opStatus result = Literal.GetFloatValue(Val); 3692 3693 // Overflow is always an error, but underflow is only an error if 3694 // we underflowed to zero (APFloat reports denormals as underflow). 3695 if ((result & APFloat::opOverflow) || 3696 ((result & APFloat::opUnderflow) && Val.isZero())) { 3697 unsigned diagnostic; 3698 SmallString<20> buffer; 3699 if (result & APFloat::opOverflow) { 3700 diagnostic = diag::warn_float_overflow; 3701 APFloat::getLargest(Format).toString(buffer); 3702 } else { 3703 diagnostic = diag::warn_float_underflow; 3704 APFloat::getSmallest(Format).toString(buffer); 3705 } 3706 3707 S.Diag(Loc, diagnostic) 3708 << Ty 3709 << StringRef(buffer.data(), buffer.size()); 3710 } 3711 3712 bool isExact = (result == APFloat::opOK); 3713 return FloatingLiteral::Create(S.Context, Val, isExact, Ty, Loc); 3714 } 3715 3716 bool Sema::CheckLoopHintExpr(Expr *E, SourceLocation Loc) { 3717 assert(E && "Invalid expression"); 3718 3719 if (E->isValueDependent()) 3720 return false; 3721 3722 QualType QT = E->getType(); 3723 if (!QT->isIntegerType() || QT->isBooleanType() || QT->isCharType()) { 3724 Diag(E->getExprLoc(), diag::err_pragma_loop_invalid_argument_type) << QT; 3725 return true; 3726 } 3727 3728 llvm::APSInt ValueAPS; 3729 ExprResult R = VerifyIntegerConstantExpression(E, &ValueAPS); 3730 3731 if (R.isInvalid()) 3732 return true; 3733 3734 bool ValueIsPositive = ValueAPS.isStrictlyPositive(); 3735 if (!ValueIsPositive || ValueAPS.getActiveBits() > 31) { 3736 Diag(E->getExprLoc(), diag::err_pragma_loop_invalid_argument_value) 3737 << toString(ValueAPS, 10) << ValueIsPositive; 3738 return true; 3739 } 3740 3741 return false; 3742 } 3743 3744 ExprResult Sema::ActOnNumericConstant(const Token &Tok, Scope *UDLScope) { 3745 // Fast path for a single digit (which is quite common). A single digit 3746 // cannot have a trigraph, escaped newline, radix prefix, or suffix. 3747 if (Tok.getLength() == 1) { 3748 const char Val = PP.getSpellingOfSingleCharacterNumericConstant(Tok); 3749 return ActOnIntegerConstant(Tok.getLocation(), Val-'0'); 3750 } 3751 3752 SmallString<128> SpellingBuffer; 3753 // NumericLiteralParser wants to overread by one character. Add padding to 3754 // the buffer in case the token is copied to the buffer. If getSpelling() 3755 // returns a StringRef to the memory buffer, it should have a null char at 3756 // the EOF, so it is also safe. 3757 SpellingBuffer.resize(Tok.getLength() + 1); 3758 3759 // Get the spelling of the token, which eliminates trigraphs, etc. 3760 bool Invalid = false; 3761 StringRef TokSpelling = PP.getSpelling(Tok, SpellingBuffer, &Invalid); 3762 if (Invalid) 3763 return ExprError(); 3764 3765 NumericLiteralParser Literal(TokSpelling, Tok.getLocation(), 3766 PP.getSourceManager(), PP.getLangOpts(), 3767 PP.getTargetInfo(), PP.getDiagnostics()); 3768 if (Literal.hadError) 3769 return ExprError(); 3770 3771 if (Literal.hasUDSuffix()) { 3772 // We're building a user-defined literal. 3773 IdentifierInfo *UDSuffix = &Context.Idents.get(Literal.getUDSuffix()); 3774 SourceLocation UDSuffixLoc = 3775 getUDSuffixLoc(*this, Tok.getLocation(), Literal.getUDSuffixOffset()); 3776 3777 // Make sure we're allowed user-defined literals here. 3778 if (!UDLScope) 3779 return ExprError(Diag(UDSuffixLoc, diag::err_invalid_numeric_udl)); 3780 3781 QualType CookedTy; 3782 if (Literal.isFloatingLiteral()) { 3783 // C++11 [lex.ext]p4: If S contains a literal operator with parameter type 3784 // long double, the literal is treated as a call of the form 3785 // operator "" X (f L) 3786 CookedTy = Context.LongDoubleTy; 3787 } else { 3788 // C++11 [lex.ext]p3: If S contains a literal operator with parameter type 3789 // unsigned long long, the literal is treated as a call of the form 3790 // operator "" X (n ULL) 3791 CookedTy = Context.UnsignedLongLongTy; 3792 } 3793 3794 DeclarationName OpName = 3795 Context.DeclarationNames.getCXXLiteralOperatorName(UDSuffix); 3796 DeclarationNameInfo OpNameInfo(OpName, UDSuffixLoc); 3797 OpNameInfo.setCXXLiteralOperatorNameLoc(UDSuffixLoc); 3798 3799 SourceLocation TokLoc = Tok.getLocation(); 3800 3801 // Perform literal operator lookup to determine if we're building a raw 3802 // literal or a cooked one. 3803 LookupResult R(*this, OpName, UDSuffixLoc, LookupOrdinaryName); 3804 switch (LookupLiteralOperator(UDLScope, R, CookedTy, 3805 /*AllowRaw*/ true, /*AllowTemplate*/ true, 3806 /*AllowStringTemplatePack*/ false, 3807 /*DiagnoseMissing*/ !Literal.isImaginary)) { 3808 case LOLR_ErrorNoDiagnostic: 3809 // Lookup failure for imaginary constants isn't fatal, there's still the 3810 // GNU extension producing _Complex types. 3811 break; 3812 case LOLR_Error: 3813 return ExprError(); 3814 case LOLR_Cooked: { 3815 Expr *Lit; 3816 if (Literal.isFloatingLiteral()) { 3817 Lit = BuildFloatingLiteral(*this, Literal, CookedTy, Tok.getLocation()); 3818 } else { 3819 llvm::APInt ResultVal(Context.getTargetInfo().getLongLongWidth(), 0); 3820 if (Literal.GetIntegerValue(ResultVal)) 3821 Diag(Tok.getLocation(), diag::err_integer_literal_too_large) 3822 << /* Unsigned */ 1; 3823 Lit = IntegerLiteral::Create(Context, ResultVal, CookedTy, 3824 Tok.getLocation()); 3825 } 3826 return BuildLiteralOperatorCall(R, OpNameInfo, Lit, TokLoc); 3827 } 3828 3829 case LOLR_Raw: { 3830 // C++11 [lit.ext]p3, p4: If S contains a raw literal operator, the 3831 // literal is treated as a call of the form 3832 // operator "" X ("n") 3833 unsigned Length = Literal.getUDSuffixOffset(); 3834 QualType StrTy = Context.getConstantArrayType( 3835 Context.adjustStringLiteralBaseType(Context.CharTy.withConst()), 3836 llvm::APInt(32, Length + 1), nullptr, ArrayType::Normal, 0); 3837 Expr *Lit = StringLiteral::Create( 3838 Context, StringRef(TokSpelling.data(), Length), StringLiteral::Ascii, 3839 /*Pascal*/false, StrTy, &TokLoc, 1); 3840 return BuildLiteralOperatorCall(R, OpNameInfo, Lit, TokLoc); 3841 } 3842 3843 case LOLR_Template: { 3844 // C++11 [lit.ext]p3, p4: Otherwise (S contains a literal operator 3845 // template), L is treated as a call fo the form 3846 // operator "" X <'c1', 'c2', ... 'ck'>() 3847 // where n is the source character sequence c1 c2 ... ck. 3848 TemplateArgumentListInfo ExplicitArgs; 3849 unsigned CharBits = Context.getIntWidth(Context.CharTy); 3850 bool CharIsUnsigned = Context.CharTy->isUnsignedIntegerType(); 3851 llvm::APSInt Value(CharBits, CharIsUnsigned); 3852 for (unsigned I = 0, N = Literal.getUDSuffixOffset(); I != N; ++I) { 3853 Value = TokSpelling[I]; 3854 TemplateArgument Arg(Context, Value, Context.CharTy); 3855 TemplateArgumentLocInfo ArgInfo; 3856 ExplicitArgs.addArgument(TemplateArgumentLoc(Arg, ArgInfo)); 3857 } 3858 return BuildLiteralOperatorCall(R, OpNameInfo, None, TokLoc, 3859 &ExplicitArgs); 3860 } 3861 case LOLR_StringTemplatePack: 3862 llvm_unreachable("unexpected literal operator lookup result"); 3863 } 3864 } 3865 3866 Expr *Res; 3867 3868 if (Literal.isFixedPointLiteral()) { 3869 QualType Ty; 3870 3871 if (Literal.isAccum) { 3872 if (Literal.isHalf) { 3873 Ty = Context.ShortAccumTy; 3874 } else if (Literal.isLong) { 3875 Ty = Context.LongAccumTy; 3876 } else { 3877 Ty = Context.AccumTy; 3878 } 3879 } else if (Literal.isFract) { 3880 if (Literal.isHalf) { 3881 Ty = Context.ShortFractTy; 3882 } else if (Literal.isLong) { 3883 Ty = Context.LongFractTy; 3884 } else { 3885 Ty = Context.FractTy; 3886 } 3887 } 3888 3889 if (Literal.isUnsigned) Ty = Context.getCorrespondingUnsignedType(Ty); 3890 3891 bool isSigned = !Literal.isUnsigned; 3892 unsigned scale = Context.getFixedPointScale(Ty); 3893 unsigned bit_width = Context.getTypeInfo(Ty).Width; 3894 3895 llvm::APInt Val(bit_width, 0, isSigned); 3896 bool Overflowed = Literal.GetFixedPointValue(Val, scale); 3897 bool ValIsZero = Val.isZero() && !Overflowed; 3898 3899 auto MaxVal = Context.getFixedPointMax(Ty).getValue(); 3900 if (Literal.isFract && Val == MaxVal + 1 && !ValIsZero) 3901 // Clause 6.4.4 - The value of a constant shall be in the range of 3902 // representable values for its type, with exception for constants of a 3903 // fract type with a value of exactly 1; such a constant shall denote 3904 // the maximal value for the type. 3905 --Val; 3906 else if (Val.ugt(MaxVal) || Overflowed) 3907 Diag(Tok.getLocation(), diag::err_too_large_for_fixed_point); 3908 3909 Res = FixedPointLiteral::CreateFromRawInt(Context, Val, Ty, 3910 Tok.getLocation(), scale); 3911 } else if (Literal.isFloatingLiteral()) { 3912 QualType Ty; 3913 if (Literal.isHalf){ 3914 if (getOpenCLOptions().isAvailableOption("cl_khr_fp16", getLangOpts())) 3915 Ty = Context.HalfTy; 3916 else { 3917 Diag(Tok.getLocation(), diag::err_half_const_requires_fp16); 3918 return ExprError(); 3919 } 3920 } else if (Literal.isFloat) 3921 Ty = Context.FloatTy; 3922 else if (Literal.isLong) 3923 Ty = Context.LongDoubleTy; 3924 else if (Literal.isFloat16) 3925 Ty = Context.Float16Ty; 3926 else if (Literal.isFloat128) 3927 Ty = Context.Float128Ty; 3928 else 3929 Ty = Context.DoubleTy; 3930 3931 Res = BuildFloatingLiteral(*this, Literal, Ty, Tok.getLocation()); 3932 3933 if (Ty == Context.DoubleTy) { 3934 if (getLangOpts().SinglePrecisionConstants) { 3935 if (Ty->castAs<BuiltinType>()->getKind() != BuiltinType::Float) { 3936 Res = ImpCastExprToType(Res, Context.FloatTy, CK_FloatingCast).get(); 3937 } 3938 } else if (getLangOpts().OpenCL && !getOpenCLOptions().isAvailableOption( 3939 "cl_khr_fp64", getLangOpts())) { 3940 // Impose single-precision float type when cl_khr_fp64 is not enabled. 3941 Diag(Tok.getLocation(), diag::warn_double_const_requires_fp64) 3942 << (getLangOpts().getOpenCLCompatibleVersion() >= 300); 3943 Res = ImpCastExprToType(Res, Context.FloatTy, CK_FloatingCast).get(); 3944 } 3945 } 3946 } else if (!Literal.isIntegerLiteral()) { 3947 return ExprError(); 3948 } else { 3949 QualType Ty; 3950 3951 // 'long long' is a C99 or C++11 feature. 3952 if (!getLangOpts().C99 && Literal.isLongLong) { 3953 if (getLangOpts().CPlusPlus) 3954 Diag(Tok.getLocation(), 3955 getLangOpts().CPlusPlus11 ? 3956 diag::warn_cxx98_compat_longlong : diag::ext_cxx11_longlong); 3957 else 3958 Diag(Tok.getLocation(), diag::ext_c99_longlong); 3959 } 3960 3961 // 'z/uz' literals are a C++2b feature. 3962 if (Literal.isSizeT) 3963 Diag(Tok.getLocation(), getLangOpts().CPlusPlus 3964 ? getLangOpts().CPlusPlus2b 3965 ? diag::warn_cxx20_compat_size_t_suffix 3966 : diag::ext_cxx2b_size_t_suffix 3967 : diag::err_cxx2b_size_t_suffix); 3968 3969 // 'wb/uwb' literals are a C2x feature. We support _BitInt as a type in C++, 3970 // but we do not currently support the suffix in C++ mode because it's not 3971 // entirely clear whether WG21 will prefer this suffix to return a library 3972 // type such as std::bit_int instead of returning a _BitInt. 3973 if (Literal.isBitInt && !getLangOpts().CPlusPlus) 3974 PP.Diag(Tok.getLocation(), getLangOpts().C2x 3975 ? diag::warn_c2x_compat_bitint_suffix 3976 : diag::ext_c2x_bitint_suffix); 3977 3978 // Get the value in the widest-possible width. What is "widest" depends on 3979 // whether the literal is a bit-precise integer or not. For a bit-precise 3980 // integer type, try to scan the source to determine how many bits are 3981 // needed to represent the value. This may seem a bit expensive, but trying 3982 // to get the integer value from an overly-wide APInt is *extremely* 3983 // expensive, so the naive approach of assuming 3984 // llvm::IntegerType::MAX_INT_BITS is a big performance hit. 3985 unsigned BitsNeeded = 3986 Literal.isBitInt ? llvm::APInt::getSufficientBitsNeeded( 3987 Literal.getLiteralDigits(), Literal.getRadix()) 3988 : Context.getTargetInfo().getIntMaxTWidth(); 3989 llvm::APInt ResultVal(BitsNeeded, 0); 3990 3991 if (Literal.GetIntegerValue(ResultVal)) { 3992 // If this value didn't fit into uintmax_t, error and force to ull. 3993 Diag(Tok.getLocation(), diag::err_integer_literal_too_large) 3994 << /* Unsigned */ 1; 3995 Ty = Context.UnsignedLongLongTy; 3996 assert(Context.getTypeSize(Ty) == ResultVal.getBitWidth() && 3997 "long long is not intmax_t?"); 3998 } else { 3999 // If this value fits into a ULL, try to figure out what else it fits into 4000 // according to the rules of C99 6.4.4.1p5. 4001 4002 // Octal, Hexadecimal, and integers with a U suffix are allowed to 4003 // be an unsigned int. 4004 bool AllowUnsigned = Literal.isUnsigned || Literal.getRadix() != 10; 4005 4006 // Check from smallest to largest, picking the smallest type we can. 4007 unsigned Width = 0; 4008 4009 // Microsoft specific integer suffixes are explicitly sized. 4010 if (Literal.MicrosoftInteger) { 4011 if (Literal.MicrosoftInteger == 8 && !Literal.isUnsigned) { 4012 Width = 8; 4013 Ty = Context.CharTy; 4014 } else { 4015 Width = Literal.MicrosoftInteger; 4016 Ty = Context.getIntTypeForBitwidth(Width, 4017 /*Signed=*/!Literal.isUnsigned); 4018 } 4019 } 4020 4021 // Bit-precise integer literals are automagically-sized based on the 4022 // width required by the literal. 4023 if (Literal.isBitInt) { 4024 // The signed version has one more bit for the sign value. There are no 4025 // zero-width bit-precise integers, even if the literal value is 0. 4026 Width = std::max(ResultVal.getActiveBits(), 1u) + 4027 (Literal.isUnsigned ? 0u : 1u); 4028 4029 // Diagnose if the width of the constant is larger than BITINT_MAXWIDTH, 4030 // and reset the type to the largest supported width. 4031 unsigned int MaxBitIntWidth = 4032 Context.getTargetInfo().getMaxBitIntWidth(); 4033 if (Width > MaxBitIntWidth) { 4034 Diag(Tok.getLocation(), diag::err_integer_literal_too_large) 4035 << Literal.isUnsigned; 4036 Width = MaxBitIntWidth; 4037 } 4038 4039 // Reset the result value to the smaller APInt and select the correct 4040 // type to be used. Note, we zext even for signed values because the 4041 // literal itself is always an unsigned value (a preceeding - is a 4042 // unary operator, not part of the literal). 4043 ResultVal = ResultVal.zextOrTrunc(Width); 4044 Ty = Context.getBitIntType(Literal.isUnsigned, Width); 4045 } 4046 4047 // Check C++2b size_t literals. 4048 if (Literal.isSizeT) { 4049 assert(!Literal.MicrosoftInteger && 4050 "size_t literals can't be Microsoft literals"); 4051 unsigned SizeTSize = Context.getTargetInfo().getTypeWidth( 4052 Context.getTargetInfo().getSizeType()); 4053 4054 // Does it fit in size_t? 4055 if (ResultVal.isIntN(SizeTSize)) { 4056 // Does it fit in ssize_t? 4057 if (!Literal.isUnsigned && ResultVal[SizeTSize - 1] == 0) 4058 Ty = Context.getSignedSizeType(); 4059 else if (AllowUnsigned) 4060 Ty = Context.getSizeType(); 4061 Width = SizeTSize; 4062 } 4063 } 4064 4065 if (Ty.isNull() && !Literal.isLong && !Literal.isLongLong && 4066 !Literal.isSizeT) { 4067 // Are int/unsigned possibilities? 4068 unsigned IntSize = Context.getTargetInfo().getIntWidth(); 4069 4070 // Does it fit in a unsigned int? 4071 if (ResultVal.isIntN(IntSize)) { 4072 // Does it fit in a signed int? 4073 if (!Literal.isUnsigned && ResultVal[IntSize-1] == 0) 4074 Ty = Context.IntTy; 4075 else if (AllowUnsigned) 4076 Ty = Context.UnsignedIntTy; 4077 Width = IntSize; 4078 } 4079 } 4080 4081 // Are long/unsigned long possibilities? 4082 if (Ty.isNull() && !Literal.isLongLong && !Literal.isSizeT) { 4083 unsigned LongSize = Context.getTargetInfo().getLongWidth(); 4084 4085 // Does it fit in a unsigned long? 4086 if (ResultVal.isIntN(LongSize)) { 4087 // Does it fit in a signed long? 4088 if (!Literal.isUnsigned && ResultVal[LongSize-1] == 0) 4089 Ty = Context.LongTy; 4090 else if (AllowUnsigned) 4091 Ty = Context.UnsignedLongTy; 4092 // Check according to the rules of C90 6.1.3.2p5. C++03 [lex.icon]p2 4093 // is compatible. 4094 else if (!getLangOpts().C99 && !getLangOpts().CPlusPlus11) { 4095 const unsigned LongLongSize = 4096 Context.getTargetInfo().getLongLongWidth(); 4097 Diag(Tok.getLocation(), 4098 getLangOpts().CPlusPlus 4099 ? Literal.isLong 4100 ? diag::warn_old_implicitly_unsigned_long_cxx 4101 : /*C++98 UB*/ diag:: 4102 ext_old_implicitly_unsigned_long_cxx 4103 : diag::warn_old_implicitly_unsigned_long) 4104 << (LongLongSize > LongSize ? /*will have type 'long long'*/ 0 4105 : /*will be ill-formed*/ 1); 4106 Ty = Context.UnsignedLongTy; 4107 } 4108 Width = LongSize; 4109 } 4110 } 4111 4112 // Check long long if needed. 4113 if (Ty.isNull() && !Literal.isSizeT) { 4114 unsigned LongLongSize = Context.getTargetInfo().getLongLongWidth(); 4115 4116 // Does it fit in a unsigned long long? 4117 if (ResultVal.isIntN(LongLongSize)) { 4118 // Does it fit in a signed long long? 4119 // To be compatible with MSVC, hex integer literals ending with the 4120 // LL or i64 suffix are always signed in Microsoft mode. 4121 if (!Literal.isUnsigned && (ResultVal[LongLongSize-1] == 0 || 4122 (getLangOpts().MSVCCompat && Literal.isLongLong))) 4123 Ty = Context.LongLongTy; 4124 else if (AllowUnsigned) 4125 Ty = Context.UnsignedLongLongTy; 4126 Width = LongLongSize; 4127 } 4128 } 4129 4130 // If we still couldn't decide a type, we either have 'size_t' literal 4131 // that is out of range, or a decimal literal that does not fit in a 4132 // signed long long and has no U suffix. 4133 if (Ty.isNull()) { 4134 if (Literal.isSizeT) 4135 Diag(Tok.getLocation(), diag::err_size_t_literal_too_large) 4136 << Literal.isUnsigned; 4137 else 4138 Diag(Tok.getLocation(), 4139 diag::ext_integer_literal_too_large_for_signed); 4140 Ty = Context.UnsignedLongLongTy; 4141 Width = Context.getTargetInfo().getLongLongWidth(); 4142 } 4143 4144 if (ResultVal.getBitWidth() != Width) 4145 ResultVal = ResultVal.trunc(Width); 4146 } 4147 Res = IntegerLiteral::Create(Context, ResultVal, Ty, Tok.getLocation()); 4148 } 4149 4150 // If this is an imaginary literal, create the ImaginaryLiteral wrapper. 4151 if (Literal.isImaginary) { 4152 Res = new (Context) ImaginaryLiteral(Res, 4153 Context.getComplexType(Res->getType())); 4154 4155 Diag(Tok.getLocation(), diag::ext_imaginary_constant); 4156 } 4157 return Res; 4158 } 4159 4160 ExprResult Sema::ActOnParenExpr(SourceLocation L, SourceLocation R, Expr *E) { 4161 assert(E && "ActOnParenExpr() missing expr"); 4162 QualType ExprTy = E->getType(); 4163 if (getLangOpts().ProtectParens && CurFPFeatures.getAllowFPReassociate() && 4164 !E->isLValue() && ExprTy->hasFloatingRepresentation()) 4165 return BuildBuiltinCallExpr(R, Builtin::BI__arithmetic_fence, E); 4166 return new (Context) ParenExpr(L, R, E); 4167 } 4168 4169 static bool CheckVecStepTraitOperandType(Sema &S, QualType T, 4170 SourceLocation Loc, 4171 SourceRange ArgRange) { 4172 // [OpenCL 1.1 6.11.12] "The vec_step built-in function takes a built-in 4173 // scalar or vector data type argument..." 4174 // Every built-in scalar type (OpenCL 1.1 6.1.1) is either an arithmetic 4175 // type (C99 6.2.5p18) or void. 4176 if (!(T->isArithmeticType() || T->isVoidType() || T->isVectorType())) { 4177 S.Diag(Loc, diag::err_vecstep_non_scalar_vector_type) 4178 << T << ArgRange; 4179 return true; 4180 } 4181 4182 assert((T->isVoidType() || !T->isIncompleteType()) && 4183 "Scalar types should always be complete"); 4184 return false; 4185 } 4186 4187 static bool CheckExtensionTraitOperandType(Sema &S, QualType T, 4188 SourceLocation Loc, 4189 SourceRange ArgRange, 4190 UnaryExprOrTypeTrait TraitKind) { 4191 // Invalid types must be hard errors for SFINAE in C++. 4192 if (S.LangOpts.CPlusPlus) 4193 return true; 4194 4195 // C99 6.5.3.4p1: 4196 if (T->isFunctionType() && 4197 (TraitKind == UETT_SizeOf || TraitKind == UETT_AlignOf || 4198 TraitKind == UETT_PreferredAlignOf)) { 4199 // sizeof(function)/alignof(function) is allowed as an extension. 4200 S.Diag(Loc, diag::ext_sizeof_alignof_function_type) 4201 << getTraitSpelling(TraitKind) << ArgRange; 4202 return false; 4203 } 4204 4205 // Allow sizeof(void)/alignof(void) as an extension, unless in OpenCL where 4206 // this is an error (OpenCL v1.1 s6.3.k) 4207 if (T->isVoidType()) { 4208 unsigned DiagID = S.LangOpts.OpenCL ? diag::err_opencl_sizeof_alignof_type 4209 : diag::ext_sizeof_alignof_void_type; 4210 S.Diag(Loc, DiagID) << getTraitSpelling(TraitKind) << ArgRange; 4211 return false; 4212 } 4213 4214 return true; 4215 } 4216 4217 static bool CheckObjCTraitOperandConstraints(Sema &S, QualType T, 4218 SourceLocation Loc, 4219 SourceRange ArgRange, 4220 UnaryExprOrTypeTrait TraitKind) { 4221 // Reject sizeof(interface) and sizeof(interface<proto>) if the 4222 // runtime doesn't allow it. 4223 if (!S.LangOpts.ObjCRuntime.allowsSizeofAlignof() && T->isObjCObjectType()) { 4224 S.Diag(Loc, diag::err_sizeof_nonfragile_interface) 4225 << T << (TraitKind == UETT_SizeOf) 4226 << ArgRange; 4227 return true; 4228 } 4229 4230 return false; 4231 } 4232 4233 /// Check whether E is a pointer from a decayed array type (the decayed 4234 /// pointer type is equal to T) and emit a warning if it is. 4235 static void warnOnSizeofOnArrayDecay(Sema &S, SourceLocation Loc, QualType T, 4236 Expr *E) { 4237 // Don't warn if the operation changed the type. 4238 if (T != E->getType()) 4239 return; 4240 4241 // Now look for array decays. 4242 ImplicitCastExpr *ICE = dyn_cast<ImplicitCastExpr>(E); 4243 if (!ICE || ICE->getCastKind() != CK_ArrayToPointerDecay) 4244 return; 4245 4246 S.Diag(Loc, diag::warn_sizeof_array_decay) << ICE->getSourceRange() 4247 << ICE->getType() 4248 << ICE->getSubExpr()->getType(); 4249 } 4250 4251 /// Check the constraints on expression operands to unary type expression 4252 /// and type traits. 4253 /// 4254 /// Completes any types necessary and validates the constraints on the operand 4255 /// expression. The logic mostly mirrors the type-based overload, but may modify 4256 /// the expression as it completes the type for that expression through template 4257 /// instantiation, etc. 4258 bool Sema::CheckUnaryExprOrTypeTraitOperand(Expr *E, 4259 UnaryExprOrTypeTrait ExprKind) { 4260 QualType ExprTy = E->getType(); 4261 assert(!ExprTy->isReferenceType()); 4262 4263 bool IsUnevaluatedOperand = 4264 (ExprKind == UETT_SizeOf || ExprKind == UETT_AlignOf || 4265 ExprKind == UETT_PreferredAlignOf || ExprKind == UETT_VecStep); 4266 if (IsUnevaluatedOperand) { 4267 ExprResult Result = CheckUnevaluatedOperand(E); 4268 if (Result.isInvalid()) 4269 return true; 4270 E = Result.get(); 4271 } 4272 4273 // The operand for sizeof and alignof is in an unevaluated expression context, 4274 // so side effects could result in unintended consequences. 4275 // Exclude instantiation-dependent expressions, because 'sizeof' is sometimes 4276 // used to build SFINAE gadgets. 4277 // FIXME: Should we consider instantiation-dependent operands to 'alignof'? 4278 if (IsUnevaluatedOperand && !inTemplateInstantiation() && 4279 !E->isInstantiationDependent() && 4280 !E->getType()->isVariableArrayType() && 4281 E->HasSideEffects(Context, false)) 4282 Diag(E->getExprLoc(), diag::warn_side_effects_unevaluated_context); 4283 4284 if (ExprKind == UETT_VecStep) 4285 return CheckVecStepTraitOperandType(*this, ExprTy, E->getExprLoc(), 4286 E->getSourceRange()); 4287 4288 // Explicitly list some types as extensions. 4289 if (!CheckExtensionTraitOperandType(*this, ExprTy, E->getExprLoc(), 4290 E->getSourceRange(), ExprKind)) 4291 return false; 4292 4293 // 'alignof' applied to an expression only requires the base element type of 4294 // the expression to be complete. 'sizeof' requires the expression's type to 4295 // be complete (and will attempt to complete it if it's an array of unknown 4296 // bound). 4297 if (ExprKind == UETT_AlignOf || ExprKind == UETT_PreferredAlignOf) { 4298 if (RequireCompleteSizedType( 4299 E->getExprLoc(), Context.getBaseElementType(E->getType()), 4300 diag::err_sizeof_alignof_incomplete_or_sizeless_type, 4301 getTraitSpelling(ExprKind), E->getSourceRange())) 4302 return true; 4303 } else { 4304 if (RequireCompleteSizedExprType( 4305 E, diag::err_sizeof_alignof_incomplete_or_sizeless_type, 4306 getTraitSpelling(ExprKind), E->getSourceRange())) 4307 return true; 4308 } 4309 4310 // Completing the expression's type may have changed it. 4311 ExprTy = E->getType(); 4312 assert(!ExprTy->isReferenceType()); 4313 4314 if (ExprTy->isFunctionType()) { 4315 Diag(E->getExprLoc(), diag::err_sizeof_alignof_function_type) 4316 << getTraitSpelling(ExprKind) << E->getSourceRange(); 4317 return true; 4318 } 4319 4320 if (CheckObjCTraitOperandConstraints(*this, ExprTy, E->getExprLoc(), 4321 E->getSourceRange(), ExprKind)) 4322 return true; 4323 4324 if (ExprKind == UETT_SizeOf) { 4325 if (DeclRefExpr *DeclRef = dyn_cast<DeclRefExpr>(E->IgnoreParens())) { 4326 if (ParmVarDecl *PVD = dyn_cast<ParmVarDecl>(DeclRef->getFoundDecl())) { 4327 QualType OType = PVD->getOriginalType(); 4328 QualType Type = PVD->getType(); 4329 if (Type->isPointerType() && OType->isArrayType()) { 4330 Diag(E->getExprLoc(), diag::warn_sizeof_array_param) 4331 << Type << OType; 4332 Diag(PVD->getLocation(), diag::note_declared_at); 4333 } 4334 } 4335 } 4336 4337 // Warn on "sizeof(array op x)" and "sizeof(x op array)", where the array 4338 // decays into a pointer and returns an unintended result. This is most 4339 // likely a typo for "sizeof(array) op x". 4340 if (BinaryOperator *BO = dyn_cast<BinaryOperator>(E->IgnoreParens())) { 4341 warnOnSizeofOnArrayDecay(*this, BO->getOperatorLoc(), BO->getType(), 4342 BO->getLHS()); 4343 warnOnSizeofOnArrayDecay(*this, BO->getOperatorLoc(), BO->getType(), 4344 BO->getRHS()); 4345 } 4346 } 4347 4348 return false; 4349 } 4350 4351 /// Check the constraints on operands to unary expression and type 4352 /// traits. 4353 /// 4354 /// This will complete any types necessary, and validate the various constraints 4355 /// on those operands. 4356 /// 4357 /// The UsualUnaryConversions() function is *not* called by this routine. 4358 /// C99 6.3.2.1p[2-4] all state: 4359 /// Except when it is the operand of the sizeof operator ... 4360 /// 4361 /// C++ [expr.sizeof]p4 4362 /// The lvalue-to-rvalue, array-to-pointer, and function-to-pointer 4363 /// standard conversions are not applied to the operand of sizeof. 4364 /// 4365 /// This policy is followed for all of the unary trait expressions. 4366 bool Sema::CheckUnaryExprOrTypeTraitOperand(QualType ExprType, 4367 SourceLocation OpLoc, 4368 SourceRange ExprRange, 4369 UnaryExprOrTypeTrait ExprKind) { 4370 if (ExprType->isDependentType()) 4371 return false; 4372 4373 // C++ [expr.sizeof]p2: 4374 // When applied to a reference or a reference type, the result 4375 // is the size of the referenced type. 4376 // C++11 [expr.alignof]p3: 4377 // When alignof is applied to a reference type, the result 4378 // shall be the alignment of the referenced type. 4379 if (const ReferenceType *Ref = ExprType->getAs<ReferenceType>()) 4380 ExprType = Ref->getPointeeType(); 4381 4382 // C11 6.5.3.4/3, C++11 [expr.alignof]p3: 4383 // When alignof or _Alignof is applied to an array type, the result 4384 // is the alignment of the element type. 4385 if (ExprKind == UETT_AlignOf || ExprKind == UETT_PreferredAlignOf || 4386 ExprKind == UETT_OpenMPRequiredSimdAlign) 4387 ExprType = Context.getBaseElementType(ExprType); 4388 4389 if (ExprKind == UETT_VecStep) 4390 return CheckVecStepTraitOperandType(*this, ExprType, OpLoc, ExprRange); 4391 4392 // Explicitly list some types as extensions. 4393 if (!CheckExtensionTraitOperandType(*this, ExprType, OpLoc, ExprRange, 4394 ExprKind)) 4395 return false; 4396 4397 if (RequireCompleteSizedType( 4398 OpLoc, ExprType, diag::err_sizeof_alignof_incomplete_or_sizeless_type, 4399 getTraitSpelling(ExprKind), ExprRange)) 4400 return true; 4401 4402 if (ExprType->isFunctionType()) { 4403 Diag(OpLoc, diag::err_sizeof_alignof_function_type) 4404 << getTraitSpelling(ExprKind) << ExprRange; 4405 return true; 4406 } 4407 4408 if (CheckObjCTraitOperandConstraints(*this, ExprType, OpLoc, ExprRange, 4409 ExprKind)) 4410 return true; 4411 4412 return false; 4413 } 4414 4415 static bool CheckAlignOfExpr(Sema &S, Expr *E, UnaryExprOrTypeTrait ExprKind) { 4416 // Cannot know anything else if the expression is dependent. 4417 if (E->isTypeDependent()) 4418 return false; 4419 4420 if (E->getObjectKind() == OK_BitField) { 4421 S.Diag(E->getExprLoc(), diag::err_sizeof_alignof_typeof_bitfield) 4422 << 1 << E->getSourceRange(); 4423 return true; 4424 } 4425 4426 ValueDecl *D = nullptr; 4427 Expr *Inner = E->IgnoreParens(); 4428 if (DeclRefExpr *DRE = dyn_cast<DeclRefExpr>(Inner)) { 4429 D = DRE->getDecl(); 4430 } else if (MemberExpr *ME = dyn_cast<MemberExpr>(Inner)) { 4431 D = ME->getMemberDecl(); 4432 } 4433 4434 // If it's a field, require the containing struct to have a 4435 // complete definition so that we can compute the layout. 4436 // 4437 // This can happen in C++11 onwards, either by naming the member 4438 // in a way that is not transformed into a member access expression 4439 // (in an unevaluated operand, for instance), or by naming the member 4440 // in a trailing-return-type. 4441 // 4442 // For the record, since __alignof__ on expressions is a GCC 4443 // extension, GCC seems to permit this but always gives the 4444 // nonsensical answer 0. 4445 // 4446 // We don't really need the layout here --- we could instead just 4447 // directly check for all the appropriate alignment-lowing 4448 // attributes --- but that would require duplicating a lot of 4449 // logic that just isn't worth duplicating for such a marginal 4450 // use-case. 4451 if (FieldDecl *FD = dyn_cast_or_null<FieldDecl>(D)) { 4452 // Fast path this check, since we at least know the record has a 4453 // definition if we can find a member of it. 4454 if (!FD->getParent()->isCompleteDefinition()) { 4455 S.Diag(E->getExprLoc(), diag::err_alignof_member_of_incomplete_type) 4456 << E->getSourceRange(); 4457 return true; 4458 } 4459 4460 // Otherwise, if it's a field, and the field doesn't have 4461 // reference type, then it must have a complete type (or be a 4462 // flexible array member, which we explicitly want to 4463 // white-list anyway), which makes the following checks trivial. 4464 if (!FD->getType()->isReferenceType()) 4465 return false; 4466 } 4467 4468 return S.CheckUnaryExprOrTypeTraitOperand(E, ExprKind); 4469 } 4470 4471 bool Sema::CheckVecStepExpr(Expr *E) { 4472 E = E->IgnoreParens(); 4473 4474 // Cannot know anything else if the expression is dependent. 4475 if (E->isTypeDependent()) 4476 return false; 4477 4478 return CheckUnaryExprOrTypeTraitOperand(E, UETT_VecStep); 4479 } 4480 4481 static void captureVariablyModifiedType(ASTContext &Context, QualType T, 4482 CapturingScopeInfo *CSI) { 4483 assert(T->isVariablyModifiedType()); 4484 assert(CSI != nullptr); 4485 4486 // We're going to walk down into the type and look for VLA expressions. 4487 do { 4488 const Type *Ty = T.getTypePtr(); 4489 switch (Ty->getTypeClass()) { 4490 #define TYPE(Class, Base) 4491 #define ABSTRACT_TYPE(Class, Base) 4492 #define NON_CANONICAL_TYPE(Class, Base) 4493 #define DEPENDENT_TYPE(Class, Base) case Type::Class: 4494 #define NON_CANONICAL_UNLESS_DEPENDENT_TYPE(Class, Base) 4495 #include "clang/AST/TypeNodes.inc" 4496 T = QualType(); 4497 break; 4498 // These types are never variably-modified. 4499 case Type::Builtin: 4500 case Type::Complex: 4501 case Type::Vector: 4502 case Type::ExtVector: 4503 case Type::ConstantMatrix: 4504 case Type::Record: 4505 case Type::Enum: 4506 case Type::Elaborated: 4507 case Type::TemplateSpecialization: 4508 case Type::ObjCObject: 4509 case Type::ObjCInterface: 4510 case Type::ObjCObjectPointer: 4511 case Type::ObjCTypeParam: 4512 case Type::Pipe: 4513 case Type::BitInt: 4514 llvm_unreachable("type class is never variably-modified!"); 4515 case Type::Adjusted: 4516 T = cast<AdjustedType>(Ty)->getOriginalType(); 4517 break; 4518 case Type::Decayed: 4519 T = cast<DecayedType>(Ty)->getPointeeType(); 4520 break; 4521 case Type::Pointer: 4522 T = cast<PointerType>(Ty)->getPointeeType(); 4523 break; 4524 case Type::BlockPointer: 4525 T = cast<BlockPointerType>(Ty)->getPointeeType(); 4526 break; 4527 case Type::LValueReference: 4528 case Type::RValueReference: 4529 T = cast<ReferenceType>(Ty)->getPointeeType(); 4530 break; 4531 case Type::MemberPointer: 4532 T = cast<MemberPointerType>(Ty)->getPointeeType(); 4533 break; 4534 case Type::ConstantArray: 4535 case Type::IncompleteArray: 4536 // Losing element qualification here is fine. 4537 T = cast<ArrayType>(Ty)->getElementType(); 4538 break; 4539 case Type::VariableArray: { 4540 // Losing element qualification here is fine. 4541 const VariableArrayType *VAT = cast<VariableArrayType>(Ty); 4542 4543 // Unknown size indication requires no size computation. 4544 // Otherwise, evaluate and record it. 4545 auto Size = VAT->getSizeExpr(); 4546 if (Size && !CSI->isVLATypeCaptured(VAT) && 4547 (isa<CapturedRegionScopeInfo>(CSI) || isa<LambdaScopeInfo>(CSI))) 4548 CSI->addVLATypeCapture(Size->getExprLoc(), VAT, Context.getSizeType()); 4549 4550 T = VAT->getElementType(); 4551 break; 4552 } 4553 case Type::FunctionProto: 4554 case Type::FunctionNoProto: 4555 T = cast<FunctionType>(Ty)->getReturnType(); 4556 break; 4557 case Type::Paren: 4558 case Type::TypeOf: 4559 case Type::UnaryTransform: 4560 case Type::Attributed: 4561 case Type::BTFTagAttributed: 4562 case Type::SubstTemplateTypeParm: 4563 case Type::MacroQualified: 4564 // Keep walking after single level desugaring. 4565 T = T.getSingleStepDesugaredType(Context); 4566 break; 4567 case Type::Typedef: 4568 T = cast<TypedefType>(Ty)->desugar(); 4569 break; 4570 case Type::Decltype: 4571 T = cast<DecltypeType>(Ty)->desugar(); 4572 break; 4573 case Type::Using: 4574 T = cast<UsingType>(Ty)->desugar(); 4575 break; 4576 case Type::Auto: 4577 case Type::DeducedTemplateSpecialization: 4578 T = cast<DeducedType>(Ty)->getDeducedType(); 4579 break; 4580 case Type::TypeOfExpr: 4581 T = cast<TypeOfExprType>(Ty)->getUnderlyingExpr()->getType(); 4582 break; 4583 case Type::Atomic: 4584 T = cast<AtomicType>(Ty)->getValueType(); 4585 break; 4586 } 4587 } while (!T.isNull() && T->isVariablyModifiedType()); 4588 } 4589 4590 /// Build a sizeof or alignof expression given a type operand. 4591 ExprResult 4592 Sema::CreateUnaryExprOrTypeTraitExpr(TypeSourceInfo *TInfo, 4593 SourceLocation OpLoc, 4594 UnaryExprOrTypeTrait ExprKind, 4595 SourceRange R) { 4596 if (!TInfo) 4597 return ExprError(); 4598 4599 QualType T = TInfo->getType(); 4600 4601 if (!T->isDependentType() && 4602 CheckUnaryExprOrTypeTraitOperand(T, OpLoc, R, ExprKind)) 4603 return ExprError(); 4604 4605 if (T->isVariablyModifiedType() && FunctionScopes.size() > 1) { 4606 if (auto *TT = T->getAs<TypedefType>()) { 4607 for (auto I = FunctionScopes.rbegin(), 4608 E = std::prev(FunctionScopes.rend()); 4609 I != E; ++I) { 4610 auto *CSI = dyn_cast<CapturingScopeInfo>(*I); 4611 if (CSI == nullptr) 4612 break; 4613 DeclContext *DC = nullptr; 4614 if (auto *LSI = dyn_cast<LambdaScopeInfo>(CSI)) 4615 DC = LSI->CallOperator; 4616 else if (auto *CRSI = dyn_cast<CapturedRegionScopeInfo>(CSI)) 4617 DC = CRSI->TheCapturedDecl; 4618 else if (auto *BSI = dyn_cast<BlockScopeInfo>(CSI)) 4619 DC = BSI->TheDecl; 4620 if (DC) { 4621 if (DC->containsDecl(TT->getDecl())) 4622 break; 4623 captureVariablyModifiedType(Context, T, CSI); 4624 } 4625 } 4626 } 4627 } 4628 4629 // C99 6.5.3.4p4: the type (an unsigned integer type) is size_t. 4630 if (isUnevaluatedContext() && ExprKind == UETT_SizeOf && 4631 TInfo->getType()->isVariablyModifiedType()) 4632 TInfo = TransformToPotentiallyEvaluated(TInfo); 4633 4634 return new (Context) UnaryExprOrTypeTraitExpr( 4635 ExprKind, TInfo, Context.getSizeType(), OpLoc, R.getEnd()); 4636 } 4637 4638 /// Build a sizeof or alignof expression given an expression 4639 /// operand. 4640 ExprResult 4641 Sema::CreateUnaryExprOrTypeTraitExpr(Expr *E, SourceLocation OpLoc, 4642 UnaryExprOrTypeTrait ExprKind) { 4643 ExprResult PE = CheckPlaceholderExpr(E); 4644 if (PE.isInvalid()) 4645 return ExprError(); 4646 4647 E = PE.get(); 4648 4649 // Verify that the operand is valid. 4650 bool isInvalid = false; 4651 if (E->isTypeDependent()) { 4652 // Delay type-checking for type-dependent expressions. 4653 } else if (ExprKind == UETT_AlignOf || ExprKind == UETT_PreferredAlignOf) { 4654 isInvalid = CheckAlignOfExpr(*this, E, ExprKind); 4655 } else if (ExprKind == UETT_VecStep) { 4656 isInvalid = CheckVecStepExpr(E); 4657 } else if (ExprKind == UETT_OpenMPRequiredSimdAlign) { 4658 Diag(E->getExprLoc(), diag::err_openmp_default_simd_align_expr); 4659 isInvalid = true; 4660 } else if (E->refersToBitField()) { // C99 6.5.3.4p1. 4661 Diag(E->getExprLoc(), diag::err_sizeof_alignof_typeof_bitfield) << 0; 4662 isInvalid = true; 4663 } else { 4664 isInvalid = CheckUnaryExprOrTypeTraitOperand(E, UETT_SizeOf); 4665 } 4666 4667 if (isInvalid) 4668 return ExprError(); 4669 4670 if (ExprKind == UETT_SizeOf && E->getType()->isVariableArrayType()) { 4671 PE = TransformToPotentiallyEvaluated(E); 4672 if (PE.isInvalid()) return ExprError(); 4673 E = PE.get(); 4674 } 4675 4676 // C99 6.5.3.4p4: the type (an unsigned integer type) is size_t. 4677 return new (Context) UnaryExprOrTypeTraitExpr( 4678 ExprKind, E, Context.getSizeType(), OpLoc, E->getSourceRange().getEnd()); 4679 } 4680 4681 /// ActOnUnaryExprOrTypeTraitExpr - Handle @c sizeof(type) and @c sizeof @c 4682 /// expr and the same for @c alignof and @c __alignof 4683 /// Note that the ArgRange is invalid if isType is false. 4684 ExprResult 4685 Sema::ActOnUnaryExprOrTypeTraitExpr(SourceLocation OpLoc, 4686 UnaryExprOrTypeTrait ExprKind, bool IsType, 4687 void *TyOrEx, SourceRange ArgRange) { 4688 // If error parsing type, ignore. 4689 if (!TyOrEx) return ExprError(); 4690 4691 if (IsType) { 4692 TypeSourceInfo *TInfo; 4693 (void) GetTypeFromParser(ParsedType::getFromOpaquePtr(TyOrEx), &TInfo); 4694 return CreateUnaryExprOrTypeTraitExpr(TInfo, OpLoc, ExprKind, ArgRange); 4695 } 4696 4697 Expr *ArgEx = (Expr *)TyOrEx; 4698 ExprResult Result = CreateUnaryExprOrTypeTraitExpr(ArgEx, OpLoc, ExprKind); 4699 return Result; 4700 } 4701 4702 static QualType CheckRealImagOperand(Sema &S, ExprResult &V, SourceLocation Loc, 4703 bool IsReal) { 4704 if (V.get()->isTypeDependent()) 4705 return S.Context.DependentTy; 4706 4707 // _Real and _Imag are only l-values for normal l-values. 4708 if (V.get()->getObjectKind() != OK_Ordinary) { 4709 V = S.DefaultLvalueConversion(V.get()); 4710 if (V.isInvalid()) 4711 return QualType(); 4712 } 4713 4714 // These operators return the element type of a complex type. 4715 if (const ComplexType *CT = V.get()->getType()->getAs<ComplexType>()) 4716 return CT->getElementType(); 4717 4718 // Otherwise they pass through real integer and floating point types here. 4719 if (V.get()->getType()->isArithmeticType()) 4720 return V.get()->getType(); 4721 4722 // Test for placeholders. 4723 ExprResult PR = S.CheckPlaceholderExpr(V.get()); 4724 if (PR.isInvalid()) return QualType(); 4725 if (PR.get() != V.get()) { 4726 V = PR; 4727 return CheckRealImagOperand(S, V, Loc, IsReal); 4728 } 4729 4730 // Reject anything else. 4731 S.Diag(Loc, diag::err_realimag_invalid_type) << V.get()->getType() 4732 << (IsReal ? "__real" : "__imag"); 4733 return QualType(); 4734 } 4735 4736 4737 4738 ExprResult 4739 Sema::ActOnPostfixUnaryOp(Scope *S, SourceLocation OpLoc, 4740 tok::TokenKind Kind, Expr *Input) { 4741 UnaryOperatorKind Opc; 4742 switch (Kind) { 4743 default: llvm_unreachable("Unknown unary op!"); 4744 case tok::plusplus: Opc = UO_PostInc; break; 4745 case tok::minusminus: Opc = UO_PostDec; break; 4746 } 4747 4748 // Since this might is a postfix expression, get rid of ParenListExprs. 4749 ExprResult Result = MaybeConvertParenListExprToParenExpr(S, Input); 4750 if (Result.isInvalid()) return ExprError(); 4751 Input = Result.get(); 4752 4753 return BuildUnaryOp(S, OpLoc, Opc, Input); 4754 } 4755 4756 /// Diagnose if arithmetic on the given ObjC pointer is illegal. 4757 /// 4758 /// \return true on error 4759 static bool checkArithmeticOnObjCPointer(Sema &S, 4760 SourceLocation opLoc, 4761 Expr *op) { 4762 assert(op->getType()->isObjCObjectPointerType()); 4763 if (S.LangOpts.ObjCRuntime.allowsPointerArithmetic() && 4764 !S.LangOpts.ObjCSubscriptingLegacyRuntime) 4765 return false; 4766 4767 S.Diag(opLoc, diag::err_arithmetic_nonfragile_interface) 4768 << op->getType()->castAs<ObjCObjectPointerType>()->getPointeeType() 4769 << op->getSourceRange(); 4770 return true; 4771 } 4772 4773 static bool isMSPropertySubscriptExpr(Sema &S, Expr *Base) { 4774 auto *BaseNoParens = Base->IgnoreParens(); 4775 if (auto *MSProp = dyn_cast<MSPropertyRefExpr>(BaseNoParens)) 4776 return MSProp->getPropertyDecl()->getType()->isArrayType(); 4777 return isa<MSPropertySubscriptExpr>(BaseNoParens); 4778 } 4779 4780 // Returns the type used for LHS[RHS], given one of LHS, RHS is type-dependent. 4781 // Typically this is DependentTy, but can sometimes be more precise. 4782 // 4783 // There are cases when we could determine a non-dependent type: 4784 // - LHS and RHS may have non-dependent types despite being type-dependent 4785 // (e.g. unbounded array static members of the current instantiation) 4786 // - one may be a dependent-sized array with known element type 4787 // - one may be a dependent-typed valid index (enum in current instantiation) 4788 // 4789 // We *always* return a dependent type, in such cases it is DependentTy. 4790 // This avoids creating type-dependent expressions with non-dependent types. 4791 // FIXME: is this important to avoid? See https://reviews.llvm.org/D107275 4792 static QualType getDependentArraySubscriptType(Expr *LHS, Expr *RHS, 4793 const ASTContext &Ctx) { 4794 assert(LHS->isTypeDependent() || RHS->isTypeDependent()); 4795 QualType LTy = LHS->getType(), RTy = RHS->getType(); 4796 QualType Result = Ctx.DependentTy; 4797 if (RTy->isIntegralOrUnscopedEnumerationType()) { 4798 if (const PointerType *PT = LTy->getAs<PointerType>()) 4799 Result = PT->getPointeeType(); 4800 else if (const ArrayType *AT = LTy->getAsArrayTypeUnsafe()) 4801 Result = AT->getElementType(); 4802 } else if (LTy->isIntegralOrUnscopedEnumerationType()) { 4803 if (const PointerType *PT = RTy->getAs<PointerType>()) 4804 Result = PT->getPointeeType(); 4805 else if (const ArrayType *AT = RTy->getAsArrayTypeUnsafe()) 4806 Result = AT->getElementType(); 4807 } 4808 // Ensure we return a dependent type. 4809 return Result->isDependentType() ? Result : Ctx.DependentTy; 4810 } 4811 4812 static bool checkArgsForPlaceholders(Sema &S, MultiExprArg args); 4813 4814 ExprResult Sema::ActOnArraySubscriptExpr(Scope *S, Expr *base, 4815 SourceLocation lbLoc, 4816 MultiExprArg ArgExprs, 4817 SourceLocation rbLoc) { 4818 4819 if (base && !base->getType().isNull() && 4820 base->hasPlaceholderType(BuiltinType::OMPArraySection)) 4821 return ActOnOMPArraySectionExpr(base, lbLoc, ArgExprs.front(), SourceLocation(), 4822 SourceLocation(), /*Length*/ nullptr, 4823 /*Stride=*/nullptr, rbLoc); 4824 4825 // Since this might be a postfix expression, get rid of ParenListExprs. 4826 if (isa<ParenListExpr>(base)) { 4827 ExprResult result = MaybeConvertParenListExprToParenExpr(S, base); 4828 if (result.isInvalid()) 4829 return ExprError(); 4830 base = result.get(); 4831 } 4832 4833 // Check if base and idx form a MatrixSubscriptExpr. 4834 // 4835 // Helper to check for comma expressions, which are not allowed as indices for 4836 // matrix subscript expressions. 4837 auto CheckAndReportCommaError = [this, base, rbLoc](Expr *E) { 4838 if (isa<BinaryOperator>(E) && cast<BinaryOperator>(E)->isCommaOp()) { 4839 Diag(E->getExprLoc(), diag::err_matrix_subscript_comma) 4840 << SourceRange(base->getBeginLoc(), rbLoc); 4841 return true; 4842 } 4843 return false; 4844 }; 4845 // The matrix subscript operator ([][])is considered a single operator. 4846 // Separating the index expressions by parenthesis is not allowed. 4847 if (base->hasPlaceholderType(BuiltinType::IncompleteMatrixIdx) && 4848 !isa<MatrixSubscriptExpr>(base)) { 4849 Diag(base->getExprLoc(), diag::err_matrix_separate_incomplete_index) 4850 << SourceRange(base->getBeginLoc(), rbLoc); 4851 return ExprError(); 4852 } 4853 // If the base is a MatrixSubscriptExpr, try to create a new 4854 // MatrixSubscriptExpr. 4855 auto *matSubscriptE = dyn_cast<MatrixSubscriptExpr>(base); 4856 if (matSubscriptE) { 4857 assert(ArgExprs.size() == 1); 4858 if (CheckAndReportCommaError(ArgExprs.front())) 4859 return ExprError(); 4860 4861 assert(matSubscriptE->isIncomplete() && 4862 "base has to be an incomplete matrix subscript"); 4863 return CreateBuiltinMatrixSubscriptExpr(matSubscriptE->getBase(), 4864 matSubscriptE->getRowIdx(), 4865 ArgExprs.front(), rbLoc); 4866 } 4867 4868 // Handle any non-overload placeholder types in the base and index 4869 // expressions. We can't handle overloads here because the other 4870 // operand might be an overloadable type, in which case the overload 4871 // resolution for the operator overload should get the first crack 4872 // at the overload. 4873 bool IsMSPropertySubscript = false; 4874 if (base->getType()->isNonOverloadPlaceholderType()) { 4875 IsMSPropertySubscript = isMSPropertySubscriptExpr(*this, base); 4876 if (!IsMSPropertySubscript) { 4877 ExprResult result = CheckPlaceholderExpr(base); 4878 if (result.isInvalid()) 4879 return ExprError(); 4880 base = result.get(); 4881 } 4882 } 4883 4884 // If the base is a matrix type, try to create a new MatrixSubscriptExpr. 4885 if (base->getType()->isMatrixType()) { 4886 assert(ArgExprs.size() == 1); 4887 if (CheckAndReportCommaError(ArgExprs.front())) 4888 return ExprError(); 4889 4890 return CreateBuiltinMatrixSubscriptExpr(base, ArgExprs.front(), nullptr, 4891 rbLoc); 4892 } 4893 4894 if (ArgExprs.size() == 1 && getLangOpts().CPlusPlus20) { 4895 Expr *idx = ArgExprs[0]; 4896 if ((isa<BinaryOperator>(idx) && cast<BinaryOperator>(idx)->isCommaOp()) || 4897 (isa<CXXOperatorCallExpr>(idx) && 4898 cast<CXXOperatorCallExpr>(idx)->getOperator() == OO_Comma)) { 4899 Diag(idx->getExprLoc(), diag::warn_deprecated_comma_subscript) 4900 << SourceRange(base->getBeginLoc(), rbLoc); 4901 } 4902 } 4903 4904 if (ArgExprs.size() == 1 && 4905 ArgExprs[0]->getType()->isNonOverloadPlaceholderType()) { 4906 ExprResult result = CheckPlaceholderExpr(ArgExprs[0]); 4907 if (result.isInvalid()) 4908 return ExprError(); 4909 ArgExprs[0] = result.get(); 4910 } else { 4911 if (checkArgsForPlaceholders(*this, ArgExprs)) 4912 return ExprError(); 4913 } 4914 4915 // Build an unanalyzed expression if either operand is type-dependent. 4916 if (getLangOpts().CPlusPlus && ArgExprs.size() == 1 && 4917 (base->isTypeDependent() || 4918 Expr::hasAnyTypeDependentArguments(ArgExprs))) { 4919 return new (Context) ArraySubscriptExpr( 4920 base, ArgExprs.front(), 4921 getDependentArraySubscriptType(base, ArgExprs.front(), getASTContext()), 4922 VK_LValue, OK_Ordinary, rbLoc); 4923 } 4924 4925 // MSDN, property (C++) 4926 // https://msdn.microsoft.com/en-us/library/yhfk0thd(v=vs.120).aspx 4927 // This attribute can also be used in the declaration of an empty array in a 4928 // class or structure definition. For example: 4929 // __declspec(property(get=GetX, put=PutX)) int x[]; 4930 // The above statement indicates that x[] can be used with one or more array 4931 // indices. In this case, i=p->x[a][b] will be turned into i=p->GetX(a, b), 4932 // and p->x[a][b] = i will be turned into p->PutX(a, b, i); 4933 if (IsMSPropertySubscript) { 4934 assert(ArgExprs.size() == 1); 4935 // Build MS property subscript expression if base is MS property reference 4936 // or MS property subscript. 4937 return new (Context) 4938 MSPropertySubscriptExpr(base, ArgExprs.front(), Context.PseudoObjectTy, 4939 VK_LValue, OK_Ordinary, rbLoc); 4940 } 4941 4942 // Use C++ overloaded-operator rules if either operand has record 4943 // type. The spec says to do this if either type is *overloadable*, 4944 // but enum types can't declare subscript operators or conversion 4945 // operators, so there's nothing interesting for overload resolution 4946 // to do if there aren't any record types involved. 4947 // 4948 // ObjC pointers have their own subscripting logic that is not tied 4949 // to overload resolution and so should not take this path. 4950 if (getLangOpts().CPlusPlus && !base->getType()->isObjCObjectPointerType() && 4951 ((base->getType()->isRecordType() || 4952 (ArgExprs.size() != 1 || ArgExprs[0]->getType()->isRecordType())))) { 4953 return CreateOverloadedArraySubscriptExpr(lbLoc, rbLoc, base, ArgExprs); 4954 } 4955 4956 ExprResult Res = 4957 CreateBuiltinArraySubscriptExpr(base, lbLoc, ArgExprs.front(), rbLoc); 4958 4959 if (!Res.isInvalid() && isa<ArraySubscriptExpr>(Res.get())) 4960 CheckSubscriptAccessOfNoDeref(cast<ArraySubscriptExpr>(Res.get())); 4961 4962 return Res; 4963 } 4964 4965 ExprResult Sema::tryConvertExprToType(Expr *E, QualType Ty) { 4966 InitializedEntity Entity = InitializedEntity::InitializeTemporary(Ty); 4967 InitializationKind Kind = 4968 InitializationKind::CreateCopy(E->getBeginLoc(), SourceLocation()); 4969 InitializationSequence InitSeq(*this, Entity, Kind, E); 4970 return InitSeq.Perform(*this, Entity, Kind, E); 4971 } 4972 4973 ExprResult Sema::CreateBuiltinMatrixSubscriptExpr(Expr *Base, Expr *RowIdx, 4974 Expr *ColumnIdx, 4975 SourceLocation RBLoc) { 4976 ExprResult BaseR = CheckPlaceholderExpr(Base); 4977 if (BaseR.isInvalid()) 4978 return BaseR; 4979 Base = BaseR.get(); 4980 4981 ExprResult RowR = CheckPlaceholderExpr(RowIdx); 4982 if (RowR.isInvalid()) 4983 return RowR; 4984 RowIdx = RowR.get(); 4985 4986 if (!ColumnIdx) 4987 return new (Context) MatrixSubscriptExpr( 4988 Base, RowIdx, ColumnIdx, Context.IncompleteMatrixIdxTy, RBLoc); 4989 4990 // Build an unanalyzed expression if any of the operands is type-dependent. 4991 if (Base->isTypeDependent() || RowIdx->isTypeDependent() || 4992 ColumnIdx->isTypeDependent()) 4993 return new (Context) MatrixSubscriptExpr(Base, RowIdx, ColumnIdx, 4994 Context.DependentTy, RBLoc); 4995 4996 ExprResult ColumnR = CheckPlaceholderExpr(ColumnIdx); 4997 if (ColumnR.isInvalid()) 4998 return ColumnR; 4999 ColumnIdx = ColumnR.get(); 5000 5001 // Check that IndexExpr is an integer expression. If it is a constant 5002 // expression, check that it is less than Dim (= the number of elements in the 5003 // corresponding dimension). 5004 auto IsIndexValid = [&](Expr *IndexExpr, unsigned Dim, 5005 bool IsColumnIdx) -> Expr * { 5006 if (!IndexExpr->getType()->isIntegerType() && 5007 !IndexExpr->isTypeDependent()) { 5008 Diag(IndexExpr->getBeginLoc(), diag::err_matrix_index_not_integer) 5009 << IsColumnIdx; 5010 return nullptr; 5011 } 5012 5013 if (Optional<llvm::APSInt> Idx = 5014 IndexExpr->getIntegerConstantExpr(Context)) { 5015 if ((*Idx < 0 || *Idx >= Dim)) { 5016 Diag(IndexExpr->getBeginLoc(), diag::err_matrix_index_outside_range) 5017 << IsColumnIdx << Dim; 5018 return nullptr; 5019 } 5020 } 5021 5022 ExprResult ConvExpr = 5023 tryConvertExprToType(IndexExpr, Context.getSizeType()); 5024 assert(!ConvExpr.isInvalid() && 5025 "should be able to convert any integer type to size type"); 5026 return ConvExpr.get(); 5027 }; 5028 5029 auto *MTy = Base->getType()->getAs<ConstantMatrixType>(); 5030 RowIdx = IsIndexValid(RowIdx, MTy->getNumRows(), false); 5031 ColumnIdx = IsIndexValid(ColumnIdx, MTy->getNumColumns(), true); 5032 if (!RowIdx || !ColumnIdx) 5033 return ExprError(); 5034 5035 return new (Context) MatrixSubscriptExpr(Base, RowIdx, ColumnIdx, 5036 MTy->getElementType(), RBLoc); 5037 } 5038 5039 void Sema::CheckAddressOfNoDeref(const Expr *E) { 5040 ExpressionEvaluationContextRecord &LastRecord = ExprEvalContexts.back(); 5041 const Expr *StrippedExpr = E->IgnoreParenImpCasts(); 5042 5043 // For expressions like `&(*s).b`, the base is recorded and what should be 5044 // checked. 5045 const MemberExpr *Member = nullptr; 5046 while ((Member = dyn_cast<MemberExpr>(StrippedExpr)) && !Member->isArrow()) 5047 StrippedExpr = Member->getBase()->IgnoreParenImpCasts(); 5048 5049 LastRecord.PossibleDerefs.erase(StrippedExpr); 5050 } 5051 5052 void Sema::CheckSubscriptAccessOfNoDeref(const ArraySubscriptExpr *E) { 5053 if (isUnevaluatedContext()) 5054 return; 5055 5056 QualType ResultTy = E->getType(); 5057 ExpressionEvaluationContextRecord &LastRecord = ExprEvalContexts.back(); 5058 5059 // Bail if the element is an array since it is not memory access. 5060 if (isa<ArrayType>(ResultTy)) 5061 return; 5062 5063 if (ResultTy->hasAttr(attr::NoDeref)) { 5064 LastRecord.PossibleDerefs.insert(E); 5065 return; 5066 } 5067 5068 // Check if the base type is a pointer to a member access of a struct 5069 // marked with noderef. 5070 const Expr *Base = E->getBase(); 5071 QualType BaseTy = Base->getType(); 5072 if (!(isa<ArrayType>(BaseTy) || isa<PointerType>(BaseTy))) 5073 // Not a pointer access 5074 return; 5075 5076 const MemberExpr *Member = nullptr; 5077 while ((Member = dyn_cast<MemberExpr>(Base->IgnoreParenCasts())) && 5078 Member->isArrow()) 5079 Base = Member->getBase(); 5080 5081 if (const auto *Ptr = dyn_cast<PointerType>(Base->getType())) { 5082 if (Ptr->getPointeeType()->hasAttr(attr::NoDeref)) 5083 LastRecord.PossibleDerefs.insert(E); 5084 } 5085 } 5086 5087 ExprResult Sema::ActOnOMPArraySectionExpr(Expr *Base, SourceLocation LBLoc, 5088 Expr *LowerBound, 5089 SourceLocation ColonLocFirst, 5090 SourceLocation ColonLocSecond, 5091 Expr *Length, Expr *Stride, 5092 SourceLocation RBLoc) { 5093 if (Base->hasPlaceholderType() && 5094 !Base->hasPlaceholderType(BuiltinType::OMPArraySection)) { 5095 ExprResult Result = CheckPlaceholderExpr(Base); 5096 if (Result.isInvalid()) 5097 return ExprError(); 5098 Base = Result.get(); 5099 } 5100 if (LowerBound && LowerBound->getType()->isNonOverloadPlaceholderType()) { 5101 ExprResult Result = CheckPlaceholderExpr(LowerBound); 5102 if (Result.isInvalid()) 5103 return ExprError(); 5104 Result = DefaultLvalueConversion(Result.get()); 5105 if (Result.isInvalid()) 5106 return ExprError(); 5107 LowerBound = Result.get(); 5108 } 5109 if (Length && Length->getType()->isNonOverloadPlaceholderType()) { 5110 ExprResult Result = CheckPlaceholderExpr(Length); 5111 if (Result.isInvalid()) 5112 return ExprError(); 5113 Result = DefaultLvalueConversion(Result.get()); 5114 if (Result.isInvalid()) 5115 return ExprError(); 5116 Length = Result.get(); 5117 } 5118 if (Stride && Stride->getType()->isNonOverloadPlaceholderType()) { 5119 ExprResult Result = CheckPlaceholderExpr(Stride); 5120 if (Result.isInvalid()) 5121 return ExprError(); 5122 Result = DefaultLvalueConversion(Result.get()); 5123 if (Result.isInvalid()) 5124 return ExprError(); 5125 Stride = Result.get(); 5126 } 5127 5128 // Build an unanalyzed expression if either operand is type-dependent. 5129 if (Base->isTypeDependent() || 5130 (LowerBound && 5131 (LowerBound->isTypeDependent() || LowerBound->isValueDependent())) || 5132 (Length && (Length->isTypeDependent() || Length->isValueDependent())) || 5133 (Stride && (Stride->isTypeDependent() || Stride->isValueDependent()))) { 5134 return new (Context) OMPArraySectionExpr( 5135 Base, LowerBound, Length, Stride, Context.DependentTy, VK_LValue, 5136 OK_Ordinary, ColonLocFirst, ColonLocSecond, RBLoc); 5137 } 5138 5139 // Perform default conversions. 5140 QualType OriginalTy = OMPArraySectionExpr::getBaseOriginalType(Base); 5141 QualType ResultTy; 5142 if (OriginalTy->isAnyPointerType()) { 5143 ResultTy = OriginalTy->getPointeeType(); 5144 } else if (OriginalTy->isArrayType()) { 5145 ResultTy = OriginalTy->getAsArrayTypeUnsafe()->getElementType(); 5146 } else { 5147 return ExprError( 5148 Diag(Base->getExprLoc(), diag::err_omp_typecheck_section_value) 5149 << Base->getSourceRange()); 5150 } 5151 // C99 6.5.2.1p1 5152 if (LowerBound) { 5153 auto Res = PerformOpenMPImplicitIntegerConversion(LowerBound->getExprLoc(), 5154 LowerBound); 5155 if (Res.isInvalid()) 5156 return ExprError(Diag(LowerBound->getExprLoc(), 5157 diag::err_omp_typecheck_section_not_integer) 5158 << 0 << LowerBound->getSourceRange()); 5159 LowerBound = Res.get(); 5160 5161 if (LowerBound->getType()->isSpecificBuiltinType(BuiltinType::Char_S) || 5162 LowerBound->getType()->isSpecificBuiltinType(BuiltinType::Char_U)) 5163 Diag(LowerBound->getExprLoc(), diag::warn_omp_section_is_char) 5164 << 0 << LowerBound->getSourceRange(); 5165 } 5166 if (Length) { 5167 auto Res = 5168 PerformOpenMPImplicitIntegerConversion(Length->getExprLoc(), Length); 5169 if (Res.isInvalid()) 5170 return ExprError(Diag(Length->getExprLoc(), 5171 diag::err_omp_typecheck_section_not_integer) 5172 << 1 << Length->getSourceRange()); 5173 Length = Res.get(); 5174 5175 if (Length->getType()->isSpecificBuiltinType(BuiltinType::Char_S) || 5176 Length->getType()->isSpecificBuiltinType(BuiltinType::Char_U)) 5177 Diag(Length->getExprLoc(), diag::warn_omp_section_is_char) 5178 << 1 << Length->getSourceRange(); 5179 } 5180 if (Stride) { 5181 ExprResult Res = 5182 PerformOpenMPImplicitIntegerConversion(Stride->getExprLoc(), Stride); 5183 if (Res.isInvalid()) 5184 return ExprError(Diag(Stride->getExprLoc(), 5185 diag::err_omp_typecheck_section_not_integer) 5186 << 1 << Stride->getSourceRange()); 5187 Stride = Res.get(); 5188 5189 if (Stride->getType()->isSpecificBuiltinType(BuiltinType::Char_S) || 5190 Stride->getType()->isSpecificBuiltinType(BuiltinType::Char_U)) 5191 Diag(Stride->getExprLoc(), diag::warn_omp_section_is_char) 5192 << 1 << Stride->getSourceRange(); 5193 } 5194 5195 // C99 6.5.2.1p1: "shall have type "pointer to *object* type". Similarly, 5196 // C++ [expr.sub]p1: The type "T" shall be a completely-defined object 5197 // type. Note that functions are not objects, and that (in C99 parlance) 5198 // incomplete types are not object types. 5199 if (ResultTy->isFunctionType()) { 5200 Diag(Base->getExprLoc(), diag::err_omp_section_function_type) 5201 << ResultTy << Base->getSourceRange(); 5202 return ExprError(); 5203 } 5204 5205 if (RequireCompleteType(Base->getExprLoc(), ResultTy, 5206 diag::err_omp_section_incomplete_type, Base)) 5207 return ExprError(); 5208 5209 if (LowerBound && !OriginalTy->isAnyPointerType()) { 5210 Expr::EvalResult Result; 5211 if (LowerBound->EvaluateAsInt(Result, Context)) { 5212 // OpenMP 5.0, [2.1.5 Array Sections] 5213 // The array section must be a subset of the original array. 5214 llvm::APSInt LowerBoundValue = Result.Val.getInt(); 5215 if (LowerBoundValue.isNegative()) { 5216 Diag(LowerBound->getExprLoc(), diag::err_omp_section_not_subset_of_array) 5217 << LowerBound->getSourceRange(); 5218 return ExprError(); 5219 } 5220 } 5221 } 5222 5223 if (Length) { 5224 Expr::EvalResult Result; 5225 if (Length->EvaluateAsInt(Result, Context)) { 5226 // OpenMP 5.0, [2.1.5 Array Sections] 5227 // The length must evaluate to non-negative integers. 5228 llvm::APSInt LengthValue = Result.Val.getInt(); 5229 if (LengthValue.isNegative()) { 5230 Diag(Length->getExprLoc(), diag::err_omp_section_length_negative) 5231 << toString(LengthValue, /*Radix=*/10, /*Signed=*/true) 5232 << Length->getSourceRange(); 5233 return ExprError(); 5234 } 5235 } 5236 } else if (ColonLocFirst.isValid() && 5237 (OriginalTy.isNull() || (!OriginalTy->isConstantArrayType() && 5238 !OriginalTy->isVariableArrayType()))) { 5239 // OpenMP 5.0, [2.1.5 Array Sections] 5240 // When the size of the array dimension is not known, the length must be 5241 // specified explicitly. 5242 Diag(ColonLocFirst, diag::err_omp_section_length_undefined) 5243 << (!OriginalTy.isNull() && OriginalTy->isArrayType()); 5244 return ExprError(); 5245 } 5246 5247 if (Stride) { 5248 Expr::EvalResult Result; 5249 if (Stride->EvaluateAsInt(Result, Context)) { 5250 // OpenMP 5.0, [2.1.5 Array Sections] 5251 // The stride must evaluate to a positive integer. 5252 llvm::APSInt StrideValue = Result.Val.getInt(); 5253 if (!StrideValue.isStrictlyPositive()) { 5254 Diag(Stride->getExprLoc(), diag::err_omp_section_stride_non_positive) 5255 << toString(StrideValue, /*Radix=*/10, /*Signed=*/true) 5256 << Stride->getSourceRange(); 5257 return ExprError(); 5258 } 5259 } 5260 } 5261 5262 if (!Base->hasPlaceholderType(BuiltinType::OMPArraySection)) { 5263 ExprResult Result = DefaultFunctionArrayLvalueConversion(Base); 5264 if (Result.isInvalid()) 5265 return ExprError(); 5266 Base = Result.get(); 5267 } 5268 return new (Context) OMPArraySectionExpr( 5269 Base, LowerBound, Length, Stride, Context.OMPArraySectionTy, VK_LValue, 5270 OK_Ordinary, ColonLocFirst, ColonLocSecond, RBLoc); 5271 } 5272 5273 ExprResult Sema::ActOnOMPArrayShapingExpr(Expr *Base, SourceLocation LParenLoc, 5274 SourceLocation RParenLoc, 5275 ArrayRef<Expr *> Dims, 5276 ArrayRef<SourceRange> Brackets) { 5277 if (Base->hasPlaceholderType()) { 5278 ExprResult Result = CheckPlaceholderExpr(Base); 5279 if (Result.isInvalid()) 5280 return ExprError(); 5281 Result = DefaultLvalueConversion(Result.get()); 5282 if (Result.isInvalid()) 5283 return ExprError(); 5284 Base = Result.get(); 5285 } 5286 QualType BaseTy = Base->getType(); 5287 // Delay analysis of the types/expressions if instantiation/specialization is 5288 // required. 5289 if (!BaseTy->isPointerType() && Base->isTypeDependent()) 5290 return OMPArrayShapingExpr::Create(Context, Context.DependentTy, Base, 5291 LParenLoc, RParenLoc, Dims, Brackets); 5292 if (!BaseTy->isPointerType() || 5293 (!Base->isTypeDependent() && 5294 BaseTy->getPointeeType()->isIncompleteType())) 5295 return ExprError(Diag(Base->getExprLoc(), 5296 diag::err_omp_non_pointer_type_array_shaping_base) 5297 << Base->getSourceRange()); 5298 5299 SmallVector<Expr *, 4> NewDims; 5300 bool ErrorFound = false; 5301 for (Expr *Dim : Dims) { 5302 if (Dim->hasPlaceholderType()) { 5303 ExprResult Result = CheckPlaceholderExpr(Dim); 5304 if (Result.isInvalid()) { 5305 ErrorFound = true; 5306 continue; 5307 } 5308 Result = DefaultLvalueConversion(Result.get()); 5309 if (Result.isInvalid()) { 5310 ErrorFound = true; 5311 continue; 5312 } 5313 Dim = Result.get(); 5314 } 5315 if (!Dim->isTypeDependent()) { 5316 ExprResult Result = 5317 PerformOpenMPImplicitIntegerConversion(Dim->getExprLoc(), Dim); 5318 if (Result.isInvalid()) { 5319 ErrorFound = true; 5320 Diag(Dim->getExprLoc(), diag::err_omp_typecheck_shaping_not_integer) 5321 << Dim->getSourceRange(); 5322 continue; 5323 } 5324 Dim = Result.get(); 5325 Expr::EvalResult EvResult; 5326 if (!Dim->isValueDependent() && Dim->EvaluateAsInt(EvResult, Context)) { 5327 // OpenMP 5.0, [2.1.4 Array Shaping] 5328 // Each si is an integral type expression that must evaluate to a 5329 // positive integer. 5330 llvm::APSInt Value = EvResult.Val.getInt(); 5331 if (!Value.isStrictlyPositive()) { 5332 Diag(Dim->getExprLoc(), diag::err_omp_shaping_dimension_not_positive) 5333 << toString(Value, /*Radix=*/10, /*Signed=*/true) 5334 << Dim->getSourceRange(); 5335 ErrorFound = true; 5336 continue; 5337 } 5338 } 5339 } 5340 NewDims.push_back(Dim); 5341 } 5342 if (ErrorFound) 5343 return ExprError(); 5344 return OMPArrayShapingExpr::Create(Context, Context.OMPArrayShapingTy, Base, 5345 LParenLoc, RParenLoc, NewDims, Brackets); 5346 } 5347 5348 ExprResult Sema::ActOnOMPIteratorExpr(Scope *S, SourceLocation IteratorKwLoc, 5349 SourceLocation LLoc, SourceLocation RLoc, 5350 ArrayRef<OMPIteratorData> Data) { 5351 SmallVector<OMPIteratorExpr::IteratorDefinition, 4> ID; 5352 bool IsCorrect = true; 5353 for (const OMPIteratorData &D : Data) { 5354 TypeSourceInfo *TInfo = nullptr; 5355 SourceLocation StartLoc; 5356 QualType DeclTy; 5357 if (!D.Type.getAsOpaquePtr()) { 5358 // OpenMP 5.0, 2.1.6 Iterators 5359 // In an iterator-specifier, if the iterator-type is not specified then 5360 // the type of that iterator is of int type. 5361 DeclTy = Context.IntTy; 5362 StartLoc = D.DeclIdentLoc; 5363 } else { 5364 DeclTy = GetTypeFromParser(D.Type, &TInfo); 5365 StartLoc = TInfo->getTypeLoc().getBeginLoc(); 5366 } 5367 5368 bool IsDeclTyDependent = DeclTy->isDependentType() || 5369 DeclTy->containsUnexpandedParameterPack() || 5370 DeclTy->isInstantiationDependentType(); 5371 if (!IsDeclTyDependent) { 5372 if (!DeclTy->isIntegralType(Context) && !DeclTy->isAnyPointerType()) { 5373 // OpenMP 5.0, 2.1.6 Iterators, Restrictions, C/C++ 5374 // The iterator-type must be an integral or pointer type. 5375 Diag(StartLoc, diag::err_omp_iterator_not_integral_or_pointer) 5376 << DeclTy; 5377 IsCorrect = false; 5378 continue; 5379 } 5380 if (DeclTy.isConstant(Context)) { 5381 // OpenMP 5.0, 2.1.6 Iterators, Restrictions, C/C++ 5382 // The iterator-type must not be const qualified. 5383 Diag(StartLoc, diag::err_omp_iterator_not_integral_or_pointer) 5384 << DeclTy; 5385 IsCorrect = false; 5386 continue; 5387 } 5388 } 5389 5390 // Iterator declaration. 5391 assert(D.DeclIdent && "Identifier expected."); 5392 // Always try to create iterator declarator to avoid extra error messages 5393 // about unknown declarations use. 5394 auto *VD = VarDecl::Create(Context, CurContext, StartLoc, D.DeclIdentLoc, 5395 D.DeclIdent, DeclTy, TInfo, SC_None); 5396 VD->setImplicit(); 5397 if (S) { 5398 // Check for conflicting previous declaration. 5399 DeclarationNameInfo NameInfo(VD->getDeclName(), D.DeclIdentLoc); 5400 LookupResult Previous(*this, NameInfo, LookupOrdinaryName, 5401 ForVisibleRedeclaration); 5402 Previous.suppressDiagnostics(); 5403 LookupName(Previous, S); 5404 5405 FilterLookupForScope(Previous, CurContext, S, /*ConsiderLinkage=*/false, 5406 /*AllowInlineNamespace=*/false); 5407 if (!Previous.empty()) { 5408 NamedDecl *Old = Previous.getRepresentativeDecl(); 5409 Diag(D.DeclIdentLoc, diag::err_redefinition) << VD->getDeclName(); 5410 Diag(Old->getLocation(), diag::note_previous_definition); 5411 } else { 5412 PushOnScopeChains(VD, S); 5413 } 5414 } else { 5415 CurContext->addDecl(VD); 5416 } 5417 Expr *Begin = D.Range.Begin; 5418 if (!IsDeclTyDependent && Begin && !Begin->isTypeDependent()) { 5419 ExprResult BeginRes = 5420 PerformImplicitConversion(Begin, DeclTy, AA_Converting); 5421 Begin = BeginRes.get(); 5422 } 5423 Expr *End = D.Range.End; 5424 if (!IsDeclTyDependent && End && !End->isTypeDependent()) { 5425 ExprResult EndRes = PerformImplicitConversion(End, DeclTy, AA_Converting); 5426 End = EndRes.get(); 5427 } 5428 Expr *Step = D.Range.Step; 5429 if (!IsDeclTyDependent && Step && !Step->isTypeDependent()) { 5430 if (!Step->getType()->isIntegralType(Context)) { 5431 Diag(Step->getExprLoc(), diag::err_omp_iterator_step_not_integral) 5432 << Step << Step->getSourceRange(); 5433 IsCorrect = false; 5434 continue; 5435 } 5436 Optional<llvm::APSInt> Result = Step->getIntegerConstantExpr(Context); 5437 // OpenMP 5.0, 2.1.6 Iterators, Restrictions 5438 // If the step expression of a range-specification equals zero, the 5439 // behavior is unspecified. 5440 if (Result && Result->isZero()) { 5441 Diag(Step->getExprLoc(), diag::err_omp_iterator_step_constant_zero) 5442 << Step << Step->getSourceRange(); 5443 IsCorrect = false; 5444 continue; 5445 } 5446 } 5447 if (!Begin || !End || !IsCorrect) { 5448 IsCorrect = false; 5449 continue; 5450 } 5451 OMPIteratorExpr::IteratorDefinition &IDElem = ID.emplace_back(); 5452 IDElem.IteratorDecl = VD; 5453 IDElem.AssignmentLoc = D.AssignLoc; 5454 IDElem.Range.Begin = Begin; 5455 IDElem.Range.End = End; 5456 IDElem.Range.Step = Step; 5457 IDElem.ColonLoc = D.ColonLoc; 5458 IDElem.SecondColonLoc = D.SecColonLoc; 5459 } 5460 if (!IsCorrect) { 5461 // Invalidate all created iterator declarations if error is found. 5462 for (const OMPIteratorExpr::IteratorDefinition &D : ID) { 5463 if (Decl *ID = D.IteratorDecl) 5464 ID->setInvalidDecl(); 5465 } 5466 return ExprError(); 5467 } 5468 SmallVector<OMPIteratorHelperData, 4> Helpers; 5469 if (!CurContext->isDependentContext()) { 5470 // Build number of ityeration for each iteration range. 5471 // Ni = ((Stepi > 0) ? ((Endi + Stepi -1 - Begini)/Stepi) : 5472 // ((Begini-Stepi-1-Endi) / -Stepi); 5473 for (OMPIteratorExpr::IteratorDefinition &D : ID) { 5474 // (Endi - Begini) 5475 ExprResult Res = CreateBuiltinBinOp(D.AssignmentLoc, BO_Sub, D.Range.End, 5476 D.Range.Begin); 5477 if(!Res.isUsable()) { 5478 IsCorrect = false; 5479 continue; 5480 } 5481 ExprResult St, St1; 5482 if (D.Range.Step) { 5483 St = D.Range.Step; 5484 // (Endi - Begini) + Stepi 5485 Res = CreateBuiltinBinOp(D.AssignmentLoc, BO_Add, Res.get(), St.get()); 5486 if (!Res.isUsable()) { 5487 IsCorrect = false; 5488 continue; 5489 } 5490 // (Endi - Begini) + Stepi - 1 5491 Res = 5492 CreateBuiltinBinOp(D.AssignmentLoc, BO_Sub, Res.get(), 5493 ActOnIntegerConstant(D.AssignmentLoc, 1).get()); 5494 if (!Res.isUsable()) { 5495 IsCorrect = false; 5496 continue; 5497 } 5498 // ((Endi - Begini) + Stepi - 1) / Stepi 5499 Res = CreateBuiltinBinOp(D.AssignmentLoc, BO_Div, Res.get(), St.get()); 5500 if (!Res.isUsable()) { 5501 IsCorrect = false; 5502 continue; 5503 } 5504 St1 = CreateBuiltinUnaryOp(D.AssignmentLoc, UO_Minus, D.Range.Step); 5505 // (Begini - Endi) 5506 ExprResult Res1 = CreateBuiltinBinOp(D.AssignmentLoc, BO_Sub, 5507 D.Range.Begin, D.Range.End); 5508 if (!Res1.isUsable()) { 5509 IsCorrect = false; 5510 continue; 5511 } 5512 // (Begini - Endi) - Stepi 5513 Res1 = 5514 CreateBuiltinBinOp(D.AssignmentLoc, BO_Add, Res1.get(), St1.get()); 5515 if (!Res1.isUsable()) { 5516 IsCorrect = false; 5517 continue; 5518 } 5519 // (Begini - Endi) - Stepi - 1 5520 Res1 = 5521 CreateBuiltinBinOp(D.AssignmentLoc, BO_Sub, Res1.get(), 5522 ActOnIntegerConstant(D.AssignmentLoc, 1).get()); 5523 if (!Res1.isUsable()) { 5524 IsCorrect = false; 5525 continue; 5526 } 5527 // ((Begini - Endi) - Stepi - 1) / (-Stepi) 5528 Res1 = 5529 CreateBuiltinBinOp(D.AssignmentLoc, BO_Div, Res1.get(), St1.get()); 5530 if (!Res1.isUsable()) { 5531 IsCorrect = false; 5532 continue; 5533 } 5534 // Stepi > 0. 5535 ExprResult CmpRes = 5536 CreateBuiltinBinOp(D.AssignmentLoc, BO_GT, D.Range.Step, 5537 ActOnIntegerConstant(D.AssignmentLoc, 0).get()); 5538 if (!CmpRes.isUsable()) { 5539 IsCorrect = false; 5540 continue; 5541 } 5542 Res = ActOnConditionalOp(D.AssignmentLoc, D.AssignmentLoc, CmpRes.get(), 5543 Res.get(), Res1.get()); 5544 if (!Res.isUsable()) { 5545 IsCorrect = false; 5546 continue; 5547 } 5548 } 5549 Res = ActOnFinishFullExpr(Res.get(), /*DiscardedValue=*/false); 5550 if (!Res.isUsable()) { 5551 IsCorrect = false; 5552 continue; 5553 } 5554 5555 // Build counter update. 5556 // Build counter. 5557 auto *CounterVD = 5558 VarDecl::Create(Context, CurContext, D.IteratorDecl->getBeginLoc(), 5559 D.IteratorDecl->getBeginLoc(), nullptr, 5560 Res.get()->getType(), nullptr, SC_None); 5561 CounterVD->setImplicit(); 5562 ExprResult RefRes = 5563 BuildDeclRefExpr(CounterVD, CounterVD->getType(), VK_LValue, 5564 D.IteratorDecl->getBeginLoc()); 5565 // Build counter update. 5566 // I = Begini + counter * Stepi; 5567 ExprResult UpdateRes; 5568 if (D.Range.Step) { 5569 UpdateRes = CreateBuiltinBinOp( 5570 D.AssignmentLoc, BO_Mul, 5571 DefaultLvalueConversion(RefRes.get()).get(), St.get()); 5572 } else { 5573 UpdateRes = DefaultLvalueConversion(RefRes.get()); 5574 } 5575 if (!UpdateRes.isUsable()) { 5576 IsCorrect = false; 5577 continue; 5578 } 5579 UpdateRes = CreateBuiltinBinOp(D.AssignmentLoc, BO_Add, D.Range.Begin, 5580 UpdateRes.get()); 5581 if (!UpdateRes.isUsable()) { 5582 IsCorrect = false; 5583 continue; 5584 } 5585 ExprResult VDRes = 5586 BuildDeclRefExpr(cast<VarDecl>(D.IteratorDecl), 5587 cast<VarDecl>(D.IteratorDecl)->getType(), VK_LValue, 5588 D.IteratorDecl->getBeginLoc()); 5589 UpdateRes = CreateBuiltinBinOp(D.AssignmentLoc, BO_Assign, VDRes.get(), 5590 UpdateRes.get()); 5591 if (!UpdateRes.isUsable()) { 5592 IsCorrect = false; 5593 continue; 5594 } 5595 UpdateRes = 5596 ActOnFinishFullExpr(UpdateRes.get(), /*DiscardedValue=*/true); 5597 if (!UpdateRes.isUsable()) { 5598 IsCorrect = false; 5599 continue; 5600 } 5601 ExprResult CounterUpdateRes = 5602 CreateBuiltinUnaryOp(D.AssignmentLoc, UO_PreInc, RefRes.get()); 5603 if (!CounterUpdateRes.isUsable()) { 5604 IsCorrect = false; 5605 continue; 5606 } 5607 CounterUpdateRes = 5608 ActOnFinishFullExpr(CounterUpdateRes.get(), /*DiscardedValue=*/true); 5609 if (!CounterUpdateRes.isUsable()) { 5610 IsCorrect = false; 5611 continue; 5612 } 5613 OMPIteratorHelperData &HD = Helpers.emplace_back(); 5614 HD.CounterVD = CounterVD; 5615 HD.Upper = Res.get(); 5616 HD.Update = UpdateRes.get(); 5617 HD.CounterUpdate = CounterUpdateRes.get(); 5618 } 5619 } else { 5620 Helpers.assign(ID.size(), {}); 5621 } 5622 if (!IsCorrect) { 5623 // Invalidate all created iterator declarations if error is found. 5624 for (const OMPIteratorExpr::IteratorDefinition &D : ID) { 5625 if (Decl *ID = D.IteratorDecl) 5626 ID->setInvalidDecl(); 5627 } 5628 return ExprError(); 5629 } 5630 return OMPIteratorExpr::Create(Context, Context.OMPIteratorTy, IteratorKwLoc, 5631 LLoc, RLoc, ID, Helpers); 5632 } 5633 5634 ExprResult 5635 Sema::CreateBuiltinArraySubscriptExpr(Expr *Base, SourceLocation LLoc, 5636 Expr *Idx, SourceLocation RLoc) { 5637 Expr *LHSExp = Base; 5638 Expr *RHSExp = Idx; 5639 5640 ExprValueKind VK = VK_LValue; 5641 ExprObjectKind OK = OK_Ordinary; 5642 5643 // Per C++ core issue 1213, the result is an xvalue if either operand is 5644 // a non-lvalue array, and an lvalue otherwise. 5645 if (getLangOpts().CPlusPlus11) { 5646 for (auto *Op : {LHSExp, RHSExp}) { 5647 Op = Op->IgnoreImplicit(); 5648 if (Op->getType()->isArrayType() && !Op->isLValue()) 5649 VK = VK_XValue; 5650 } 5651 } 5652 5653 // Perform default conversions. 5654 if (!LHSExp->getType()->getAs<VectorType>()) { 5655 ExprResult Result = DefaultFunctionArrayLvalueConversion(LHSExp); 5656 if (Result.isInvalid()) 5657 return ExprError(); 5658 LHSExp = Result.get(); 5659 } 5660 ExprResult Result = DefaultFunctionArrayLvalueConversion(RHSExp); 5661 if (Result.isInvalid()) 5662 return ExprError(); 5663 RHSExp = Result.get(); 5664 5665 QualType LHSTy = LHSExp->getType(), RHSTy = RHSExp->getType(); 5666 5667 // C99 6.5.2.1p2: the expression e1[e2] is by definition precisely equivalent 5668 // to the expression *((e1)+(e2)). This means the array "Base" may actually be 5669 // in the subscript position. As a result, we need to derive the array base 5670 // and index from the expression types. 5671 Expr *BaseExpr, *IndexExpr; 5672 QualType ResultType; 5673 if (LHSTy->isDependentType() || RHSTy->isDependentType()) { 5674 BaseExpr = LHSExp; 5675 IndexExpr = RHSExp; 5676 ResultType = 5677 getDependentArraySubscriptType(LHSExp, RHSExp, getASTContext()); 5678 } else if (const PointerType *PTy = LHSTy->getAs<PointerType>()) { 5679 BaseExpr = LHSExp; 5680 IndexExpr = RHSExp; 5681 ResultType = PTy->getPointeeType(); 5682 } else if (const ObjCObjectPointerType *PTy = 5683 LHSTy->getAs<ObjCObjectPointerType>()) { 5684 BaseExpr = LHSExp; 5685 IndexExpr = RHSExp; 5686 5687 // Use custom logic if this should be the pseudo-object subscript 5688 // expression. 5689 if (!LangOpts.isSubscriptPointerArithmetic()) 5690 return BuildObjCSubscriptExpression(RLoc, BaseExpr, IndexExpr, nullptr, 5691 nullptr); 5692 5693 ResultType = PTy->getPointeeType(); 5694 } else if (const PointerType *PTy = RHSTy->getAs<PointerType>()) { 5695 // Handle the uncommon case of "123[Ptr]". 5696 BaseExpr = RHSExp; 5697 IndexExpr = LHSExp; 5698 ResultType = PTy->getPointeeType(); 5699 } else if (const ObjCObjectPointerType *PTy = 5700 RHSTy->getAs<ObjCObjectPointerType>()) { 5701 // Handle the uncommon case of "123[Ptr]". 5702 BaseExpr = RHSExp; 5703 IndexExpr = LHSExp; 5704 ResultType = PTy->getPointeeType(); 5705 if (!LangOpts.isSubscriptPointerArithmetic()) { 5706 Diag(LLoc, diag::err_subscript_nonfragile_interface) 5707 << ResultType << BaseExpr->getSourceRange(); 5708 return ExprError(); 5709 } 5710 } else if (const VectorType *VTy = LHSTy->getAs<VectorType>()) { 5711 BaseExpr = LHSExp; // vectors: V[123] 5712 IndexExpr = RHSExp; 5713 // We apply C++ DR1213 to vector subscripting too. 5714 if (getLangOpts().CPlusPlus11 && LHSExp->isPRValue()) { 5715 ExprResult Materialized = TemporaryMaterializationConversion(LHSExp); 5716 if (Materialized.isInvalid()) 5717 return ExprError(); 5718 LHSExp = Materialized.get(); 5719 } 5720 VK = LHSExp->getValueKind(); 5721 if (VK != VK_PRValue) 5722 OK = OK_VectorComponent; 5723 5724 ResultType = VTy->getElementType(); 5725 QualType BaseType = BaseExpr->getType(); 5726 Qualifiers BaseQuals = BaseType.getQualifiers(); 5727 Qualifiers MemberQuals = ResultType.getQualifiers(); 5728 Qualifiers Combined = BaseQuals + MemberQuals; 5729 if (Combined != MemberQuals) 5730 ResultType = Context.getQualifiedType(ResultType, Combined); 5731 } else if (LHSTy->isBuiltinType() && 5732 LHSTy->getAs<BuiltinType>()->isVLSTBuiltinType()) { 5733 const BuiltinType *BTy = LHSTy->getAs<BuiltinType>(); 5734 if (BTy->isSVEBool()) 5735 return ExprError(Diag(LLoc, diag::err_subscript_svbool_t) 5736 << LHSExp->getSourceRange() << RHSExp->getSourceRange()); 5737 5738 BaseExpr = LHSExp; 5739 IndexExpr = RHSExp; 5740 if (getLangOpts().CPlusPlus11 && LHSExp->isPRValue()) { 5741 ExprResult Materialized = TemporaryMaterializationConversion(LHSExp); 5742 if (Materialized.isInvalid()) 5743 return ExprError(); 5744 LHSExp = Materialized.get(); 5745 } 5746 VK = LHSExp->getValueKind(); 5747 if (VK != VK_PRValue) 5748 OK = OK_VectorComponent; 5749 5750 ResultType = BTy->getSveEltType(Context); 5751 5752 QualType BaseType = BaseExpr->getType(); 5753 Qualifiers BaseQuals = BaseType.getQualifiers(); 5754 Qualifiers MemberQuals = ResultType.getQualifiers(); 5755 Qualifiers Combined = BaseQuals + MemberQuals; 5756 if (Combined != MemberQuals) 5757 ResultType = Context.getQualifiedType(ResultType, Combined); 5758 } else if (LHSTy->isArrayType()) { 5759 // If we see an array that wasn't promoted by 5760 // DefaultFunctionArrayLvalueConversion, it must be an array that 5761 // wasn't promoted because of the C90 rule that doesn't 5762 // allow promoting non-lvalue arrays. Warn, then 5763 // force the promotion here. 5764 Diag(LHSExp->getBeginLoc(), diag::ext_subscript_non_lvalue) 5765 << LHSExp->getSourceRange(); 5766 LHSExp = ImpCastExprToType(LHSExp, Context.getArrayDecayedType(LHSTy), 5767 CK_ArrayToPointerDecay).get(); 5768 LHSTy = LHSExp->getType(); 5769 5770 BaseExpr = LHSExp; 5771 IndexExpr = RHSExp; 5772 ResultType = LHSTy->castAs<PointerType>()->getPointeeType(); 5773 } else if (RHSTy->isArrayType()) { 5774 // Same as previous, except for 123[f().a] case 5775 Diag(RHSExp->getBeginLoc(), diag::ext_subscript_non_lvalue) 5776 << RHSExp->getSourceRange(); 5777 RHSExp = ImpCastExprToType(RHSExp, Context.getArrayDecayedType(RHSTy), 5778 CK_ArrayToPointerDecay).get(); 5779 RHSTy = RHSExp->getType(); 5780 5781 BaseExpr = RHSExp; 5782 IndexExpr = LHSExp; 5783 ResultType = RHSTy->castAs<PointerType>()->getPointeeType(); 5784 } else { 5785 return ExprError(Diag(LLoc, diag::err_typecheck_subscript_value) 5786 << LHSExp->getSourceRange() << RHSExp->getSourceRange()); 5787 } 5788 // C99 6.5.2.1p1 5789 if (!IndexExpr->getType()->isIntegerType() && !IndexExpr->isTypeDependent()) 5790 return ExprError(Diag(LLoc, diag::err_typecheck_subscript_not_integer) 5791 << IndexExpr->getSourceRange()); 5792 5793 if ((IndexExpr->getType()->isSpecificBuiltinType(BuiltinType::Char_S) || 5794 IndexExpr->getType()->isSpecificBuiltinType(BuiltinType::Char_U)) 5795 && !IndexExpr->isTypeDependent()) 5796 Diag(LLoc, diag::warn_subscript_is_char) << IndexExpr->getSourceRange(); 5797 5798 // C99 6.5.2.1p1: "shall have type "pointer to *object* type". Similarly, 5799 // C++ [expr.sub]p1: The type "T" shall be a completely-defined object 5800 // type. Note that Functions are not objects, and that (in C99 parlance) 5801 // incomplete types are not object types. 5802 if (ResultType->isFunctionType()) { 5803 Diag(BaseExpr->getBeginLoc(), diag::err_subscript_function_type) 5804 << ResultType << BaseExpr->getSourceRange(); 5805 return ExprError(); 5806 } 5807 5808 if (ResultType->isVoidType() && !getLangOpts().CPlusPlus) { 5809 // GNU extension: subscripting on pointer to void 5810 Diag(LLoc, diag::ext_gnu_subscript_void_type) 5811 << BaseExpr->getSourceRange(); 5812 5813 // C forbids expressions of unqualified void type from being l-values. 5814 // See IsCForbiddenLValueType. 5815 if (!ResultType.hasQualifiers()) 5816 VK = VK_PRValue; 5817 } else if (!ResultType->isDependentType() && 5818 RequireCompleteSizedType( 5819 LLoc, ResultType, 5820 diag::err_subscript_incomplete_or_sizeless_type, BaseExpr)) 5821 return ExprError(); 5822 5823 assert(VK == VK_PRValue || LangOpts.CPlusPlus || 5824 !ResultType.isCForbiddenLValueType()); 5825 5826 if (LHSExp->IgnoreParenImpCasts()->getType()->isVariablyModifiedType() && 5827 FunctionScopes.size() > 1) { 5828 if (auto *TT = 5829 LHSExp->IgnoreParenImpCasts()->getType()->getAs<TypedefType>()) { 5830 for (auto I = FunctionScopes.rbegin(), 5831 E = std::prev(FunctionScopes.rend()); 5832 I != E; ++I) { 5833 auto *CSI = dyn_cast<CapturingScopeInfo>(*I); 5834 if (CSI == nullptr) 5835 break; 5836 DeclContext *DC = nullptr; 5837 if (auto *LSI = dyn_cast<LambdaScopeInfo>(CSI)) 5838 DC = LSI->CallOperator; 5839 else if (auto *CRSI = dyn_cast<CapturedRegionScopeInfo>(CSI)) 5840 DC = CRSI->TheCapturedDecl; 5841 else if (auto *BSI = dyn_cast<BlockScopeInfo>(CSI)) 5842 DC = BSI->TheDecl; 5843 if (DC) { 5844 if (DC->containsDecl(TT->getDecl())) 5845 break; 5846 captureVariablyModifiedType( 5847 Context, LHSExp->IgnoreParenImpCasts()->getType(), CSI); 5848 } 5849 } 5850 } 5851 } 5852 5853 return new (Context) 5854 ArraySubscriptExpr(LHSExp, RHSExp, ResultType, VK, OK, RLoc); 5855 } 5856 5857 bool Sema::CheckCXXDefaultArgExpr(SourceLocation CallLoc, FunctionDecl *FD, 5858 ParmVarDecl *Param) { 5859 if (Param->hasUnparsedDefaultArg()) { 5860 // If we've already cleared out the location for the default argument, 5861 // that means we're parsing it right now. 5862 if (!UnparsedDefaultArgLocs.count(Param)) { 5863 Diag(Param->getBeginLoc(), diag::err_recursive_default_argument) << FD; 5864 Diag(CallLoc, diag::note_recursive_default_argument_used_here); 5865 Param->setInvalidDecl(); 5866 return true; 5867 } 5868 5869 Diag(CallLoc, diag::err_use_of_default_argument_to_function_declared_later) 5870 << FD << cast<CXXRecordDecl>(FD->getDeclContext()); 5871 Diag(UnparsedDefaultArgLocs[Param], 5872 diag::note_default_argument_declared_here); 5873 return true; 5874 } 5875 5876 if (Param->hasUninstantiatedDefaultArg() && 5877 InstantiateDefaultArgument(CallLoc, FD, Param)) 5878 return true; 5879 5880 assert(Param->hasInit() && "default argument but no initializer?"); 5881 5882 // If the default expression creates temporaries, we need to 5883 // push them to the current stack of expression temporaries so they'll 5884 // be properly destroyed. 5885 // FIXME: We should really be rebuilding the default argument with new 5886 // bound temporaries; see the comment in PR5810. 5887 // We don't need to do that with block decls, though, because 5888 // blocks in default argument expression can never capture anything. 5889 if (auto Init = dyn_cast<ExprWithCleanups>(Param->getInit())) { 5890 // Set the "needs cleanups" bit regardless of whether there are 5891 // any explicit objects. 5892 Cleanup.setExprNeedsCleanups(Init->cleanupsHaveSideEffects()); 5893 5894 // Append all the objects to the cleanup list. Right now, this 5895 // should always be a no-op, because blocks in default argument 5896 // expressions should never be able to capture anything. 5897 assert(!Init->getNumObjects() && 5898 "default argument expression has capturing blocks?"); 5899 } 5900 5901 // We already type-checked the argument, so we know it works. 5902 // Just mark all of the declarations in this potentially-evaluated expression 5903 // as being "referenced". 5904 EnterExpressionEvaluationContext EvalContext( 5905 *this, ExpressionEvaluationContext::PotentiallyEvaluated, Param); 5906 MarkDeclarationsReferencedInExpr(Param->getDefaultArg(), 5907 /*SkipLocalVariables=*/true); 5908 return false; 5909 } 5910 5911 ExprResult Sema::BuildCXXDefaultArgExpr(SourceLocation CallLoc, 5912 FunctionDecl *FD, ParmVarDecl *Param) { 5913 assert(Param->hasDefaultArg() && "can't build nonexistent default arg"); 5914 if (CheckCXXDefaultArgExpr(CallLoc, FD, Param)) 5915 return ExprError(); 5916 return CXXDefaultArgExpr::Create(Context, CallLoc, Param, CurContext); 5917 } 5918 5919 Sema::VariadicCallType 5920 Sema::getVariadicCallType(FunctionDecl *FDecl, const FunctionProtoType *Proto, 5921 Expr *Fn) { 5922 if (Proto && Proto->isVariadic()) { 5923 if (isa_and_nonnull<CXXConstructorDecl>(FDecl)) 5924 return VariadicConstructor; 5925 else if (Fn && Fn->getType()->isBlockPointerType()) 5926 return VariadicBlock; 5927 else if (FDecl) { 5928 if (CXXMethodDecl *Method = dyn_cast_or_null<CXXMethodDecl>(FDecl)) 5929 if (Method->isInstance()) 5930 return VariadicMethod; 5931 } else if (Fn && Fn->getType() == Context.BoundMemberTy) 5932 return VariadicMethod; 5933 return VariadicFunction; 5934 } 5935 return VariadicDoesNotApply; 5936 } 5937 5938 namespace { 5939 class FunctionCallCCC final : public FunctionCallFilterCCC { 5940 public: 5941 FunctionCallCCC(Sema &SemaRef, const IdentifierInfo *FuncName, 5942 unsigned NumArgs, MemberExpr *ME) 5943 : FunctionCallFilterCCC(SemaRef, NumArgs, false, ME), 5944 FunctionName(FuncName) {} 5945 5946 bool ValidateCandidate(const TypoCorrection &candidate) override { 5947 if (!candidate.getCorrectionSpecifier() || 5948 candidate.getCorrectionAsIdentifierInfo() != FunctionName) { 5949 return false; 5950 } 5951 5952 return FunctionCallFilterCCC::ValidateCandidate(candidate); 5953 } 5954 5955 std::unique_ptr<CorrectionCandidateCallback> clone() override { 5956 return std::make_unique<FunctionCallCCC>(*this); 5957 } 5958 5959 private: 5960 const IdentifierInfo *const FunctionName; 5961 }; 5962 } 5963 5964 static TypoCorrection TryTypoCorrectionForCall(Sema &S, Expr *Fn, 5965 FunctionDecl *FDecl, 5966 ArrayRef<Expr *> Args) { 5967 MemberExpr *ME = dyn_cast<MemberExpr>(Fn); 5968 DeclarationName FuncName = FDecl->getDeclName(); 5969 SourceLocation NameLoc = ME ? ME->getMemberLoc() : Fn->getBeginLoc(); 5970 5971 FunctionCallCCC CCC(S, FuncName.getAsIdentifierInfo(), Args.size(), ME); 5972 if (TypoCorrection Corrected = S.CorrectTypo( 5973 DeclarationNameInfo(FuncName, NameLoc), Sema::LookupOrdinaryName, 5974 S.getScopeForContext(S.CurContext), nullptr, CCC, 5975 Sema::CTK_ErrorRecovery)) { 5976 if (NamedDecl *ND = Corrected.getFoundDecl()) { 5977 if (Corrected.isOverloaded()) { 5978 OverloadCandidateSet OCS(NameLoc, OverloadCandidateSet::CSK_Normal); 5979 OverloadCandidateSet::iterator Best; 5980 for (NamedDecl *CD : Corrected) { 5981 if (FunctionDecl *FD = dyn_cast<FunctionDecl>(CD)) 5982 S.AddOverloadCandidate(FD, DeclAccessPair::make(FD, AS_none), Args, 5983 OCS); 5984 } 5985 switch (OCS.BestViableFunction(S, NameLoc, Best)) { 5986 case OR_Success: 5987 ND = Best->FoundDecl; 5988 Corrected.setCorrectionDecl(ND); 5989 break; 5990 default: 5991 break; 5992 } 5993 } 5994 ND = ND->getUnderlyingDecl(); 5995 if (isa<ValueDecl>(ND) || isa<FunctionTemplateDecl>(ND)) 5996 return Corrected; 5997 } 5998 } 5999 return TypoCorrection(); 6000 } 6001 6002 /// ConvertArgumentsForCall - Converts the arguments specified in 6003 /// Args/NumArgs to the parameter types of the function FDecl with 6004 /// function prototype Proto. Call is the call expression itself, and 6005 /// Fn is the function expression. For a C++ member function, this 6006 /// routine does not attempt to convert the object argument. Returns 6007 /// true if the call is ill-formed. 6008 bool 6009 Sema::ConvertArgumentsForCall(CallExpr *Call, Expr *Fn, 6010 FunctionDecl *FDecl, 6011 const FunctionProtoType *Proto, 6012 ArrayRef<Expr *> Args, 6013 SourceLocation RParenLoc, 6014 bool IsExecConfig) { 6015 // Bail out early if calling a builtin with custom typechecking. 6016 if (FDecl) 6017 if (unsigned ID = FDecl->getBuiltinID()) 6018 if (Context.BuiltinInfo.hasCustomTypechecking(ID)) 6019 return false; 6020 6021 // C99 6.5.2.2p7 - the arguments are implicitly converted, as if by 6022 // assignment, to the types of the corresponding parameter, ... 6023 unsigned NumParams = Proto->getNumParams(); 6024 bool Invalid = false; 6025 unsigned MinArgs = FDecl ? FDecl->getMinRequiredArguments() : NumParams; 6026 unsigned FnKind = Fn->getType()->isBlockPointerType() 6027 ? 1 /* block */ 6028 : (IsExecConfig ? 3 /* kernel function (exec config) */ 6029 : 0 /* function */); 6030 6031 // If too few arguments are available (and we don't have default 6032 // arguments for the remaining parameters), don't make the call. 6033 if (Args.size() < NumParams) { 6034 if (Args.size() < MinArgs) { 6035 TypoCorrection TC; 6036 if (FDecl && (TC = TryTypoCorrectionForCall(*this, Fn, FDecl, Args))) { 6037 unsigned diag_id = 6038 MinArgs == NumParams && !Proto->isVariadic() 6039 ? diag::err_typecheck_call_too_few_args_suggest 6040 : diag::err_typecheck_call_too_few_args_at_least_suggest; 6041 diagnoseTypo(TC, PDiag(diag_id) << FnKind << MinArgs 6042 << static_cast<unsigned>(Args.size()) 6043 << TC.getCorrectionRange()); 6044 } else if (MinArgs == 1 && FDecl && FDecl->getParamDecl(0)->getDeclName()) 6045 Diag(RParenLoc, 6046 MinArgs == NumParams && !Proto->isVariadic() 6047 ? diag::err_typecheck_call_too_few_args_one 6048 : diag::err_typecheck_call_too_few_args_at_least_one) 6049 << FnKind << FDecl->getParamDecl(0) << Fn->getSourceRange(); 6050 else 6051 Diag(RParenLoc, MinArgs == NumParams && !Proto->isVariadic() 6052 ? diag::err_typecheck_call_too_few_args 6053 : diag::err_typecheck_call_too_few_args_at_least) 6054 << FnKind << MinArgs << static_cast<unsigned>(Args.size()) 6055 << Fn->getSourceRange(); 6056 6057 // Emit the location of the prototype. 6058 if (!TC && FDecl && !FDecl->getBuiltinID() && !IsExecConfig) 6059 Diag(FDecl->getLocation(), diag::note_callee_decl) << FDecl; 6060 6061 return true; 6062 } 6063 // We reserve space for the default arguments when we create 6064 // the call expression, before calling ConvertArgumentsForCall. 6065 assert((Call->getNumArgs() == NumParams) && 6066 "We should have reserved space for the default arguments before!"); 6067 } 6068 6069 // If too many are passed and not variadic, error on the extras and drop 6070 // them. 6071 if (Args.size() > NumParams) { 6072 if (!Proto->isVariadic()) { 6073 TypoCorrection TC; 6074 if (FDecl && (TC = TryTypoCorrectionForCall(*this, Fn, FDecl, Args))) { 6075 unsigned diag_id = 6076 MinArgs == NumParams && !Proto->isVariadic() 6077 ? diag::err_typecheck_call_too_many_args_suggest 6078 : diag::err_typecheck_call_too_many_args_at_most_suggest; 6079 diagnoseTypo(TC, PDiag(diag_id) << FnKind << NumParams 6080 << static_cast<unsigned>(Args.size()) 6081 << TC.getCorrectionRange()); 6082 } else if (NumParams == 1 && FDecl && 6083 FDecl->getParamDecl(0)->getDeclName()) 6084 Diag(Args[NumParams]->getBeginLoc(), 6085 MinArgs == NumParams 6086 ? diag::err_typecheck_call_too_many_args_one 6087 : diag::err_typecheck_call_too_many_args_at_most_one) 6088 << FnKind << FDecl->getParamDecl(0) 6089 << static_cast<unsigned>(Args.size()) << Fn->getSourceRange() 6090 << SourceRange(Args[NumParams]->getBeginLoc(), 6091 Args.back()->getEndLoc()); 6092 else 6093 Diag(Args[NumParams]->getBeginLoc(), 6094 MinArgs == NumParams 6095 ? diag::err_typecheck_call_too_many_args 6096 : diag::err_typecheck_call_too_many_args_at_most) 6097 << FnKind << NumParams << static_cast<unsigned>(Args.size()) 6098 << Fn->getSourceRange() 6099 << SourceRange(Args[NumParams]->getBeginLoc(), 6100 Args.back()->getEndLoc()); 6101 6102 // Emit the location of the prototype. 6103 if (!TC && FDecl && !FDecl->getBuiltinID() && !IsExecConfig) 6104 Diag(FDecl->getLocation(), diag::note_callee_decl) << FDecl; 6105 6106 // This deletes the extra arguments. 6107 Call->shrinkNumArgs(NumParams); 6108 return true; 6109 } 6110 } 6111 SmallVector<Expr *, 8> AllArgs; 6112 VariadicCallType CallType = getVariadicCallType(FDecl, Proto, Fn); 6113 6114 Invalid = GatherArgumentsForCall(Call->getBeginLoc(), FDecl, Proto, 0, Args, 6115 AllArgs, CallType); 6116 if (Invalid) 6117 return true; 6118 unsigned TotalNumArgs = AllArgs.size(); 6119 for (unsigned i = 0; i < TotalNumArgs; ++i) 6120 Call->setArg(i, AllArgs[i]); 6121 6122 Call->computeDependence(); 6123 return false; 6124 } 6125 6126 bool Sema::GatherArgumentsForCall(SourceLocation CallLoc, FunctionDecl *FDecl, 6127 const FunctionProtoType *Proto, 6128 unsigned FirstParam, ArrayRef<Expr *> Args, 6129 SmallVectorImpl<Expr *> &AllArgs, 6130 VariadicCallType CallType, bool AllowExplicit, 6131 bool IsListInitialization) { 6132 unsigned NumParams = Proto->getNumParams(); 6133 bool Invalid = false; 6134 size_t ArgIx = 0; 6135 // Continue to check argument types (even if we have too few/many args). 6136 for (unsigned i = FirstParam; i < NumParams; i++) { 6137 QualType ProtoArgType = Proto->getParamType(i); 6138 6139 Expr *Arg; 6140 ParmVarDecl *Param = FDecl ? FDecl->getParamDecl(i) : nullptr; 6141 if (ArgIx < Args.size()) { 6142 Arg = Args[ArgIx++]; 6143 6144 if (RequireCompleteType(Arg->getBeginLoc(), ProtoArgType, 6145 diag::err_call_incomplete_argument, Arg)) 6146 return true; 6147 6148 // Strip the unbridged-cast placeholder expression off, if applicable. 6149 bool CFAudited = false; 6150 if (Arg->getType() == Context.ARCUnbridgedCastTy && 6151 FDecl && FDecl->hasAttr<CFAuditedTransferAttr>() && 6152 (!Param || !Param->hasAttr<CFConsumedAttr>())) 6153 Arg = stripARCUnbridgedCast(Arg); 6154 else if (getLangOpts().ObjCAutoRefCount && 6155 FDecl && FDecl->hasAttr<CFAuditedTransferAttr>() && 6156 (!Param || !Param->hasAttr<CFConsumedAttr>())) 6157 CFAudited = true; 6158 6159 if (Proto->getExtParameterInfo(i).isNoEscape() && 6160 ProtoArgType->isBlockPointerType()) 6161 if (auto *BE = dyn_cast<BlockExpr>(Arg->IgnoreParenNoopCasts(Context))) 6162 BE->getBlockDecl()->setDoesNotEscape(); 6163 6164 InitializedEntity Entity = 6165 Param ? InitializedEntity::InitializeParameter(Context, Param, 6166 ProtoArgType) 6167 : InitializedEntity::InitializeParameter( 6168 Context, ProtoArgType, Proto->isParamConsumed(i)); 6169 6170 // Remember that parameter belongs to a CF audited API. 6171 if (CFAudited) 6172 Entity.setParameterCFAudited(); 6173 6174 ExprResult ArgE = PerformCopyInitialization( 6175 Entity, SourceLocation(), Arg, IsListInitialization, AllowExplicit); 6176 if (ArgE.isInvalid()) 6177 return true; 6178 6179 Arg = ArgE.getAs<Expr>(); 6180 } else { 6181 assert(Param && "can't use default arguments without a known callee"); 6182 6183 ExprResult ArgExpr = BuildCXXDefaultArgExpr(CallLoc, FDecl, Param); 6184 if (ArgExpr.isInvalid()) 6185 return true; 6186 6187 Arg = ArgExpr.getAs<Expr>(); 6188 } 6189 6190 // Check for array bounds violations for each argument to the call. This 6191 // check only triggers warnings when the argument isn't a more complex Expr 6192 // with its own checking, such as a BinaryOperator. 6193 CheckArrayAccess(Arg); 6194 6195 // Check for violations of C99 static array rules (C99 6.7.5.3p7). 6196 CheckStaticArrayArgument(CallLoc, Param, Arg); 6197 6198 AllArgs.push_back(Arg); 6199 } 6200 6201 // If this is a variadic call, handle args passed through "...". 6202 if (CallType != VariadicDoesNotApply) { 6203 // Assume that extern "C" functions with variadic arguments that 6204 // return __unknown_anytype aren't *really* variadic. 6205 if (Proto->getReturnType() == Context.UnknownAnyTy && FDecl && 6206 FDecl->isExternC()) { 6207 for (Expr *A : Args.slice(ArgIx)) { 6208 QualType paramType; // ignored 6209 ExprResult arg = checkUnknownAnyArg(CallLoc, A, paramType); 6210 Invalid |= arg.isInvalid(); 6211 AllArgs.push_back(arg.get()); 6212 } 6213 6214 // Otherwise do argument promotion, (C99 6.5.2.2p7). 6215 } else { 6216 for (Expr *A : Args.slice(ArgIx)) { 6217 ExprResult Arg = DefaultVariadicArgumentPromotion(A, CallType, FDecl); 6218 Invalid |= Arg.isInvalid(); 6219 AllArgs.push_back(Arg.get()); 6220 } 6221 } 6222 6223 // Check for array bounds violations. 6224 for (Expr *A : Args.slice(ArgIx)) 6225 CheckArrayAccess(A); 6226 } 6227 return Invalid; 6228 } 6229 6230 static void DiagnoseCalleeStaticArrayParam(Sema &S, ParmVarDecl *PVD) { 6231 TypeLoc TL = PVD->getTypeSourceInfo()->getTypeLoc(); 6232 if (DecayedTypeLoc DTL = TL.getAs<DecayedTypeLoc>()) 6233 TL = DTL.getOriginalLoc(); 6234 if (ArrayTypeLoc ATL = TL.getAs<ArrayTypeLoc>()) 6235 S.Diag(PVD->getLocation(), diag::note_callee_static_array) 6236 << ATL.getLocalSourceRange(); 6237 } 6238 6239 /// CheckStaticArrayArgument - If the given argument corresponds to a static 6240 /// array parameter, check that it is non-null, and that if it is formed by 6241 /// array-to-pointer decay, the underlying array is sufficiently large. 6242 /// 6243 /// C99 6.7.5.3p7: If the keyword static also appears within the [ and ] of the 6244 /// array type derivation, then for each call to the function, the value of the 6245 /// corresponding actual argument shall provide access to the first element of 6246 /// an array with at least as many elements as specified by the size expression. 6247 void 6248 Sema::CheckStaticArrayArgument(SourceLocation CallLoc, 6249 ParmVarDecl *Param, 6250 const Expr *ArgExpr) { 6251 // Static array parameters are not supported in C++. 6252 if (!Param || getLangOpts().CPlusPlus) 6253 return; 6254 6255 QualType OrigTy = Param->getOriginalType(); 6256 6257 const ArrayType *AT = Context.getAsArrayType(OrigTy); 6258 if (!AT || AT->getSizeModifier() != ArrayType::Static) 6259 return; 6260 6261 if (ArgExpr->isNullPointerConstant(Context, 6262 Expr::NPC_NeverValueDependent)) { 6263 Diag(CallLoc, diag::warn_null_arg) << ArgExpr->getSourceRange(); 6264 DiagnoseCalleeStaticArrayParam(*this, Param); 6265 return; 6266 } 6267 6268 const ConstantArrayType *CAT = dyn_cast<ConstantArrayType>(AT); 6269 if (!CAT) 6270 return; 6271 6272 const ConstantArrayType *ArgCAT = 6273 Context.getAsConstantArrayType(ArgExpr->IgnoreParenCasts()->getType()); 6274 if (!ArgCAT) 6275 return; 6276 6277 if (getASTContext().hasSameUnqualifiedType(CAT->getElementType(), 6278 ArgCAT->getElementType())) { 6279 if (ArgCAT->getSize().ult(CAT->getSize())) { 6280 Diag(CallLoc, diag::warn_static_array_too_small) 6281 << ArgExpr->getSourceRange() 6282 << (unsigned)ArgCAT->getSize().getZExtValue() 6283 << (unsigned)CAT->getSize().getZExtValue() << 0; 6284 DiagnoseCalleeStaticArrayParam(*this, Param); 6285 } 6286 return; 6287 } 6288 6289 Optional<CharUnits> ArgSize = 6290 getASTContext().getTypeSizeInCharsIfKnown(ArgCAT); 6291 Optional<CharUnits> ParmSize = getASTContext().getTypeSizeInCharsIfKnown(CAT); 6292 if (ArgSize && ParmSize && *ArgSize < *ParmSize) { 6293 Diag(CallLoc, diag::warn_static_array_too_small) 6294 << ArgExpr->getSourceRange() << (unsigned)ArgSize->getQuantity() 6295 << (unsigned)ParmSize->getQuantity() << 1; 6296 DiagnoseCalleeStaticArrayParam(*this, Param); 6297 } 6298 } 6299 6300 /// Given a function expression of unknown-any type, try to rebuild it 6301 /// to have a function type. 6302 static ExprResult rebuildUnknownAnyFunction(Sema &S, Expr *fn); 6303 6304 /// Is the given type a placeholder that we need to lower out 6305 /// immediately during argument processing? 6306 static bool isPlaceholderToRemoveAsArg(QualType type) { 6307 // Placeholders are never sugared. 6308 const BuiltinType *placeholder = dyn_cast<BuiltinType>(type); 6309 if (!placeholder) return false; 6310 6311 switch (placeholder->getKind()) { 6312 // Ignore all the non-placeholder types. 6313 #define IMAGE_TYPE(ImgType, Id, SingletonId, Access, Suffix) \ 6314 case BuiltinType::Id: 6315 #include "clang/Basic/OpenCLImageTypes.def" 6316 #define EXT_OPAQUE_TYPE(ExtType, Id, Ext) \ 6317 case BuiltinType::Id: 6318 #include "clang/Basic/OpenCLExtensionTypes.def" 6319 // In practice we'll never use this, since all SVE types are sugared 6320 // via TypedefTypes rather than exposed directly as BuiltinTypes. 6321 #define SVE_TYPE(Name, Id, SingletonId) \ 6322 case BuiltinType::Id: 6323 #include "clang/Basic/AArch64SVEACLETypes.def" 6324 #define PPC_VECTOR_TYPE(Name, Id, Size) \ 6325 case BuiltinType::Id: 6326 #include "clang/Basic/PPCTypes.def" 6327 #define RVV_TYPE(Name, Id, SingletonId) case BuiltinType::Id: 6328 #include "clang/Basic/RISCVVTypes.def" 6329 #define PLACEHOLDER_TYPE(ID, SINGLETON_ID) 6330 #define BUILTIN_TYPE(ID, SINGLETON_ID) case BuiltinType::ID: 6331 #include "clang/AST/BuiltinTypes.def" 6332 return false; 6333 6334 // We cannot lower out overload sets; they might validly be resolved 6335 // by the call machinery. 6336 case BuiltinType::Overload: 6337 return false; 6338 6339 // Unbridged casts in ARC can be handled in some call positions and 6340 // should be left in place. 6341 case BuiltinType::ARCUnbridgedCast: 6342 return false; 6343 6344 // Pseudo-objects should be converted as soon as possible. 6345 case BuiltinType::PseudoObject: 6346 return true; 6347 6348 // The debugger mode could theoretically but currently does not try 6349 // to resolve unknown-typed arguments based on known parameter types. 6350 case BuiltinType::UnknownAny: 6351 return true; 6352 6353 // These are always invalid as call arguments and should be reported. 6354 case BuiltinType::BoundMember: 6355 case BuiltinType::BuiltinFn: 6356 case BuiltinType::IncompleteMatrixIdx: 6357 case BuiltinType::OMPArraySection: 6358 case BuiltinType::OMPArrayShaping: 6359 case BuiltinType::OMPIterator: 6360 return true; 6361 6362 } 6363 llvm_unreachable("bad builtin type kind"); 6364 } 6365 6366 /// Check an argument list for placeholders that we won't try to 6367 /// handle later. 6368 static bool checkArgsForPlaceholders(Sema &S, MultiExprArg args) { 6369 // Apply this processing to all the arguments at once instead of 6370 // dying at the first failure. 6371 bool hasInvalid = false; 6372 for (size_t i = 0, e = args.size(); i != e; i++) { 6373 if (isPlaceholderToRemoveAsArg(args[i]->getType())) { 6374 ExprResult result = S.CheckPlaceholderExpr(args[i]); 6375 if (result.isInvalid()) hasInvalid = true; 6376 else args[i] = result.get(); 6377 } 6378 } 6379 return hasInvalid; 6380 } 6381 6382 /// If a builtin function has a pointer argument with no explicit address 6383 /// space, then it should be able to accept a pointer to any address 6384 /// space as input. In order to do this, we need to replace the 6385 /// standard builtin declaration with one that uses the same address space 6386 /// as the call. 6387 /// 6388 /// \returns nullptr If this builtin is not a candidate for a rewrite i.e. 6389 /// it does not contain any pointer arguments without 6390 /// an address space qualifer. Otherwise the rewritten 6391 /// FunctionDecl is returned. 6392 /// TODO: Handle pointer return types. 6393 static FunctionDecl *rewriteBuiltinFunctionDecl(Sema *Sema, ASTContext &Context, 6394 FunctionDecl *FDecl, 6395 MultiExprArg ArgExprs) { 6396 6397 QualType DeclType = FDecl->getType(); 6398 const FunctionProtoType *FT = dyn_cast<FunctionProtoType>(DeclType); 6399 6400 if (!Context.BuiltinInfo.hasPtrArgsOrResult(FDecl->getBuiltinID()) || !FT || 6401 ArgExprs.size() < FT->getNumParams()) 6402 return nullptr; 6403 6404 bool NeedsNewDecl = false; 6405 unsigned i = 0; 6406 SmallVector<QualType, 8> OverloadParams; 6407 6408 for (QualType ParamType : FT->param_types()) { 6409 6410 // Convert array arguments to pointer to simplify type lookup. 6411 ExprResult ArgRes = 6412 Sema->DefaultFunctionArrayLvalueConversion(ArgExprs[i++]); 6413 if (ArgRes.isInvalid()) 6414 return nullptr; 6415 Expr *Arg = ArgRes.get(); 6416 QualType ArgType = Arg->getType(); 6417 if (!ParamType->isPointerType() || 6418 ParamType.hasAddressSpace() || 6419 !ArgType->isPointerType() || 6420 !ArgType->getPointeeType().hasAddressSpace()) { 6421 OverloadParams.push_back(ParamType); 6422 continue; 6423 } 6424 6425 QualType PointeeType = ParamType->getPointeeType(); 6426 if (PointeeType.hasAddressSpace()) 6427 continue; 6428 6429 NeedsNewDecl = true; 6430 LangAS AS = ArgType->getPointeeType().getAddressSpace(); 6431 6432 PointeeType = Context.getAddrSpaceQualType(PointeeType, AS); 6433 OverloadParams.push_back(Context.getPointerType(PointeeType)); 6434 } 6435 6436 if (!NeedsNewDecl) 6437 return nullptr; 6438 6439 FunctionProtoType::ExtProtoInfo EPI; 6440 EPI.Variadic = FT->isVariadic(); 6441 QualType OverloadTy = Context.getFunctionType(FT->getReturnType(), 6442 OverloadParams, EPI); 6443 DeclContext *Parent = FDecl->getParent(); 6444 FunctionDecl *OverloadDecl = FunctionDecl::Create( 6445 Context, Parent, FDecl->getLocation(), FDecl->getLocation(), 6446 FDecl->getIdentifier(), OverloadTy, 6447 /*TInfo=*/nullptr, SC_Extern, Sema->getCurFPFeatures().isFPConstrained(), 6448 false, 6449 /*hasPrototype=*/true); 6450 SmallVector<ParmVarDecl*, 16> Params; 6451 FT = cast<FunctionProtoType>(OverloadTy); 6452 for (unsigned i = 0, e = FT->getNumParams(); i != e; ++i) { 6453 QualType ParamType = FT->getParamType(i); 6454 ParmVarDecl *Parm = 6455 ParmVarDecl::Create(Context, OverloadDecl, SourceLocation(), 6456 SourceLocation(), nullptr, ParamType, 6457 /*TInfo=*/nullptr, SC_None, nullptr); 6458 Parm->setScopeInfo(0, i); 6459 Params.push_back(Parm); 6460 } 6461 OverloadDecl->setParams(Params); 6462 Sema->mergeDeclAttributes(OverloadDecl, FDecl); 6463 return OverloadDecl; 6464 } 6465 6466 static void checkDirectCallValidity(Sema &S, const Expr *Fn, 6467 FunctionDecl *Callee, 6468 MultiExprArg ArgExprs) { 6469 // `Callee` (when called with ArgExprs) may be ill-formed. enable_if (and 6470 // similar attributes) really don't like it when functions are called with an 6471 // invalid number of args. 6472 if (S.TooManyArguments(Callee->getNumParams(), ArgExprs.size(), 6473 /*PartialOverloading=*/false) && 6474 !Callee->isVariadic()) 6475 return; 6476 if (Callee->getMinRequiredArguments() > ArgExprs.size()) 6477 return; 6478 6479 if (const EnableIfAttr *Attr = 6480 S.CheckEnableIf(Callee, Fn->getBeginLoc(), ArgExprs, true)) { 6481 S.Diag(Fn->getBeginLoc(), 6482 isa<CXXMethodDecl>(Callee) 6483 ? diag::err_ovl_no_viable_member_function_in_call 6484 : diag::err_ovl_no_viable_function_in_call) 6485 << Callee << Callee->getSourceRange(); 6486 S.Diag(Callee->getLocation(), 6487 diag::note_ovl_candidate_disabled_by_function_cond_attr) 6488 << Attr->getCond()->getSourceRange() << Attr->getMessage(); 6489 return; 6490 } 6491 } 6492 6493 static bool enclosingClassIsRelatedToClassInWhichMembersWereFound( 6494 const UnresolvedMemberExpr *const UME, Sema &S) { 6495 6496 const auto GetFunctionLevelDCIfCXXClass = 6497 [](Sema &S) -> const CXXRecordDecl * { 6498 const DeclContext *const DC = S.getFunctionLevelDeclContext(); 6499 if (!DC || !DC->getParent()) 6500 return nullptr; 6501 6502 // If the call to some member function was made from within a member 6503 // function body 'M' return return 'M's parent. 6504 if (const auto *MD = dyn_cast<CXXMethodDecl>(DC)) 6505 return MD->getParent()->getCanonicalDecl(); 6506 // else the call was made from within a default member initializer of a 6507 // class, so return the class. 6508 if (const auto *RD = dyn_cast<CXXRecordDecl>(DC)) 6509 return RD->getCanonicalDecl(); 6510 return nullptr; 6511 }; 6512 // If our DeclContext is neither a member function nor a class (in the 6513 // case of a lambda in a default member initializer), we can't have an 6514 // enclosing 'this'. 6515 6516 const CXXRecordDecl *const CurParentClass = GetFunctionLevelDCIfCXXClass(S); 6517 if (!CurParentClass) 6518 return false; 6519 6520 // The naming class for implicit member functions call is the class in which 6521 // name lookup starts. 6522 const CXXRecordDecl *const NamingClass = 6523 UME->getNamingClass()->getCanonicalDecl(); 6524 assert(NamingClass && "Must have naming class even for implicit access"); 6525 6526 // If the unresolved member functions were found in a 'naming class' that is 6527 // related (either the same or derived from) to the class that contains the 6528 // member function that itself contained the implicit member access. 6529 6530 return CurParentClass == NamingClass || 6531 CurParentClass->isDerivedFrom(NamingClass); 6532 } 6533 6534 static void 6535 tryImplicitlyCaptureThisIfImplicitMemberFunctionAccessWithDependentArgs( 6536 Sema &S, const UnresolvedMemberExpr *const UME, SourceLocation CallLoc) { 6537 6538 if (!UME) 6539 return; 6540 6541 LambdaScopeInfo *const CurLSI = S.getCurLambda(); 6542 // Only try and implicitly capture 'this' within a C++ Lambda if it hasn't 6543 // already been captured, or if this is an implicit member function call (if 6544 // it isn't, an attempt to capture 'this' should already have been made). 6545 if (!CurLSI || CurLSI->ImpCaptureStyle == CurLSI->ImpCap_None || 6546 !UME->isImplicitAccess() || CurLSI->isCXXThisCaptured()) 6547 return; 6548 6549 // Check if the naming class in which the unresolved members were found is 6550 // related (same as or is a base of) to the enclosing class. 6551 6552 if (!enclosingClassIsRelatedToClassInWhichMembersWereFound(UME, S)) 6553 return; 6554 6555 6556 DeclContext *EnclosingFunctionCtx = S.CurContext->getParent()->getParent(); 6557 // If the enclosing function is not dependent, then this lambda is 6558 // capture ready, so if we can capture this, do so. 6559 if (!EnclosingFunctionCtx->isDependentContext()) { 6560 // If the current lambda and all enclosing lambdas can capture 'this' - 6561 // then go ahead and capture 'this' (since our unresolved overload set 6562 // contains at least one non-static member function). 6563 if (!S.CheckCXXThisCapture(CallLoc, /*Explcit*/ false, /*Diagnose*/ false)) 6564 S.CheckCXXThisCapture(CallLoc); 6565 } else if (S.CurContext->isDependentContext()) { 6566 // ... since this is an implicit member reference, that might potentially 6567 // involve a 'this' capture, mark 'this' for potential capture in 6568 // enclosing lambdas. 6569 if (CurLSI->ImpCaptureStyle != CurLSI->ImpCap_None) 6570 CurLSI->addPotentialThisCapture(CallLoc); 6571 } 6572 } 6573 6574 // Once a call is fully resolved, warn for unqualified calls to specific 6575 // C++ standard functions, like move and forward. 6576 static void DiagnosedUnqualifiedCallsToStdFunctions(Sema &S, CallExpr *Call) { 6577 // We are only checking unary move and forward so exit early here. 6578 if (Call->getNumArgs() != 1) 6579 return; 6580 6581 Expr *E = Call->getCallee()->IgnoreParenImpCasts(); 6582 if (!E || isa<UnresolvedLookupExpr>(E)) 6583 return; 6584 DeclRefExpr *DRE = dyn_cast_or_null<DeclRefExpr>(E); 6585 if (!DRE || !DRE->getLocation().isValid()) 6586 return; 6587 6588 if (DRE->getQualifier()) 6589 return; 6590 6591 const FunctionDecl *FD = Call->getDirectCallee(); 6592 if (!FD) 6593 return; 6594 6595 // Only warn for some functions deemed more frequent or problematic. 6596 unsigned BuiltinID = FD->getBuiltinID(); 6597 if (BuiltinID != Builtin::BImove && BuiltinID != Builtin::BIforward) 6598 return; 6599 6600 S.Diag(DRE->getLocation(), diag::warn_unqualified_call_to_std_cast_function) 6601 << FD->getQualifiedNameAsString() 6602 << FixItHint::CreateInsertion(DRE->getLocation(), "std::"); 6603 } 6604 6605 ExprResult Sema::ActOnCallExpr(Scope *Scope, Expr *Fn, SourceLocation LParenLoc, 6606 MultiExprArg ArgExprs, SourceLocation RParenLoc, 6607 Expr *ExecConfig) { 6608 ExprResult Call = 6609 BuildCallExpr(Scope, Fn, LParenLoc, ArgExprs, RParenLoc, ExecConfig, 6610 /*IsExecConfig=*/false, /*AllowRecovery=*/true); 6611 if (Call.isInvalid()) 6612 return Call; 6613 6614 // Diagnose uses of the C++20 "ADL-only template-id call" feature in earlier 6615 // language modes. 6616 if (auto *ULE = dyn_cast<UnresolvedLookupExpr>(Fn)) { 6617 if (ULE->hasExplicitTemplateArgs() && 6618 ULE->decls_begin() == ULE->decls_end()) { 6619 Diag(Fn->getExprLoc(), getLangOpts().CPlusPlus20 6620 ? diag::warn_cxx17_compat_adl_only_template_id 6621 : diag::ext_adl_only_template_id) 6622 << ULE->getName(); 6623 } 6624 } 6625 6626 if (LangOpts.OpenMP) 6627 Call = ActOnOpenMPCall(Call, Scope, LParenLoc, ArgExprs, RParenLoc, 6628 ExecConfig); 6629 if (LangOpts.CPlusPlus) { 6630 CallExpr *CE = dyn_cast<CallExpr>(Call.get()); 6631 if (CE) 6632 DiagnosedUnqualifiedCallsToStdFunctions(*this, CE); 6633 } 6634 return Call; 6635 } 6636 6637 /// BuildCallExpr - Handle a call to Fn with the specified array of arguments. 6638 /// This provides the location of the left/right parens and a list of comma 6639 /// locations. 6640 ExprResult Sema::BuildCallExpr(Scope *Scope, Expr *Fn, SourceLocation LParenLoc, 6641 MultiExprArg ArgExprs, SourceLocation RParenLoc, 6642 Expr *ExecConfig, bool IsExecConfig, 6643 bool AllowRecovery) { 6644 // Since this might be a postfix expression, get rid of ParenListExprs. 6645 ExprResult Result = MaybeConvertParenListExprToParenExpr(Scope, Fn); 6646 if (Result.isInvalid()) return ExprError(); 6647 Fn = Result.get(); 6648 6649 if (checkArgsForPlaceholders(*this, ArgExprs)) 6650 return ExprError(); 6651 6652 if (getLangOpts().CPlusPlus) { 6653 // If this is a pseudo-destructor expression, build the call immediately. 6654 if (isa<CXXPseudoDestructorExpr>(Fn)) { 6655 if (!ArgExprs.empty()) { 6656 // Pseudo-destructor calls should not have any arguments. 6657 Diag(Fn->getBeginLoc(), diag::err_pseudo_dtor_call_with_args) 6658 << FixItHint::CreateRemoval( 6659 SourceRange(ArgExprs.front()->getBeginLoc(), 6660 ArgExprs.back()->getEndLoc())); 6661 } 6662 6663 return CallExpr::Create(Context, Fn, /*Args=*/{}, Context.VoidTy, 6664 VK_PRValue, RParenLoc, CurFPFeatureOverrides()); 6665 } 6666 if (Fn->getType() == Context.PseudoObjectTy) { 6667 ExprResult result = CheckPlaceholderExpr(Fn); 6668 if (result.isInvalid()) return ExprError(); 6669 Fn = result.get(); 6670 } 6671 6672 // Determine whether this is a dependent call inside a C++ template, 6673 // in which case we won't do any semantic analysis now. 6674 if (Fn->isTypeDependent() || Expr::hasAnyTypeDependentArguments(ArgExprs)) { 6675 if (ExecConfig) { 6676 return CUDAKernelCallExpr::Create(Context, Fn, 6677 cast<CallExpr>(ExecConfig), ArgExprs, 6678 Context.DependentTy, VK_PRValue, 6679 RParenLoc, CurFPFeatureOverrides()); 6680 } else { 6681 6682 tryImplicitlyCaptureThisIfImplicitMemberFunctionAccessWithDependentArgs( 6683 *this, dyn_cast<UnresolvedMemberExpr>(Fn->IgnoreParens()), 6684 Fn->getBeginLoc()); 6685 6686 return CallExpr::Create(Context, Fn, ArgExprs, Context.DependentTy, 6687 VK_PRValue, RParenLoc, CurFPFeatureOverrides()); 6688 } 6689 } 6690 6691 // Determine whether this is a call to an object (C++ [over.call.object]). 6692 if (Fn->getType()->isRecordType()) 6693 return BuildCallToObjectOfClassType(Scope, Fn, LParenLoc, ArgExprs, 6694 RParenLoc); 6695 6696 if (Fn->getType() == Context.UnknownAnyTy) { 6697 ExprResult result = rebuildUnknownAnyFunction(*this, Fn); 6698 if (result.isInvalid()) return ExprError(); 6699 Fn = result.get(); 6700 } 6701 6702 if (Fn->getType() == Context.BoundMemberTy) { 6703 return BuildCallToMemberFunction(Scope, Fn, LParenLoc, ArgExprs, 6704 RParenLoc, ExecConfig, IsExecConfig, 6705 AllowRecovery); 6706 } 6707 } 6708 6709 // Check for overloaded calls. This can happen even in C due to extensions. 6710 if (Fn->getType() == Context.OverloadTy) { 6711 OverloadExpr::FindResult find = OverloadExpr::find(Fn); 6712 6713 // We aren't supposed to apply this logic if there's an '&' involved. 6714 if (!find.HasFormOfMemberPointer) { 6715 if (Expr::hasAnyTypeDependentArguments(ArgExprs)) 6716 return CallExpr::Create(Context, Fn, ArgExprs, Context.DependentTy, 6717 VK_PRValue, RParenLoc, CurFPFeatureOverrides()); 6718 OverloadExpr *ovl = find.Expression; 6719 if (UnresolvedLookupExpr *ULE = dyn_cast<UnresolvedLookupExpr>(ovl)) 6720 return BuildOverloadedCallExpr( 6721 Scope, Fn, ULE, LParenLoc, ArgExprs, RParenLoc, ExecConfig, 6722 /*AllowTypoCorrection=*/true, find.IsAddressOfOperand); 6723 return BuildCallToMemberFunction(Scope, Fn, LParenLoc, ArgExprs, 6724 RParenLoc, ExecConfig, IsExecConfig, 6725 AllowRecovery); 6726 } 6727 } 6728 6729 // If we're directly calling a function, get the appropriate declaration. 6730 if (Fn->getType() == Context.UnknownAnyTy) { 6731 ExprResult result = rebuildUnknownAnyFunction(*this, Fn); 6732 if (result.isInvalid()) return ExprError(); 6733 Fn = result.get(); 6734 } 6735 6736 Expr *NakedFn = Fn->IgnoreParens(); 6737 6738 bool CallingNDeclIndirectly = false; 6739 NamedDecl *NDecl = nullptr; 6740 if (UnaryOperator *UnOp = dyn_cast<UnaryOperator>(NakedFn)) { 6741 if (UnOp->getOpcode() == UO_AddrOf) { 6742 CallingNDeclIndirectly = true; 6743 NakedFn = UnOp->getSubExpr()->IgnoreParens(); 6744 } 6745 } 6746 6747 if (auto *DRE = dyn_cast<DeclRefExpr>(NakedFn)) { 6748 NDecl = DRE->getDecl(); 6749 6750 FunctionDecl *FDecl = dyn_cast<FunctionDecl>(NDecl); 6751 if (FDecl && FDecl->getBuiltinID()) { 6752 // Rewrite the function decl for this builtin by replacing parameters 6753 // with no explicit address space with the address space of the arguments 6754 // in ArgExprs. 6755 if ((FDecl = 6756 rewriteBuiltinFunctionDecl(this, Context, FDecl, ArgExprs))) { 6757 NDecl = FDecl; 6758 Fn = DeclRefExpr::Create( 6759 Context, FDecl->getQualifierLoc(), SourceLocation(), FDecl, false, 6760 SourceLocation(), FDecl->getType(), Fn->getValueKind(), FDecl, 6761 nullptr, DRE->isNonOdrUse()); 6762 } 6763 } 6764 } else if (isa<MemberExpr>(NakedFn)) 6765 NDecl = cast<MemberExpr>(NakedFn)->getMemberDecl(); 6766 6767 if (FunctionDecl *FD = dyn_cast_or_null<FunctionDecl>(NDecl)) { 6768 if (CallingNDeclIndirectly && !checkAddressOfFunctionIsAvailable( 6769 FD, /*Complain=*/true, Fn->getBeginLoc())) 6770 return ExprError(); 6771 6772 checkDirectCallValidity(*this, Fn, FD, ArgExprs); 6773 6774 // If this expression is a call to a builtin function in HIP device 6775 // compilation, allow a pointer-type argument to default address space to be 6776 // passed as a pointer-type parameter to a non-default address space. 6777 // If Arg is declared in the default address space and Param is declared 6778 // in a non-default address space, perform an implicit address space cast to 6779 // the parameter type. 6780 if (getLangOpts().HIP && getLangOpts().CUDAIsDevice && FD && 6781 FD->getBuiltinID()) { 6782 for (unsigned Idx = 0; Idx < FD->param_size(); ++Idx) { 6783 ParmVarDecl *Param = FD->getParamDecl(Idx); 6784 if (!ArgExprs[Idx] || !Param || !Param->getType()->isPointerType() || 6785 !ArgExprs[Idx]->getType()->isPointerType()) 6786 continue; 6787 6788 auto ParamAS = Param->getType()->getPointeeType().getAddressSpace(); 6789 auto ArgTy = ArgExprs[Idx]->getType(); 6790 auto ArgPtTy = ArgTy->getPointeeType(); 6791 auto ArgAS = ArgPtTy.getAddressSpace(); 6792 6793 // Add address space cast if target address spaces are different 6794 bool NeedImplicitASC = 6795 ParamAS != LangAS::Default && // Pointer params in generic AS don't need special handling. 6796 ( ArgAS == LangAS::Default || // We do allow implicit conversion from generic AS 6797 // or from specific AS which has target AS matching that of Param. 6798 getASTContext().getTargetAddressSpace(ArgAS) == getASTContext().getTargetAddressSpace(ParamAS)); 6799 if (!NeedImplicitASC) 6800 continue; 6801 6802 // First, ensure that the Arg is an RValue. 6803 if (ArgExprs[Idx]->isGLValue()) { 6804 ArgExprs[Idx] = ImplicitCastExpr::Create( 6805 Context, ArgExprs[Idx]->getType(), CK_NoOp, ArgExprs[Idx], 6806 nullptr, VK_PRValue, FPOptionsOverride()); 6807 } 6808 6809 // Construct a new arg type with address space of Param 6810 Qualifiers ArgPtQuals = ArgPtTy.getQualifiers(); 6811 ArgPtQuals.setAddressSpace(ParamAS); 6812 auto NewArgPtTy = 6813 Context.getQualifiedType(ArgPtTy.getUnqualifiedType(), ArgPtQuals); 6814 auto NewArgTy = 6815 Context.getQualifiedType(Context.getPointerType(NewArgPtTy), 6816 ArgTy.getQualifiers()); 6817 6818 // Finally perform an implicit address space cast 6819 ArgExprs[Idx] = ImpCastExprToType(ArgExprs[Idx], NewArgTy, 6820 CK_AddressSpaceConversion) 6821 .get(); 6822 } 6823 } 6824 } 6825 6826 if (Context.isDependenceAllowed() && 6827 (Fn->isTypeDependent() || Expr::hasAnyTypeDependentArguments(ArgExprs))) { 6828 assert(!getLangOpts().CPlusPlus); 6829 assert((Fn->containsErrors() || 6830 llvm::any_of(ArgExprs, 6831 [](clang::Expr *E) { return E->containsErrors(); })) && 6832 "should only occur in error-recovery path."); 6833 QualType ReturnType = 6834 llvm::isa_and_nonnull<FunctionDecl>(NDecl) 6835 ? cast<FunctionDecl>(NDecl)->getCallResultType() 6836 : Context.DependentTy; 6837 return CallExpr::Create(Context, Fn, ArgExprs, ReturnType, 6838 Expr::getValueKindForType(ReturnType), RParenLoc, 6839 CurFPFeatureOverrides()); 6840 } 6841 return BuildResolvedCallExpr(Fn, NDecl, LParenLoc, ArgExprs, RParenLoc, 6842 ExecConfig, IsExecConfig); 6843 } 6844 6845 /// BuildBuiltinCallExpr - Create a call to a builtin function specified by Id 6846 // with the specified CallArgs 6847 Expr *Sema::BuildBuiltinCallExpr(SourceLocation Loc, Builtin::ID Id, 6848 MultiExprArg CallArgs) { 6849 StringRef Name = Context.BuiltinInfo.getName(Id); 6850 LookupResult R(*this, &Context.Idents.get(Name), Loc, 6851 Sema::LookupOrdinaryName); 6852 LookupName(R, TUScope, /*AllowBuiltinCreation=*/true); 6853 6854 auto *BuiltInDecl = R.getAsSingle<FunctionDecl>(); 6855 assert(BuiltInDecl && "failed to find builtin declaration"); 6856 6857 ExprResult DeclRef = 6858 BuildDeclRefExpr(BuiltInDecl, BuiltInDecl->getType(), VK_LValue, Loc); 6859 assert(DeclRef.isUsable() && "Builtin reference cannot fail"); 6860 6861 ExprResult Call = 6862 BuildCallExpr(/*Scope=*/nullptr, DeclRef.get(), Loc, CallArgs, Loc); 6863 6864 assert(!Call.isInvalid() && "Call to builtin cannot fail!"); 6865 return Call.get(); 6866 } 6867 6868 /// Parse a __builtin_astype expression. 6869 /// 6870 /// __builtin_astype( value, dst type ) 6871 /// 6872 ExprResult Sema::ActOnAsTypeExpr(Expr *E, ParsedType ParsedDestTy, 6873 SourceLocation BuiltinLoc, 6874 SourceLocation RParenLoc) { 6875 QualType DstTy = GetTypeFromParser(ParsedDestTy); 6876 return BuildAsTypeExpr(E, DstTy, BuiltinLoc, RParenLoc); 6877 } 6878 6879 /// Create a new AsTypeExpr node (bitcast) from the arguments. 6880 ExprResult Sema::BuildAsTypeExpr(Expr *E, QualType DestTy, 6881 SourceLocation BuiltinLoc, 6882 SourceLocation RParenLoc) { 6883 ExprValueKind VK = VK_PRValue; 6884 ExprObjectKind OK = OK_Ordinary; 6885 QualType SrcTy = E->getType(); 6886 if (!SrcTy->isDependentType() && 6887 Context.getTypeSize(DestTy) != Context.getTypeSize(SrcTy)) 6888 return ExprError( 6889 Diag(BuiltinLoc, diag::err_invalid_astype_of_different_size) 6890 << DestTy << SrcTy << E->getSourceRange()); 6891 return new (Context) AsTypeExpr(E, DestTy, VK, OK, BuiltinLoc, RParenLoc); 6892 } 6893 6894 /// ActOnConvertVectorExpr - create a new convert-vector expression from the 6895 /// provided arguments. 6896 /// 6897 /// __builtin_convertvector( value, dst type ) 6898 /// 6899 ExprResult Sema::ActOnConvertVectorExpr(Expr *E, ParsedType ParsedDestTy, 6900 SourceLocation BuiltinLoc, 6901 SourceLocation RParenLoc) { 6902 TypeSourceInfo *TInfo; 6903 GetTypeFromParser(ParsedDestTy, &TInfo); 6904 return SemaConvertVectorExpr(E, TInfo, BuiltinLoc, RParenLoc); 6905 } 6906 6907 /// BuildResolvedCallExpr - Build a call to a resolved expression, 6908 /// i.e. an expression not of \p OverloadTy. The expression should 6909 /// unary-convert to an expression of function-pointer or 6910 /// block-pointer type. 6911 /// 6912 /// \param NDecl the declaration being called, if available 6913 ExprResult Sema::BuildResolvedCallExpr(Expr *Fn, NamedDecl *NDecl, 6914 SourceLocation LParenLoc, 6915 ArrayRef<Expr *> Args, 6916 SourceLocation RParenLoc, Expr *Config, 6917 bool IsExecConfig, ADLCallKind UsesADL) { 6918 FunctionDecl *FDecl = dyn_cast_or_null<FunctionDecl>(NDecl); 6919 unsigned BuiltinID = (FDecl ? FDecl->getBuiltinID() : 0); 6920 6921 // Functions with 'interrupt' attribute cannot be called directly. 6922 if (FDecl && FDecl->hasAttr<AnyX86InterruptAttr>()) { 6923 Diag(Fn->getExprLoc(), diag::err_anyx86_interrupt_called); 6924 return ExprError(); 6925 } 6926 6927 // Interrupt handlers don't save off the VFP regs automatically on ARM, 6928 // so there's some risk when calling out to non-interrupt handler functions 6929 // that the callee might not preserve them. This is easy to diagnose here, 6930 // but can be very challenging to debug. 6931 // Likewise, X86 interrupt handlers may only call routines with attribute 6932 // no_caller_saved_registers since there is no efficient way to 6933 // save and restore the non-GPR state. 6934 if (auto *Caller = getCurFunctionDecl()) { 6935 if (Caller->hasAttr<ARMInterruptAttr>()) { 6936 bool VFP = Context.getTargetInfo().hasFeature("vfp"); 6937 if (VFP && (!FDecl || !FDecl->hasAttr<ARMInterruptAttr>())) { 6938 Diag(Fn->getExprLoc(), diag::warn_arm_interrupt_calling_convention); 6939 if (FDecl) 6940 Diag(FDecl->getLocation(), diag::note_callee_decl) << FDecl; 6941 } 6942 } 6943 if (Caller->hasAttr<AnyX86InterruptAttr>() && 6944 ((!FDecl || !FDecl->hasAttr<AnyX86NoCallerSavedRegistersAttr>()))) { 6945 Diag(Fn->getExprLoc(), diag::warn_anyx86_interrupt_regsave); 6946 if (FDecl) 6947 Diag(FDecl->getLocation(), diag::note_callee_decl) << FDecl; 6948 } 6949 } 6950 6951 // Promote the function operand. 6952 // We special-case function promotion here because we only allow promoting 6953 // builtin functions to function pointers in the callee of a call. 6954 ExprResult Result; 6955 QualType ResultTy; 6956 if (BuiltinID && 6957 Fn->getType()->isSpecificBuiltinType(BuiltinType::BuiltinFn)) { 6958 // Extract the return type from the (builtin) function pointer type. 6959 // FIXME Several builtins still have setType in 6960 // Sema::CheckBuiltinFunctionCall. One should review their definitions in 6961 // Builtins.def to ensure they are correct before removing setType calls. 6962 QualType FnPtrTy = Context.getPointerType(FDecl->getType()); 6963 Result = ImpCastExprToType(Fn, FnPtrTy, CK_BuiltinFnToFnPtr).get(); 6964 ResultTy = FDecl->getCallResultType(); 6965 } else { 6966 Result = CallExprUnaryConversions(Fn); 6967 ResultTy = Context.BoolTy; 6968 } 6969 if (Result.isInvalid()) 6970 return ExprError(); 6971 Fn = Result.get(); 6972 6973 // Check for a valid function type, but only if it is not a builtin which 6974 // requires custom type checking. These will be handled by 6975 // CheckBuiltinFunctionCall below just after creation of the call expression. 6976 const FunctionType *FuncT = nullptr; 6977 if (!BuiltinID || !Context.BuiltinInfo.hasCustomTypechecking(BuiltinID)) { 6978 retry: 6979 if (const PointerType *PT = Fn->getType()->getAs<PointerType>()) { 6980 // C99 6.5.2.2p1 - "The expression that denotes the called function shall 6981 // have type pointer to function". 6982 FuncT = PT->getPointeeType()->getAs<FunctionType>(); 6983 if (!FuncT) 6984 return ExprError(Diag(LParenLoc, diag::err_typecheck_call_not_function) 6985 << Fn->getType() << Fn->getSourceRange()); 6986 } else if (const BlockPointerType *BPT = 6987 Fn->getType()->getAs<BlockPointerType>()) { 6988 FuncT = BPT->getPointeeType()->castAs<FunctionType>(); 6989 } else { 6990 // Handle calls to expressions of unknown-any type. 6991 if (Fn->getType() == Context.UnknownAnyTy) { 6992 ExprResult rewrite = rebuildUnknownAnyFunction(*this, Fn); 6993 if (rewrite.isInvalid()) 6994 return ExprError(); 6995 Fn = rewrite.get(); 6996 goto retry; 6997 } 6998 6999 return ExprError(Diag(LParenLoc, diag::err_typecheck_call_not_function) 7000 << Fn->getType() << Fn->getSourceRange()); 7001 } 7002 } 7003 7004 // Get the number of parameters in the function prototype, if any. 7005 // We will allocate space for max(Args.size(), NumParams) arguments 7006 // in the call expression. 7007 const auto *Proto = dyn_cast_or_null<FunctionProtoType>(FuncT); 7008 unsigned NumParams = Proto ? Proto->getNumParams() : 0; 7009 7010 CallExpr *TheCall; 7011 if (Config) { 7012 assert(UsesADL == ADLCallKind::NotADL && 7013 "CUDAKernelCallExpr should not use ADL"); 7014 TheCall = CUDAKernelCallExpr::Create(Context, Fn, cast<CallExpr>(Config), 7015 Args, ResultTy, VK_PRValue, RParenLoc, 7016 CurFPFeatureOverrides(), NumParams); 7017 } else { 7018 TheCall = 7019 CallExpr::Create(Context, Fn, Args, ResultTy, VK_PRValue, RParenLoc, 7020 CurFPFeatureOverrides(), NumParams, UsesADL); 7021 } 7022 7023 if (!Context.isDependenceAllowed()) { 7024 // Forget about the nulled arguments since typo correction 7025 // do not handle them well. 7026 TheCall->shrinkNumArgs(Args.size()); 7027 // C cannot always handle TypoExpr nodes in builtin calls and direct 7028 // function calls as their argument checking don't necessarily handle 7029 // dependent types properly, so make sure any TypoExprs have been 7030 // dealt with. 7031 ExprResult Result = CorrectDelayedTyposInExpr(TheCall); 7032 if (!Result.isUsable()) return ExprError(); 7033 CallExpr *TheOldCall = TheCall; 7034 TheCall = dyn_cast<CallExpr>(Result.get()); 7035 bool CorrectedTypos = TheCall != TheOldCall; 7036 if (!TheCall) return Result; 7037 Args = llvm::makeArrayRef(TheCall->getArgs(), TheCall->getNumArgs()); 7038 7039 // A new call expression node was created if some typos were corrected. 7040 // However it may not have been constructed with enough storage. In this 7041 // case, rebuild the node with enough storage. The waste of space is 7042 // immaterial since this only happens when some typos were corrected. 7043 if (CorrectedTypos && Args.size() < NumParams) { 7044 if (Config) 7045 TheCall = CUDAKernelCallExpr::Create( 7046 Context, Fn, cast<CallExpr>(Config), Args, ResultTy, VK_PRValue, 7047 RParenLoc, CurFPFeatureOverrides(), NumParams); 7048 else 7049 TheCall = 7050 CallExpr::Create(Context, Fn, Args, ResultTy, VK_PRValue, RParenLoc, 7051 CurFPFeatureOverrides(), NumParams, UsesADL); 7052 } 7053 // We can now handle the nulled arguments for the default arguments. 7054 TheCall->setNumArgsUnsafe(std::max<unsigned>(Args.size(), NumParams)); 7055 } 7056 7057 // Bail out early if calling a builtin with custom type checking. 7058 if (BuiltinID && Context.BuiltinInfo.hasCustomTypechecking(BuiltinID)) 7059 return CheckBuiltinFunctionCall(FDecl, BuiltinID, TheCall); 7060 7061 if (getLangOpts().CUDA) { 7062 if (Config) { 7063 // CUDA: Kernel calls must be to global functions 7064 if (FDecl && !FDecl->hasAttr<CUDAGlobalAttr>()) 7065 return ExprError(Diag(LParenLoc,diag::err_kern_call_not_global_function) 7066 << FDecl << Fn->getSourceRange()); 7067 7068 // CUDA: Kernel function must have 'void' return type 7069 if (!FuncT->getReturnType()->isVoidType() && 7070 !FuncT->getReturnType()->getAs<AutoType>() && 7071 !FuncT->getReturnType()->isInstantiationDependentType()) 7072 return ExprError(Diag(LParenLoc, diag::err_kern_type_not_void_return) 7073 << Fn->getType() << Fn->getSourceRange()); 7074 } else { 7075 // CUDA: Calls to global functions must be configured 7076 if (FDecl && FDecl->hasAttr<CUDAGlobalAttr>()) 7077 return ExprError(Diag(LParenLoc, diag::err_global_call_not_config) 7078 << FDecl << Fn->getSourceRange()); 7079 } 7080 } 7081 7082 // Check for a valid return type 7083 if (CheckCallReturnType(FuncT->getReturnType(), Fn->getBeginLoc(), TheCall, 7084 FDecl)) 7085 return ExprError(); 7086 7087 // We know the result type of the call, set it. 7088 TheCall->setType(FuncT->getCallResultType(Context)); 7089 TheCall->setValueKind(Expr::getValueKindForType(FuncT->getReturnType())); 7090 7091 if (Proto) { 7092 if (ConvertArgumentsForCall(TheCall, Fn, FDecl, Proto, Args, RParenLoc, 7093 IsExecConfig)) 7094 return ExprError(); 7095 } else { 7096 assert(isa<FunctionNoProtoType>(FuncT) && "Unknown FunctionType!"); 7097 7098 if (FDecl) { 7099 // Check if we have too few/too many template arguments, based 7100 // on our knowledge of the function definition. 7101 const FunctionDecl *Def = nullptr; 7102 if (FDecl->hasBody(Def) && Args.size() != Def->param_size()) { 7103 Proto = Def->getType()->getAs<FunctionProtoType>(); 7104 if (!Proto || !(Proto->isVariadic() && Args.size() >= Def->param_size())) 7105 Diag(RParenLoc, diag::warn_call_wrong_number_of_arguments) 7106 << (Args.size() > Def->param_size()) << FDecl << Fn->getSourceRange(); 7107 } 7108 7109 // If the function we're calling isn't a function prototype, but we have 7110 // a function prototype from a prior declaratiom, use that prototype. 7111 if (!FDecl->hasPrototype()) 7112 Proto = FDecl->getType()->getAs<FunctionProtoType>(); 7113 } 7114 7115 // If we still haven't found a prototype to use but there are arguments to 7116 // the call, diagnose this as calling a function without a prototype. 7117 // However, if we found a function declaration, check to see if 7118 // -Wdeprecated-non-prototype was disabled where the function was declared. 7119 // If so, we will silence the diagnostic here on the assumption that this 7120 // interface is intentional and the user knows what they're doing. We will 7121 // also silence the diagnostic if there is a function declaration but it 7122 // was implicitly defined (the user already gets diagnostics about the 7123 // creation of the implicit function declaration, so the additional warning 7124 // is not helpful). 7125 if (!Proto && !Args.empty() && 7126 (!FDecl || (!FDecl->isImplicit() && 7127 !Diags.isIgnored(diag::warn_strict_uses_without_prototype, 7128 FDecl->getLocation())))) 7129 Diag(LParenLoc, diag::warn_strict_uses_without_prototype) 7130 << (FDecl != nullptr) << FDecl; 7131 7132 // Promote the arguments (C99 6.5.2.2p6). 7133 for (unsigned i = 0, e = Args.size(); i != e; i++) { 7134 Expr *Arg = Args[i]; 7135 7136 if (Proto && i < Proto->getNumParams()) { 7137 InitializedEntity Entity = InitializedEntity::InitializeParameter( 7138 Context, Proto->getParamType(i), Proto->isParamConsumed(i)); 7139 ExprResult ArgE = 7140 PerformCopyInitialization(Entity, SourceLocation(), Arg); 7141 if (ArgE.isInvalid()) 7142 return true; 7143 7144 Arg = ArgE.getAs<Expr>(); 7145 7146 } else { 7147 ExprResult ArgE = DefaultArgumentPromotion(Arg); 7148 7149 if (ArgE.isInvalid()) 7150 return true; 7151 7152 Arg = ArgE.getAs<Expr>(); 7153 } 7154 7155 if (RequireCompleteType(Arg->getBeginLoc(), Arg->getType(), 7156 diag::err_call_incomplete_argument, Arg)) 7157 return ExprError(); 7158 7159 TheCall->setArg(i, Arg); 7160 } 7161 TheCall->computeDependence(); 7162 } 7163 7164 if (CXXMethodDecl *Method = dyn_cast_or_null<CXXMethodDecl>(FDecl)) 7165 if (!Method->isStatic()) 7166 return ExprError(Diag(LParenLoc, diag::err_member_call_without_object) 7167 << Fn->getSourceRange()); 7168 7169 // Check for sentinels 7170 if (NDecl) 7171 DiagnoseSentinelCalls(NDecl, LParenLoc, Args); 7172 7173 // Warn for unions passing across security boundary (CMSE). 7174 if (FuncT != nullptr && FuncT->getCmseNSCallAttr()) { 7175 for (unsigned i = 0, e = Args.size(); i != e; i++) { 7176 if (const auto *RT = 7177 dyn_cast<RecordType>(Args[i]->getType().getCanonicalType())) { 7178 if (RT->getDecl()->isOrContainsUnion()) 7179 Diag(Args[i]->getBeginLoc(), diag::warn_cmse_nonsecure_union) 7180 << 0 << i; 7181 } 7182 } 7183 } 7184 7185 // Do special checking on direct calls to functions. 7186 if (FDecl) { 7187 if (CheckFunctionCall(FDecl, TheCall, Proto)) 7188 return ExprError(); 7189 7190 checkFortifiedBuiltinMemoryFunction(FDecl, TheCall); 7191 7192 if (BuiltinID) 7193 return CheckBuiltinFunctionCall(FDecl, BuiltinID, TheCall); 7194 } else if (NDecl) { 7195 if (CheckPointerCall(NDecl, TheCall, Proto)) 7196 return ExprError(); 7197 } else { 7198 if (CheckOtherCall(TheCall, Proto)) 7199 return ExprError(); 7200 } 7201 7202 return CheckForImmediateInvocation(MaybeBindToTemporary(TheCall), FDecl); 7203 } 7204 7205 ExprResult 7206 Sema::ActOnCompoundLiteral(SourceLocation LParenLoc, ParsedType Ty, 7207 SourceLocation RParenLoc, Expr *InitExpr) { 7208 assert(Ty && "ActOnCompoundLiteral(): missing type"); 7209 assert(InitExpr && "ActOnCompoundLiteral(): missing expression"); 7210 7211 TypeSourceInfo *TInfo; 7212 QualType literalType = GetTypeFromParser(Ty, &TInfo); 7213 if (!TInfo) 7214 TInfo = Context.getTrivialTypeSourceInfo(literalType); 7215 7216 return BuildCompoundLiteralExpr(LParenLoc, TInfo, RParenLoc, InitExpr); 7217 } 7218 7219 ExprResult 7220 Sema::BuildCompoundLiteralExpr(SourceLocation LParenLoc, TypeSourceInfo *TInfo, 7221 SourceLocation RParenLoc, Expr *LiteralExpr) { 7222 QualType literalType = TInfo->getType(); 7223 7224 if (literalType->isArrayType()) { 7225 if (RequireCompleteSizedType( 7226 LParenLoc, Context.getBaseElementType(literalType), 7227 diag::err_array_incomplete_or_sizeless_type, 7228 SourceRange(LParenLoc, LiteralExpr->getSourceRange().getEnd()))) 7229 return ExprError(); 7230 if (literalType->isVariableArrayType()) { 7231 if (!tryToFixVariablyModifiedVarType(TInfo, literalType, LParenLoc, 7232 diag::err_variable_object_no_init)) { 7233 return ExprError(); 7234 } 7235 } 7236 } else if (!literalType->isDependentType() && 7237 RequireCompleteType(LParenLoc, literalType, 7238 diag::err_typecheck_decl_incomplete_type, 7239 SourceRange(LParenLoc, LiteralExpr->getSourceRange().getEnd()))) 7240 return ExprError(); 7241 7242 InitializedEntity Entity 7243 = InitializedEntity::InitializeCompoundLiteralInit(TInfo); 7244 InitializationKind Kind 7245 = InitializationKind::CreateCStyleCast(LParenLoc, 7246 SourceRange(LParenLoc, RParenLoc), 7247 /*InitList=*/true); 7248 InitializationSequence InitSeq(*this, Entity, Kind, LiteralExpr); 7249 ExprResult Result = InitSeq.Perform(*this, Entity, Kind, LiteralExpr, 7250 &literalType); 7251 if (Result.isInvalid()) 7252 return ExprError(); 7253 LiteralExpr = Result.get(); 7254 7255 bool isFileScope = !CurContext->isFunctionOrMethod(); 7256 7257 // In C, compound literals are l-values for some reason. 7258 // For GCC compatibility, in C++, file-scope array compound literals with 7259 // constant initializers are also l-values, and compound literals are 7260 // otherwise prvalues. 7261 // 7262 // (GCC also treats C++ list-initialized file-scope array prvalues with 7263 // constant initializers as l-values, but that's non-conforming, so we don't 7264 // follow it there.) 7265 // 7266 // FIXME: It would be better to handle the lvalue cases as materializing and 7267 // lifetime-extending a temporary object, but our materialized temporaries 7268 // representation only supports lifetime extension from a variable, not "out 7269 // of thin air". 7270 // FIXME: For C++, we might want to instead lifetime-extend only if a pointer 7271 // is bound to the result of applying array-to-pointer decay to the compound 7272 // literal. 7273 // FIXME: GCC supports compound literals of reference type, which should 7274 // obviously have a value kind derived from the kind of reference involved. 7275 ExprValueKind VK = 7276 (getLangOpts().CPlusPlus && !(isFileScope && literalType->isArrayType())) 7277 ? VK_PRValue 7278 : VK_LValue; 7279 7280 if (isFileScope) 7281 if (auto ILE = dyn_cast<InitListExpr>(LiteralExpr)) 7282 for (unsigned i = 0, j = ILE->getNumInits(); i != j; i++) { 7283 Expr *Init = ILE->getInit(i); 7284 ILE->setInit(i, ConstantExpr::Create(Context, Init)); 7285 } 7286 7287 auto *E = new (Context) CompoundLiteralExpr(LParenLoc, TInfo, literalType, 7288 VK, LiteralExpr, isFileScope); 7289 if (isFileScope) { 7290 if (!LiteralExpr->isTypeDependent() && 7291 !LiteralExpr->isValueDependent() && 7292 !literalType->isDependentType()) // C99 6.5.2.5p3 7293 if (CheckForConstantInitializer(LiteralExpr, literalType)) 7294 return ExprError(); 7295 } else if (literalType.getAddressSpace() != LangAS::opencl_private && 7296 literalType.getAddressSpace() != LangAS::Default) { 7297 // Embedded-C extensions to C99 6.5.2.5: 7298 // "If the compound literal occurs inside the body of a function, the 7299 // type name shall not be qualified by an address-space qualifier." 7300 Diag(LParenLoc, diag::err_compound_literal_with_address_space) 7301 << SourceRange(LParenLoc, LiteralExpr->getSourceRange().getEnd()); 7302 return ExprError(); 7303 } 7304 7305 if (!isFileScope && !getLangOpts().CPlusPlus) { 7306 // Compound literals that have automatic storage duration are destroyed at 7307 // the end of the scope in C; in C++, they're just temporaries. 7308 7309 // Emit diagnostics if it is or contains a C union type that is non-trivial 7310 // to destruct. 7311 if (E->getType().hasNonTrivialToPrimitiveDestructCUnion()) 7312 checkNonTrivialCUnion(E->getType(), E->getExprLoc(), 7313 NTCUC_CompoundLiteral, NTCUK_Destruct); 7314 7315 // Diagnose jumps that enter or exit the lifetime of the compound literal. 7316 if (literalType.isDestructedType()) { 7317 Cleanup.setExprNeedsCleanups(true); 7318 ExprCleanupObjects.push_back(E); 7319 getCurFunction()->setHasBranchProtectedScope(); 7320 } 7321 } 7322 7323 if (E->getType().hasNonTrivialToPrimitiveDefaultInitializeCUnion() || 7324 E->getType().hasNonTrivialToPrimitiveCopyCUnion()) 7325 checkNonTrivialCUnionInInitializer(E->getInitializer(), 7326 E->getInitializer()->getExprLoc()); 7327 7328 return MaybeBindToTemporary(E); 7329 } 7330 7331 ExprResult 7332 Sema::ActOnInitList(SourceLocation LBraceLoc, MultiExprArg InitArgList, 7333 SourceLocation RBraceLoc) { 7334 // Only produce each kind of designated initialization diagnostic once. 7335 SourceLocation FirstDesignator; 7336 bool DiagnosedArrayDesignator = false; 7337 bool DiagnosedNestedDesignator = false; 7338 bool DiagnosedMixedDesignator = false; 7339 7340 // Check that any designated initializers are syntactically valid in the 7341 // current language mode. 7342 for (unsigned I = 0, E = InitArgList.size(); I != E; ++I) { 7343 if (auto *DIE = dyn_cast<DesignatedInitExpr>(InitArgList[I])) { 7344 if (FirstDesignator.isInvalid()) 7345 FirstDesignator = DIE->getBeginLoc(); 7346 7347 if (!getLangOpts().CPlusPlus) 7348 break; 7349 7350 if (!DiagnosedNestedDesignator && DIE->size() > 1) { 7351 DiagnosedNestedDesignator = true; 7352 Diag(DIE->getBeginLoc(), diag::ext_designated_init_nested) 7353 << DIE->getDesignatorsSourceRange(); 7354 } 7355 7356 for (auto &Desig : DIE->designators()) { 7357 if (!Desig.isFieldDesignator() && !DiagnosedArrayDesignator) { 7358 DiagnosedArrayDesignator = true; 7359 Diag(Desig.getBeginLoc(), diag::ext_designated_init_array) 7360 << Desig.getSourceRange(); 7361 } 7362 } 7363 7364 if (!DiagnosedMixedDesignator && 7365 !isa<DesignatedInitExpr>(InitArgList[0])) { 7366 DiagnosedMixedDesignator = true; 7367 Diag(DIE->getBeginLoc(), diag::ext_designated_init_mixed) 7368 << DIE->getSourceRange(); 7369 Diag(InitArgList[0]->getBeginLoc(), diag::note_designated_init_mixed) 7370 << InitArgList[0]->getSourceRange(); 7371 } 7372 } else if (getLangOpts().CPlusPlus && !DiagnosedMixedDesignator && 7373 isa<DesignatedInitExpr>(InitArgList[0])) { 7374 DiagnosedMixedDesignator = true; 7375 auto *DIE = cast<DesignatedInitExpr>(InitArgList[0]); 7376 Diag(DIE->getBeginLoc(), diag::ext_designated_init_mixed) 7377 << DIE->getSourceRange(); 7378 Diag(InitArgList[I]->getBeginLoc(), diag::note_designated_init_mixed) 7379 << InitArgList[I]->getSourceRange(); 7380 } 7381 } 7382 7383 if (FirstDesignator.isValid()) { 7384 // Only diagnose designated initiaization as a C++20 extension if we didn't 7385 // already diagnose use of (non-C++20) C99 designator syntax. 7386 if (getLangOpts().CPlusPlus && !DiagnosedArrayDesignator && 7387 !DiagnosedNestedDesignator && !DiagnosedMixedDesignator) { 7388 Diag(FirstDesignator, getLangOpts().CPlusPlus20 7389 ? diag::warn_cxx17_compat_designated_init 7390 : diag::ext_cxx_designated_init); 7391 } else if (!getLangOpts().CPlusPlus && !getLangOpts().C99) { 7392 Diag(FirstDesignator, diag::ext_designated_init); 7393 } 7394 } 7395 7396 return BuildInitList(LBraceLoc, InitArgList, RBraceLoc); 7397 } 7398 7399 ExprResult 7400 Sema::BuildInitList(SourceLocation LBraceLoc, MultiExprArg InitArgList, 7401 SourceLocation RBraceLoc) { 7402 // Semantic analysis for initializers is done by ActOnDeclarator() and 7403 // CheckInitializer() - it requires knowledge of the object being initialized. 7404 7405 // Immediately handle non-overload placeholders. Overloads can be 7406 // resolved contextually, but everything else here can't. 7407 for (unsigned I = 0, E = InitArgList.size(); I != E; ++I) { 7408 if (InitArgList[I]->getType()->isNonOverloadPlaceholderType()) { 7409 ExprResult result = CheckPlaceholderExpr(InitArgList[I]); 7410 7411 // Ignore failures; dropping the entire initializer list because 7412 // of one failure would be terrible for indexing/etc. 7413 if (result.isInvalid()) continue; 7414 7415 InitArgList[I] = result.get(); 7416 } 7417 } 7418 7419 InitListExpr *E = new (Context) InitListExpr(Context, LBraceLoc, InitArgList, 7420 RBraceLoc); 7421 E->setType(Context.VoidTy); // FIXME: just a place holder for now. 7422 return E; 7423 } 7424 7425 /// Do an explicit extend of the given block pointer if we're in ARC. 7426 void Sema::maybeExtendBlockObject(ExprResult &E) { 7427 assert(E.get()->getType()->isBlockPointerType()); 7428 assert(E.get()->isPRValue()); 7429 7430 // Only do this in an r-value context. 7431 if (!getLangOpts().ObjCAutoRefCount) return; 7432 7433 E = ImplicitCastExpr::Create( 7434 Context, E.get()->getType(), CK_ARCExtendBlockObject, E.get(), 7435 /*base path*/ nullptr, VK_PRValue, FPOptionsOverride()); 7436 Cleanup.setExprNeedsCleanups(true); 7437 } 7438 7439 /// Prepare a conversion of the given expression to an ObjC object 7440 /// pointer type. 7441 CastKind Sema::PrepareCastToObjCObjectPointer(ExprResult &E) { 7442 QualType type = E.get()->getType(); 7443 if (type->isObjCObjectPointerType()) { 7444 return CK_BitCast; 7445 } else if (type->isBlockPointerType()) { 7446 maybeExtendBlockObject(E); 7447 return CK_BlockPointerToObjCPointerCast; 7448 } else { 7449 assert(type->isPointerType()); 7450 return CK_CPointerToObjCPointerCast; 7451 } 7452 } 7453 7454 /// Prepares for a scalar cast, performing all the necessary stages 7455 /// except the final cast and returning the kind required. 7456 CastKind Sema::PrepareScalarCast(ExprResult &Src, QualType DestTy) { 7457 // Both Src and Dest are scalar types, i.e. arithmetic or pointer. 7458 // Also, callers should have filtered out the invalid cases with 7459 // pointers. Everything else should be possible. 7460 7461 QualType SrcTy = Src.get()->getType(); 7462 if (Context.hasSameUnqualifiedType(SrcTy, DestTy)) 7463 return CK_NoOp; 7464 7465 switch (Type::ScalarTypeKind SrcKind = SrcTy->getScalarTypeKind()) { 7466 case Type::STK_MemberPointer: 7467 llvm_unreachable("member pointer type in C"); 7468 7469 case Type::STK_CPointer: 7470 case Type::STK_BlockPointer: 7471 case Type::STK_ObjCObjectPointer: 7472 switch (DestTy->getScalarTypeKind()) { 7473 case Type::STK_CPointer: { 7474 LangAS SrcAS = SrcTy->getPointeeType().getAddressSpace(); 7475 LangAS DestAS = DestTy->getPointeeType().getAddressSpace(); 7476 if (SrcAS != DestAS) 7477 return CK_AddressSpaceConversion; 7478 if (Context.hasCvrSimilarType(SrcTy, DestTy)) 7479 return CK_NoOp; 7480 return CK_BitCast; 7481 } 7482 case Type::STK_BlockPointer: 7483 return (SrcKind == Type::STK_BlockPointer 7484 ? CK_BitCast : CK_AnyPointerToBlockPointerCast); 7485 case Type::STK_ObjCObjectPointer: 7486 if (SrcKind == Type::STK_ObjCObjectPointer) 7487 return CK_BitCast; 7488 if (SrcKind == Type::STK_CPointer) 7489 return CK_CPointerToObjCPointerCast; 7490 maybeExtendBlockObject(Src); 7491 return CK_BlockPointerToObjCPointerCast; 7492 case Type::STK_Bool: 7493 return CK_PointerToBoolean; 7494 case Type::STK_Integral: 7495 return CK_PointerToIntegral; 7496 case Type::STK_Floating: 7497 case Type::STK_FloatingComplex: 7498 case Type::STK_IntegralComplex: 7499 case Type::STK_MemberPointer: 7500 case Type::STK_FixedPoint: 7501 llvm_unreachable("illegal cast from pointer"); 7502 } 7503 llvm_unreachable("Should have returned before this"); 7504 7505 case Type::STK_FixedPoint: 7506 switch (DestTy->getScalarTypeKind()) { 7507 case Type::STK_FixedPoint: 7508 return CK_FixedPointCast; 7509 case Type::STK_Bool: 7510 return CK_FixedPointToBoolean; 7511 case Type::STK_Integral: 7512 return CK_FixedPointToIntegral; 7513 case Type::STK_Floating: 7514 return CK_FixedPointToFloating; 7515 case Type::STK_IntegralComplex: 7516 case Type::STK_FloatingComplex: 7517 Diag(Src.get()->getExprLoc(), 7518 diag::err_unimplemented_conversion_with_fixed_point_type) 7519 << DestTy; 7520 return CK_IntegralCast; 7521 case Type::STK_CPointer: 7522 case Type::STK_ObjCObjectPointer: 7523 case Type::STK_BlockPointer: 7524 case Type::STK_MemberPointer: 7525 llvm_unreachable("illegal cast to pointer type"); 7526 } 7527 llvm_unreachable("Should have returned before this"); 7528 7529 case Type::STK_Bool: // casting from bool is like casting from an integer 7530 case Type::STK_Integral: 7531 switch (DestTy->getScalarTypeKind()) { 7532 case Type::STK_CPointer: 7533 case Type::STK_ObjCObjectPointer: 7534 case Type::STK_BlockPointer: 7535 if (Src.get()->isNullPointerConstant(Context, 7536 Expr::NPC_ValueDependentIsNull)) 7537 return CK_NullToPointer; 7538 return CK_IntegralToPointer; 7539 case Type::STK_Bool: 7540 return CK_IntegralToBoolean; 7541 case Type::STK_Integral: 7542 return CK_IntegralCast; 7543 case Type::STK_Floating: 7544 return CK_IntegralToFloating; 7545 case Type::STK_IntegralComplex: 7546 Src = ImpCastExprToType(Src.get(), 7547 DestTy->castAs<ComplexType>()->getElementType(), 7548 CK_IntegralCast); 7549 return CK_IntegralRealToComplex; 7550 case Type::STK_FloatingComplex: 7551 Src = ImpCastExprToType(Src.get(), 7552 DestTy->castAs<ComplexType>()->getElementType(), 7553 CK_IntegralToFloating); 7554 return CK_FloatingRealToComplex; 7555 case Type::STK_MemberPointer: 7556 llvm_unreachable("member pointer type in C"); 7557 case Type::STK_FixedPoint: 7558 return CK_IntegralToFixedPoint; 7559 } 7560 llvm_unreachable("Should have returned before this"); 7561 7562 case Type::STK_Floating: 7563 switch (DestTy->getScalarTypeKind()) { 7564 case Type::STK_Floating: 7565 return CK_FloatingCast; 7566 case Type::STK_Bool: 7567 return CK_FloatingToBoolean; 7568 case Type::STK_Integral: 7569 return CK_FloatingToIntegral; 7570 case Type::STK_FloatingComplex: 7571 Src = ImpCastExprToType(Src.get(), 7572 DestTy->castAs<ComplexType>()->getElementType(), 7573 CK_FloatingCast); 7574 return CK_FloatingRealToComplex; 7575 case Type::STK_IntegralComplex: 7576 Src = ImpCastExprToType(Src.get(), 7577 DestTy->castAs<ComplexType>()->getElementType(), 7578 CK_FloatingToIntegral); 7579 return CK_IntegralRealToComplex; 7580 case Type::STK_CPointer: 7581 case Type::STK_ObjCObjectPointer: 7582 case Type::STK_BlockPointer: 7583 llvm_unreachable("valid float->pointer cast?"); 7584 case Type::STK_MemberPointer: 7585 llvm_unreachable("member pointer type in C"); 7586 case Type::STK_FixedPoint: 7587 return CK_FloatingToFixedPoint; 7588 } 7589 llvm_unreachable("Should have returned before this"); 7590 7591 case Type::STK_FloatingComplex: 7592 switch (DestTy->getScalarTypeKind()) { 7593 case Type::STK_FloatingComplex: 7594 return CK_FloatingComplexCast; 7595 case Type::STK_IntegralComplex: 7596 return CK_FloatingComplexToIntegralComplex; 7597 case Type::STK_Floating: { 7598 QualType ET = SrcTy->castAs<ComplexType>()->getElementType(); 7599 if (Context.hasSameType(ET, DestTy)) 7600 return CK_FloatingComplexToReal; 7601 Src = ImpCastExprToType(Src.get(), ET, CK_FloatingComplexToReal); 7602 return CK_FloatingCast; 7603 } 7604 case Type::STK_Bool: 7605 return CK_FloatingComplexToBoolean; 7606 case Type::STK_Integral: 7607 Src = ImpCastExprToType(Src.get(), 7608 SrcTy->castAs<ComplexType>()->getElementType(), 7609 CK_FloatingComplexToReal); 7610 return CK_FloatingToIntegral; 7611 case Type::STK_CPointer: 7612 case Type::STK_ObjCObjectPointer: 7613 case Type::STK_BlockPointer: 7614 llvm_unreachable("valid complex float->pointer cast?"); 7615 case Type::STK_MemberPointer: 7616 llvm_unreachable("member pointer type in C"); 7617 case Type::STK_FixedPoint: 7618 Diag(Src.get()->getExprLoc(), 7619 diag::err_unimplemented_conversion_with_fixed_point_type) 7620 << SrcTy; 7621 return CK_IntegralCast; 7622 } 7623 llvm_unreachable("Should have returned before this"); 7624 7625 case Type::STK_IntegralComplex: 7626 switch (DestTy->getScalarTypeKind()) { 7627 case Type::STK_FloatingComplex: 7628 return CK_IntegralComplexToFloatingComplex; 7629 case Type::STK_IntegralComplex: 7630 return CK_IntegralComplexCast; 7631 case Type::STK_Integral: { 7632 QualType ET = SrcTy->castAs<ComplexType>()->getElementType(); 7633 if (Context.hasSameType(ET, DestTy)) 7634 return CK_IntegralComplexToReal; 7635 Src = ImpCastExprToType(Src.get(), ET, CK_IntegralComplexToReal); 7636 return CK_IntegralCast; 7637 } 7638 case Type::STK_Bool: 7639 return CK_IntegralComplexToBoolean; 7640 case Type::STK_Floating: 7641 Src = ImpCastExprToType(Src.get(), 7642 SrcTy->castAs<ComplexType>()->getElementType(), 7643 CK_IntegralComplexToReal); 7644 return CK_IntegralToFloating; 7645 case Type::STK_CPointer: 7646 case Type::STK_ObjCObjectPointer: 7647 case Type::STK_BlockPointer: 7648 llvm_unreachable("valid complex int->pointer cast?"); 7649 case Type::STK_MemberPointer: 7650 llvm_unreachable("member pointer type in C"); 7651 case Type::STK_FixedPoint: 7652 Diag(Src.get()->getExprLoc(), 7653 diag::err_unimplemented_conversion_with_fixed_point_type) 7654 << SrcTy; 7655 return CK_IntegralCast; 7656 } 7657 llvm_unreachable("Should have returned before this"); 7658 } 7659 7660 llvm_unreachable("Unhandled scalar cast"); 7661 } 7662 7663 static bool breakDownVectorType(QualType type, uint64_t &len, 7664 QualType &eltType) { 7665 // Vectors are simple. 7666 if (const VectorType *vecType = type->getAs<VectorType>()) { 7667 len = vecType->getNumElements(); 7668 eltType = vecType->getElementType(); 7669 assert(eltType->isScalarType()); 7670 return true; 7671 } 7672 7673 // We allow lax conversion to and from non-vector types, but only if 7674 // they're real types (i.e. non-complex, non-pointer scalar types). 7675 if (!type->isRealType()) return false; 7676 7677 len = 1; 7678 eltType = type; 7679 return true; 7680 } 7681 7682 /// Are the two types SVE-bitcast-compatible types? I.e. is bitcasting from the 7683 /// first SVE type (e.g. an SVE VLAT) to the second type (e.g. an SVE VLST) 7684 /// allowed? 7685 /// 7686 /// This will also return false if the two given types do not make sense from 7687 /// the perspective of SVE bitcasts. 7688 bool Sema::isValidSveBitcast(QualType srcTy, QualType destTy) { 7689 assert(srcTy->isVectorType() || destTy->isVectorType()); 7690 7691 auto ValidScalableConversion = [](QualType FirstType, QualType SecondType) { 7692 if (!FirstType->isSizelessBuiltinType()) 7693 return false; 7694 7695 const auto *VecTy = SecondType->getAs<VectorType>(); 7696 return VecTy && 7697 VecTy->getVectorKind() == VectorType::SveFixedLengthDataVector; 7698 }; 7699 7700 return ValidScalableConversion(srcTy, destTy) || 7701 ValidScalableConversion(destTy, srcTy); 7702 } 7703 7704 /// Are the two types matrix types and do they have the same dimensions i.e. 7705 /// do they have the same number of rows and the same number of columns? 7706 bool Sema::areMatrixTypesOfTheSameDimension(QualType srcTy, QualType destTy) { 7707 if (!destTy->isMatrixType() || !srcTy->isMatrixType()) 7708 return false; 7709 7710 const ConstantMatrixType *matSrcType = srcTy->getAs<ConstantMatrixType>(); 7711 const ConstantMatrixType *matDestType = destTy->getAs<ConstantMatrixType>(); 7712 7713 return matSrcType->getNumRows() == matDestType->getNumRows() && 7714 matSrcType->getNumColumns() == matDestType->getNumColumns(); 7715 } 7716 7717 bool Sema::areVectorTypesSameSize(QualType SrcTy, QualType DestTy) { 7718 assert(DestTy->isVectorType() || SrcTy->isVectorType()); 7719 7720 uint64_t SrcLen, DestLen; 7721 QualType SrcEltTy, DestEltTy; 7722 if (!breakDownVectorType(SrcTy, SrcLen, SrcEltTy)) 7723 return false; 7724 if (!breakDownVectorType(DestTy, DestLen, DestEltTy)) 7725 return false; 7726 7727 // ASTContext::getTypeSize will return the size rounded up to a 7728 // power of 2, so instead of using that, we need to use the raw 7729 // element size multiplied by the element count. 7730 uint64_t SrcEltSize = Context.getTypeSize(SrcEltTy); 7731 uint64_t DestEltSize = Context.getTypeSize(DestEltTy); 7732 7733 return (SrcLen * SrcEltSize == DestLen * DestEltSize); 7734 } 7735 7736 /// Are the two types lax-compatible vector types? That is, given 7737 /// that one of them is a vector, do they have equal storage sizes, 7738 /// where the storage size is the number of elements times the element 7739 /// size? 7740 /// 7741 /// This will also return false if either of the types is neither a 7742 /// vector nor a real type. 7743 bool Sema::areLaxCompatibleVectorTypes(QualType srcTy, QualType destTy) { 7744 assert(destTy->isVectorType() || srcTy->isVectorType()); 7745 7746 // Disallow lax conversions between scalars and ExtVectors (these 7747 // conversions are allowed for other vector types because common headers 7748 // depend on them). Most scalar OP ExtVector cases are handled by the 7749 // splat path anyway, which does what we want (convert, not bitcast). 7750 // What this rules out for ExtVectors is crazy things like char4*float. 7751 if (srcTy->isScalarType() && destTy->isExtVectorType()) return false; 7752 if (destTy->isScalarType() && srcTy->isExtVectorType()) return false; 7753 7754 return areVectorTypesSameSize(srcTy, destTy); 7755 } 7756 7757 /// Is this a legal conversion between two types, one of which is 7758 /// known to be a vector type? 7759 bool Sema::isLaxVectorConversion(QualType srcTy, QualType destTy) { 7760 assert(destTy->isVectorType() || srcTy->isVectorType()); 7761 7762 switch (Context.getLangOpts().getLaxVectorConversions()) { 7763 case LangOptions::LaxVectorConversionKind::None: 7764 return false; 7765 7766 case LangOptions::LaxVectorConversionKind::Integer: 7767 if (!srcTy->isIntegralOrEnumerationType()) { 7768 auto *Vec = srcTy->getAs<VectorType>(); 7769 if (!Vec || !Vec->getElementType()->isIntegralOrEnumerationType()) 7770 return false; 7771 } 7772 if (!destTy->isIntegralOrEnumerationType()) { 7773 auto *Vec = destTy->getAs<VectorType>(); 7774 if (!Vec || !Vec->getElementType()->isIntegralOrEnumerationType()) 7775 return false; 7776 } 7777 // OK, integer (vector) -> integer (vector) bitcast. 7778 break; 7779 7780 case LangOptions::LaxVectorConversionKind::All: 7781 break; 7782 } 7783 7784 return areLaxCompatibleVectorTypes(srcTy, destTy); 7785 } 7786 7787 bool Sema::CheckMatrixCast(SourceRange R, QualType DestTy, QualType SrcTy, 7788 CastKind &Kind) { 7789 if (SrcTy->isMatrixType() && DestTy->isMatrixType()) { 7790 if (!areMatrixTypesOfTheSameDimension(SrcTy, DestTy)) { 7791 return Diag(R.getBegin(), diag::err_invalid_conversion_between_matrixes) 7792 << DestTy << SrcTy << R; 7793 } 7794 } else if (SrcTy->isMatrixType()) { 7795 return Diag(R.getBegin(), 7796 diag::err_invalid_conversion_between_matrix_and_type) 7797 << SrcTy << DestTy << R; 7798 } else if (DestTy->isMatrixType()) { 7799 return Diag(R.getBegin(), 7800 diag::err_invalid_conversion_between_matrix_and_type) 7801 << DestTy << SrcTy << R; 7802 } 7803 7804 Kind = CK_MatrixCast; 7805 return false; 7806 } 7807 7808 bool Sema::CheckVectorCast(SourceRange R, QualType VectorTy, QualType Ty, 7809 CastKind &Kind) { 7810 assert(VectorTy->isVectorType() && "Not a vector type!"); 7811 7812 if (Ty->isVectorType() || Ty->isIntegralType(Context)) { 7813 if (!areLaxCompatibleVectorTypes(Ty, VectorTy)) 7814 return Diag(R.getBegin(), 7815 Ty->isVectorType() ? 7816 diag::err_invalid_conversion_between_vectors : 7817 diag::err_invalid_conversion_between_vector_and_integer) 7818 << VectorTy << Ty << R; 7819 } else 7820 return Diag(R.getBegin(), 7821 diag::err_invalid_conversion_between_vector_and_scalar) 7822 << VectorTy << Ty << R; 7823 7824 Kind = CK_BitCast; 7825 return false; 7826 } 7827 7828 ExprResult Sema::prepareVectorSplat(QualType VectorTy, Expr *SplattedExpr) { 7829 QualType DestElemTy = VectorTy->castAs<VectorType>()->getElementType(); 7830 7831 if (DestElemTy == SplattedExpr->getType()) 7832 return SplattedExpr; 7833 7834 assert(DestElemTy->isFloatingType() || 7835 DestElemTy->isIntegralOrEnumerationType()); 7836 7837 CastKind CK; 7838 if (VectorTy->isExtVectorType() && SplattedExpr->getType()->isBooleanType()) { 7839 // OpenCL requires that we convert `true` boolean expressions to -1, but 7840 // only when splatting vectors. 7841 if (DestElemTy->isFloatingType()) { 7842 // To avoid having to have a CK_BooleanToSignedFloating cast kind, we cast 7843 // in two steps: boolean to signed integral, then to floating. 7844 ExprResult CastExprRes = ImpCastExprToType(SplattedExpr, Context.IntTy, 7845 CK_BooleanToSignedIntegral); 7846 SplattedExpr = CastExprRes.get(); 7847 CK = CK_IntegralToFloating; 7848 } else { 7849 CK = CK_BooleanToSignedIntegral; 7850 } 7851 } else { 7852 ExprResult CastExprRes = SplattedExpr; 7853 CK = PrepareScalarCast(CastExprRes, DestElemTy); 7854 if (CastExprRes.isInvalid()) 7855 return ExprError(); 7856 SplattedExpr = CastExprRes.get(); 7857 } 7858 return ImpCastExprToType(SplattedExpr, DestElemTy, CK); 7859 } 7860 7861 ExprResult Sema::CheckExtVectorCast(SourceRange R, QualType DestTy, 7862 Expr *CastExpr, CastKind &Kind) { 7863 assert(DestTy->isExtVectorType() && "Not an extended vector type!"); 7864 7865 QualType SrcTy = CastExpr->getType(); 7866 7867 // If SrcTy is a VectorType, the total size must match to explicitly cast to 7868 // an ExtVectorType. 7869 // In OpenCL, casts between vectors of different types are not allowed. 7870 // (See OpenCL 6.2). 7871 if (SrcTy->isVectorType()) { 7872 if (!areLaxCompatibleVectorTypes(SrcTy, DestTy) || 7873 (getLangOpts().OpenCL && 7874 !Context.hasSameUnqualifiedType(DestTy, SrcTy))) { 7875 Diag(R.getBegin(),diag::err_invalid_conversion_between_ext_vectors) 7876 << DestTy << SrcTy << R; 7877 return ExprError(); 7878 } 7879 Kind = CK_BitCast; 7880 return CastExpr; 7881 } 7882 7883 // All non-pointer scalars can be cast to ExtVector type. The appropriate 7884 // conversion will take place first from scalar to elt type, and then 7885 // splat from elt type to vector. 7886 if (SrcTy->isPointerType()) 7887 return Diag(R.getBegin(), 7888 diag::err_invalid_conversion_between_vector_and_scalar) 7889 << DestTy << SrcTy << R; 7890 7891 Kind = CK_VectorSplat; 7892 return prepareVectorSplat(DestTy, CastExpr); 7893 } 7894 7895 ExprResult 7896 Sema::ActOnCastExpr(Scope *S, SourceLocation LParenLoc, 7897 Declarator &D, ParsedType &Ty, 7898 SourceLocation RParenLoc, Expr *CastExpr) { 7899 assert(!D.isInvalidType() && (CastExpr != nullptr) && 7900 "ActOnCastExpr(): missing type or expr"); 7901 7902 TypeSourceInfo *castTInfo = GetTypeForDeclaratorCast(D, CastExpr->getType()); 7903 if (D.isInvalidType()) 7904 return ExprError(); 7905 7906 if (getLangOpts().CPlusPlus) { 7907 // Check that there are no default arguments (C++ only). 7908 CheckExtraCXXDefaultArguments(D); 7909 } else { 7910 // Make sure any TypoExprs have been dealt with. 7911 ExprResult Res = CorrectDelayedTyposInExpr(CastExpr); 7912 if (!Res.isUsable()) 7913 return ExprError(); 7914 CastExpr = Res.get(); 7915 } 7916 7917 checkUnusedDeclAttributes(D); 7918 7919 QualType castType = castTInfo->getType(); 7920 Ty = CreateParsedType(castType, castTInfo); 7921 7922 bool isVectorLiteral = false; 7923 7924 // Check for an altivec or OpenCL literal, 7925 // i.e. all the elements are integer constants. 7926 ParenExpr *PE = dyn_cast<ParenExpr>(CastExpr); 7927 ParenListExpr *PLE = dyn_cast<ParenListExpr>(CastExpr); 7928 if ((getLangOpts().AltiVec || getLangOpts().ZVector || getLangOpts().OpenCL) 7929 && castType->isVectorType() && (PE || PLE)) { 7930 if (PLE && PLE->getNumExprs() == 0) { 7931 Diag(PLE->getExprLoc(), diag::err_altivec_empty_initializer); 7932 return ExprError(); 7933 } 7934 if (PE || PLE->getNumExprs() == 1) { 7935 Expr *E = (PE ? PE->getSubExpr() : PLE->getExpr(0)); 7936 if (!E->isTypeDependent() && !E->getType()->isVectorType()) 7937 isVectorLiteral = true; 7938 } 7939 else 7940 isVectorLiteral = true; 7941 } 7942 7943 // If this is a vector initializer, '(' type ')' '(' init, ..., init ')' 7944 // then handle it as such. 7945 if (isVectorLiteral) 7946 return BuildVectorLiteral(LParenLoc, RParenLoc, CastExpr, castTInfo); 7947 7948 // If the Expr being casted is a ParenListExpr, handle it specially. 7949 // This is not an AltiVec-style cast, so turn the ParenListExpr into a 7950 // sequence of BinOp comma operators. 7951 if (isa<ParenListExpr>(CastExpr)) { 7952 ExprResult Result = MaybeConvertParenListExprToParenExpr(S, CastExpr); 7953 if (Result.isInvalid()) return ExprError(); 7954 CastExpr = Result.get(); 7955 } 7956 7957 if (getLangOpts().CPlusPlus && !castType->isVoidType()) 7958 Diag(LParenLoc, diag::warn_old_style_cast) << CastExpr->getSourceRange(); 7959 7960 CheckTollFreeBridgeCast(castType, CastExpr); 7961 7962 CheckObjCBridgeRelatedCast(castType, CastExpr); 7963 7964 DiscardMisalignedMemberAddress(castType.getTypePtr(), CastExpr); 7965 7966 return BuildCStyleCastExpr(LParenLoc, castTInfo, RParenLoc, CastExpr); 7967 } 7968 7969 ExprResult Sema::BuildVectorLiteral(SourceLocation LParenLoc, 7970 SourceLocation RParenLoc, Expr *E, 7971 TypeSourceInfo *TInfo) { 7972 assert((isa<ParenListExpr>(E) || isa<ParenExpr>(E)) && 7973 "Expected paren or paren list expression"); 7974 7975 Expr **exprs; 7976 unsigned numExprs; 7977 Expr *subExpr; 7978 SourceLocation LiteralLParenLoc, LiteralRParenLoc; 7979 if (ParenListExpr *PE = dyn_cast<ParenListExpr>(E)) { 7980 LiteralLParenLoc = PE->getLParenLoc(); 7981 LiteralRParenLoc = PE->getRParenLoc(); 7982 exprs = PE->getExprs(); 7983 numExprs = PE->getNumExprs(); 7984 } else { // isa<ParenExpr> by assertion at function entrance 7985 LiteralLParenLoc = cast<ParenExpr>(E)->getLParen(); 7986 LiteralRParenLoc = cast<ParenExpr>(E)->getRParen(); 7987 subExpr = cast<ParenExpr>(E)->getSubExpr(); 7988 exprs = &subExpr; 7989 numExprs = 1; 7990 } 7991 7992 QualType Ty = TInfo->getType(); 7993 assert(Ty->isVectorType() && "Expected vector type"); 7994 7995 SmallVector<Expr *, 8> initExprs; 7996 const VectorType *VTy = Ty->castAs<VectorType>(); 7997 unsigned numElems = VTy->getNumElements(); 7998 7999 // '(...)' form of vector initialization in AltiVec: the number of 8000 // initializers must be one or must match the size of the vector. 8001 // If a single value is specified in the initializer then it will be 8002 // replicated to all the components of the vector 8003 if (CheckAltivecInitFromScalar(E->getSourceRange(), Ty, 8004 VTy->getElementType())) 8005 return ExprError(); 8006 if (ShouldSplatAltivecScalarInCast(VTy)) { 8007 // The number of initializers must be one or must match the size of the 8008 // vector. If a single value is specified in the initializer then it will 8009 // be replicated to all the components of the vector 8010 if (numExprs == 1) { 8011 QualType ElemTy = VTy->getElementType(); 8012 ExprResult Literal = DefaultLvalueConversion(exprs[0]); 8013 if (Literal.isInvalid()) 8014 return ExprError(); 8015 Literal = ImpCastExprToType(Literal.get(), ElemTy, 8016 PrepareScalarCast(Literal, ElemTy)); 8017 return BuildCStyleCastExpr(LParenLoc, TInfo, RParenLoc, Literal.get()); 8018 } 8019 else if (numExprs < numElems) { 8020 Diag(E->getExprLoc(), 8021 diag::err_incorrect_number_of_vector_initializers); 8022 return ExprError(); 8023 } 8024 else 8025 initExprs.append(exprs, exprs + numExprs); 8026 } 8027 else { 8028 // For OpenCL, when the number of initializers is a single value, 8029 // it will be replicated to all components of the vector. 8030 if (getLangOpts().OpenCL && 8031 VTy->getVectorKind() == VectorType::GenericVector && 8032 numExprs == 1) { 8033 QualType ElemTy = VTy->getElementType(); 8034 ExprResult Literal = DefaultLvalueConversion(exprs[0]); 8035 if (Literal.isInvalid()) 8036 return ExprError(); 8037 Literal = ImpCastExprToType(Literal.get(), ElemTy, 8038 PrepareScalarCast(Literal, ElemTy)); 8039 return BuildCStyleCastExpr(LParenLoc, TInfo, RParenLoc, Literal.get()); 8040 } 8041 8042 initExprs.append(exprs, exprs + numExprs); 8043 } 8044 // FIXME: This means that pretty-printing the final AST will produce curly 8045 // braces instead of the original commas. 8046 InitListExpr *initE = new (Context) InitListExpr(Context, LiteralLParenLoc, 8047 initExprs, LiteralRParenLoc); 8048 initE->setType(Ty); 8049 return BuildCompoundLiteralExpr(LParenLoc, TInfo, RParenLoc, initE); 8050 } 8051 8052 /// This is not an AltiVec-style cast or or C++ direct-initialization, so turn 8053 /// the ParenListExpr into a sequence of comma binary operators. 8054 ExprResult 8055 Sema::MaybeConvertParenListExprToParenExpr(Scope *S, Expr *OrigExpr) { 8056 ParenListExpr *E = dyn_cast<ParenListExpr>(OrigExpr); 8057 if (!E) 8058 return OrigExpr; 8059 8060 ExprResult Result(E->getExpr(0)); 8061 8062 for (unsigned i = 1, e = E->getNumExprs(); i != e && !Result.isInvalid(); ++i) 8063 Result = ActOnBinOp(S, E->getExprLoc(), tok::comma, Result.get(), 8064 E->getExpr(i)); 8065 8066 if (Result.isInvalid()) return ExprError(); 8067 8068 return ActOnParenExpr(E->getLParenLoc(), E->getRParenLoc(), Result.get()); 8069 } 8070 8071 ExprResult Sema::ActOnParenListExpr(SourceLocation L, 8072 SourceLocation R, 8073 MultiExprArg Val) { 8074 return ParenListExpr::Create(Context, L, Val, R); 8075 } 8076 8077 /// Emit a specialized diagnostic when one expression is a null pointer 8078 /// constant and the other is not a pointer. Returns true if a diagnostic is 8079 /// emitted. 8080 bool Sema::DiagnoseConditionalForNull(Expr *LHSExpr, Expr *RHSExpr, 8081 SourceLocation QuestionLoc) { 8082 Expr *NullExpr = LHSExpr; 8083 Expr *NonPointerExpr = RHSExpr; 8084 Expr::NullPointerConstantKind NullKind = 8085 NullExpr->isNullPointerConstant(Context, 8086 Expr::NPC_ValueDependentIsNotNull); 8087 8088 if (NullKind == Expr::NPCK_NotNull) { 8089 NullExpr = RHSExpr; 8090 NonPointerExpr = LHSExpr; 8091 NullKind = 8092 NullExpr->isNullPointerConstant(Context, 8093 Expr::NPC_ValueDependentIsNotNull); 8094 } 8095 8096 if (NullKind == Expr::NPCK_NotNull) 8097 return false; 8098 8099 if (NullKind == Expr::NPCK_ZeroExpression) 8100 return false; 8101 8102 if (NullKind == Expr::NPCK_ZeroLiteral) { 8103 // In this case, check to make sure that we got here from a "NULL" 8104 // string in the source code. 8105 NullExpr = NullExpr->IgnoreParenImpCasts(); 8106 SourceLocation loc = NullExpr->getExprLoc(); 8107 if (!findMacroSpelling(loc, "NULL")) 8108 return false; 8109 } 8110 8111 int DiagType = (NullKind == Expr::NPCK_CXX11_nullptr); 8112 Diag(QuestionLoc, diag::err_typecheck_cond_incompatible_operands_null) 8113 << NonPointerExpr->getType() << DiagType 8114 << NonPointerExpr->getSourceRange(); 8115 return true; 8116 } 8117 8118 /// Return false if the condition expression is valid, true otherwise. 8119 static bool checkCondition(Sema &S, Expr *Cond, SourceLocation QuestionLoc) { 8120 QualType CondTy = Cond->getType(); 8121 8122 // OpenCL v1.1 s6.3.i says the condition cannot be a floating point type. 8123 if (S.getLangOpts().OpenCL && CondTy->isFloatingType()) { 8124 S.Diag(QuestionLoc, diag::err_typecheck_cond_expect_nonfloat) 8125 << CondTy << Cond->getSourceRange(); 8126 return true; 8127 } 8128 8129 // C99 6.5.15p2 8130 if (CondTy->isScalarType()) return false; 8131 8132 S.Diag(QuestionLoc, diag::err_typecheck_cond_expect_scalar) 8133 << CondTy << Cond->getSourceRange(); 8134 return true; 8135 } 8136 8137 /// Handle when one or both operands are void type. 8138 static QualType checkConditionalVoidType(Sema &S, ExprResult &LHS, 8139 ExprResult &RHS) { 8140 Expr *LHSExpr = LHS.get(); 8141 Expr *RHSExpr = RHS.get(); 8142 8143 if (!LHSExpr->getType()->isVoidType()) 8144 S.Diag(RHSExpr->getBeginLoc(), diag::ext_typecheck_cond_one_void) 8145 << RHSExpr->getSourceRange(); 8146 if (!RHSExpr->getType()->isVoidType()) 8147 S.Diag(LHSExpr->getBeginLoc(), diag::ext_typecheck_cond_one_void) 8148 << LHSExpr->getSourceRange(); 8149 LHS = S.ImpCastExprToType(LHS.get(), S.Context.VoidTy, CK_ToVoid); 8150 RHS = S.ImpCastExprToType(RHS.get(), S.Context.VoidTy, CK_ToVoid); 8151 return S.Context.VoidTy; 8152 } 8153 8154 /// Return false if the NullExpr can be promoted to PointerTy, 8155 /// true otherwise. 8156 static bool checkConditionalNullPointer(Sema &S, ExprResult &NullExpr, 8157 QualType PointerTy) { 8158 if ((!PointerTy->isAnyPointerType() && !PointerTy->isBlockPointerType()) || 8159 !NullExpr.get()->isNullPointerConstant(S.Context, 8160 Expr::NPC_ValueDependentIsNull)) 8161 return true; 8162 8163 NullExpr = S.ImpCastExprToType(NullExpr.get(), PointerTy, CK_NullToPointer); 8164 return false; 8165 } 8166 8167 /// Checks compatibility between two pointers and return the resulting 8168 /// type. 8169 static QualType checkConditionalPointerCompatibility(Sema &S, ExprResult &LHS, 8170 ExprResult &RHS, 8171 SourceLocation Loc) { 8172 QualType LHSTy = LHS.get()->getType(); 8173 QualType RHSTy = RHS.get()->getType(); 8174 8175 if (S.Context.hasSameType(LHSTy, RHSTy)) { 8176 // Two identical pointers types are always compatible. 8177 return LHSTy; 8178 } 8179 8180 QualType lhptee, rhptee; 8181 8182 // Get the pointee types. 8183 bool IsBlockPointer = false; 8184 if (const BlockPointerType *LHSBTy = LHSTy->getAs<BlockPointerType>()) { 8185 lhptee = LHSBTy->getPointeeType(); 8186 rhptee = RHSTy->castAs<BlockPointerType>()->getPointeeType(); 8187 IsBlockPointer = true; 8188 } else { 8189 lhptee = LHSTy->castAs<PointerType>()->getPointeeType(); 8190 rhptee = RHSTy->castAs<PointerType>()->getPointeeType(); 8191 } 8192 8193 // C99 6.5.15p6: If both operands are pointers to compatible types or to 8194 // differently qualified versions of compatible types, the result type is 8195 // a pointer to an appropriately qualified version of the composite 8196 // type. 8197 8198 // Only CVR-qualifiers exist in the standard, and the differently-qualified 8199 // clause doesn't make sense for our extensions. E.g. address space 2 should 8200 // be incompatible with address space 3: they may live on different devices or 8201 // anything. 8202 Qualifiers lhQual = lhptee.getQualifiers(); 8203 Qualifiers rhQual = rhptee.getQualifiers(); 8204 8205 LangAS ResultAddrSpace = LangAS::Default; 8206 LangAS LAddrSpace = lhQual.getAddressSpace(); 8207 LangAS RAddrSpace = rhQual.getAddressSpace(); 8208 8209 // OpenCL v1.1 s6.5 - Conversion between pointers to distinct address 8210 // spaces is disallowed. 8211 if (lhQual.isAddressSpaceSupersetOf(rhQual)) 8212 ResultAddrSpace = LAddrSpace; 8213 else if (rhQual.isAddressSpaceSupersetOf(lhQual)) 8214 ResultAddrSpace = RAddrSpace; 8215 else { 8216 S.Diag(Loc, diag::err_typecheck_op_on_nonoverlapping_address_space_pointers) 8217 << LHSTy << RHSTy << 2 << LHS.get()->getSourceRange() 8218 << RHS.get()->getSourceRange(); 8219 return QualType(); 8220 } 8221 8222 unsigned MergedCVRQual = lhQual.getCVRQualifiers() | rhQual.getCVRQualifiers(); 8223 auto LHSCastKind = CK_BitCast, RHSCastKind = CK_BitCast; 8224 lhQual.removeCVRQualifiers(); 8225 rhQual.removeCVRQualifiers(); 8226 8227 // OpenCL v2.0 specification doesn't extend compatibility of type qualifiers 8228 // (C99 6.7.3) for address spaces. We assume that the check should behave in 8229 // the same manner as it's defined for CVR qualifiers, so for OpenCL two 8230 // qual types are compatible iff 8231 // * corresponded types are compatible 8232 // * CVR qualifiers are equal 8233 // * address spaces are equal 8234 // Thus for conditional operator we merge CVR and address space unqualified 8235 // pointees and if there is a composite type we return a pointer to it with 8236 // merged qualifiers. 8237 LHSCastKind = 8238 LAddrSpace == ResultAddrSpace ? CK_BitCast : CK_AddressSpaceConversion; 8239 RHSCastKind = 8240 RAddrSpace == ResultAddrSpace ? CK_BitCast : CK_AddressSpaceConversion; 8241 lhQual.removeAddressSpace(); 8242 rhQual.removeAddressSpace(); 8243 8244 lhptee = S.Context.getQualifiedType(lhptee.getUnqualifiedType(), lhQual); 8245 rhptee = S.Context.getQualifiedType(rhptee.getUnqualifiedType(), rhQual); 8246 8247 QualType CompositeTy = S.Context.mergeTypes(lhptee, rhptee); 8248 8249 if (CompositeTy.isNull()) { 8250 // In this situation, we assume void* type. No especially good 8251 // reason, but this is what gcc does, and we do have to pick 8252 // to get a consistent AST. 8253 QualType incompatTy; 8254 incompatTy = S.Context.getPointerType( 8255 S.Context.getAddrSpaceQualType(S.Context.VoidTy, ResultAddrSpace)); 8256 LHS = S.ImpCastExprToType(LHS.get(), incompatTy, LHSCastKind); 8257 RHS = S.ImpCastExprToType(RHS.get(), incompatTy, RHSCastKind); 8258 8259 // FIXME: For OpenCL the warning emission and cast to void* leaves a room 8260 // for casts between types with incompatible address space qualifiers. 8261 // For the following code the compiler produces casts between global and 8262 // local address spaces of the corresponded innermost pointees: 8263 // local int *global *a; 8264 // global int *global *b; 8265 // a = (0 ? a : b); // see C99 6.5.16.1.p1. 8266 S.Diag(Loc, diag::ext_typecheck_cond_incompatible_pointers) 8267 << LHSTy << RHSTy << LHS.get()->getSourceRange() 8268 << RHS.get()->getSourceRange(); 8269 8270 return incompatTy; 8271 } 8272 8273 // The pointer types are compatible. 8274 // In case of OpenCL ResultTy should have the address space qualifier 8275 // which is a superset of address spaces of both the 2nd and the 3rd 8276 // operands of the conditional operator. 8277 QualType ResultTy = [&, ResultAddrSpace]() { 8278 if (S.getLangOpts().OpenCL) { 8279 Qualifiers CompositeQuals = CompositeTy.getQualifiers(); 8280 CompositeQuals.setAddressSpace(ResultAddrSpace); 8281 return S.Context 8282 .getQualifiedType(CompositeTy.getUnqualifiedType(), CompositeQuals) 8283 .withCVRQualifiers(MergedCVRQual); 8284 } 8285 return CompositeTy.withCVRQualifiers(MergedCVRQual); 8286 }(); 8287 if (IsBlockPointer) 8288 ResultTy = S.Context.getBlockPointerType(ResultTy); 8289 else 8290 ResultTy = S.Context.getPointerType(ResultTy); 8291 8292 LHS = S.ImpCastExprToType(LHS.get(), ResultTy, LHSCastKind); 8293 RHS = S.ImpCastExprToType(RHS.get(), ResultTy, RHSCastKind); 8294 return ResultTy; 8295 } 8296 8297 /// Return the resulting type when the operands are both block pointers. 8298 static QualType checkConditionalBlockPointerCompatibility(Sema &S, 8299 ExprResult &LHS, 8300 ExprResult &RHS, 8301 SourceLocation Loc) { 8302 QualType LHSTy = LHS.get()->getType(); 8303 QualType RHSTy = RHS.get()->getType(); 8304 8305 if (!LHSTy->isBlockPointerType() || !RHSTy->isBlockPointerType()) { 8306 if (LHSTy->isVoidPointerType() || RHSTy->isVoidPointerType()) { 8307 QualType destType = S.Context.getPointerType(S.Context.VoidTy); 8308 LHS = S.ImpCastExprToType(LHS.get(), destType, CK_BitCast); 8309 RHS = S.ImpCastExprToType(RHS.get(), destType, CK_BitCast); 8310 return destType; 8311 } 8312 S.Diag(Loc, diag::err_typecheck_cond_incompatible_operands) 8313 << LHSTy << RHSTy << LHS.get()->getSourceRange() 8314 << RHS.get()->getSourceRange(); 8315 return QualType(); 8316 } 8317 8318 // We have 2 block pointer types. 8319 return checkConditionalPointerCompatibility(S, LHS, RHS, Loc); 8320 } 8321 8322 /// Return the resulting type when the operands are both pointers. 8323 static QualType 8324 checkConditionalObjectPointersCompatibility(Sema &S, ExprResult &LHS, 8325 ExprResult &RHS, 8326 SourceLocation Loc) { 8327 // get the pointer types 8328 QualType LHSTy = LHS.get()->getType(); 8329 QualType RHSTy = RHS.get()->getType(); 8330 8331 // get the "pointed to" types 8332 QualType lhptee = LHSTy->castAs<PointerType>()->getPointeeType(); 8333 QualType rhptee = RHSTy->castAs<PointerType>()->getPointeeType(); 8334 8335 // ignore qualifiers on void (C99 6.5.15p3, clause 6) 8336 if (lhptee->isVoidType() && rhptee->isIncompleteOrObjectType()) { 8337 // Figure out necessary qualifiers (C99 6.5.15p6) 8338 QualType destPointee 8339 = S.Context.getQualifiedType(lhptee, rhptee.getQualifiers()); 8340 QualType destType = S.Context.getPointerType(destPointee); 8341 // Add qualifiers if necessary. 8342 LHS = S.ImpCastExprToType(LHS.get(), destType, CK_NoOp); 8343 // Promote to void*. 8344 RHS = S.ImpCastExprToType(RHS.get(), destType, CK_BitCast); 8345 return destType; 8346 } 8347 if (rhptee->isVoidType() && lhptee->isIncompleteOrObjectType()) { 8348 QualType destPointee 8349 = S.Context.getQualifiedType(rhptee, lhptee.getQualifiers()); 8350 QualType destType = S.Context.getPointerType(destPointee); 8351 // Add qualifiers if necessary. 8352 RHS = S.ImpCastExprToType(RHS.get(), destType, CK_NoOp); 8353 // Promote to void*. 8354 LHS = S.ImpCastExprToType(LHS.get(), destType, CK_BitCast); 8355 return destType; 8356 } 8357 8358 return checkConditionalPointerCompatibility(S, LHS, RHS, Loc); 8359 } 8360 8361 /// Return false if the first expression is not an integer and the second 8362 /// expression is not a pointer, true otherwise. 8363 static bool checkPointerIntegerMismatch(Sema &S, ExprResult &Int, 8364 Expr* PointerExpr, SourceLocation Loc, 8365 bool IsIntFirstExpr) { 8366 if (!PointerExpr->getType()->isPointerType() || 8367 !Int.get()->getType()->isIntegerType()) 8368 return false; 8369 8370 Expr *Expr1 = IsIntFirstExpr ? Int.get() : PointerExpr; 8371 Expr *Expr2 = IsIntFirstExpr ? PointerExpr : Int.get(); 8372 8373 S.Diag(Loc, diag::ext_typecheck_cond_pointer_integer_mismatch) 8374 << Expr1->getType() << Expr2->getType() 8375 << Expr1->getSourceRange() << Expr2->getSourceRange(); 8376 Int = S.ImpCastExprToType(Int.get(), PointerExpr->getType(), 8377 CK_IntegralToPointer); 8378 return true; 8379 } 8380 8381 /// Simple conversion between integer and floating point types. 8382 /// 8383 /// Used when handling the OpenCL conditional operator where the 8384 /// condition is a vector while the other operands are scalar. 8385 /// 8386 /// OpenCL v1.1 s6.3.i and s6.11.6 together require that the scalar 8387 /// types are either integer or floating type. Between the two 8388 /// operands, the type with the higher rank is defined as the "result 8389 /// type". The other operand needs to be promoted to the same type. No 8390 /// other type promotion is allowed. We cannot use 8391 /// UsualArithmeticConversions() for this purpose, since it always 8392 /// promotes promotable types. 8393 static QualType OpenCLArithmeticConversions(Sema &S, ExprResult &LHS, 8394 ExprResult &RHS, 8395 SourceLocation QuestionLoc) { 8396 LHS = S.DefaultFunctionArrayLvalueConversion(LHS.get()); 8397 if (LHS.isInvalid()) 8398 return QualType(); 8399 RHS = S.DefaultFunctionArrayLvalueConversion(RHS.get()); 8400 if (RHS.isInvalid()) 8401 return QualType(); 8402 8403 // For conversion purposes, we ignore any qualifiers. 8404 // For example, "const float" and "float" are equivalent. 8405 QualType LHSType = 8406 S.Context.getCanonicalType(LHS.get()->getType()).getUnqualifiedType(); 8407 QualType RHSType = 8408 S.Context.getCanonicalType(RHS.get()->getType()).getUnqualifiedType(); 8409 8410 if (!LHSType->isIntegerType() && !LHSType->isRealFloatingType()) { 8411 S.Diag(QuestionLoc, diag::err_typecheck_cond_expect_int_float) 8412 << LHSType << LHS.get()->getSourceRange(); 8413 return QualType(); 8414 } 8415 8416 if (!RHSType->isIntegerType() && !RHSType->isRealFloatingType()) { 8417 S.Diag(QuestionLoc, diag::err_typecheck_cond_expect_int_float) 8418 << RHSType << RHS.get()->getSourceRange(); 8419 return QualType(); 8420 } 8421 8422 // If both types are identical, no conversion is needed. 8423 if (LHSType == RHSType) 8424 return LHSType; 8425 8426 // Now handle "real" floating types (i.e. float, double, long double). 8427 if (LHSType->isRealFloatingType() || RHSType->isRealFloatingType()) 8428 return handleFloatConversion(S, LHS, RHS, LHSType, RHSType, 8429 /*IsCompAssign = */ false); 8430 8431 // Finally, we have two differing integer types. 8432 return handleIntegerConversion<doIntegralCast, doIntegralCast> 8433 (S, LHS, RHS, LHSType, RHSType, /*IsCompAssign = */ false); 8434 } 8435 8436 /// Convert scalar operands to a vector that matches the 8437 /// condition in length. 8438 /// 8439 /// Used when handling the OpenCL conditional operator where the 8440 /// condition is a vector while the other operands are scalar. 8441 /// 8442 /// We first compute the "result type" for the scalar operands 8443 /// according to OpenCL v1.1 s6.3.i. Both operands are then converted 8444 /// into a vector of that type where the length matches the condition 8445 /// vector type. s6.11.6 requires that the element types of the result 8446 /// and the condition must have the same number of bits. 8447 static QualType 8448 OpenCLConvertScalarsToVectors(Sema &S, ExprResult &LHS, ExprResult &RHS, 8449 QualType CondTy, SourceLocation QuestionLoc) { 8450 QualType ResTy = OpenCLArithmeticConversions(S, LHS, RHS, QuestionLoc); 8451 if (ResTy.isNull()) return QualType(); 8452 8453 const VectorType *CV = CondTy->getAs<VectorType>(); 8454 assert(CV); 8455 8456 // Determine the vector result type 8457 unsigned NumElements = CV->getNumElements(); 8458 QualType VectorTy = S.Context.getExtVectorType(ResTy, NumElements); 8459 8460 // Ensure that all types have the same number of bits 8461 if (S.Context.getTypeSize(CV->getElementType()) 8462 != S.Context.getTypeSize(ResTy)) { 8463 // Since VectorTy is created internally, it does not pretty print 8464 // with an OpenCL name. Instead, we just print a description. 8465 std::string EleTyName = ResTy.getUnqualifiedType().getAsString(); 8466 SmallString<64> Str; 8467 llvm::raw_svector_ostream OS(Str); 8468 OS << "(vector of " << NumElements << " '" << EleTyName << "' values)"; 8469 S.Diag(QuestionLoc, diag::err_conditional_vector_element_size) 8470 << CondTy << OS.str(); 8471 return QualType(); 8472 } 8473 8474 // Convert operands to the vector result type 8475 LHS = S.ImpCastExprToType(LHS.get(), VectorTy, CK_VectorSplat); 8476 RHS = S.ImpCastExprToType(RHS.get(), VectorTy, CK_VectorSplat); 8477 8478 return VectorTy; 8479 } 8480 8481 /// Return false if this is a valid OpenCL condition vector 8482 static bool checkOpenCLConditionVector(Sema &S, Expr *Cond, 8483 SourceLocation QuestionLoc) { 8484 // OpenCL v1.1 s6.11.6 says the elements of the vector must be of 8485 // integral type. 8486 const VectorType *CondTy = Cond->getType()->getAs<VectorType>(); 8487 assert(CondTy); 8488 QualType EleTy = CondTy->getElementType(); 8489 if (EleTy->isIntegerType()) return false; 8490 8491 S.Diag(QuestionLoc, diag::err_typecheck_cond_expect_nonfloat) 8492 << Cond->getType() << Cond->getSourceRange(); 8493 return true; 8494 } 8495 8496 /// Return false if the vector condition type and the vector 8497 /// result type are compatible. 8498 /// 8499 /// OpenCL v1.1 s6.11.6 requires that both vector types have the same 8500 /// number of elements, and their element types have the same number 8501 /// of bits. 8502 static bool checkVectorResult(Sema &S, QualType CondTy, QualType VecResTy, 8503 SourceLocation QuestionLoc) { 8504 const VectorType *CV = CondTy->getAs<VectorType>(); 8505 const VectorType *RV = VecResTy->getAs<VectorType>(); 8506 assert(CV && RV); 8507 8508 if (CV->getNumElements() != RV->getNumElements()) { 8509 S.Diag(QuestionLoc, diag::err_conditional_vector_size) 8510 << CondTy << VecResTy; 8511 return true; 8512 } 8513 8514 QualType CVE = CV->getElementType(); 8515 QualType RVE = RV->getElementType(); 8516 8517 if (S.Context.getTypeSize(CVE) != S.Context.getTypeSize(RVE)) { 8518 S.Diag(QuestionLoc, diag::err_conditional_vector_element_size) 8519 << CondTy << VecResTy; 8520 return true; 8521 } 8522 8523 return false; 8524 } 8525 8526 /// Return the resulting type for the conditional operator in 8527 /// OpenCL (aka "ternary selection operator", OpenCL v1.1 8528 /// s6.3.i) when the condition is a vector type. 8529 static QualType 8530 OpenCLCheckVectorConditional(Sema &S, ExprResult &Cond, 8531 ExprResult &LHS, ExprResult &RHS, 8532 SourceLocation QuestionLoc) { 8533 Cond = S.DefaultFunctionArrayLvalueConversion(Cond.get()); 8534 if (Cond.isInvalid()) 8535 return QualType(); 8536 QualType CondTy = Cond.get()->getType(); 8537 8538 if (checkOpenCLConditionVector(S, Cond.get(), QuestionLoc)) 8539 return QualType(); 8540 8541 // If either operand is a vector then find the vector type of the 8542 // result as specified in OpenCL v1.1 s6.3.i. 8543 if (LHS.get()->getType()->isVectorType() || 8544 RHS.get()->getType()->isVectorType()) { 8545 bool IsBoolVecLang = 8546 !S.getLangOpts().OpenCL && !S.getLangOpts().OpenCLCPlusPlus; 8547 QualType VecResTy = 8548 S.CheckVectorOperands(LHS, RHS, QuestionLoc, 8549 /*isCompAssign*/ false, 8550 /*AllowBothBool*/ true, 8551 /*AllowBoolConversions*/ false, 8552 /*AllowBooleanOperation*/ IsBoolVecLang, 8553 /*ReportInvalid*/ true); 8554 if (VecResTy.isNull()) 8555 return QualType(); 8556 // The result type must match the condition type as specified in 8557 // OpenCL v1.1 s6.11.6. 8558 if (checkVectorResult(S, CondTy, VecResTy, QuestionLoc)) 8559 return QualType(); 8560 return VecResTy; 8561 } 8562 8563 // Both operands are scalar. 8564 return OpenCLConvertScalarsToVectors(S, LHS, RHS, CondTy, QuestionLoc); 8565 } 8566 8567 /// Return true if the Expr is block type 8568 static bool checkBlockType(Sema &S, const Expr *E) { 8569 if (const CallExpr *CE = dyn_cast<CallExpr>(E)) { 8570 QualType Ty = CE->getCallee()->getType(); 8571 if (Ty->isBlockPointerType()) { 8572 S.Diag(E->getExprLoc(), diag::err_opencl_ternary_with_block); 8573 return true; 8574 } 8575 } 8576 return false; 8577 } 8578 8579 /// Note that LHS is not null here, even if this is the gnu "x ?: y" extension. 8580 /// In that case, LHS = cond. 8581 /// C99 6.5.15 8582 QualType Sema::CheckConditionalOperands(ExprResult &Cond, ExprResult &LHS, 8583 ExprResult &RHS, ExprValueKind &VK, 8584 ExprObjectKind &OK, 8585 SourceLocation QuestionLoc) { 8586 8587 ExprResult LHSResult = CheckPlaceholderExpr(LHS.get()); 8588 if (!LHSResult.isUsable()) return QualType(); 8589 LHS = LHSResult; 8590 8591 ExprResult RHSResult = CheckPlaceholderExpr(RHS.get()); 8592 if (!RHSResult.isUsable()) return QualType(); 8593 RHS = RHSResult; 8594 8595 // C++ is sufficiently different to merit its own checker. 8596 if (getLangOpts().CPlusPlus) 8597 return CXXCheckConditionalOperands(Cond, LHS, RHS, VK, OK, QuestionLoc); 8598 8599 VK = VK_PRValue; 8600 OK = OK_Ordinary; 8601 8602 if (Context.isDependenceAllowed() && 8603 (Cond.get()->isTypeDependent() || LHS.get()->isTypeDependent() || 8604 RHS.get()->isTypeDependent())) { 8605 assert(!getLangOpts().CPlusPlus); 8606 assert((Cond.get()->containsErrors() || LHS.get()->containsErrors() || 8607 RHS.get()->containsErrors()) && 8608 "should only occur in error-recovery path."); 8609 return Context.DependentTy; 8610 } 8611 8612 // The OpenCL operator with a vector condition is sufficiently 8613 // different to merit its own checker. 8614 if ((getLangOpts().OpenCL && Cond.get()->getType()->isVectorType()) || 8615 Cond.get()->getType()->isExtVectorType()) 8616 return OpenCLCheckVectorConditional(*this, Cond, LHS, RHS, QuestionLoc); 8617 8618 // First, check the condition. 8619 Cond = UsualUnaryConversions(Cond.get()); 8620 if (Cond.isInvalid()) 8621 return QualType(); 8622 if (checkCondition(*this, Cond.get(), QuestionLoc)) 8623 return QualType(); 8624 8625 // Now check the two expressions. 8626 if (LHS.get()->getType()->isVectorType() || 8627 RHS.get()->getType()->isVectorType()) 8628 return CheckVectorOperands(LHS, RHS, QuestionLoc, /*isCompAssign*/ false, 8629 /*AllowBothBool*/ true, 8630 /*AllowBoolConversions*/ false, 8631 /*AllowBooleanOperation*/ false, 8632 /*ReportInvalid*/ true); 8633 8634 QualType ResTy = 8635 UsualArithmeticConversions(LHS, RHS, QuestionLoc, ACK_Conditional); 8636 if (LHS.isInvalid() || RHS.isInvalid()) 8637 return QualType(); 8638 8639 QualType LHSTy = LHS.get()->getType(); 8640 QualType RHSTy = RHS.get()->getType(); 8641 8642 // Diagnose attempts to convert between __ibm128, __float128 and long double 8643 // where such conversions currently can't be handled. 8644 if (unsupportedTypeConversion(*this, LHSTy, RHSTy)) { 8645 Diag(QuestionLoc, 8646 diag::err_typecheck_cond_incompatible_operands) << LHSTy << RHSTy 8647 << LHS.get()->getSourceRange() << RHS.get()->getSourceRange(); 8648 return QualType(); 8649 } 8650 8651 // OpenCL v2.0 s6.12.5 - Blocks cannot be used as expressions of the ternary 8652 // selection operator (?:). 8653 if (getLangOpts().OpenCL && 8654 ((int)checkBlockType(*this, LHS.get()) | (int)checkBlockType(*this, RHS.get()))) { 8655 return QualType(); 8656 } 8657 8658 // If both operands have arithmetic type, do the usual arithmetic conversions 8659 // to find a common type: C99 6.5.15p3,5. 8660 if (LHSTy->isArithmeticType() && RHSTy->isArithmeticType()) { 8661 // Disallow invalid arithmetic conversions, such as those between bit- 8662 // precise integers types of different sizes, or between a bit-precise 8663 // integer and another type. 8664 if (ResTy.isNull() && (LHSTy->isBitIntType() || RHSTy->isBitIntType())) { 8665 Diag(QuestionLoc, diag::err_typecheck_cond_incompatible_operands) 8666 << LHSTy << RHSTy << LHS.get()->getSourceRange() 8667 << RHS.get()->getSourceRange(); 8668 return QualType(); 8669 } 8670 8671 LHS = ImpCastExprToType(LHS.get(), ResTy, PrepareScalarCast(LHS, ResTy)); 8672 RHS = ImpCastExprToType(RHS.get(), ResTy, PrepareScalarCast(RHS, ResTy)); 8673 8674 return ResTy; 8675 } 8676 8677 // And if they're both bfloat (which isn't arithmetic), that's fine too. 8678 if (LHSTy->isBFloat16Type() && RHSTy->isBFloat16Type()) { 8679 return LHSTy; 8680 } 8681 8682 // If both operands are the same structure or union type, the result is that 8683 // type. 8684 if (const RecordType *LHSRT = LHSTy->getAs<RecordType>()) { // C99 6.5.15p3 8685 if (const RecordType *RHSRT = RHSTy->getAs<RecordType>()) 8686 if (LHSRT->getDecl() == RHSRT->getDecl()) 8687 // "If both the operands have structure or union type, the result has 8688 // that type." This implies that CV qualifiers are dropped. 8689 return LHSTy.getUnqualifiedType(); 8690 // FIXME: Type of conditional expression must be complete in C mode. 8691 } 8692 8693 // C99 6.5.15p5: "If both operands have void type, the result has void type." 8694 // The following || allows only one side to be void (a GCC-ism). 8695 if (LHSTy->isVoidType() || RHSTy->isVoidType()) { 8696 return checkConditionalVoidType(*this, LHS, RHS); 8697 } 8698 8699 // C99 6.5.15p6 - "if one operand is a null pointer constant, the result has 8700 // the type of the other operand." 8701 if (!checkConditionalNullPointer(*this, RHS, LHSTy)) return LHSTy; 8702 if (!checkConditionalNullPointer(*this, LHS, RHSTy)) return RHSTy; 8703 8704 // All objective-c pointer type analysis is done here. 8705 QualType compositeType = FindCompositeObjCPointerType(LHS, RHS, 8706 QuestionLoc); 8707 if (LHS.isInvalid() || RHS.isInvalid()) 8708 return QualType(); 8709 if (!compositeType.isNull()) 8710 return compositeType; 8711 8712 8713 // Handle block pointer types. 8714 if (LHSTy->isBlockPointerType() || RHSTy->isBlockPointerType()) 8715 return checkConditionalBlockPointerCompatibility(*this, LHS, RHS, 8716 QuestionLoc); 8717 8718 // Check constraints for C object pointers types (C99 6.5.15p3,6). 8719 if (LHSTy->isPointerType() && RHSTy->isPointerType()) 8720 return checkConditionalObjectPointersCompatibility(*this, LHS, RHS, 8721 QuestionLoc); 8722 8723 // GCC compatibility: soften pointer/integer mismatch. Note that 8724 // null pointers have been filtered out by this point. 8725 if (checkPointerIntegerMismatch(*this, LHS, RHS.get(), QuestionLoc, 8726 /*IsIntFirstExpr=*/true)) 8727 return RHSTy; 8728 if (checkPointerIntegerMismatch(*this, RHS, LHS.get(), QuestionLoc, 8729 /*IsIntFirstExpr=*/false)) 8730 return LHSTy; 8731 8732 // Allow ?: operations in which both operands have the same 8733 // built-in sizeless type. 8734 if (LHSTy->isSizelessBuiltinType() && Context.hasSameType(LHSTy, RHSTy)) 8735 return LHSTy; 8736 8737 // Emit a better diagnostic if one of the expressions is a null pointer 8738 // constant and the other is not a pointer type. In this case, the user most 8739 // likely forgot to take the address of the other expression. 8740 if (DiagnoseConditionalForNull(LHS.get(), RHS.get(), QuestionLoc)) 8741 return QualType(); 8742 8743 // Otherwise, the operands are not compatible. 8744 Diag(QuestionLoc, diag::err_typecheck_cond_incompatible_operands) 8745 << LHSTy << RHSTy << LHS.get()->getSourceRange() 8746 << RHS.get()->getSourceRange(); 8747 return QualType(); 8748 } 8749 8750 /// FindCompositeObjCPointerType - Helper method to find composite type of 8751 /// two objective-c pointer types of the two input expressions. 8752 QualType Sema::FindCompositeObjCPointerType(ExprResult &LHS, ExprResult &RHS, 8753 SourceLocation QuestionLoc) { 8754 QualType LHSTy = LHS.get()->getType(); 8755 QualType RHSTy = RHS.get()->getType(); 8756 8757 // Handle things like Class and struct objc_class*. Here we case the result 8758 // to the pseudo-builtin, because that will be implicitly cast back to the 8759 // redefinition type if an attempt is made to access its fields. 8760 if (LHSTy->isObjCClassType() && 8761 (Context.hasSameType(RHSTy, Context.getObjCClassRedefinitionType()))) { 8762 RHS = ImpCastExprToType(RHS.get(), LHSTy, CK_CPointerToObjCPointerCast); 8763 return LHSTy; 8764 } 8765 if (RHSTy->isObjCClassType() && 8766 (Context.hasSameType(LHSTy, Context.getObjCClassRedefinitionType()))) { 8767 LHS = ImpCastExprToType(LHS.get(), RHSTy, CK_CPointerToObjCPointerCast); 8768 return RHSTy; 8769 } 8770 // And the same for struct objc_object* / id 8771 if (LHSTy->isObjCIdType() && 8772 (Context.hasSameType(RHSTy, Context.getObjCIdRedefinitionType()))) { 8773 RHS = ImpCastExprToType(RHS.get(), LHSTy, CK_CPointerToObjCPointerCast); 8774 return LHSTy; 8775 } 8776 if (RHSTy->isObjCIdType() && 8777 (Context.hasSameType(LHSTy, Context.getObjCIdRedefinitionType()))) { 8778 LHS = ImpCastExprToType(LHS.get(), RHSTy, CK_CPointerToObjCPointerCast); 8779 return RHSTy; 8780 } 8781 // And the same for struct objc_selector* / SEL 8782 if (Context.isObjCSelType(LHSTy) && 8783 (Context.hasSameType(RHSTy, Context.getObjCSelRedefinitionType()))) { 8784 RHS = ImpCastExprToType(RHS.get(), LHSTy, CK_BitCast); 8785 return LHSTy; 8786 } 8787 if (Context.isObjCSelType(RHSTy) && 8788 (Context.hasSameType(LHSTy, Context.getObjCSelRedefinitionType()))) { 8789 LHS = ImpCastExprToType(LHS.get(), RHSTy, CK_BitCast); 8790 return RHSTy; 8791 } 8792 // Check constraints for Objective-C object pointers types. 8793 if (LHSTy->isObjCObjectPointerType() && RHSTy->isObjCObjectPointerType()) { 8794 8795 if (Context.getCanonicalType(LHSTy) == Context.getCanonicalType(RHSTy)) { 8796 // Two identical object pointer types are always compatible. 8797 return LHSTy; 8798 } 8799 const ObjCObjectPointerType *LHSOPT = LHSTy->castAs<ObjCObjectPointerType>(); 8800 const ObjCObjectPointerType *RHSOPT = RHSTy->castAs<ObjCObjectPointerType>(); 8801 QualType compositeType = LHSTy; 8802 8803 // If both operands are interfaces and either operand can be 8804 // assigned to the other, use that type as the composite 8805 // type. This allows 8806 // xxx ? (A*) a : (B*) b 8807 // where B is a subclass of A. 8808 // 8809 // Additionally, as for assignment, if either type is 'id' 8810 // allow silent coercion. Finally, if the types are 8811 // incompatible then make sure to use 'id' as the composite 8812 // type so the result is acceptable for sending messages to. 8813 8814 // FIXME: Consider unifying with 'areComparableObjCPointerTypes'. 8815 // It could return the composite type. 8816 if (!(compositeType = 8817 Context.areCommonBaseCompatible(LHSOPT, RHSOPT)).isNull()) { 8818 // Nothing more to do. 8819 } else if (Context.canAssignObjCInterfaces(LHSOPT, RHSOPT)) { 8820 compositeType = RHSOPT->isObjCBuiltinType() ? RHSTy : LHSTy; 8821 } else if (Context.canAssignObjCInterfaces(RHSOPT, LHSOPT)) { 8822 compositeType = LHSOPT->isObjCBuiltinType() ? LHSTy : RHSTy; 8823 } else if ((LHSOPT->isObjCQualifiedIdType() || 8824 RHSOPT->isObjCQualifiedIdType()) && 8825 Context.ObjCQualifiedIdTypesAreCompatible(LHSOPT, RHSOPT, 8826 true)) { 8827 // Need to handle "id<xx>" explicitly. 8828 // GCC allows qualified id and any Objective-C type to devolve to 8829 // id. Currently localizing to here until clear this should be 8830 // part of ObjCQualifiedIdTypesAreCompatible. 8831 compositeType = Context.getObjCIdType(); 8832 } else if (LHSTy->isObjCIdType() || RHSTy->isObjCIdType()) { 8833 compositeType = Context.getObjCIdType(); 8834 } else { 8835 Diag(QuestionLoc, diag::ext_typecheck_cond_incompatible_operands) 8836 << LHSTy << RHSTy 8837 << LHS.get()->getSourceRange() << RHS.get()->getSourceRange(); 8838 QualType incompatTy = Context.getObjCIdType(); 8839 LHS = ImpCastExprToType(LHS.get(), incompatTy, CK_BitCast); 8840 RHS = ImpCastExprToType(RHS.get(), incompatTy, CK_BitCast); 8841 return incompatTy; 8842 } 8843 // The object pointer types are compatible. 8844 LHS = ImpCastExprToType(LHS.get(), compositeType, CK_BitCast); 8845 RHS = ImpCastExprToType(RHS.get(), compositeType, CK_BitCast); 8846 return compositeType; 8847 } 8848 // Check Objective-C object pointer types and 'void *' 8849 if (LHSTy->isVoidPointerType() && RHSTy->isObjCObjectPointerType()) { 8850 if (getLangOpts().ObjCAutoRefCount) { 8851 // ARC forbids the implicit conversion of object pointers to 'void *', 8852 // so these types are not compatible. 8853 Diag(QuestionLoc, diag::err_cond_voidptr_arc) << LHSTy << RHSTy 8854 << LHS.get()->getSourceRange() << RHS.get()->getSourceRange(); 8855 LHS = RHS = true; 8856 return QualType(); 8857 } 8858 QualType lhptee = LHSTy->castAs<PointerType>()->getPointeeType(); 8859 QualType rhptee = RHSTy->castAs<ObjCObjectPointerType>()->getPointeeType(); 8860 QualType destPointee 8861 = Context.getQualifiedType(lhptee, rhptee.getQualifiers()); 8862 QualType destType = Context.getPointerType(destPointee); 8863 // Add qualifiers if necessary. 8864 LHS = ImpCastExprToType(LHS.get(), destType, CK_NoOp); 8865 // Promote to void*. 8866 RHS = ImpCastExprToType(RHS.get(), destType, CK_BitCast); 8867 return destType; 8868 } 8869 if (LHSTy->isObjCObjectPointerType() && RHSTy->isVoidPointerType()) { 8870 if (getLangOpts().ObjCAutoRefCount) { 8871 // ARC forbids the implicit conversion of object pointers to 'void *', 8872 // so these types are not compatible. 8873 Diag(QuestionLoc, diag::err_cond_voidptr_arc) << LHSTy << RHSTy 8874 << LHS.get()->getSourceRange() << RHS.get()->getSourceRange(); 8875 LHS = RHS = true; 8876 return QualType(); 8877 } 8878 QualType lhptee = LHSTy->castAs<ObjCObjectPointerType>()->getPointeeType(); 8879 QualType rhptee = RHSTy->castAs<PointerType>()->getPointeeType(); 8880 QualType destPointee 8881 = Context.getQualifiedType(rhptee, lhptee.getQualifiers()); 8882 QualType destType = Context.getPointerType(destPointee); 8883 // Add qualifiers if necessary. 8884 RHS = ImpCastExprToType(RHS.get(), destType, CK_NoOp); 8885 // Promote to void*. 8886 LHS = ImpCastExprToType(LHS.get(), destType, CK_BitCast); 8887 return destType; 8888 } 8889 return QualType(); 8890 } 8891 8892 /// SuggestParentheses - Emit a note with a fixit hint that wraps 8893 /// ParenRange in parentheses. 8894 static void SuggestParentheses(Sema &Self, SourceLocation Loc, 8895 const PartialDiagnostic &Note, 8896 SourceRange ParenRange) { 8897 SourceLocation EndLoc = Self.getLocForEndOfToken(ParenRange.getEnd()); 8898 if (ParenRange.getBegin().isFileID() && ParenRange.getEnd().isFileID() && 8899 EndLoc.isValid()) { 8900 Self.Diag(Loc, Note) 8901 << FixItHint::CreateInsertion(ParenRange.getBegin(), "(") 8902 << FixItHint::CreateInsertion(EndLoc, ")"); 8903 } else { 8904 // We can't display the parentheses, so just show the bare note. 8905 Self.Diag(Loc, Note) << ParenRange; 8906 } 8907 } 8908 8909 static bool IsArithmeticOp(BinaryOperatorKind Opc) { 8910 return BinaryOperator::isAdditiveOp(Opc) || 8911 BinaryOperator::isMultiplicativeOp(Opc) || 8912 BinaryOperator::isShiftOp(Opc) || Opc == BO_And || Opc == BO_Or; 8913 // This only checks for bitwise-or and bitwise-and, but not bitwise-xor and 8914 // not any of the logical operators. Bitwise-xor is commonly used as a 8915 // logical-xor because there is no logical-xor operator. The logical 8916 // operators, including uses of xor, have a high false positive rate for 8917 // precedence warnings. 8918 } 8919 8920 /// IsArithmeticBinaryExpr - Returns true if E is an arithmetic binary 8921 /// expression, either using a built-in or overloaded operator, 8922 /// and sets *OpCode to the opcode and *RHSExprs to the right-hand side 8923 /// expression. 8924 static bool IsArithmeticBinaryExpr(Expr *E, BinaryOperatorKind *Opcode, 8925 Expr **RHSExprs) { 8926 // Don't strip parenthesis: we should not warn if E is in parenthesis. 8927 E = E->IgnoreImpCasts(); 8928 E = E->IgnoreConversionOperatorSingleStep(); 8929 E = E->IgnoreImpCasts(); 8930 if (auto *MTE = dyn_cast<MaterializeTemporaryExpr>(E)) { 8931 E = MTE->getSubExpr(); 8932 E = E->IgnoreImpCasts(); 8933 } 8934 8935 // Built-in binary operator. 8936 if (BinaryOperator *OP = dyn_cast<BinaryOperator>(E)) { 8937 if (IsArithmeticOp(OP->getOpcode())) { 8938 *Opcode = OP->getOpcode(); 8939 *RHSExprs = OP->getRHS(); 8940 return true; 8941 } 8942 } 8943 8944 // Overloaded operator. 8945 if (CXXOperatorCallExpr *Call = dyn_cast<CXXOperatorCallExpr>(E)) { 8946 if (Call->getNumArgs() != 2) 8947 return false; 8948 8949 // Make sure this is really a binary operator that is safe to pass into 8950 // BinaryOperator::getOverloadedOpcode(), e.g. it's not a subscript op. 8951 OverloadedOperatorKind OO = Call->getOperator(); 8952 if (OO < OO_Plus || OO > OO_Arrow || 8953 OO == OO_PlusPlus || OO == OO_MinusMinus) 8954 return false; 8955 8956 BinaryOperatorKind OpKind = BinaryOperator::getOverloadedOpcode(OO); 8957 if (IsArithmeticOp(OpKind)) { 8958 *Opcode = OpKind; 8959 *RHSExprs = Call->getArg(1); 8960 return true; 8961 } 8962 } 8963 8964 return false; 8965 } 8966 8967 /// ExprLooksBoolean - Returns true if E looks boolean, i.e. it has boolean type 8968 /// or is a logical expression such as (x==y) which has int type, but is 8969 /// commonly interpreted as boolean. 8970 static bool ExprLooksBoolean(Expr *E) { 8971 E = E->IgnoreParenImpCasts(); 8972 8973 if (E->getType()->isBooleanType()) 8974 return true; 8975 if (BinaryOperator *OP = dyn_cast<BinaryOperator>(E)) 8976 return OP->isComparisonOp() || OP->isLogicalOp(); 8977 if (UnaryOperator *OP = dyn_cast<UnaryOperator>(E)) 8978 return OP->getOpcode() == UO_LNot; 8979 if (E->getType()->isPointerType()) 8980 return true; 8981 // FIXME: What about overloaded operator calls returning "unspecified boolean 8982 // type"s (commonly pointer-to-members)? 8983 8984 return false; 8985 } 8986 8987 /// DiagnoseConditionalPrecedence - Emit a warning when a conditional operator 8988 /// and binary operator are mixed in a way that suggests the programmer assumed 8989 /// the conditional operator has higher precedence, for example: 8990 /// "int x = a + someBinaryCondition ? 1 : 2". 8991 static void DiagnoseConditionalPrecedence(Sema &Self, 8992 SourceLocation OpLoc, 8993 Expr *Condition, 8994 Expr *LHSExpr, 8995 Expr *RHSExpr) { 8996 BinaryOperatorKind CondOpcode; 8997 Expr *CondRHS; 8998 8999 if (!IsArithmeticBinaryExpr(Condition, &CondOpcode, &CondRHS)) 9000 return; 9001 if (!ExprLooksBoolean(CondRHS)) 9002 return; 9003 9004 // The condition is an arithmetic binary expression, with a right- 9005 // hand side that looks boolean, so warn. 9006 9007 unsigned DiagID = BinaryOperator::isBitwiseOp(CondOpcode) 9008 ? diag::warn_precedence_bitwise_conditional 9009 : diag::warn_precedence_conditional; 9010 9011 Self.Diag(OpLoc, DiagID) 9012 << Condition->getSourceRange() 9013 << BinaryOperator::getOpcodeStr(CondOpcode); 9014 9015 SuggestParentheses( 9016 Self, OpLoc, 9017 Self.PDiag(diag::note_precedence_silence) 9018 << BinaryOperator::getOpcodeStr(CondOpcode), 9019 SourceRange(Condition->getBeginLoc(), Condition->getEndLoc())); 9020 9021 SuggestParentheses(Self, OpLoc, 9022 Self.PDiag(diag::note_precedence_conditional_first), 9023 SourceRange(CondRHS->getBeginLoc(), RHSExpr->getEndLoc())); 9024 } 9025 9026 /// Compute the nullability of a conditional expression. 9027 static QualType computeConditionalNullability(QualType ResTy, bool IsBin, 9028 QualType LHSTy, QualType RHSTy, 9029 ASTContext &Ctx) { 9030 if (!ResTy->isAnyPointerType()) 9031 return ResTy; 9032 9033 auto GetNullability = [&Ctx](QualType Ty) { 9034 Optional<NullabilityKind> Kind = Ty->getNullability(Ctx); 9035 if (Kind) { 9036 // For our purposes, treat _Nullable_result as _Nullable. 9037 if (*Kind == NullabilityKind::NullableResult) 9038 return NullabilityKind::Nullable; 9039 return *Kind; 9040 } 9041 return NullabilityKind::Unspecified; 9042 }; 9043 9044 auto LHSKind = GetNullability(LHSTy), RHSKind = GetNullability(RHSTy); 9045 NullabilityKind MergedKind; 9046 9047 // Compute nullability of a binary conditional expression. 9048 if (IsBin) { 9049 if (LHSKind == NullabilityKind::NonNull) 9050 MergedKind = NullabilityKind::NonNull; 9051 else 9052 MergedKind = RHSKind; 9053 // Compute nullability of a normal conditional expression. 9054 } else { 9055 if (LHSKind == NullabilityKind::Nullable || 9056 RHSKind == NullabilityKind::Nullable) 9057 MergedKind = NullabilityKind::Nullable; 9058 else if (LHSKind == NullabilityKind::NonNull) 9059 MergedKind = RHSKind; 9060 else if (RHSKind == NullabilityKind::NonNull) 9061 MergedKind = LHSKind; 9062 else 9063 MergedKind = NullabilityKind::Unspecified; 9064 } 9065 9066 // Return if ResTy already has the correct nullability. 9067 if (GetNullability(ResTy) == MergedKind) 9068 return ResTy; 9069 9070 // Strip all nullability from ResTy. 9071 while (ResTy->getNullability(Ctx)) 9072 ResTy = ResTy.getSingleStepDesugaredType(Ctx); 9073 9074 // Create a new AttributedType with the new nullability kind. 9075 auto NewAttr = AttributedType::getNullabilityAttrKind(MergedKind); 9076 return Ctx.getAttributedType(NewAttr, ResTy, ResTy); 9077 } 9078 9079 /// ActOnConditionalOp - Parse a ?: operation. Note that 'LHS' may be null 9080 /// in the case of a the GNU conditional expr extension. 9081 ExprResult Sema::ActOnConditionalOp(SourceLocation QuestionLoc, 9082 SourceLocation ColonLoc, 9083 Expr *CondExpr, Expr *LHSExpr, 9084 Expr *RHSExpr) { 9085 if (!Context.isDependenceAllowed()) { 9086 // C cannot handle TypoExpr nodes in the condition because it 9087 // doesn't handle dependent types properly, so make sure any TypoExprs have 9088 // been dealt with before checking the operands. 9089 ExprResult CondResult = CorrectDelayedTyposInExpr(CondExpr); 9090 ExprResult LHSResult = CorrectDelayedTyposInExpr(LHSExpr); 9091 ExprResult RHSResult = CorrectDelayedTyposInExpr(RHSExpr); 9092 9093 if (!CondResult.isUsable()) 9094 return ExprError(); 9095 9096 if (LHSExpr) { 9097 if (!LHSResult.isUsable()) 9098 return ExprError(); 9099 } 9100 9101 if (!RHSResult.isUsable()) 9102 return ExprError(); 9103 9104 CondExpr = CondResult.get(); 9105 LHSExpr = LHSResult.get(); 9106 RHSExpr = RHSResult.get(); 9107 } 9108 9109 // If this is the gnu "x ?: y" extension, analyze the types as though the LHS 9110 // was the condition. 9111 OpaqueValueExpr *opaqueValue = nullptr; 9112 Expr *commonExpr = nullptr; 9113 if (!LHSExpr) { 9114 commonExpr = CondExpr; 9115 // Lower out placeholder types first. This is important so that we don't 9116 // try to capture a placeholder. This happens in few cases in C++; such 9117 // as Objective-C++'s dictionary subscripting syntax. 9118 if (commonExpr->hasPlaceholderType()) { 9119 ExprResult result = CheckPlaceholderExpr(commonExpr); 9120 if (!result.isUsable()) return ExprError(); 9121 commonExpr = result.get(); 9122 } 9123 // We usually want to apply unary conversions *before* saving, except 9124 // in the special case of a C++ l-value conditional. 9125 if (!(getLangOpts().CPlusPlus 9126 && !commonExpr->isTypeDependent() 9127 && commonExpr->getValueKind() == RHSExpr->getValueKind() 9128 && commonExpr->isGLValue() 9129 && commonExpr->isOrdinaryOrBitFieldObject() 9130 && RHSExpr->isOrdinaryOrBitFieldObject() 9131 && Context.hasSameType(commonExpr->getType(), RHSExpr->getType()))) { 9132 ExprResult commonRes = UsualUnaryConversions(commonExpr); 9133 if (commonRes.isInvalid()) 9134 return ExprError(); 9135 commonExpr = commonRes.get(); 9136 } 9137 9138 // If the common expression is a class or array prvalue, materialize it 9139 // so that we can safely refer to it multiple times. 9140 if (commonExpr->isPRValue() && (commonExpr->getType()->isRecordType() || 9141 commonExpr->getType()->isArrayType())) { 9142 ExprResult MatExpr = TemporaryMaterializationConversion(commonExpr); 9143 if (MatExpr.isInvalid()) 9144 return ExprError(); 9145 commonExpr = MatExpr.get(); 9146 } 9147 9148 opaqueValue = new (Context) OpaqueValueExpr(commonExpr->getExprLoc(), 9149 commonExpr->getType(), 9150 commonExpr->getValueKind(), 9151 commonExpr->getObjectKind(), 9152 commonExpr); 9153 LHSExpr = CondExpr = opaqueValue; 9154 } 9155 9156 QualType LHSTy = LHSExpr->getType(), RHSTy = RHSExpr->getType(); 9157 ExprValueKind VK = VK_PRValue; 9158 ExprObjectKind OK = OK_Ordinary; 9159 ExprResult Cond = CondExpr, LHS = LHSExpr, RHS = RHSExpr; 9160 QualType result = CheckConditionalOperands(Cond, LHS, RHS, 9161 VK, OK, QuestionLoc); 9162 if (result.isNull() || Cond.isInvalid() || LHS.isInvalid() || 9163 RHS.isInvalid()) 9164 return ExprError(); 9165 9166 DiagnoseConditionalPrecedence(*this, QuestionLoc, Cond.get(), LHS.get(), 9167 RHS.get()); 9168 9169 CheckBoolLikeConversion(Cond.get(), QuestionLoc); 9170 9171 result = computeConditionalNullability(result, commonExpr, LHSTy, RHSTy, 9172 Context); 9173 9174 if (!commonExpr) 9175 return new (Context) 9176 ConditionalOperator(Cond.get(), QuestionLoc, LHS.get(), ColonLoc, 9177 RHS.get(), result, VK, OK); 9178 9179 return new (Context) BinaryConditionalOperator( 9180 commonExpr, opaqueValue, Cond.get(), LHS.get(), RHS.get(), QuestionLoc, 9181 ColonLoc, result, VK, OK); 9182 } 9183 9184 // Check if we have a conversion between incompatible cmse function pointer 9185 // types, that is, a conversion between a function pointer with the 9186 // cmse_nonsecure_call attribute and one without. 9187 static bool IsInvalidCmseNSCallConversion(Sema &S, QualType FromType, 9188 QualType ToType) { 9189 if (const auto *ToFn = 9190 dyn_cast<FunctionType>(S.Context.getCanonicalType(ToType))) { 9191 if (const auto *FromFn = 9192 dyn_cast<FunctionType>(S.Context.getCanonicalType(FromType))) { 9193 FunctionType::ExtInfo ToEInfo = ToFn->getExtInfo(); 9194 FunctionType::ExtInfo FromEInfo = FromFn->getExtInfo(); 9195 9196 return ToEInfo.getCmseNSCall() != FromEInfo.getCmseNSCall(); 9197 } 9198 } 9199 return false; 9200 } 9201 9202 // checkPointerTypesForAssignment - This is a very tricky routine (despite 9203 // being closely modeled after the C99 spec:-). The odd characteristic of this 9204 // routine is it effectively iqnores the qualifiers on the top level pointee. 9205 // This circumvents the usual type rules specified in 6.2.7p1 & 6.7.5.[1-3]. 9206 // FIXME: add a couple examples in this comment. 9207 static Sema::AssignConvertType 9208 checkPointerTypesForAssignment(Sema &S, QualType LHSType, QualType RHSType) { 9209 assert(LHSType.isCanonical() && "LHS not canonicalized!"); 9210 assert(RHSType.isCanonical() && "RHS not canonicalized!"); 9211 9212 // get the "pointed to" type (ignoring qualifiers at the top level) 9213 const Type *lhptee, *rhptee; 9214 Qualifiers lhq, rhq; 9215 std::tie(lhptee, lhq) = 9216 cast<PointerType>(LHSType)->getPointeeType().split().asPair(); 9217 std::tie(rhptee, rhq) = 9218 cast<PointerType>(RHSType)->getPointeeType().split().asPair(); 9219 9220 Sema::AssignConvertType ConvTy = Sema::Compatible; 9221 9222 // C99 6.5.16.1p1: This following citation is common to constraints 9223 // 3 & 4 (below). ...and the type *pointed to* by the left has all the 9224 // qualifiers of the type *pointed to* by the right; 9225 9226 // As a special case, 'non-__weak A *' -> 'non-__weak const *' is okay. 9227 if (lhq.getObjCLifetime() != rhq.getObjCLifetime() && 9228 lhq.compatiblyIncludesObjCLifetime(rhq)) { 9229 // Ignore lifetime for further calculation. 9230 lhq.removeObjCLifetime(); 9231 rhq.removeObjCLifetime(); 9232 } 9233 9234 if (!lhq.compatiblyIncludes(rhq)) { 9235 // Treat address-space mismatches as fatal. 9236 if (!lhq.isAddressSpaceSupersetOf(rhq)) 9237 return Sema::IncompatiblePointerDiscardsQualifiers; 9238 9239 // It's okay to add or remove GC or lifetime qualifiers when converting to 9240 // and from void*. 9241 else if (lhq.withoutObjCGCAttr().withoutObjCLifetime() 9242 .compatiblyIncludes( 9243 rhq.withoutObjCGCAttr().withoutObjCLifetime()) 9244 && (lhptee->isVoidType() || rhptee->isVoidType())) 9245 ; // keep old 9246 9247 // Treat lifetime mismatches as fatal. 9248 else if (lhq.getObjCLifetime() != rhq.getObjCLifetime()) 9249 ConvTy = Sema::IncompatiblePointerDiscardsQualifiers; 9250 9251 // For GCC/MS compatibility, other qualifier mismatches are treated 9252 // as still compatible in C. 9253 else ConvTy = Sema::CompatiblePointerDiscardsQualifiers; 9254 } 9255 9256 // C99 6.5.16.1p1 (constraint 4): If one operand is a pointer to an object or 9257 // incomplete type and the other is a pointer to a qualified or unqualified 9258 // version of void... 9259 if (lhptee->isVoidType()) { 9260 if (rhptee->isIncompleteOrObjectType()) 9261 return ConvTy; 9262 9263 // As an extension, we allow cast to/from void* to function pointer. 9264 assert(rhptee->isFunctionType()); 9265 return Sema::FunctionVoidPointer; 9266 } 9267 9268 if (rhptee->isVoidType()) { 9269 if (lhptee->isIncompleteOrObjectType()) 9270 return ConvTy; 9271 9272 // As an extension, we allow cast to/from void* to function pointer. 9273 assert(lhptee->isFunctionType()); 9274 return Sema::FunctionVoidPointer; 9275 } 9276 9277 // C99 6.5.16.1p1 (constraint 3): both operands are pointers to qualified or 9278 // unqualified versions of compatible types, ... 9279 QualType ltrans = QualType(lhptee, 0), rtrans = QualType(rhptee, 0); 9280 if (!S.Context.typesAreCompatible(ltrans, rtrans)) { 9281 // Check if the pointee types are compatible ignoring the sign. 9282 // We explicitly check for char so that we catch "char" vs 9283 // "unsigned char" on systems where "char" is unsigned. 9284 if (lhptee->isCharType()) 9285 ltrans = S.Context.UnsignedCharTy; 9286 else if (lhptee->hasSignedIntegerRepresentation()) 9287 ltrans = S.Context.getCorrespondingUnsignedType(ltrans); 9288 9289 if (rhptee->isCharType()) 9290 rtrans = S.Context.UnsignedCharTy; 9291 else if (rhptee->hasSignedIntegerRepresentation()) 9292 rtrans = S.Context.getCorrespondingUnsignedType(rtrans); 9293 9294 if (ltrans == rtrans) { 9295 // Types are compatible ignoring the sign. Qualifier incompatibility 9296 // takes priority over sign incompatibility because the sign 9297 // warning can be disabled. 9298 if (ConvTy != Sema::Compatible) 9299 return ConvTy; 9300 9301 return Sema::IncompatiblePointerSign; 9302 } 9303 9304 // If we are a multi-level pointer, it's possible that our issue is simply 9305 // one of qualification - e.g. char ** -> const char ** is not allowed. If 9306 // the eventual target type is the same and the pointers have the same 9307 // level of indirection, this must be the issue. 9308 if (isa<PointerType>(lhptee) && isa<PointerType>(rhptee)) { 9309 do { 9310 std::tie(lhptee, lhq) = 9311 cast<PointerType>(lhptee)->getPointeeType().split().asPair(); 9312 std::tie(rhptee, rhq) = 9313 cast<PointerType>(rhptee)->getPointeeType().split().asPair(); 9314 9315 // Inconsistent address spaces at this point is invalid, even if the 9316 // address spaces would be compatible. 9317 // FIXME: This doesn't catch address space mismatches for pointers of 9318 // different nesting levels, like: 9319 // __local int *** a; 9320 // int ** b = a; 9321 // It's not clear how to actually determine when such pointers are 9322 // invalidly incompatible. 9323 if (lhq.getAddressSpace() != rhq.getAddressSpace()) 9324 return Sema::IncompatibleNestedPointerAddressSpaceMismatch; 9325 9326 } while (isa<PointerType>(lhptee) && isa<PointerType>(rhptee)); 9327 9328 if (lhptee == rhptee) 9329 return Sema::IncompatibleNestedPointerQualifiers; 9330 } 9331 9332 // General pointer incompatibility takes priority over qualifiers. 9333 if (RHSType->isFunctionPointerType() && LHSType->isFunctionPointerType()) 9334 return Sema::IncompatibleFunctionPointer; 9335 return Sema::IncompatiblePointer; 9336 } 9337 if (!S.getLangOpts().CPlusPlus && 9338 S.IsFunctionConversion(ltrans, rtrans, ltrans)) 9339 return Sema::IncompatibleFunctionPointer; 9340 if (IsInvalidCmseNSCallConversion(S, ltrans, rtrans)) 9341 return Sema::IncompatibleFunctionPointer; 9342 return ConvTy; 9343 } 9344 9345 /// checkBlockPointerTypesForAssignment - This routine determines whether two 9346 /// block pointer types are compatible or whether a block and normal pointer 9347 /// are compatible. It is more restrict than comparing two function pointer 9348 // types. 9349 static Sema::AssignConvertType 9350 checkBlockPointerTypesForAssignment(Sema &S, QualType LHSType, 9351 QualType RHSType) { 9352 assert(LHSType.isCanonical() && "LHS not canonicalized!"); 9353 assert(RHSType.isCanonical() && "RHS not canonicalized!"); 9354 9355 QualType lhptee, rhptee; 9356 9357 // get the "pointed to" type (ignoring qualifiers at the top level) 9358 lhptee = cast<BlockPointerType>(LHSType)->getPointeeType(); 9359 rhptee = cast<BlockPointerType>(RHSType)->getPointeeType(); 9360 9361 // In C++, the types have to match exactly. 9362 if (S.getLangOpts().CPlusPlus) 9363 return Sema::IncompatibleBlockPointer; 9364 9365 Sema::AssignConvertType ConvTy = Sema::Compatible; 9366 9367 // For blocks we enforce that qualifiers are identical. 9368 Qualifiers LQuals = lhptee.getLocalQualifiers(); 9369 Qualifiers RQuals = rhptee.getLocalQualifiers(); 9370 if (S.getLangOpts().OpenCL) { 9371 LQuals.removeAddressSpace(); 9372 RQuals.removeAddressSpace(); 9373 } 9374 if (LQuals != RQuals) 9375 ConvTy = Sema::CompatiblePointerDiscardsQualifiers; 9376 9377 // FIXME: OpenCL doesn't define the exact compile time semantics for a block 9378 // assignment. 9379 // The current behavior is similar to C++ lambdas. A block might be 9380 // assigned to a variable iff its return type and parameters are compatible 9381 // (C99 6.2.7) with the corresponding return type and parameters of the LHS of 9382 // an assignment. Presumably it should behave in way that a function pointer 9383 // assignment does in C, so for each parameter and return type: 9384 // * CVR and address space of LHS should be a superset of CVR and address 9385 // space of RHS. 9386 // * unqualified types should be compatible. 9387 if (S.getLangOpts().OpenCL) { 9388 if (!S.Context.typesAreBlockPointerCompatible( 9389 S.Context.getQualifiedType(LHSType.getUnqualifiedType(), LQuals), 9390 S.Context.getQualifiedType(RHSType.getUnqualifiedType(), RQuals))) 9391 return Sema::IncompatibleBlockPointer; 9392 } else if (!S.Context.typesAreBlockPointerCompatible(LHSType, RHSType)) 9393 return Sema::IncompatibleBlockPointer; 9394 9395 return ConvTy; 9396 } 9397 9398 /// checkObjCPointerTypesForAssignment - Compares two objective-c pointer types 9399 /// for assignment compatibility. 9400 static Sema::AssignConvertType 9401 checkObjCPointerTypesForAssignment(Sema &S, QualType LHSType, 9402 QualType RHSType) { 9403 assert(LHSType.isCanonical() && "LHS was not canonicalized!"); 9404 assert(RHSType.isCanonical() && "RHS was not canonicalized!"); 9405 9406 if (LHSType->isObjCBuiltinType()) { 9407 // Class is not compatible with ObjC object pointers. 9408 if (LHSType->isObjCClassType() && !RHSType->isObjCBuiltinType() && 9409 !RHSType->isObjCQualifiedClassType()) 9410 return Sema::IncompatiblePointer; 9411 return Sema::Compatible; 9412 } 9413 if (RHSType->isObjCBuiltinType()) { 9414 if (RHSType->isObjCClassType() && !LHSType->isObjCBuiltinType() && 9415 !LHSType->isObjCQualifiedClassType()) 9416 return Sema::IncompatiblePointer; 9417 return Sema::Compatible; 9418 } 9419 QualType lhptee = LHSType->castAs<ObjCObjectPointerType>()->getPointeeType(); 9420 QualType rhptee = RHSType->castAs<ObjCObjectPointerType>()->getPointeeType(); 9421 9422 if (!lhptee.isAtLeastAsQualifiedAs(rhptee) && 9423 // make an exception for id<P> 9424 !LHSType->isObjCQualifiedIdType()) 9425 return Sema::CompatiblePointerDiscardsQualifiers; 9426 9427 if (S.Context.typesAreCompatible(LHSType, RHSType)) 9428 return Sema::Compatible; 9429 if (LHSType->isObjCQualifiedIdType() || RHSType->isObjCQualifiedIdType()) 9430 return Sema::IncompatibleObjCQualifiedId; 9431 return Sema::IncompatiblePointer; 9432 } 9433 9434 Sema::AssignConvertType 9435 Sema::CheckAssignmentConstraints(SourceLocation Loc, 9436 QualType LHSType, QualType RHSType) { 9437 // Fake up an opaque expression. We don't actually care about what 9438 // cast operations are required, so if CheckAssignmentConstraints 9439 // adds casts to this they'll be wasted, but fortunately that doesn't 9440 // usually happen on valid code. 9441 OpaqueValueExpr RHSExpr(Loc, RHSType, VK_PRValue); 9442 ExprResult RHSPtr = &RHSExpr; 9443 CastKind K; 9444 9445 return CheckAssignmentConstraints(LHSType, RHSPtr, K, /*ConvertRHS=*/false); 9446 } 9447 9448 /// This helper function returns true if QT is a vector type that has element 9449 /// type ElementType. 9450 static bool isVector(QualType QT, QualType ElementType) { 9451 if (const VectorType *VT = QT->getAs<VectorType>()) 9452 return VT->getElementType().getCanonicalType() == ElementType; 9453 return false; 9454 } 9455 9456 /// CheckAssignmentConstraints (C99 6.5.16) - This routine currently 9457 /// has code to accommodate several GCC extensions when type checking 9458 /// pointers. Here are some objectionable examples that GCC considers warnings: 9459 /// 9460 /// int a, *pint; 9461 /// short *pshort; 9462 /// struct foo *pfoo; 9463 /// 9464 /// pint = pshort; // warning: assignment from incompatible pointer type 9465 /// a = pint; // warning: assignment makes integer from pointer without a cast 9466 /// pint = a; // warning: assignment makes pointer from integer without a cast 9467 /// pint = pfoo; // warning: assignment from incompatible pointer type 9468 /// 9469 /// As a result, the code for dealing with pointers is more complex than the 9470 /// C99 spec dictates. 9471 /// 9472 /// Sets 'Kind' for any result kind except Incompatible. 9473 Sema::AssignConvertType 9474 Sema::CheckAssignmentConstraints(QualType LHSType, ExprResult &RHS, 9475 CastKind &Kind, bool ConvertRHS) { 9476 QualType RHSType = RHS.get()->getType(); 9477 QualType OrigLHSType = LHSType; 9478 9479 // Get canonical types. We're not formatting these types, just comparing 9480 // them. 9481 LHSType = Context.getCanonicalType(LHSType).getUnqualifiedType(); 9482 RHSType = Context.getCanonicalType(RHSType).getUnqualifiedType(); 9483 9484 // Common case: no conversion required. 9485 if (LHSType == RHSType) { 9486 Kind = CK_NoOp; 9487 return Compatible; 9488 } 9489 9490 // If the LHS has an __auto_type, there are no additional type constraints 9491 // to be worried about. 9492 if (const auto *AT = dyn_cast<AutoType>(LHSType)) { 9493 if (AT->isGNUAutoType()) { 9494 Kind = CK_NoOp; 9495 return Compatible; 9496 } 9497 } 9498 9499 // If we have an atomic type, try a non-atomic assignment, then just add an 9500 // atomic qualification step. 9501 if (const AtomicType *AtomicTy = dyn_cast<AtomicType>(LHSType)) { 9502 Sema::AssignConvertType result = 9503 CheckAssignmentConstraints(AtomicTy->getValueType(), RHS, Kind); 9504 if (result != Compatible) 9505 return result; 9506 if (Kind != CK_NoOp && ConvertRHS) 9507 RHS = ImpCastExprToType(RHS.get(), AtomicTy->getValueType(), Kind); 9508 Kind = CK_NonAtomicToAtomic; 9509 return Compatible; 9510 } 9511 9512 // If the left-hand side is a reference type, then we are in a 9513 // (rare!) case where we've allowed the use of references in C, 9514 // e.g., as a parameter type in a built-in function. In this case, 9515 // just make sure that the type referenced is compatible with the 9516 // right-hand side type. The caller is responsible for adjusting 9517 // LHSType so that the resulting expression does not have reference 9518 // type. 9519 if (const ReferenceType *LHSTypeRef = LHSType->getAs<ReferenceType>()) { 9520 if (Context.typesAreCompatible(LHSTypeRef->getPointeeType(), RHSType)) { 9521 Kind = CK_LValueBitCast; 9522 return Compatible; 9523 } 9524 return Incompatible; 9525 } 9526 9527 // Allow scalar to ExtVector assignments, and assignments of an ExtVector type 9528 // to the same ExtVector type. 9529 if (LHSType->isExtVectorType()) { 9530 if (RHSType->isExtVectorType()) 9531 return Incompatible; 9532 if (RHSType->isArithmeticType()) { 9533 // CK_VectorSplat does T -> vector T, so first cast to the element type. 9534 if (ConvertRHS) 9535 RHS = prepareVectorSplat(LHSType, RHS.get()); 9536 Kind = CK_VectorSplat; 9537 return Compatible; 9538 } 9539 } 9540 9541 // Conversions to or from vector type. 9542 if (LHSType->isVectorType() || RHSType->isVectorType()) { 9543 if (LHSType->isVectorType() && RHSType->isVectorType()) { 9544 // Allow assignments of an AltiVec vector type to an equivalent GCC 9545 // vector type and vice versa 9546 if (Context.areCompatibleVectorTypes(LHSType, RHSType)) { 9547 Kind = CK_BitCast; 9548 return Compatible; 9549 } 9550 9551 // If we are allowing lax vector conversions, and LHS and RHS are both 9552 // vectors, the total size only needs to be the same. This is a bitcast; 9553 // no bits are changed but the result type is different. 9554 if (isLaxVectorConversion(RHSType, LHSType)) { 9555 Kind = CK_BitCast; 9556 return IncompatibleVectors; 9557 } 9558 } 9559 9560 // When the RHS comes from another lax conversion (e.g. binops between 9561 // scalars and vectors) the result is canonicalized as a vector. When the 9562 // LHS is also a vector, the lax is allowed by the condition above. Handle 9563 // the case where LHS is a scalar. 9564 if (LHSType->isScalarType()) { 9565 const VectorType *VecType = RHSType->getAs<VectorType>(); 9566 if (VecType && VecType->getNumElements() == 1 && 9567 isLaxVectorConversion(RHSType, LHSType)) { 9568 ExprResult *VecExpr = &RHS; 9569 *VecExpr = ImpCastExprToType(VecExpr->get(), LHSType, CK_BitCast); 9570 Kind = CK_BitCast; 9571 return Compatible; 9572 } 9573 } 9574 9575 // Allow assignments between fixed-length and sizeless SVE vectors. 9576 if ((LHSType->isSizelessBuiltinType() && RHSType->isVectorType()) || 9577 (LHSType->isVectorType() && RHSType->isSizelessBuiltinType())) 9578 if (Context.areCompatibleSveTypes(LHSType, RHSType) || 9579 Context.areLaxCompatibleSveTypes(LHSType, RHSType)) { 9580 Kind = CK_BitCast; 9581 return Compatible; 9582 } 9583 9584 return Incompatible; 9585 } 9586 9587 // Diagnose attempts to convert between __ibm128, __float128 and long double 9588 // where such conversions currently can't be handled. 9589 if (unsupportedTypeConversion(*this, LHSType, RHSType)) 9590 return Incompatible; 9591 9592 // Disallow assigning a _Complex to a real type in C++ mode since it simply 9593 // discards the imaginary part. 9594 if (getLangOpts().CPlusPlus && RHSType->getAs<ComplexType>() && 9595 !LHSType->getAs<ComplexType>()) 9596 return Incompatible; 9597 9598 // Arithmetic conversions. 9599 if (LHSType->isArithmeticType() && RHSType->isArithmeticType() && 9600 !(getLangOpts().CPlusPlus && LHSType->isEnumeralType())) { 9601 if (ConvertRHS) 9602 Kind = PrepareScalarCast(RHS, LHSType); 9603 return Compatible; 9604 } 9605 9606 // Conversions to normal pointers. 9607 if (const PointerType *LHSPointer = dyn_cast<PointerType>(LHSType)) { 9608 // U* -> T* 9609 if (isa<PointerType>(RHSType)) { 9610 LangAS AddrSpaceL = LHSPointer->getPointeeType().getAddressSpace(); 9611 LangAS AddrSpaceR = RHSType->getPointeeType().getAddressSpace(); 9612 if (AddrSpaceL != AddrSpaceR) 9613 Kind = CK_AddressSpaceConversion; 9614 else if (Context.hasCvrSimilarType(RHSType, LHSType)) 9615 Kind = CK_NoOp; 9616 else 9617 Kind = CK_BitCast; 9618 return checkPointerTypesForAssignment(*this, LHSType, RHSType); 9619 } 9620 9621 // int -> T* 9622 if (RHSType->isIntegerType()) { 9623 Kind = CK_IntegralToPointer; // FIXME: null? 9624 return IntToPointer; 9625 } 9626 9627 // C pointers are not compatible with ObjC object pointers, 9628 // with two exceptions: 9629 if (isa<ObjCObjectPointerType>(RHSType)) { 9630 // - conversions to void* 9631 if (LHSPointer->getPointeeType()->isVoidType()) { 9632 Kind = CK_BitCast; 9633 return Compatible; 9634 } 9635 9636 // - conversions from 'Class' to the redefinition type 9637 if (RHSType->isObjCClassType() && 9638 Context.hasSameType(LHSType, 9639 Context.getObjCClassRedefinitionType())) { 9640 Kind = CK_BitCast; 9641 return Compatible; 9642 } 9643 9644 Kind = CK_BitCast; 9645 return IncompatiblePointer; 9646 } 9647 9648 // U^ -> void* 9649 if (RHSType->getAs<BlockPointerType>()) { 9650 if (LHSPointer->getPointeeType()->isVoidType()) { 9651 LangAS AddrSpaceL = LHSPointer->getPointeeType().getAddressSpace(); 9652 LangAS AddrSpaceR = RHSType->getAs<BlockPointerType>() 9653 ->getPointeeType() 9654 .getAddressSpace(); 9655 Kind = 9656 AddrSpaceL != AddrSpaceR ? CK_AddressSpaceConversion : CK_BitCast; 9657 return Compatible; 9658 } 9659 } 9660 9661 return Incompatible; 9662 } 9663 9664 // Conversions to block pointers. 9665 if (isa<BlockPointerType>(LHSType)) { 9666 // U^ -> T^ 9667 if (RHSType->isBlockPointerType()) { 9668 LangAS AddrSpaceL = LHSType->getAs<BlockPointerType>() 9669 ->getPointeeType() 9670 .getAddressSpace(); 9671 LangAS AddrSpaceR = RHSType->getAs<BlockPointerType>() 9672 ->getPointeeType() 9673 .getAddressSpace(); 9674 Kind = AddrSpaceL != AddrSpaceR ? CK_AddressSpaceConversion : CK_BitCast; 9675 return checkBlockPointerTypesForAssignment(*this, LHSType, RHSType); 9676 } 9677 9678 // int or null -> T^ 9679 if (RHSType->isIntegerType()) { 9680 Kind = CK_IntegralToPointer; // FIXME: null 9681 return IntToBlockPointer; 9682 } 9683 9684 // id -> T^ 9685 if (getLangOpts().ObjC && RHSType->isObjCIdType()) { 9686 Kind = CK_AnyPointerToBlockPointerCast; 9687 return Compatible; 9688 } 9689 9690 // void* -> T^ 9691 if (const PointerType *RHSPT = RHSType->getAs<PointerType>()) 9692 if (RHSPT->getPointeeType()->isVoidType()) { 9693 Kind = CK_AnyPointerToBlockPointerCast; 9694 return Compatible; 9695 } 9696 9697 return Incompatible; 9698 } 9699 9700 // Conversions to Objective-C pointers. 9701 if (isa<ObjCObjectPointerType>(LHSType)) { 9702 // A* -> B* 9703 if (RHSType->isObjCObjectPointerType()) { 9704 Kind = CK_BitCast; 9705 Sema::AssignConvertType result = 9706 checkObjCPointerTypesForAssignment(*this, LHSType, RHSType); 9707 if (getLangOpts().allowsNonTrivialObjCLifetimeQualifiers() && 9708 result == Compatible && 9709 !CheckObjCARCUnavailableWeakConversion(OrigLHSType, RHSType)) 9710 result = IncompatibleObjCWeakRef; 9711 return result; 9712 } 9713 9714 // int or null -> A* 9715 if (RHSType->isIntegerType()) { 9716 Kind = CK_IntegralToPointer; // FIXME: null 9717 return IntToPointer; 9718 } 9719 9720 // In general, C pointers are not compatible with ObjC object pointers, 9721 // with two exceptions: 9722 if (isa<PointerType>(RHSType)) { 9723 Kind = CK_CPointerToObjCPointerCast; 9724 9725 // - conversions from 'void*' 9726 if (RHSType->isVoidPointerType()) { 9727 return Compatible; 9728 } 9729 9730 // - conversions to 'Class' from its redefinition type 9731 if (LHSType->isObjCClassType() && 9732 Context.hasSameType(RHSType, 9733 Context.getObjCClassRedefinitionType())) { 9734 return Compatible; 9735 } 9736 9737 return IncompatiblePointer; 9738 } 9739 9740 // Only under strict condition T^ is compatible with an Objective-C pointer. 9741 if (RHSType->isBlockPointerType() && 9742 LHSType->isBlockCompatibleObjCPointerType(Context)) { 9743 if (ConvertRHS) 9744 maybeExtendBlockObject(RHS); 9745 Kind = CK_BlockPointerToObjCPointerCast; 9746 return Compatible; 9747 } 9748 9749 return Incompatible; 9750 } 9751 9752 // Conversions from pointers that are not covered by the above. 9753 if (isa<PointerType>(RHSType)) { 9754 // T* -> _Bool 9755 if (LHSType == Context.BoolTy) { 9756 Kind = CK_PointerToBoolean; 9757 return Compatible; 9758 } 9759 9760 // T* -> int 9761 if (LHSType->isIntegerType()) { 9762 Kind = CK_PointerToIntegral; 9763 return PointerToInt; 9764 } 9765 9766 return Incompatible; 9767 } 9768 9769 // Conversions from Objective-C pointers that are not covered by the above. 9770 if (isa<ObjCObjectPointerType>(RHSType)) { 9771 // T* -> _Bool 9772 if (LHSType == Context.BoolTy) { 9773 Kind = CK_PointerToBoolean; 9774 return Compatible; 9775 } 9776 9777 // T* -> int 9778 if (LHSType->isIntegerType()) { 9779 Kind = CK_PointerToIntegral; 9780 return PointerToInt; 9781 } 9782 9783 return Incompatible; 9784 } 9785 9786 // struct A -> struct B 9787 if (isa<TagType>(LHSType) && isa<TagType>(RHSType)) { 9788 if (Context.typesAreCompatible(LHSType, RHSType)) { 9789 Kind = CK_NoOp; 9790 return Compatible; 9791 } 9792 } 9793 9794 if (LHSType->isSamplerT() && RHSType->isIntegerType()) { 9795 Kind = CK_IntToOCLSampler; 9796 return Compatible; 9797 } 9798 9799 return Incompatible; 9800 } 9801 9802 /// Constructs a transparent union from an expression that is 9803 /// used to initialize the transparent union. 9804 static void ConstructTransparentUnion(Sema &S, ASTContext &C, 9805 ExprResult &EResult, QualType UnionType, 9806 FieldDecl *Field) { 9807 // Build an initializer list that designates the appropriate member 9808 // of the transparent union. 9809 Expr *E = EResult.get(); 9810 InitListExpr *Initializer = new (C) InitListExpr(C, SourceLocation(), 9811 E, SourceLocation()); 9812 Initializer->setType(UnionType); 9813 Initializer->setInitializedFieldInUnion(Field); 9814 9815 // Build a compound literal constructing a value of the transparent 9816 // union type from this initializer list. 9817 TypeSourceInfo *unionTInfo = C.getTrivialTypeSourceInfo(UnionType); 9818 EResult = new (C) CompoundLiteralExpr(SourceLocation(), unionTInfo, UnionType, 9819 VK_PRValue, Initializer, false); 9820 } 9821 9822 Sema::AssignConvertType 9823 Sema::CheckTransparentUnionArgumentConstraints(QualType ArgType, 9824 ExprResult &RHS) { 9825 QualType RHSType = RHS.get()->getType(); 9826 9827 // If the ArgType is a Union type, we want to handle a potential 9828 // transparent_union GCC extension. 9829 const RecordType *UT = ArgType->getAsUnionType(); 9830 if (!UT || !UT->getDecl()->hasAttr<TransparentUnionAttr>()) 9831 return Incompatible; 9832 9833 // The field to initialize within the transparent union. 9834 RecordDecl *UD = UT->getDecl(); 9835 FieldDecl *InitField = nullptr; 9836 // It's compatible if the expression matches any of the fields. 9837 for (auto *it : UD->fields()) { 9838 if (it->getType()->isPointerType()) { 9839 // If the transparent union contains a pointer type, we allow: 9840 // 1) void pointer 9841 // 2) null pointer constant 9842 if (RHSType->isPointerType()) 9843 if (RHSType->castAs<PointerType>()->getPointeeType()->isVoidType()) { 9844 RHS = ImpCastExprToType(RHS.get(), it->getType(), CK_BitCast); 9845 InitField = it; 9846 break; 9847 } 9848 9849 if (RHS.get()->isNullPointerConstant(Context, 9850 Expr::NPC_ValueDependentIsNull)) { 9851 RHS = ImpCastExprToType(RHS.get(), it->getType(), 9852 CK_NullToPointer); 9853 InitField = it; 9854 break; 9855 } 9856 } 9857 9858 CastKind Kind; 9859 if (CheckAssignmentConstraints(it->getType(), RHS, Kind) 9860 == Compatible) { 9861 RHS = ImpCastExprToType(RHS.get(), it->getType(), Kind); 9862 InitField = it; 9863 break; 9864 } 9865 } 9866 9867 if (!InitField) 9868 return Incompatible; 9869 9870 ConstructTransparentUnion(*this, Context, RHS, ArgType, InitField); 9871 return Compatible; 9872 } 9873 9874 Sema::AssignConvertType 9875 Sema::CheckSingleAssignmentConstraints(QualType LHSType, ExprResult &CallerRHS, 9876 bool Diagnose, 9877 bool DiagnoseCFAudited, 9878 bool ConvertRHS) { 9879 // We need to be able to tell the caller whether we diagnosed a problem, if 9880 // they ask us to issue diagnostics. 9881 assert((ConvertRHS || !Diagnose) && "can't indicate whether we diagnosed"); 9882 9883 // If ConvertRHS is false, we want to leave the caller's RHS untouched. Sadly, 9884 // we can't avoid *all* modifications at the moment, so we need some somewhere 9885 // to put the updated value. 9886 ExprResult LocalRHS = CallerRHS; 9887 ExprResult &RHS = ConvertRHS ? CallerRHS : LocalRHS; 9888 9889 if (const auto *LHSPtrType = LHSType->getAs<PointerType>()) { 9890 if (const auto *RHSPtrType = RHS.get()->getType()->getAs<PointerType>()) { 9891 if (RHSPtrType->getPointeeType()->hasAttr(attr::NoDeref) && 9892 !LHSPtrType->getPointeeType()->hasAttr(attr::NoDeref)) { 9893 Diag(RHS.get()->getExprLoc(), 9894 diag::warn_noderef_to_dereferenceable_pointer) 9895 << RHS.get()->getSourceRange(); 9896 } 9897 } 9898 } 9899 9900 if (getLangOpts().CPlusPlus) { 9901 if (!LHSType->isRecordType() && !LHSType->isAtomicType()) { 9902 // C++ 5.17p3: If the left operand is not of class type, the 9903 // expression is implicitly converted (C++ 4) to the 9904 // cv-unqualified type of the left operand. 9905 QualType RHSType = RHS.get()->getType(); 9906 if (Diagnose) { 9907 RHS = PerformImplicitConversion(RHS.get(), LHSType.getUnqualifiedType(), 9908 AA_Assigning); 9909 } else { 9910 ImplicitConversionSequence ICS = 9911 TryImplicitConversion(RHS.get(), LHSType.getUnqualifiedType(), 9912 /*SuppressUserConversions=*/false, 9913 AllowedExplicit::None, 9914 /*InOverloadResolution=*/false, 9915 /*CStyle=*/false, 9916 /*AllowObjCWritebackConversion=*/false); 9917 if (ICS.isFailure()) 9918 return Incompatible; 9919 RHS = PerformImplicitConversion(RHS.get(), LHSType.getUnqualifiedType(), 9920 ICS, AA_Assigning); 9921 } 9922 if (RHS.isInvalid()) 9923 return Incompatible; 9924 Sema::AssignConvertType result = Compatible; 9925 if (getLangOpts().allowsNonTrivialObjCLifetimeQualifiers() && 9926 !CheckObjCARCUnavailableWeakConversion(LHSType, RHSType)) 9927 result = IncompatibleObjCWeakRef; 9928 return result; 9929 } 9930 9931 // FIXME: Currently, we fall through and treat C++ classes like C 9932 // structures. 9933 // FIXME: We also fall through for atomics; not sure what should 9934 // happen there, though. 9935 } else if (RHS.get()->getType() == Context.OverloadTy) { 9936 // As a set of extensions to C, we support overloading on functions. These 9937 // functions need to be resolved here. 9938 DeclAccessPair DAP; 9939 if (FunctionDecl *FD = ResolveAddressOfOverloadedFunction( 9940 RHS.get(), LHSType, /*Complain=*/false, DAP)) 9941 RHS = FixOverloadedFunctionReference(RHS.get(), DAP, FD); 9942 else 9943 return Incompatible; 9944 } 9945 9946 // C99 6.5.16.1p1: the left operand is a pointer and the right is 9947 // a null pointer constant. 9948 if ((LHSType->isPointerType() || LHSType->isObjCObjectPointerType() || 9949 LHSType->isBlockPointerType()) && 9950 RHS.get()->isNullPointerConstant(Context, 9951 Expr::NPC_ValueDependentIsNull)) { 9952 if (Diagnose || ConvertRHS) { 9953 CastKind Kind; 9954 CXXCastPath Path; 9955 CheckPointerConversion(RHS.get(), LHSType, Kind, Path, 9956 /*IgnoreBaseAccess=*/false, Diagnose); 9957 if (ConvertRHS) 9958 RHS = ImpCastExprToType(RHS.get(), LHSType, Kind, VK_PRValue, &Path); 9959 } 9960 return Compatible; 9961 } 9962 9963 // OpenCL queue_t type assignment. 9964 if (LHSType->isQueueT() && RHS.get()->isNullPointerConstant( 9965 Context, Expr::NPC_ValueDependentIsNull)) { 9966 RHS = ImpCastExprToType(RHS.get(), LHSType, CK_NullToPointer); 9967 return Compatible; 9968 } 9969 9970 // This check seems unnatural, however it is necessary to ensure the proper 9971 // conversion of functions/arrays. If the conversion were done for all 9972 // DeclExpr's (created by ActOnIdExpression), it would mess up the unary 9973 // expressions that suppress this implicit conversion (&, sizeof). 9974 // 9975 // Suppress this for references: C++ 8.5.3p5. 9976 if (!LHSType->isReferenceType()) { 9977 // FIXME: We potentially allocate here even if ConvertRHS is false. 9978 RHS = DefaultFunctionArrayLvalueConversion(RHS.get(), Diagnose); 9979 if (RHS.isInvalid()) 9980 return Incompatible; 9981 } 9982 CastKind Kind; 9983 Sema::AssignConvertType result = 9984 CheckAssignmentConstraints(LHSType, RHS, Kind, ConvertRHS); 9985 9986 // C99 6.5.16.1p2: The value of the right operand is converted to the 9987 // type of the assignment expression. 9988 // CheckAssignmentConstraints allows the left-hand side to be a reference, 9989 // so that we can use references in built-in functions even in C. 9990 // The getNonReferenceType() call makes sure that the resulting expression 9991 // does not have reference type. 9992 if (result != Incompatible && RHS.get()->getType() != LHSType) { 9993 QualType Ty = LHSType.getNonLValueExprType(Context); 9994 Expr *E = RHS.get(); 9995 9996 // Check for various Objective-C errors. If we are not reporting 9997 // diagnostics and just checking for errors, e.g., during overload 9998 // resolution, return Incompatible to indicate the failure. 9999 if (getLangOpts().allowsNonTrivialObjCLifetimeQualifiers() && 10000 CheckObjCConversion(SourceRange(), Ty, E, CCK_ImplicitConversion, 10001 Diagnose, DiagnoseCFAudited) != ACR_okay) { 10002 if (!Diagnose) 10003 return Incompatible; 10004 } 10005 if (getLangOpts().ObjC && 10006 (CheckObjCBridgeRelatedConversions(E->getBeginLoc(), LHSType, 10007 E->getType(), E, Diagnose) || 10008 CheckConversionToObjCLiteral(LHSType, E, Diagnose))) { 10009 if (!Diagnose) 10010 return Incompatible; 10011 // Replace the expression with a corrected version and continue so we 10012 // can find further errors. 10013 RHS = E; 10014 return Compatible; 10015 } 10016 10017 if (ConvertRHS) 10018 RHS = ImpCastExprToType(E, Ty, Kind); 10019 } 10020 10021 return result; 10022 } 10023 10024 namespace { 10025 /// The original operand to an operator, prior to the application of the usual 10026 /// arithmetic conversions and converting the arguments of a builtin operator 10027 /// candidate. 10028 struct OriginalOperand { 10029 explicit OriginalOperand(Expr *Op) : Orig(Op), Conversion(nullptr) { 10030 if (auto *MTE = dyn_cast<MaterializeTemporaryExpr>(Op)) 10031 Op = MTE->getSubExpr(); 10032 if (auto *BTE = dyn_cast<CXXBindTemporaryExpr>(Op)) 10033 Op = BTE->getSubExpr(); 10034 if (auto *ICE = dyn_cast<ImplicitCastExpr>(Op)) { 10035 Orig = ICE->getSubExprAsWritten(); 10036 Conversion = ICE->getConversionFunction(); 10037 } 10038 } 10039 10040 QualType getType() const { return Orig->getType(); } 10041 10042 Expr *Orig; 10043 NamedDecl *Conversion; 10044 }; 10045 } 10046 10047 QualType Sema::InvalidOperands(SourceLocation Loc, ExprResult &LHS, 10048 ExprResult &RHS) { 10049 OriginalOperand OrigLHS(LHS.get()), OrigRHS(RHS.get()); 10050 10051 Diag(Loc, diag::err_typecheck_invalid_operands) 10052 << OrigLHS.getType() << OrigRHS.getType() 10053 << LHS.get()->getSourceRange() << RHS.get()->getSourceRange(); 10054 10055 // If a user-defined conversion was applied to either of the operands prior 10056 // to applying the built-in operator rules, tell the user about it. 10057 if (OrigLHS.Conversion) { 10058 Diag(OrigLHS.Conversion->getLocation(), 10059 diag::note_typecheck_invalid_operands_converted) 10060 << 0 << LHS.get()->getType(); 10061 } 10062 if (OrigRHS.Conversion) { 10063 Diag(OrigRHS.Conversion->getLocation(), 10064 diag::note_typecheck_invalid_operands_converted) 10065 << 1 << RHS.get()->getType(); 10066 } 10067 10068 return QualType(); 10069 } 10070 10071 // Diagnose cases where a scalar was implicitly converted to a vector and 10072 // diagnose the underlying types. Otherwise, diagnose the error 10073 // as invalid vector logical operands for non-C++ cases. 10074 QualType Sema::InvalidLogicalVectorOperands(SourceLocation Loc, ExprResult &LHS, 10075 ExprResult &RHS) { 10076 QualType LHSType = LHS.get()->IgnoreImpCasts()->getType(); 10077 QualType RHSType = RHS.get()->IgnoreImpCasts()->getType(); 10078 10079 bool LHSNatVec = LHSType->isVectorType(); 10080 bool RHSNatVec = RHSType->isVectorType(); 10081 10082 if (!(LHSNatVec && RHSNatVec)) { 10083 Expr *Vector = LHSNatVec ? LHS.get() : RHS.get(); 10084 Expr *NonVector = !LHSNatVec ? LHS.get() : RHS.get(); 10085 Diag(Loc, diag::err_typecheck_logical_vector_expr_gnu_cpp_restrict) 10086 << 0 << Vector->getType() << NonVector->IgnoreImpCasts()->getType() 10087 << Vector->getSourceRange(); 10088 return QualType(); 10089 } 10090 10091 Diag(Loc, diag::err_typecheck_logical_vector_expr_gnu_cpp_restrict) 10092 << 1 << LHSType << RHSType << LHS.get()->getSourceRange() 10093 << RHS.get()->getSourceRange(); 10094 10095 return QualType(); 10096 } 10097 10098 /// Try to convert a value of non-vector type to a vector type by converting 10099 /// the type to the element type of the vector and then performing a splat. 10100 /// If the language is OpenCL, we only use conversions that promote scalar 10101 /// rank; for C, Obj-C, and C++ we allow any real scalar conversion except 10102 /// for float->int. 10103 /// 10104 /// OpenCL V2.0 6.2.6.p2: 10105 /// An error shall occur if any scalar operand type has greater rank 10106 /// than the type of the vector element. 10107 /// 10108 /// \param scalar - if non-null, actually perform the conversions 10109 /// \return true if the operation fails (but without diagnosing the failure) 10110 static bool tryVectorConvertAndSplat(Sema &S, ExprResult *scalar, 10111 QualType scalarTy, 10112 QualType vectorEltTy, 10113 QualType vectorTy, 10114 unsigned &DiagID) { 10115 // The conversion to apply to the scalar before splatting it, 10116 // if necessary. 10117 CastKind scalarCast = CK_NoOp; 10118 10119 if (vectorEltTy->isIntegralType(S.Context)) { 10120 if (S.getLangOpts().OpenCL && (scalarTy->isRealFloatingType() || 10121 (scalarTy->isIntegerType() && 10122 S.Context.getIntegerTypeOrder(vectorEltTy, scalarTy) < 0))) { 10123 DiagID = diag::err_opencl_scalar_type_rank_greater_than_vector_type; 10124 return true; 10125 } 10126 if (!scalarTy->isIntegralType(S.Context)) 10127 return true; 10128 scalarCast = CK_IntegralCast; 10129 } else if (vectorEltTy->isRealFloatingType()) { 10130 if (scalarTy->isRealFloatingType()) { 10131 if (S.getLangOpts().OpenCL && 10132 S.Context.getFloatingTypeOrder(vectorEltTy, scalarTy) < 0) { 10133 DiagID = diag::err_opencl_scalar_type_rank_greater_than_vector_type; 10134 return true; 10135 } 10136 scalarCast = CK_FloatingCast; 10137 } 10138 else if (scalarTy->isIntegralType(S.Context)) 10139 scalarCast = CK_IntegralToFloating; 10140 else 10141 return true; 10142 } else { 10143 return true; 10144 } 10145 10146 // Adjust scalar if desired. 10147 if (scalar) { 10148 if (scalarCast != CK_NoOp) 10149 *scalar = S.ImpCastExprToType(scalar->get(), vectorEltTy, scalarCast); 10150 *scalar = S.ImpCastExprToType(scalar->get(), vectorTy, CK_VectorSplat); 10151 } 10152 return false; 10153 } 10154 10155 /// Convert vector E to a vector with the same number of elements but different 10156 /// element type. 10157 static ExprResult convertVector(Expr *E, QualType ElementType, Sema &S) { 10158 const auto *VecTy = E->getType()->getAs<VectorType>(); 10159 assert(VecTy && "Expression E must be a vector"); 10160 QualType NewVecTy = 10161 VecTy->isExtVectorType() 10162 ? S.Context.getExtVectorType(ElementType, VecTy->getNumElements()) 10163 : S.Context.getVectorType(ElementType, VecTy->getNumElements(), 10164 VecTy->getVectorKind()); 10165 10166 // Look through the implicit cast. Return the subexpression if its type is 10167 // NewVecTy. 10168 if (auto *ICE = dyn_cast<ImplicitCastExpr>(E)) 10169 if (ICE->getSubExpr()->getType() == NewVecTy) 10170 return ICE->getSubExpr(); 10171 10172 auto Cast = ElementType->isIntegerType() ? CK_IntegralCast : CK_FloatingCast; 10173 return S.ImpCastExprToType(E, NewVecTy, Cast); 10174 } 10175 10176 /// Test if a (constant) integer Int can be casted to another integer type 10177 /// IntTy without losing precision. 10178 static bool canConvertIntToOtherIntTy(Sema &S, ExprResult *Int, 10179 QualType OtherIntTy) { 10180 QualType IntTy = Int->get()->getType().getUnqualifiedType(); 10181 10182 // Reject cases where the value of the Int is unknown as that would 10183 // possibly cause truncation, but accept cases where the scalar can be 10184 // demoted without loss of precision. 10185 Expr::EvalResult EVResult; 10186 bool CstInt = Int->get()->EvaluateAsInt(EVResult, S.Context); 10187 int Order = S.Context.getIntegerTypeOrder(OtherIntTy, IntTy); 10188 bool IntSigned = IntTy->hasSignedIntegerRepresentation(); 10189 bool OtherIntSigned = OtherIntTy->hasSignedIntegerRepresentation(); 10190 10191 if (CstInt) { 10192 // If the scalar is constant and is of a higher order and has more active 10193 // bits that the vector element type, reject it. 10194 llvm::APSInt Result = EVResult.Val.getInt(); 10195 unsigned NumBits = IntSigned 10196 ? (Result.isNegative() ? Result.getMinSignedBits() 10197 : Result.getActiveBits()) 10198 : Result.getActiveBits(); 10199 if (Order < 0 && S.Context.getIntWidth(OtherIntTy) < NumBits) 10200 return true; 10201 10202 // If the signedness of the scalar type and the vector element type 10203 // differs and the number of bits is greater than that of the vector 10204 // element reject it. 10205 return (IntSigned != OtherIntSigned && 10206 NumBits > S.Context.getIntWidth(OtherIntTy)); 10207 } 10208 10209 // Reject cases where the value of the scalar is not constant and it's 10210 // order is greater than that of the vector element type. 10211 return (Order < 0); 10212 } 10213 10214 /// Test if a (constant) integer Int can be casted to floating point type 10215 /// FloatTy without losing precision. 10216 static bool canConvertIntTyToFloatTy(Sema &S, ExprResult *Int, 10217 QualType FloatTy) { 10218 QualType IntTy = Int->get()->getType().getUnqualifiedType(); 10219 10220 // Determine if the integer constant can be expressed as a floating point 10221 // number of the appropriate type. 10222 Expr::EvalResult EVResult; 10223 bool CstInt = Int->get()->EvaluateAsInt(EVResult, S.Context); 10224 10225 uint64_t Bits = 0; 10226 if (CstInt) { 10227 // Reject constants that would be truncated if they were converted to 10228 // the floating point type. Test by simple to/from conversion. 10229 // FIXME: Ideally the conversion to an APFloat and from an APFloat 10230 // could be avoided if there was a convertFromAPInt method 10231 // which could signal back if implicit truncation occurred. 10232 llvm::APSInt Result = EVResult.Val.getInt(); 10233 llvm::APFloat Float(S.Context.getFloatTypeSemantics(FloatTy)); 10234 Float.convertFromAPInt(Result, IntTy->hasSignedIntegerRepresentation(), 10235 llvm::APFloat::rmTowardZero); 10236 llvm::APSInt ConvertBack(S.Context.getIntWidth(IntTy), 10237 !IntTy->hasSignedIntegerRepresentation()); 10238 bool Ignored = false; 10239 Float.convertToInteger(ConvertBack, llvm::APFloat::rmNearestTiesToEven, 10240 &Ignored); 10241 if (Result != ConvertBack) 10242 return true; 10243 } else { 10244 // Reject types that cannot be fully encoded into the mantissa of 10245 // the float. 10246 Bits = S.Context.getTypeSize(IntTy); 10247 unsigned FloatPrec = llvm::APFloat::semanticsPrecision( 10248 S.Context.getFloatTypeSemantics(FloatTy)); 10249 if (Bits > FloatPrec) 10250 return true; 10251 } 10252 10253 return false; 10254 } 10255 10256 /// Attempt to convert and splat Scalar into a vector whose types matches 10257 /// Vector following GCC conversion rules. The rule is that implicit 10258 /// conversion can occur when Scalar can be casted to match Vector's element 10259 /// type without causing truncation of Scalar. 10260 static bool tryGCCVectorConvertAndSplat(Sema &S, ExprResult *Scalar, 10261 ExprResult *Vector) { 10262 QualType ScalarTy = Scalar->get()->getType().getUnqualifiedType(); 10263 QualType VectorTy = Vector->get()->getType().getUnqualifiedType(); 10264 const auto *VT = VectorTy->castAs<VectorType>(); 10265 10266 assert(!isa<ExtVectorType>(VT) && 10267 "ExtVectorTypes should not be handled here!"); 10268 10269 QualType VectorEltTy = VT->getElementType(); 10270 10271 // Reject cases where the vector element type or the scalar element type are 10272 // not integral or floating point types. 10273 if (!VectorEltTy->isArithmeticType() || !ScalarTy->isArithmeticType()) 10274 return true; 10275 10276 // The conversion to apply to the scalar before splatting it, 10277 // if necessary. 10278 CastKind ScalarCast = CK_NoOp; 10279 10280 // Accept cases where the vector elements are integers and the scalar is 10281 // an integer. 10282 // FIXME: Notionally if the scalar was a floating point value with a precise 10283 // integral representation, we could cast it to an appropriate integer 10284 // type and then perform the rest of the checks here. GCC will perform 10285 // this conversion in some cases as determined by the input language. 10286 // We should accept it on a language independent basis. 10287 if (VectorEltTy->isIntegralType(S.Context) && 10288 ScalarTy->isIntegralType(S.Context) && 10289 S.Context.getIntegerTypeOrder(VectorEltTy, ScalarTy)) { 10290 10291 if (canConvertIntToOtherIntTy(S, Scalar, VectorEltTy)) 10292 return true; 10293 10294 ScalarCast = CK_IntegralCast; 10295 } else if (VectorEltTy->isIntegralType(S.Context) && 10296 ScalarTy->isRealFloatingType()) { 10297 if (S.Context.getTypeSize(VectorEltTy) == S.Context.getTypeSize(ScalarTy)) 10298 ScalarCast = CK_FloatingToIntegral; 10299 else 10300 return true; 10301 } else if (VectorEltTy->isRealFloatingType()) { 10302 if (ScalarTy->isRealFloatingType()) { 10303 10304 // Reject cases where the scalar type is not a constant and has a higher 10305 // Order than the vector element type. 10306 llvm::APFloat Result(0.0); 10307 10308 // Determine whether this is a constant scalar. In the event that the 10309 // value is dependent (and thus cannot be evaluated by the constant 10310 // evaluator), skip the evaluation. This will then diagnose once the 10311 // expression is instantiated. 10312 bool CstScalar = Scalar->get()->isValueDependent() || 10313 Scalar->get()->EvaluateAsFloat(Result, S.Context); 10314 int Order = S.Context.getFloatingTypeOrder(VectorEltTy, ScalarTy); 10315 if (!CstScalar && Order < 0) 10316 return true; 10317 10318 // If the scalar cannot be safely casted to the vector element type, 10319 // reject it. 10320 if (CstScalar) { 10321 bool Truncated = false; 10322 Result.convert(S.Context.getFloatTypeSemantics(VectorEltTy), 10323 llvm::APFloat::rmNearestTiesToEven, &Truncated); 10324 if (Truncated) 10325 return true; 10326 } 10327 10328 ScalarCast = CK_FloatingCast; 10329 } else if (ScalarTy->isIntegralType(S.Context)) { 10330 if (canConvertIntTyToFloatTy(S, Scalar, VectorEltTy)) 10331 return true; 10332 10333 ScalarCast = CK_IntegralToFloating; 10334 } else 10335 return true; 10336 } else if (ScalarTy->isEnumeralType()) 10337 return true; 10338 10339 // Adjust scalar if desired. 10340 if (Scalar) { 10341 if (ScalarCast != CK_NoOp) 10342 *Scalar = S.ImpCastExprToType(Scalar->get(), VectorEltTy, ScalarCast); 10343 *Scalar = S.ImpCastExprToType(Scalar->get(), VectorTy, CK_VectorSplat); 10344 } 10345 return false; 10346 } 10347 10348 QualType Sema::CheckVectorOperands(ExprResult &LHS, ExprResult &RHS, 10349 SourceLocation Loc, bool IsCompAssign, 10350 bool AllowBothBool, 10351 bool AllowBoolConversions, 10352 bool AllowBoolOperation, 10353 bool ReportInvalid) { 10354 if (!IsCompAssign) { 10355 LHS = DefaultFunctionArrayLvalueConversion(LHS.get()); 10356 if (LHS.isInvalid()) 10357 return QualType(); 10358 } 10359 RHS = DefaultFunctionArrayLvalueConversion(RHS.get()); 10360 if (RHS.isInvalid()) 10361 return QualType(); 10362 10363 // For conversion purposes, we ignore any qualifiers. 10364 // For example, "const float" and "float" are equivalent. 10365 QualType LHSType = LHS.get()->getType().getUnqualifiedType(); 10366 QualType RHSType = RHS.get()->getType().getUnqualifiedType(); 10367 10368 const VectorType *LHSVecType = LHSType->getAs<VectorType>(); 10369 const VectorType *RHSVecType = RHSType->getAs<VectorType>(); 10370 assert(LHSVecType || RHSVecType); 10371 10372 if ((LHSVecType && LHSVecType->getElementType()->isBFloat16Type()) || 10373 (RHSVecType && RHSVecType->getElementType()->isBFloat16Type())) 10374 return ReportInvalid ? InvalidOperands(Loc, LHS, RHS) : QualType(); 10375 10376 // AltiVec-style "vector bool op vector bool" combinations are allowed 10377 // for some operators but not others. 10378 if (!AllowBothBool && 10379 LHSVecType && LHSVecType->getVectorKind() == VectorType::AltiVecBool && 10380 RHSVecType && RHSVecType->getVectorKind() == VectorType::AltiVecBool) 10381 return ReportInvalid ? InvalidOperands(Loc, LHS, RHS) : QualType(); 10382 10383 // This operation may not be performed on boolean vectors. 10384 if (!AllowBoolOperation && 10385 (LHSType->isExtVectorBoolType() || RHSType->isExtVectorBoolType())) 10386 return ReportInvalid ? InvalidOperands(Loc, LHS, RHS) : QualType(); 10387 10388 // If the vector types are identical, return. 10389 if (Context.hasSameType(LHSType, RHSType)) 10390 return LHSType; 10391 10392 // If we have compatible AltiVec and GCC vector types, use the AltiVec type. 10393 if (LHSVecType && RHSVecType && 10394 Context.areCompatibleVectorTypes(LHSType, RHSType)) { 10395 if (isa<ExtVectorType>(LHSVecType)) { 10396 RHS = ImpCastExprToType(RHS.get(), LHSType, CK_BitCast); 10397 return LHSType; 10398 } 10399 10400 if (!IsCompAssign) 10401 LHS = ImpCastExprToType(LHS.get(), RHSType, CK_BitCast); 10402 return RHSType; 10403 } 10404 10405 // AllowBoolConversions says that bool and non-bool AltiVec vectors 10406 // can be mixed, with the result being the non-bool type. The non-bool 10407 // operand must have integer element type. 10408 if (AllowBoolConversions && LHSVecType && RHSVecType && 10409 LHSVecType->getNumElements() == RHSVecType->getNumElements() && 10410 (Context.getTypeSize(LHSVecType->getElementType()) == 10411 Context.getTypeSize(RHSVecType->getElementType()))) { 10412 if (LHSVecType->getVectorKind() == VectorType::AltiVecVector && 10413 LHSVecType->getElementType()->isIntegerType() && 10414 RHSVecType->getVectorKind() == VectorType::AltiVecBool) { 10415 RHS = ImpCastExprToType(RHS.get(), LHSType, CK_BitCast); 10416 return LHSType; 10417 } 10418 if (!IsCompAssign && 10419 LHSVecType->getVectorKind() == VectorType::AltiVecBool && 10420 RHSVecType->getVectorKind() == VectorType::AltiVecVector && 10421 RHSVecType->getElementType()->isIntegerType()) { 10422 LHS = ImpCastExprToType(LHS.get(), RHSType, CK_BitCast); 10423 return RHSType; 10424 } 10425 } 10426 10427 // Expressions containing fixed-length and sizeless SVE vectors are invalid 10428 // since the ambiguity can affect the ABI. 10429 auto IsSveConversion = [](QualType FirstType, QualType SecondType) { 10430 const VectorType *VecType = SecondType->getAs<VectorType>(); 10431 return FirstType->isSizelessBuiltinType() && VecType && 10432 (VecType->getVectorKind() == VectorType::SveFixedLengthDataVector || 10433 VecType->getVectorKind() == 10434 VectorType::SveFixedLengthPredicateVector); 10435 }; 10436 10437 if (IsSveConversion(LHSType, RHSType) || IsSveConversion(RHSType, LHSType)) { 10438 Diag(Loc, diag::err_typecheck_sve_ambiguous) << LHSType << RHSType; 10439 return QualType(); 10440 } 10441 10442 // Expressions containing GNU and SVE (fixed or sizeless) vectors are invalid 10443 // since the ambiguity can affect the ABI. 10444 auto IsSveGnuConversion = [](QualType FirstType, QualType SecondType) { 10445 const VectorType *FirstVecType = FirstType->getAs<VectorType>(); 10446 const VectorType *SecondVecType = SecondType->getAs<VectorType>(); 10447 10448 if (FirstVecType && SecondVecType) 10449 return FirstVecType->getVectorKind() == VectorType::GenericVector && 10450 (SecondVecType->getVectorKind() == 10451 VectorType::SveFixedLengthDataVector || 10452 SecondVecType->getVectorKind() == 10453 VectorType::SveFixedLengthPredicateVector); 10454 10455 return FirstType->isSizelessBuiltinType() && SecondVecType && 10456 SecondVecType->getVectorKind() == VectorType::GenericVector; 10457 }; 10458 10459 if (IsSveGnuConversion(LHSType, RHSType) || 10460 IsSveGnuConversion(RHSType, LHSType)) { 10461 Diag(Loc, diag::err_typecheck_sve_gnu_ambiguous) << LHSType << RHSType; 10462 return QualType(); 10463 } 10464 10465 // If there's a vector type and a scalar, try to convert the scalar to 10466 // the vector element type and splat. 10467 unsigned DiagID = diag::err_typecheck_vector_not_convertable; 10468 if (!RHSVecType) { 10469 if (isa<ExtVectorType>(LHSVecType)) { 10470 if (!tryVectorConvertAndSplat(*this, &RHS, RHSType, 10471 LHSVecType->getElementType(), LHSType, 10472 DiagID)) 10473 return LHSType; 10474 } else { 10475 if (!tryGCCVectorConvertAndSplat(*this, &RHS, &LHS)) 10476 return LHSType; 10477 } 10478 } 10479 if (!LHSVecType) { 10480 if (isa<ExtVectorType>(RHSVecType)) { 10481 if (!tryVectorConvertAndSplat(*this, (IsCompAssign ? nullptr : &LHS), 10482 LHSType, RHSVecType->getElementType(), 10483 RHSType, DiagID)) 10484 return RHSType; 10485 } else { 10486 if (LHS.get()->isLValue() || 10487 !tryGCCVectorConvertAndSplat(*this, &LHS, &RHS)) 10488 return RHSType; 10489 } 10490 } 10491 10492 // FIXME: The code below also handles conversion between vectors and 10493 // non-scalars, we should break this down into fine grained specific checks 10494 // and emit proper diagnostics. 10495 QualType VecType = LHSVecType ? LHSType : RHSType; 10496 const VectorType *VT = LHSVecType ? LHSVecType : RHSVecType; 10497 QualType OtherType = LHSVecType ? RHSType : LHSType; 10498 ExprResult *OtherExpr = LHSVecType ? &RHS : &LHS; 10499 if (isLaxVectorConversion(OtherType, VecType)) { 10500 // If we're allowing lax vector conversions, only the total (data) size 10501 // needs to be the same. For non compound assignment, if one of the types is 10502 // scalar, the result is always the vector type. 10503 if (!IsCompAssign) { 10504 *OtherExpr = ImpCastExprToType(OtherExpr->get(), VecType, CK_BitCast); 10505 return VecType; 10506 // In a compound assignment, lhs += rhs, 'lhs' is a lvalue src, forbidding 10507 // any implicit cast. Here, the 'rhs' should be implicit casted to 'lhs' 10508 // type. Note that this is already done by non-compound assignments in 10509 // CheckAssignmentConstraints. If it's a scalar type, only bitcast for 10510 // <1 x T> -> T. The result is also a vector type. 10511 } else if (OtherType->isExtVectorType() || OtherType->isVectorType() || 10512 (OtherType->isScalarType() && VT->getNumElements() == 1)) { 10513 ExprResult *RHSExpr = &RHS; 10514 *RHSExpr = ImpCastExprToType(RHSExpr->get(), LHSType, CK_BitCast); 10515 return VecType; 10516 } 10517 } 10518 10519 // Okay, the expression is invalid. 10520 10521 // If there's a non-vector, non-real operand, diagnose that. 10522 if ((!RHSVecType && !RHSType->isRealType()) || 10523 (!LHSVecType && !LHSType->isRealType())) { 10524 Diag(Loc, diag::err_typecheck_vector_not_convertable_non_scalar) 10525 << LHSType << RHSType 10526 << LHS.get()->getSourceRange() << RHS.get()->getSourceRange(); 10527 return QualType(); 10528 } 10529 10530 // OpenCL V1.1 6.2.6.p1: 10531 // If the operands are of more than one vector type, then an error shall 10532 // occur. Implicit conversions between vector types are not permitted, per 10533 // section 6.2.1. 10534 if (getLangOpts().OpenCL && 10535 RHSVecType && isa<ExtVectorType>(RHSVecType) && 10536 LHSVecType && isa<ExtVectorType>(LHSVecType)) { 10537 Diag(Loc, diag::err_opencl_implicit_vector_conversion) << LHSType 10538 << RHSType; 10539 return QualType(); 10540 } 10541 10542 10543 // If there is a vector type that is not a ExtVector and a scalar, we reach 10544 // this point if scalar could not be converted to the vector's element type 10545 // without truncation. 10546 if ((RHSVecType && !isa<ExtVectorType>(RHSVecType)) || 10547 (LHSVecType && !isa<ExtVectorType>(LHSVecType))) { 10548 QualType Scalar = LHSVecType ? RHSType : LHSType; 10549 QualType Vector = LHSVecType ? LHSType : RHSType; 10550 unsigned ScalarOrVector = LHSVecType && RHSVecType ? 1 : 0; 10551 Diag(Loc, 10552 diag::err_typecheck_vector_not_convertable_implict_truncation) 10553 << ScalarOrVector << Scalar << Vector; 10554 10555 return QualType(); 10556 } 10557 10558 // Otherwise, use the generic diagnostic. 10559 Diag(Loc, DiagID) 10560 << LHSType << RHSType 10561 << LHS.get()->getSourceRange() << RHS.get()->getSourceRange(); 10562 return QualType(); 10563 } 10564 10565 QualType Sema::CheckSizelessVectorOperands(ExprResult &LHS, ExprResult &RHS, 10566 SourceLocation Loc, 10567 bool IsCompAssign, 10568 ArithConvKind OperationKind) { 10569 if (!IsCompAssign) { 10570 LHS = DefaultFunctionArrayLvalueConversion(LHS.get()); 10571 if (LHS.isInvalid()) 10572 return QualType(); 10573 } 10574 RHS = DefaultFunctionArrayLvalueConversion(RHS.get()); 10575 if (RHS.isInvalid()) 10576 return QualType(); 10577 10578 QualType LHSType = LHS.get()->getType().getUnqualifiedType(); 10579 QualType RHSType = RHS.get()->getType().getUnqualifiedType(); 10580 10581 unsigned DiagID = diag::err_typecheck_invalid_operands; 10582 if ((OperationKind == ACK_Arithmetic) && 10583 (LHSType->castAs<BuiltinType>()->isSVEBool() || 10584 RHSType->castAs<BuiltinType>()->isSVEBool())) { 10585 Diag(Loc, DiagID) << LHSType << RHSType << LHS.get()->getSourceRange() 10586 << RHS.get()->getSourceRange(); 10587 return QualType(); 10588 } 10589 10590 if (Context.hasSameType(LHSType, RHSType)) 10591 return LHSType; 10592 10593 auto tryScalableVectorConvert = [this](ExprResult *Src, QualType SrcType, 10594 QualType DestType) { 10595 const QualType DestBaseType = DestType->getSveEltType(Context); 10596 if (DestBaseType->getUnqualifiedDesugaredType() == 10597 SrcType->getUnqualifiedDesugaredType()) { 10598 unsigned DiagID = diag::err_typecheck_invalid_operands; 10599 if (!tryVectorConvertAndSplat(*this, Src, SrcType, DestBaseType, DestType, 10600 DiagID)) 10601 return DestType; 10602 } 10603 return QualType(); 10604 }; 10605 10606 if (LHSType->isVLSTBuiltinType() && !RHSType->isVLSTBuiltinType()) { 10607 auto DestType = tryScalableVectorConvert(&RHS, RHSType, LHSType); 10608 if (DestType == QualType()) 10609 return InvalidOperands(Loc, LHS, RHS); 10610 return DestType; 10611 } 10612 10613 if (RHSType->isVLSTBuiltinType() && !LHSType->isVLSTBuiltinType()) { 10614 auto DestType = tryScalableVectorConvert((IsCompAssign ? nullptr : &LHS), 10615 LHSType, RHSType); 10616 if (DestType == QualType()) 10617 return InvalidOperands(Loc, LHS, RHS); 10618 return DestType; 10619 } 10620 10621 Diag(Loc, DiagID) << LHSType << RHSType << LHS.get()->getSourceRange() 10622 << RHS.get()->getSourceRange(); 10623 return QualType(); 10624 } 10625 10626 // checkArithmeticNull - Detect when a NULL constant is used improperly in an 10627 // expression. These are mainly cases where the null pointer is used as an 10628 // integer instead of a pointer. 10629 static void checkArithmeticNull(Sema &S, ExprResult &LHS, ExprResult &RHS, 10630 SourceLocation Loc, bool IsCompare) { 10631 // The canonical way to check for a GNU null is with isNullPointerConstant, 10632 // but we use a bit of a hack here for speed; this is a relatively 10633 // hot path, and isNullPointerConstant is slow. 10634 bool LHSNull = isa<GNUNullExpr>(LHS.get()->IgnoreParenImpCasts()); 10635 bool RHSNull = isa<GNUNullExpr>(RHS.get()->IgnoreParenImpCasts()); 10636 10637 QualType NonNullType = LHSNull ? RHS.get()->getType() : LHS.get()->getType(); 10638 10639 // Avoid analyzing cases where the result will either be invalid (and 10640 // diagnosed as such) or entirely valid and not something to warn about. 10641 if ((!LHSNull && !RHSNull) || NonNullType->isBlockPointerType() || 10642 NonNullType->isMemberPointerType() || NonNullType->isFunctionType()) 10643 return; 10644 10645 // Comparison operations would not make sense with a null pointer no matter 10646 // what the other expression is. 10647 if (!IsCompare) { 10648 S.Diag(Loc, diag::warn_null_in_arithmetic_operation) 10649 << (LHSNull ? LHS.get()->getSourceRange() : SourceRange()) 10650 << (RHSNull ? RHS.get()->getSourceRange() : SourceRange()); 10651 return; 10652 } 10653 10654 // The rest of the operations only make sense with a null pointer 10655 // if the other expression is a pointer. 10656 if (LHSNull == RHSNull || NonNullType->isAnyPointerType() || 10657 NonNullType->canDecayToPointerType()) 10658 return; 10659 10660 S.Diag(Loc, diag::warn_null_in_comparison_operation) 10661 << LHSNull /* LHS is NULL */ << NonNullType 10662 << LHS.get()->getSourceRange() << RHS.get()->getSourceRange(); 10663 } 10664 10665 static void DiagnoseDivisionSizeofPointerOrArray(Sema &S, Expr *LHS, Expr *RHS, 10666 SourceLocation Loc) { 10667 const auto *LUE = dyn_cast<UnaryExprOrTypeTraitExpr>(LHS); 10668 const auto *RUE = dyn_cast<UnaryExprOrTypeTraitExpr>(RHS); 10669 if (!LUE || !RUE) 10670 return; 10671 if (LUE->getKind() != UETT_SizeOf || LUE->isArgumentType() || 10672 RUE->getKind() != UETT_SizeOf) 10673 return; 10674 10675 const Expr *LHSArg = LUE->getArgumentExpr()->IgnoreParens(); 10676 QualType LHSTy = LHSArg->getType(); 10677 QualType RHSTy; 10678 10679 if (RUE->isArgumentType()) 10680 RHSTy = RUE->getArgumentType().getNonReferenceType(); 10681 else 10682 RHSTy = RUE->getArgumentExpr()->IgnoreParens()->getType(); 10683 10684 if (LHSTy->isPointerType() && !RHSTy->isPointerType()) { 10685 if (!S.Context.hasSameUnqualifiedType(LHSTy->getPointeeType(), RHSTy)) 10686 return; 10687 10688 S.Diag(Loc, diag::warn_division_sizeof_ptr) << LHS << LHS->getSourceRange(); 10689 if (const auto *DRE = dyn_cast<DeclRefExpr>(LHSArg)) { 10690 if (const ValueDecl *LHSArgDecl = DRE->getDecl()) 10691 S.Diag(LHSArgDecl->getLocation(), diag::note_pointer_declared_here) 10692 << LHSArgDecl; 10693 } 10694 } else if (const auto *ArrayTy = S.Context.getAsArrayType(LHSTy)) { 10695 QualType ArrayElemTy = ArrayTy->getElementType(); 10696 if (ArrayElemTy != S.Context.getBaseElementType(ArrayTy) || 10697 ArrayElemTy->isDependentType() || RHSTy->isDependentType() || 10698 RHSTy->isReferenceType() || ArrayElemTy->isCharType() || 10699 S.Context.getTypeSize(ArrayElemTy) == S.Context.getTypeSize(RHSTy)) 10700 return; 10701 S.Diag(Loc, diag::warn_division_sizeof_array) 10702 << LHSArg->getSourceRange() << ArrayElemTy << RHSTy; 10703 if (const auto *DRE = dyn_cast<DeclRefExpr>(LHSArg)) { 10704 if (const ValueDecl *LHSArgDecl = DRE->getDecl()) 10705 S.Diag(LHSArgDecl->getLocation(), diag::note_array_declared_here) 10706 << LHSArgDecl; 10707 } 10708 10709 S.Diag(Loc, diag::note_precedence_silence) << RHS; 10710 } 10711 } 10712 10713 static void DiagnoseBadDivideOrRemainderValues(Sema& S, ExprResult &LHS, 10714 ExprResult &RHS, 10715 SourceLocation Loc, bool IsDiv) { 10716 // Check for division/remainder by zero. 10717 Expr::EvalResult RHSValue; 10718 if (!RHS.get()->isValueDependent() && 10719 RHS.get()->EvaluateAsInt(RHSValue, S.Context) && 10720 RHSValue.Val.getInt() == 0) 10721 S.DiagRuntimeBehavior(Loc, RHS.get(), 10722 S.PDiag(diag::warn_remainder_division_by_zero) 10723 << IsDiv << RHS.get()->getSourceRange()); 10724 } 10725 10726 QualType Sema::CheckMultiplyDivideOperands(ExprResult &LHS, ExprResult &RHS, 10727 SourceLocation Loc, 10728 bool IsCompAssign, bool IsDiv) { 10729 checkArithmeticNull(*this, LHS, RHS, Loc, /*IsCompare=*/false); 10730 10731 QualType LHSTy = LHS.get()->getType(); 10732 QualType RHSTy = RHS.get()->getType(); 10733 if (LHSTy->isVectorType() || RHSTy->isVectorType()) 10734 return CheckVectorOperands(LHS, RHS, Loc, IsCompAssign, 10735 /*AllowBothBool*/ getLangOpts().AltiVec, 10736 /*AllowBoolConversions*/ false, 10737 /*AllowBooleanOperation*/ false, 10738 /*ReportInvalid*/ true); 10739 if (LHSTy->isVLSTBuiltinType() || RHSTy->isVLSTBuiltinType()) 10740 return CheckSizelessVectorOperands(LHS, RHS, Loc, IsCompAssign, 10741 ACK_Arithmetic); 10742 if (!IsDiv && 10743 (LHSTy->isConstantMatrixType() || RHSTy->isConstantMatrixType())) 10744 return CheckMatrixMultiplyOperands(LHS, RHS, Loc, IsCompAssign); 10745 // For division, only matrix-by-scalar is supported. Other combinations with 10746 // matrix types are invalid. 10747 if (IsDiv && LHSTy->isConstantMatrixType() && RHSTy->isArithmeticType()) 10748 return CheckMatrixElementwiseOperands(LHS, RHS, Loc, IsCompAssign); 10749 10750 QualType compType = UsualArithmeticConversions( 10751 LHS, RHS, Loc, IsCompAssign ? ACK_CompAssign : ACK_Arithmetic); 10752 if (LHS.isInvalid() || RHS.isInvalid()) 10753 return QualType(); 10754 10755 10756 if (compType.isNull() || !compType->isArithmeticType()) 10757 return InvalidOperands(Loc, LHS, RHS); 10758 if (IsDiv) { 10759 DiagnoseBadDivideOrRemainderValues(*this, LHS, RHS, Loc, IsDiv); 10760 DiagnoseDivisionSizeofPointerOrArray(*this, LHS.get(), RHS.get(), Loc); 10761 } 10762 return compType; 10763 } 10764 10765 QualType Sema::CheckRemainderOperands( 10766 ExprResult &LHS, ExprResult &RHS, SourceLocation Loc, bool IsCompAssign) { 10767 checkArithmeticNull(*this, LHS, RHS, Loc, /*IsCompare=*/false); 10768 10769 if (LHS.get()->getType()->isVectorType() || 10770 RHS.get()->getType()->isVectorType()) { 10771 if (LHS.get()->getType()->hasIntegerRepresentation() && 10772 RHS.get()->getType()->hasIntegerRepresentation()) 10773 return CheckVectorOperands(LHS, RHS, Loc, IsCompAssign, 10774 /*AllowBothBool*/ getLangOpts().AltiVec, 10775 /*AllowBoolConversions*/ false, 10776 /*AllowBooleanOperation*/ false, 10777 /*ReportInvalid*/ true); 10778 return InvalidOperands(Loc, LHS, RHS); 10779 } 10780 10781 if (LHS.get()->getType()->isVLSTBuiltinType() || 10782 RHS.get()->getType()->isVLSTBuiltinType()) { 10783 if (LHS.get()->getType()->hasIntegerRepresentation() && 10784 RHS.get()->getType()->hasIntegerRepresentation()) 10785 return CheckSizelessVectorOperands(LHS, RHS, Loc, IsCompAssign, 10786 ACK_Arithmetic); 10787 10788 return InvalidOperands(Loc, LHS, RHS); 10789 } 10790 10791 QualType compType = UsualArithmeticConversions( 10792 LHS, RHS, Loc, IsCompAssign ? ACK_CompAssign : ACK_Arithmetic); 10793 if (LHS.isInvalid() || RHS.isInvalid()) 10794 return QualType(); 10795 10796 if (compType.isNull() || !compType->isIntegerType()) 10797 return InvalidOperands(Loc, LHS, RHS); 10798 DiagnoseBadDivideOrRemainderValues(*this, LHS, RHS, Loc, false /* IsDiv */); 10799 return compType; 10800 } 10801 10802 /// Diagnose invalid arithmetic on two void pointers. 10803 static void diagnoseArithmeticOnTwoVoidPointers(Sema &S, SourceLocation Loc, 10804 Expr *LHSExpr, Expr *RHSExpr) { 10805 S.Diag(Loc, S.getLangOpts().CPlusPlus 10806 ? diag::err_typecheck_pointer_arith_void_type 10807 : diag::ext_gnu_void_ptr) 10808 << 1 /* two pointers */ << LHSExpr->getSourceRange() 10809 << RHSExpr->getSourceRange(); 10810 } 10811 10812 /// Diagnose invalid arithmetic on a void pointer. 10813 static void diagnoseArithmeticOnVoidPointer(Sema &S, SourceLocation Loc, 10814 Expr *Pointer) { 10815 S.Diag(Loc, S.getLangOpts().CPlusPlus 10816 ? diag::err_typecheck_pointer_arith_void_type 10817 : diag::ext_gnu_void_ptr) 10818 << 0 /* one pointer */ << Pointer->getSourceRange(); 10819 } 10820 10821 /// Diagnose invalid arithmetic on a null pointer. 10822 /// 10823 /// If \p IsGNUIdiom is true, the operation is using the 'p = (i8*)nullptr + n' 10824 /// idiom, which we recognize as a GNU extension. 10825 /// 10826 static void diagnoseArithmeticOnNullPointer(Sema &S, SourceLocation Loc, 10827 Expr *Pointer, bool IsGNUIdiom) { 10828 if (IsGNUIdiom) 10829 S.Diag(Loc, diag::warn_gnu_null_ptr_arith) 10830 << Pointer->getSourceRange(); 10831 else 10832 S.Diag(Loc, diag::warn_pointer_arith_null_ptr) 10833 << S.getLangOpts().CPlusPlus << Pointer->getSourceRange(); 10834 } 10835 10836 /// Diagnose invalid subraction on a null pointer. 10837 /// 10838 static void diagnoseSubtractionOnNullPointer(Sema &S, SourceLocation Loc, 10839 Expr *Pointer, bool BothNull) { 10840 // Null - null is valid in C++ [expr.add]p7 10841 if (BothNull && S.getLangOpts().CPlusPlus) 10842 return; 10843 10844 // Is this s a macro from a system header? 10845 if (S.Diags.getSuppressSystemWarnings() && S.SourceMgr.isInSystemMacro(Loc)) 10846 return; 10847 10848 S.Diag(Loc, diag::warn_pointer_sub_null_ptr) 10849 << S.getLangOpts().CPlusPlus << Pointer->getSourceRange(); 10850 } 10851 10852 /// Diagnose invalid arithmetic on two function pointers. 10853 static void diagnoseArithmeticOnTwoFunctionPointers(Sema &S, SourceLocation Loc, 10854 Expr *LHS, Expr *RHS) { 10855 assert(LHS->getType()->isAnyPointerType()); 10856 assert(RHS->getType()->isAnyPointerType()); 10857 S.Diag(Loc, S.getLangOpts().CPlusPlus 10858 ? diag::err_typecheck_pointer_arith_function_type 10859 : diag::ext_gnu_ptr_func_arith) 10860 << 1 /* two pointers */ << LHS->getType()->getPointeeType() 10861 // We only show the second type if it differs from the first. 10862 << (unsigned)!S.Context.hasSameUnqualifiedType(LHS->getType(), 10863 RHS->getType()) 10864 << RHS->getType()->getPointeeType() 10865 << LHS->getSourceRange() << RHS->getSourceRange(); 10866 } 10867 10868 /// Diagnose invalid arithmetic on a function pointer. 10869 static void diagnoseArithmeticOnFunctionPointer(Sema &S, SourceLocation Loc, 10870 Expr *Pointer) { 10871 assert(Pointer->getType()->isAnyPointerType()); 10872 S.Diag(Loc, S.getLangOpts().CPlusPlus 10873 ? diag::err_typecheck_pointer_arith_function_type 10874 : diag::ext_gnu_ptr_func_arith) 10875 << 0 /* one pointer */ << Pointer->getType()->getPointeeType() 10876 << 0 /* one pointer, so only one type */ 10877 << Pointer->getSourceRange(); 10878 } 10879 10880 /// Emit error if Operand is incomplete pointer type 10881 /// 10882 /// \returns True if pointer has incomplete type 10883 static bool checkArithmeticIncompletePointerType(Sema &S, SourceLocation Loc, 10884 Expr *Operand) { 10885 QualType ResType = Operand->getType(); 10886 if (const AtomicType *ResAtomicType = ResType->getAs<AtomicType>()) 10887 ResType = ResAtomicType->getValueType(); 10888 10889 assert(ResType->isAnyPointerType() && !ResType->isDependentType()); 10890 QualType PointeeTy = ResType->getPointeeType(); 10891 return S.RequireCompleteSizedType( 10892 Loc, PointeeTy, 10893 diag::err_typecheck_arithmetic_incomplete_or_sizeless_type, 10894 Operand->getSourceRange()); 10895 } 10896 10897 /// Check the validity of an arithmetic pointer operand. 10898 /// 10899 /// If the operand has pointer type, this code will check for pointer types 10900 /// which are invalid in arithmetic operations. These will be diagnosed 10901 /// appropriately, including whether or not the use is supported as an 10902 /// extension. 10903 /// 10904 /// \returns True when the operand is valid to use (even if as an extension). 10905 static bool checkArithmeticOpPointerOperand(Sema &S, SourceLocation Loc, 10906 Expr *Operand) { 10907 QualType ResType = Operand->getType(); 10908 if (const AtomicType *ResAtomicType = ResType->getAs<AtomicType>()) 10909 ResType = ResAtomicType->getValueType(); 10910 10911 if (!ResType->isAnyPointerType()) return true; 10912 10913 QualType PointeeTy = ResType->getPointeeType(); 10914 if (PointeeTy->isVoidType()) { 10915 diagnoseArithmeticOnVoidPointer(S, Loc, Operand); 10916 return !S.getLangOpts().CPlusPlus; 10917 } 10918 if (PointeeTy->isFunctionType()) { 10919 diagnoseArithmeticOnFunctionPointer(S, Loc, Operand); 10920 return !S.getLangOpts().CPlusPlus; 10921 } 10922 10923 if (checkArithmeticIncompletePointerType(S, Loc, Operand)) return false; 10924 10925 return true; 10926 } 10927 10928 /// Check the validity of a binary arithmetic operation w.r.t. pointer 10929 /// operands. 10930 /// 10931 /// This routine will diagnose any invalid arithmetic on pointer operands much 10932 /// like \see checkArithmeticOpPointerOperand. However, it has special logic 10933 /// for emitting a single diagnostic even for operations where both LHS and RHS 10934 /// are (potentially problematic) pointers. 10935 /// 10936 /// \returns True when the operand is valid to use (even if as an extension). 10937 static bool checkArithmeticBinOpPointerOperands(Sema &S, SourceLocation Loc, 10938 Expr *LHSExpr, Expr *RHSExpr) { 10939 bool isLHSPointer = LHSExpr->getType()->isAnyPointerType(); 10940 bool isRHSPointer = RHSExpr->getType()->isAnyPointerType(); 10941 if (!isLHSPointer && !isRHSPointer) return true; 10942 10943 QualType LHSPointeeTy, RHSPointeeTy; 10944 if (isLHSPointer) LHSPointeeTy = LHSExpr->getType()->getPointeeType(); 10945 if (isRHSPointer) RHSPointeeTy = RHSExpr->getType()->getPointeeType(); 10946 10947 // if both are pointers check if operation is valid wrt address spaces 10948 if (isLHSPointer && isRHSPointer) { 10949 if (!LHSPointeeTy.isAddressSpaceOverlapping(RHSPointeeTy)) { 10950 S.Diag(Loc, 10951 diag::err_typecheck_op_on_nonoverlapping_address_space_pointers) 10952 << LHSExpr->getType() << RHSExpr->getType() << 1 /*arithmetic op*/ 10953 << LHSExpr->getSourceRange() << RHSExpr->getSourceRange(); 10954 return false; 10955 } 10956 } 10957 10958 // Check for arithmetic on pointers to incomplete types. 10959 bool isLHSVoidPtr = isLHSPointer && LHSPointeeTy->isVoidType(); 10960 bool isRHSVoidPtr = isRHSPointer && RHSPointeeTy->isVoidType(); 10961 if (isLHSVoidPtr || isRHSVoidPtr) { 10962 if (!isRHSVoidPtr) diagnoseArithmeticOnVoidPointer(S, Loc, LHSExpr); 10963 else if (!isLHSVoidPtr) diagnoseArithmeticOnVoidPointer(S, Loc, RHSExpr); 10964 else diagnoseArithmeticOnTwoVoidPointers(S, Loc, LHSExpr, RHSExpr); 10965 10966 return !S.getLangOpts().CPlusPlus; 10967 } 10968 10969 bool isLHSFuncPtr = isLHSPointer && LHSPointeeTy->isFunctionType(); 10970 bool isRHSFuncPtr = isRHSPointer && RHSPointeeTy->isFunctionType(); 10971 if (isLHSFuncPtr || isRHSFuncPtr) { 10972 if (!isRHSFuncPtr) diagnoseArithmeticOnFunctionPointer(S, Loc, LHSExpr); 10973 else if (!isLHSFuncPtr) diagnoseArithmeticOnFunctionPointer(S, Loc, 10974 RHSExpr); 10975 else diagnoseArithmeticOnTwoFunctionPointers(S, Loc, LHSExpr, RHSExpr); 10976 10977 return !S.getLangOpts().CPlusPlus; 10978 } 10979 10980 if (isLHSPointer && checkArithmeticIncompletePointerType(S, Loc, LHSExpr)) 10981 return false; 10982 if (isRHSPointer && checkArithmeticIncompletePointerType(S, Loc, RHSExpr)) 10983 return false; 10984 10985 return true; 10986 } 10987 10988 /// diagnoseStringPlusInt - Emit a warning when adding an integer to a string 10989 /// literal. 10990 static void diagnoseStringPlusInt(Sema &Self, SourceLocation OpLoc, 10991 Expr *LHSExpr, Expr *RHSExpr) { 10992 StringLiteral* StrExpr = dyn_cast<StringLiteral>(LHSExpr->IgnoreImpCasts()); 10993 Expr* IndexExpr = RHSExpr; 10994 if (!StrExpr) { 10995 StrExpr = dyn_cast<StringLiteral>(RHSExpr->IgnoreImpCasts()); 10996 IndexExpr = LHSExpr; 10997 } 10998 10999 bool IsStringPlusInt = StrExpr && 11000 IndexExpr->getType()->isIntegralOrUnscopedEnumerationType(); 11001 if (!IsStringPlusInt || IndexExpr->isValueDependent()) 11002 return; 11003 11004 SourceRange DiagRange(LHSExpr->getBeginLoc(), RHSExpr->getEndLoc()); 11005 Self.Diag(OpLoc, diag::warn_string_plus_int) 11006 << DiagRange << IndexExpr->IgnoreImpCasts()->getType(); 11007 11008 // Only print a fixit for "str" + int, not for int + "str". 11009 if (IndexExpr == RHSExpr) { 11010 SourceLocation EndLoc = Self.getLocForEndOfToken(RHSExpr->getEndLoc()); 11011 Self.Diag(OpLoc, diag::note_string_plus_scalar_silence) 11012 << FixItHint::CreateInsertion(LHSExpr->getBeginLoc(), "&") 11013 << FixItHint::CreateReplacement(SourceRange(OpLoc), "[") 11014 << FixItHint::CreateInsertion(EndLoc, "]"); 11015 } else 11016 Self.Diag(OpLoc, diag::note_string_plus_scalar_silence); 11017 } 11018 11019 /// Emit a warning when adding a char literal to a string. 11020 static void diagnoseStringPlusChar(Sema &Self, SourceLocation OpLoc, 11021 Expr *LHSExpr, Expr *RHSExpr) { 11022 const Expr *StringRefExpr = LHSExpr; 11023 const CharacterLiteral *CharExpr = 11024 dyn_cast<CharacterLiteral>(RHSExpr->IgnoreImpCasts()); 11025 11026 if (!CharExpr) { 11027 CharExpr = dyn_cast<CharacterLiteral>(LHSExpr->IgnoreImpCasts()); 11028 StringRefExpr = RHSExpr; 11029 } 11030 11031 if (!CharExpr || !StringRefExpr) 11032 return; 11033 11034 const QualType StringType = StringRefExpr->getType(); 11035 11036 // Return if not a PointerType. 11037 if (!StringType->isAnyPointerType()) 11038 return; 11039 11040 // Return if not a CharacterType. 11041 if (!StringType->getPointeeType()->isAnyCharacterType()) 11042 return; 11043 11044 ASTContext &Ctx = Self.getASTContext(); 11045 SourceRange DiagRange(LHSExpr->getBeginLoc(), RHSExpr->getEndLoc()); 11046 11047 const QualType CharType = CharExpr->getType(); 11048 if (!CharType->isAnyCharacterType() && 11049 CharType->isIntegerType() && 11050 llvm::isUIntN(Ctx.getCharWidth(), CharExpr->getValue())) { 11051 Self.Diag(OpLoc, diag::warn_string_plus_char) 11052 << DiagRange << Ctx.CharTy; 11053 } else { 11054 Self.Diag(OpLoc, diag::warn_string_plus_char) 11055 << DiagRange << CharExpr->getType(); 11056 } 11057 11058 // Only print a fixit for str + char, not for char + str. 11059 if (isa<CharacterLiteral>(RHSExpr->IgnoreImpCasts())) { 11060 SourceLocation EndLoc = Self.getLocForEndOfToken(RHSExpr->getEndLoc()); 11061 Self.Diag(OpLoc, diag::note_string_plus_scalar_silence) 11062 << FixItHint::CreateInsertion(LHSExpr->getBeginLoc(), "&") 11063 << FixItHint::CreateReplacement(SourceRange(OpLoc), "[") 11064 << FixItHint::CreateInsertion(EndLoc, "]"); 11065 } else { 11066 Self.Diag(OpLoc, diag::note_string_plus_scalar_silence); 11067 } 11068 } 11069 11070 /// Emit error when two pointers are incompatible. 11071 static void diagnosePointerIncompatibility(Sema &S, SourceLocation Loc, 11072 Expr *LHSExpr, Expr *RHSExpr) { 11073 assert(LHSExpr->getType()->isAnyPointerType()); 11074 assert(RHSExpr->getType()->isAnyPointerType()); 11075 S.Diag(Loc, diag::err_typecheck_sub_ptr_compatible) 11076 << LHSExpr->getType() << RHSExpr->getType() << LHSExpr->getSourceRange() 11077 << RHSExpr->getSourceRange(); 11078 } 11079 11080 // C99 6.5.6 11081 QualType Sema::CheckAdditionOperands(ExprResult &LHS, ExprResult &RHS, 11082 SourceLocation Loc, BinaryOperatorKind Opc, 11083 QualType* CompLHSTy) { 11084 checkArithmeticNull(*this, LHS, RHS, Loc, /*IsCompare=*/false); 11085 11086 if (LHS.get()->getType()->isVectorType() || 11087 RHS.get()->getType()->isVectorType()) { 11088 QualType compType = 11089 CheckVectorOperands(LHS, RHS, Loc, CompLHSTy, 11090 /*AllowBothBool*/ getLangOpts().AltiVec, 11091 /*AllowBoolConversions*/ getLangOpts().ZVector, 11092 /*AllowBooleanOperation*/ false, 11093 /*ReportInvalid*/ true); 11094 if (CompLHSTy) *CompLHSTy = compType; 11095 return compType; 11096 } 11097 11098 if (LHS.get()->getType()->isVLSTBuiltinType() || 11099 RHS.get()->getType()->isVLSTBuiltinType()) { 11100 QualType compType = 11101 CheckSizelessVectorOperands(LHS, RHS, Loc, CompLHSTy, ACK_Arithmetic); 11102 if (CompLHSTy) 11103 *CompLHSTy = compType; 11104 return compType; 11105 } 11106 11107 if (LHS.get()->getType()->isConstantMatrixType() || 11108 RHS.get()->getType()->isConstantMatrixType()) { 11109 QualType compType = 11110 CheckMatrixElementwiseOperands(LHS, RHS, Loc, CompLHSTy); 11111 if (CompLHSTy) 11112 *CompLHSTy = compType; 11113 return compType; 11114 } 11115 11116 QualType compType = UsualArithmeticConversions( 11117 LHS, RHS, Loc, CompLHSTy ? ACK_CompAssign : ACK_Arithmetic); 11118 if (LHS.isInvalid() || RHS.isInvalid()) 11119 return QualType(); 11120 11121 // Diagnose "string literal" '+' int and string '+' "char literal". 11122 if (Opc == BO_Add) { 11123 diagnoseStringPlusInt(*this, Loc, LHS.get(), RHS.get()); 11124 diagnoseStringPlusChar(*this, Loc, LHS.get(), RHS.get()); 11125 } 11126 11127 // handle the common case first (both operands are arithmetic). 11128 if (!compType.isNull() && compType->isArithmeticType()) { 11129 if (CompLHSTy) *CompLHSTy = compType; 11130 return compType; 11131 } 11132 11133 // Type-checking. Ultimately the pointer's going to be in PExp; 11134 // note that we bias towards the LHS being the pointer. 11135 Expr *PExp = LHS.get(), *IExp = RHS.get(); 11136 11137 bool isObjCPointer; 11138 if (PExp->getType()->isPointerType()) { 11139 isObjCPointer = false; 11140 } else if (PExp->getType()->isObjCObjectPointerType()) { 11141 isObjCPointer = true; 11142 } else { 11143 std::swap(PExp, IExp); 11144 if (PExp->getType()->isPointerType()) { 11145 isObjCPointer = false; 11146 } else if (PExp->getType()->isObjCObjectPointerType()) { 11147 isObjCPointer = true; 11148 } else { 11149 return InvalidOperands(Loc, LHS, RHS); 11150 } 11151 } 11152 assert(PExp->getType()->isAnyPointerType()); 11153 11154 if (!IExp->getType()->isIntegerType()) 11155 return InvalidOperands(Loc, LHS, RHS); 11156 11157 // Adding to a null pointer results in undefined behavior. 11158 if (PExp->IgnoreParenCasts()->isNullPointerConstant( 11159 Context, Expr::NPC_ValueDependentIsNotNull)) { 11160 // In C++ adding zero to a null pointer is defined. 11161 Expr::EvalResult KnownVal; 11162 if (!getLangOpts().CPlusPlus || 11163 (!IExp->isValueDependent() && 11164 (!IExp->EvaluateAsInt(KnownVal, Context) || 11165 KnownVal.Val.getInt() != 0))) { 11166 // Check the conditions to see if this is the 'p = nullptr + n' idiom. 11167 bool IsGNUIdiom = BinaryOperator::isNullPointerArithmeticExtension( 11168 Context, BO_Add, PExp, IExp); 11169 diagnoseArithmeticOnNullPointer(*this, Loc, PExp, IsGNUIdiom); 11170 } 11171 } 11172 11173 if (!checkArithmeticOpPointerOperand(*this, Loc, PExp)) 11174 return QualType(); 11175 11176 if (isObjCPointer && checkArithmeticOnObjCPointer(*this, Loc, PExp)) 11177 return QualType(); 11178 11179 // Check array bounds for pointer arithemtic 11180 CheckArrayAccess(PExp, IExp); 11181 11182 if (CompLHSTy) { 11183 QualType LHSTy = Context.isPromotableBitField(LHS.get()); 11184 if (LHSTy.isNull()) { 11185 LHSTy = LHS.get()->getType(); 11186 if (LHSTy->isPromotableIntegerType()) 11187 LHSTy = Context.getPromotedIntegerType(LHSTy); 11188 } 11189 *CompLHSTy = LHSTy; 11190 } 11191 11192 return PExp->getType(); 11193 } 11194 11195 // C99 6.5.6 11196 QualType Sema::CheckSubtractionOperands(ExprResult &LHS, ExprResult &RHS, 11197 SourceLocation Loc, 11198 QualType* CompLHSTy) { 11199 checkArithmeticNull(*this, LHS, RHS, Loc, /*IsCompare=*/false); 11200 11201 if (LHS.get()->getType()->isVectorType() || 11202 RHS.get()->getType()->isVectorType()) { 11203 QualType compType = 11204 CheckVectorOperands(LHS, RHS, Loc, CompLHSTy, 11205 /*AllowBothBool*/ getLangOpts().AltiVec, 11206 /*AllowBoolConversions*/ getLangOpts().ZVector, 11207 /*AllowBooleanOperation*/ false, 11208 /*ReportInvalid*/ true); 11209 if (CompLHSTy) *CompLHSTy = compType; 11210 return compType; 11211 } 11212 11213 if (LHS.get()->getType()->isVLSTBuiltinType() || 11214 RHS.get()->getType()->isVLSTBuiltinType()) { 11215 QualType compType = 11216 CheckSizelessVectorOperands(LHS, RHS, Loc, CompLHSTy, ACK_Arithmetic); 11217 if (CompLHSTy) 11218 *CompLHSTy = compType; 11219 return compType; 11220 } 11221 11222 if (LHS.get()->getType()->isConstantMatrixType() || 11223 RHS.get()->getType()->isConstantMatrixType()) { 11224 QualType compType = 11225 CheckMatrixElementwiseOperands(LHS, RHS, Loc, CompLHSTy); 11226 if (CompLHSTy) 11227 *CompLHSTy = compType; 11228 return compType; 11229 } 11230 11231 QualType compType = UsualArithmeticConversions( 11232 LHS, RHS, Loc, CompLHSTy ? ACK_CompAssign : ACK_Arithmetic); 11233 if (LHS.isInvalid() || RHS.isInvalid()) 11234 return QualType(); 11235 11236 // Enforce type constraints: C99 6.5.6p3. 11237 11238 // Handle the common case first (both operands are arithmetic). 11239 if (!compType.isNull() && compType->isArithmeticType()) { 11240 if (CompLHSTy) *CompLHSTy = compType; 11241 return compType; 11242 } 11243 11244 // Either ptr - int or ptr - ptr. 11245 if (LHS.get()->getType()->isAnyPointerType()) { 11246 QualType lpointee = LHS.get()->getType()->getPointeeType(); 11247 11248 // Diagnose bad cases where we step over interface counts. 11249 if (LHS.get()->getType()->isObjCObjectPointerType() && 11250 checkArithmeticOnObjCPointer(*this, Loc, LHS.get())) 11251 return QualType(); 11252 11253 // The result type of a pointer-int computation is the pointer type. 11254 if (RHS.get()->getType()->isIntegerType()) { 11255 // Subtracting from a null pointer should produce a warning. 11256 // The last argument to the diagnose call says this doesn't match the 11257 // GNU int-to-pointer idiom. 11258 if (LHS.get()->IgnoreParenCasts()->isNullPointerConstant(Context, 11259 Expr::NPC_ValueDependentIsNotNull)) { 11260 // In C++ adding zero to a null pointer is defined. 11261 Expr::EvalResult KnownVal; 11262 if (!getLangOpts().CPlusPlus || 11263 (!RHS.get()->isValueDependent() && 11264 (!RHS.get()->EvaluateAsInt(KnownVal, Context) || 11265 KnownVal.Val.getInt() != 0))) { 11266 diagnoseArithmeticOnNullPointer(*this, Loc, LHS.get(), false); 11267 } 11268 } 11269 11270 if (!checkArithmeticOpPointerOperand(*this, Loc, LHS.get())) 11271 return QualType(); 11272 11273 // Check array bounds for pointer arithemtic 11274 CheckArrayAccess(LHS.get(), RHS.get(), /*ArraySubscriptExpr*/nullptr, 11275 /*AllowOnePastEnd*/true, /*IndexNegated*/true); 11276 11277 if (CompLHSTy) *CompLHSTy = LHS.get()->getType(); 11278 return LHS.get()->getType(); 11279 } 11280 11281 // Handle pointer-pointer subtractions. 11282 if (const PointerType *RHSPTy 11283 = RHS.get()->getType()->getAs<PointerType>()) { 11284 QualType rpointee = RHSPTy->getPointeeType(); 11285 11286 if (getLangOpts().CPlusPlus) { 11287 // Pointee types must be the same: C++ [expr.add] 11288 if (!Context.hasSameUnqualifiedType(lpointee, rpointee)) { 11289 diagnosePointerIncompatibility(*this, Loc, LHS.get(), RHS.get()); 11290 } 11291 } else { 11292 // Pointee types must be compatible C99 6.5.6p3 11293 if (!Context.typesAreCompatible( 11294 Context.getCanonicalType(lpointee).getUnqualifiedType(), 11295 Context.getCanonicalType(rpointee).getUnqualifiedType())) { 11296 diagnosePointerIncompatibility(*this, Loc, LHS.get(), RHS.get()); 11297 return QualType(); 11298 } 11299 } 11300 11301 if (!checkArithmeticBinOpPointerOperands(*this, Loc, 11302 LHS.get(), RHS.get())) 11303 return QualType(); 11304 11305 bool LHSIsNullPtr = LHS.get()->IgnoreParenCasts()->isNullPointerConstant( 11306 Context, Expr::NPC_ValueDependentIsNotNull); 11307 bool RHSIsNullPtr = RHS.get()->IgnoreParenCasts()->isNullPointerConstant( 11308 Context, Expr::NPC_ValueDependentIsNotNull); 11309 11310 // Subtracting nullptr or from nullptr is suspect 11311 if (LHSIsNullPtr) 11312 diagnoseSubtractionOnNullPointer(*this, Loc, LHS.get(), RHSIsNullPtr); 11313 if (RHSIsNullPtr) 11314 diagnoseSubtractionOnNullPointer(*this, Loc, RHS.get(), LHSIsNullPtr); 11315 11316 // The pointee type may have zero size. As an extension, a structure or 11317 // union may have zero size or an array may have zero length. In this 11318 // case subtraction does not make sense. 11319 if (!rpointee->isVoidType() && !rpointee->isFunctionType()) { 11320 CharUnits ElementSize = Context.getTypeSizeInChars(rpointee); 11321 if (ElementSize.isZero()) { 11322 Diag(Loc,diag::warn_sub_ptr_zero_size_types) 11323 << rpointee.getUnqualifiedType() 11324 << LHS.get()->getSourceRange() << RHS.get()->getSourceRange(); 11325 } 11326 } 11327 11328 if (CompLHSTy) *CompLHSTy = LHS.get()->getType(); 11329 return Context.getPointerDiffType(); 11330 } 11331 } 11332 11333 return InvalidOperands(Loc, LHS, RHS); 11334 } 11335 11336 static bool isScopedEnumerationType(QualType T) { 11337 if (const EnumType *ET = T->getAs<EnumType>()) 11338 return ET->getDecl()->isScoped(); 11339 return false; 11340 } 11341 11342 static void DiagnoseBadShiftValues(Sema& S, ExprResult &LHS, ExprResult &RHS, 11343 SourceLocation Loc, BinaryOperatorKind Opc, 11344 QualType LHSType) { 11345 // OpenCL 6.3j: shift values are effectively % word size of LHS (more defined), 11346 // so skip remaining warnings as we don't want to modify values within Sema. 11347 if (S.getLangOpts().OpenCL) 11348 return; 11349 11350 // Check right/shifter operand 11351 Expr::EvalResult RHSResult; 11352 if (RHS.get()->isValueDependent() || 11353 !RHS.get()->EvaluateAsInt(RHSResult, S.Context)) 11354 return; 11355 llvm::APSInt Right = RHSResult.Val.getInt(); 11356 11357 if (Right.isNegative()) { 11358 S.DiagRuntimeBehavior(Loc, RHS.get(), 11359 S.PDiag(diag::warn_shift_negative) 11360 << RHS.get()->getSourceRange()); 11361 return; 11362 } 11363 11364 QualType LHSExprType = LHS.get()->getType(); 11365 uint64_t LeftSize = S.Context.getTypeSize(LHSExprType); 11366 if (LHSExprType->isBitIntType()) 11367 LeftSize = S.Context.getIntWidth(LHSExprType); 11368 else if (LHSExprType->isFixedPointType()) { 11369 auto FXSema = S.Context.getFixedPointSemantics(LHSExprType); 11370 LeftSize = FXSema.getWidth() - (unsigned)FXSema.hasUnsignedPadding(); 11371 } 11372 llvm::APInt LeftBits(Right.getBitWidth(), LeftSize); 11373 if (Right.uge(LeftBits)) { 11374 S.DiagRuntimeBehavior(Loc, RHS.get(), 11375 S.PDiag(diag::warn_shift_gt_typewidth) 11376 << RHS.get()->getSourceRange()); 11377 return; 11378 } 11379 11380 // FIXME: We probably need to handle fixed point types specially here. 11381 if (Opc != BO_Shl || LHSExprType->isFixedPointType()) 11382 return; 11383 11384 // When left shifting an ICE which is signed, we can check for overflow which 11385 // according to C++ standards prior to C++2a has undefined behavior 11386 // ([expr.shift] 5.8/2). Unsigned integers have defined behavior modulo one 11387 // more than the maximum value representable in the result type, so never 11388 // warn for those. (FIXME: Unsigned left-shift overflow in a constant 11389 // expression is still probably a bug.) 11390 Expr::EvalResult LHSResult; 11391 if (LHS.get()->isValueDependent() || 11392 LHSType->hasUnsignedIntegerRepresentation() || 11393 !LHS.get()->EvaluateAsInt(LHSResult, S.Context)) 11394 return; 11395 llvm::APSInt Left = LHSResult.Val.getInt(); 11396 11397 // If LHS does not have a signed type and non-negative value 11398 // then, the behavior is undefined before C++2a. Warn about it. 11399 if (Left.isNegative() && !S.getLangOpts().isSignedOverflowDefined() && 11400 !S.getLangOpts().CPlusPlus20) { 11401 S.DiagRuntimeBehavior(Loc, LHS.get(), 11402 S.PDiag(diag::warn_shift_lhs_negative) 11403 << LHS.get()->getSourceRange()); 11404 return; 11405 } 11406 11407 llvm::APInt ResultBits = 11408 static_cast<llvm::APInt&>(Right) + Left.getMinSignedBits(); 11409 if (LeftBits.uge(ResultBits)) 11410 return; 11411 llvm::APSInt Result = Left.extend(ResultBits.getLimitedValue()); 11412 Result = Result.shl(Right); 11413 11414 // Print the bit representation of the signed integer as an unsigned 11415 // hexadecimal number. 11416 SmallString<40> HexResult; 11417 Result.toString(HexResult, 16, /*Signed =*/false, /*Literal =*/true); 11418 11419 // If we are only missing a sign bit, this is less likely to result in actual 11420 // bugs -- if the result is cast back to an unsigned type, it will have the 11421 // expected value. Thus we place this behind a different warning that can be 11422 // turned off separately if needed. 11423 if (LeftBits == ResultBits - 1) { 11424 S.Diag(Loc, diag::warn_shift_result_sets_sign_bit) 11425 << HexResult << LHSType 11426 << LHS.get()->getSourceRange() << RHS.get()->getSourceRange(); 11427 return; 11428 } 11429 11430 S.Diag(Loc, diag::warn_shift_result_gt_typewidth) 11431 << HexResult.str() << Result.getMinSignedBits() << LHSType 11432 << Left.getBitWidth() << LHS.get()->getSourceRange() 11433 << RHS.get()->getSourceRange(); 11434 } 11435 11436 /// Return the resulting type when a vector is shifted 11437 /// by a scalar or vector shift amount. 11438 static QualType checkVectorShift(Sema &S, ExprResult &LHS, ExprResult &RHS, 11439 SourceLocation Loc, bool IsCompAssign) { 11440 // OpenCL v1.1 s6.3.j says RHS can be a vector only if LHS is a vector. 11441 if ((S.LangOpts.OpenCL || S.LangOpts.ZVector) && 11442 !LHS.get()->getType()->isVectorType()) { 11443 S.Diag(Loc, diag::err_shift_rhs_only_vector) 11444 << RHS.get()->getType() << LHS.get()->getType() 11445 << LHS.get()->getSourceRange() << RHS.get()->getSourceRange(); 11446 return QualType(); 11447 } 11448 11449 if (!IsCompAssign) { 11450 LHS = S.UsualUnaryConversions(LHS.get()); 11451 if (LHS.isInvalid()) return QualType(); 11452 } 11453 11454 RHS = S.UsualUnaryConversions(RHS.get()); 11455 if (RHS.isInvalid()) return QualType(); 11456 11457 QualType LHSType = LHS.get()->getType(); 11458 // Note that LHS might be a scalar because the routine calls not only in 11459 // OpenCL case. 11460 const VectorType *LHSVecTy = LHSType->getAs<VectorType>(); 11461 QualType LHSEleType = LHSVecTy ? LHSVecTy->getElementType() : LHSType; 11462 11463 // Note that RHS might not be a vector. 11464 QualType RHSType = RHS.get()->getType(); 11465 const VectorType *RHSVecTy = RHSType->getAs<VectorType>(); 11466 QualType RHSEleType = RHSVecTy ? RHSVecTy->getElementType() : RHSType; 11467 11468 // Do not allow shifts for boolean vectors. 11469 if ((LHSVecTy && LHSVecTy->isExtVectorBoolType()) || 11470 (RHSVecTy && RHSVecTy->isExtVectorBoolType())) { 11471 S.Diag(Loc, diag::err_typecheck_invalid_operands) 11472 << LHS.get()->getType() << RHS.get()->getType() 11473 << LHS.get()->getSourceRange(); 11474 return QualType(); 11475 } 11476 11477 // The operands need to be integers. 11478 if (!LHSEleType->isIntegerType()) { 11479 S.Diag(Loc, diag::err_typecheck_expect_int) 11480 << LHS.get()->getType() << LHS.get()->getSourceRange(); 11481 return QualType(); 11482 } 11483 11484 if (!RHSEleType->isIntegerType()) { 11485 S.Diag(Loc, diag::err_typecheck_expect_int) 11486 << RHS.get()->getType() << RHS.get()->getSourceRange(); 11487 return QualType(); 11488 } 11489 11490 if (!LHSVecTy) { 11491 assert(RHSVecTy); 11492 if (IsCompAssign) 11493 return RHSType; 11494 if (LHSEleType != RHSEleType) { 11495 LHS = S.ImpCastExprToType(LHS.get(),RHSEleType, CK_IntegralCast); 11496 LHSEleType = RHSEleType; 11497 } 11498 QualType VecTy = 11499 S.Context.getExtVectorType(LHSEleType, RHSVecTy->getNumElements()); 11500 LHS = S.ImpCastExprToType(LHS.get(), VecTy, CK_VectorSplat); 11501 LHSType = VecTy; 11502 } else if (RHSVecTy) { 11503 // OpenCL v1.1 s6.3.j says that for vector types, the operators 11504 // are applied component-wise. So if RHS is a vector, then ensure 11505 // that the number of elements is the same as LHS... 11506 if (RHSVecTy->getNumElements() != LHSVecTy->getNumElements()) { 11507 S.Diag(Loc, diag::err_typecheck_vector_lengths_not_equal) 11508 << LHS.get()->getType() << RHS.get()->getType() 11509 << LHS.get()->getSourceRange() << RHS.get()->getSourceRange(); 11510 return QualType(); 11511 } 11512 if (!S.LangOpts.OpenCL && !S.LangOpts.ZVector) { 11513 const BuiltinType *LHSBT = LHSEleType->getAs<clang::BuiltinType>(); 11514 const BuiltinType *RHSBT = RHSEleType->getAs<clang::BuiltinType>(); 11515 if (LHSBT != RHSBT && 11516 S.Context.getTypeSize(LHSBT) != S.Context.getTypeSize(RHSBT)) { 11517 S.Diag(Loc, diag::warn_typecheck_vector_element_sizes_not_equal) 11518 << LHS.get()->getType() << RHS.get()->getType() 11519 << LHS.get()->getSourceRange() << RHS.get()->getSourceRange(); 11520 } 11521 } 11522 } else { 11523 // ...else expand RHS to match the number of elements in LHS. 11524 QualType VecTy = 11525 S.Context.getExtVectorType(RHSEleType, LHSVecTy->getNumElements()); 11526 RHS = S.ImpCastExprToType(RHS.get(), VecTy, CK_VectorSplat); 11527 } 11528 11529 return LHSType; 11530 } 11531 11532 static QualType checkSizelessVectorShift(Sema &S, ExprResult &LHS, 11533 ExprResult &RHS, SourceLocation Loc, 11534 bool IsCompAssign) { 11535 if (!IsCompAssign) { 11536 LHS = S.UsualUnaryConversions(LHS.get()); 11537 if (LHS.isInvalid()) 11538 return QualType(); 11539 } 11540 11541 RHS = S.UsualUnaryConversions(RHS.get()); 11542 if (RHS.isInvalid()) 11543 return QualType(); 11544 11545 QualType LHSType = LHS.get()->getType(); 11546 const BuiltinType *LHSBuiltinTy = LHSType->getAs<BuiltinType>(); 11547 QualType LHSEleType = LHSType->isVLSTBuiltinType() 11548 ? LHSBuiltinTy->getSveEltType(S.getASTContext()) 11549 : LHSType; 11550 11551 // Note that RHS might not be a vector 11552 QualType RHSType = RHS.get()->getType(); 11553 const BuiltinType *RHSBuiltinTy = RHSType->getAs<BuiltinType>(); 11554 QualType RHSEleType = RHSType->isVLSTBuiltinType() 11555 ? RHSBuiltinTy->getSveEltType(S.getASTContext()) 11556 : RHSType; 11557 11558 if ((LHSBuiltinTy && LHSBuiltinTy->isSVEBool()) || 11559 (RHSBuiltinTy && RHSBuiltinTy->isSVEBool())) { 11560 S.Diag(Loc, diag::err_typecheck_invalid_operands) 11561 << LHSType << RHSType << LHS.get()->getSourceRange(); 11562 return QualType(); 11563 } 11564 11565 if (!LHSEleType->isIntegerType()) { 11566 S.Diag(Loc, diag::err_typecheck_expect_int) 11567 << LHS.get()->getType() << LHS.get()->getSourceRange(); 11568 return QualType(); 11569 } 11570 11571 if (!RHSEleType->isIntegerType()) { 11572 S.Diag(Loc, diag::err_typecheck_expect_int) 11573 << RHS.get()->getType() << RHS.get()->getSourceRange(); 11574 return QualType(); 11575 } 11576 11577 if (LHSType->isVLSTBuiltinType() && RHSType->isVLSTBuiltinType() && 11578 (S.Context.getBuiltinVectorTypeInfo(LHSBuiltinTy).EC != 11579 S.Context.getBuiltinVectorTypeInfo(RHSBuiltinTy).EC)) { 11580 S.Diag(Loc, diag::err_typecheck_invalid_operands) 11581 << LHSType << RHSType << LHS.get()->getSourceRange() 11582 << RHS.get()->getSourceRange(); 11583 return QualType(); 11584 } 11585 11586 if (!LHSType->isVLSTBuiltinType()) { 11587 assert(RHSType->isVLSTBuiltinType()); 11588 if (IsCompAssign) 11589 return RHSType; 11590 if (LHSEleType != RHSEleType) { 11591 LHS = S.ImpCastExprToType(LHS.get(), RHSEleType, clang::CK_IntegralCast); 11592 LHSEleType = RHSEleType; 11593 } 11594 const llvm::ElementCount VecSize = 11595 S.Context.getBuiltinVectorTypeInfo(RHSBuiltinTy).EC; 11596 QualType VecTy = 11597 S.Context.getScalableVectorType(LHSEleType, VecSize.getKnownMinValue()); 11598 LHS = S.ImpCastExprToType(LHS.get(), VecTy, clang::CK_VectorSplat); 11599 LHSType = VecTy; 11600 } else if (RHSBuiltinTy && RHSBuiltinTy->isVLSTBuiltinType()) { 11601 if (S.Context.getTypeSize(RHSBuiltinTy) != 11602 S.Context.getTypeSize(LHSBuiltinTy)) { 11603 S.Diag(Loc, diag::err_typecheck_vector_lengths_not_equal) 11604 << LHSType << RHSType << LHS.get()->getSourceRange() 11605 << RHS.get()->getSourceRange(); 11606 return QualType(); 11607 } 11608 } else { 11609 const llvm::ElementCount VecSize = 11610 S.Context.getBuiltinVectorTypeInfo(LHSBuiltinTy).EC; 11611 if (LHSEleType != RHSEleType) { 11612 RHS = S.ImpCastExprToType(RHS.get(), LHSEleType, clang::CK_IntegralCast); 11613 RHSEleType = LHSEleType; 11614 } 11615 QualType VecTy = 11616 S.Context.getScalableVectorType(RHSEleType, VecSize.getKnownMinValue()); 11617 RHS = S.ImpCastExprToType(RHS.get(), VecTy, CK_VectorSplat); 11618 } 11619 11620 return LHSType; 11621 } 11622 11623 // C99 6.5.7 11624 QualType Sema::CheckShiftOperands(ExprResult &LHS, ExprResult &RHS, 11625 SourceLocation Loc, BinaryOperatorKind Opc, 11626 bool IsCompAssign) { 11627 checkArithmeticNull(*this, LHS, RHS, Loc, /*IsCompare=*/false); 11628 11629 // Vector shifts promote their scalar inputs to vector type. 11630 if (LHS.get()->getType()->isVectorType() || 11631 RHS.get()->getType()->isVectorType()) { 11632 if (LangOpts.ZVector) { 11633 // The shift operators for the z vector extensions work basically 11634 // like general shifts, except that neither the LHS nor the RHS is 11635 // allowed to be a "vector bool". 11636 if (auto LHSVecType = LHS.get()->getType()->getAs<VectorType>()) 11637 if (LHSVecType->getVectorKind() == VectorType::AltiVecBool) 11638 return InvalidOperands(Loc, LHS, RHS); 11639 if (auto RHSVecType = RHS.get()->getType()->getAs<VectorType>()) 11640 if (RHSVecType->getVectorKind() == VectorType::AltiVecBool) 11641 return InvalidOperands(Loc, LHS, RHS); 11642 } 11643 return checkVectorShift(*this, LHS, RHS, Loc, IsCompAssign); 11644 } 11645 11646 if (LHS.get()->getType()->isVLSTBuiltinType() || 11647 RHS.get()->getType()->isVLSTBuiltinType()) 11648 return checkSizelessVectorShift(*this, LHS, RHS, Loc, IsCompAssign); 11649 11650 // Shifts don't perform usual arithmetic conversions, they just do integer 11651 // promotions on each operand. C99 6.5.7p3 11652 11653 // For the LHS, do usual unary conversions, but then reset them away 11654 // if this is a compound assignment. 11655 ExprResult OldLHS = LHS; 11656 LHS = UsualUnaryConversions(LHS.get()); 11657 if (LHS.isInvalid()) 11658 return QualType(); 11659 QualType LHSType = LHS.get()->getType(); 11660 if (IsCompAssign) LHS = OldLHS; 11661 11662 // The RHS is simpler. 11663 RHS = UsualUnaryConversions(RHS.get()); 11664 if (RHS.isInvalid()) 11665 return QualType(); 11666 QualType RHSType = RHS.get()->getType(); 11667 11668 // C99 6.5.7p2: Each of the operands shall have integer type. 11669 // Embedded-C 4.1.6.2.2: The LHS may also be fixed-point. 11670 if ((!LHSType->isFixedPointOrIntegerType() && 11671 !LHSType->hasIntegerRepresentation()) || 11672 !RHSType->hasIntegerRepresentation()) 11673 return InvalidOperands(Loc, LHS, RHS); 11674 11675 // C++0x: Don't allow scoped enums. FIXME: Use something better than 11676 // hasIntegerRepresentation() above instead of this. 11677 if (isScopedEnumerationType(LHSType) || 11678 isScopedEnumerationType(RHSType)) { 11679 return InvalidOperands(Loc, LHS, RHS); 11680 } 11681 DiagnoseBadShiftValues(*this, LHS, RHS, Loc, Opc, LHSType); 11682 11683 // "The type of the result is that of the promoted left operand." 11684 return LHSType; 11685 } 11686 11687 /// Diagnose bad pointer comparisons. 11688 static void diagnoseDistinctPointerComparison(Sema &S, SourceLocation Loc, 11689 ExprResult &LHS, ExprResult &RHS, 11690 bool IsError) { 11691 S.Diag(Loc, IsError ? diag::err_typecheck_comparison_of_distinct_pointers 11692 : diag::ext_typecheck_comparison_of_distinct_pointers) 11693 << LHS.get()->getType() << RHS.get()->getType() 11694 << LHS.get()->getSourceRange() << RHS.get()->getSourceRange(); 11695 } 11696 11697 /// Returns false if the pointers are converted to a composite type, 11698 /// true otherwise. 11699 static bool convertPointersToCompositeType(Sema &S, SourceLocation Loc, 11700 ExprResult &LHS, ExprResult &RHS) { 11701 // C++ [expr.rel]p2: 11702 // [...] Pointer conversions (4.10) and qualification 11703 // conversions (4.4) are performed on pointer operands (or on 11704 // a pointer operand and a null pointer constant) to bring 11705 // them to their composite pointer type. [...] 11706 // 11707 // C++ [expr.eq]p1 uses the same notion for (in)equality 11708 // comparisons of pointers. 11709 11710 QualType LHSType = LHS.get()->getType(); 11711 QualType RHSType = RHS.get()->getType(); 11712 assert(LHSType->isPointerType() || RHSType->isPointerType() || 11713 LHSType->isMemberPointerType() || RHSType->isMemberPointerType()); 11714 11715 QualType T = S.FindCompositePointerType(Loc, LHS, RHS); 11716 if (T.isNull()) { 11717 if ((LHSType->isAnyPointerType() || LHSType->isMemberPointerType()) && 11718 (RHSType->isAnyPointerType() || RHSType->isMemberPointerType())) 11719 diagnoseDistinctPointerComparison(S, Loc, LHS, RHS, /*isError*/true); 11720 else 11721 S.InvalidOperands(Loc, LHS, RHS); 11722 return true; 11723 } 11724 11725 return false; 11726 } 11727 11728 static void diagnoseFunctionPointerToVoidComparison(Sema &S, SourceLocation Loc, 11729 ExprResult &LHS, 11730 ExprResult &RHS, 11731 bool IsError) { 11732 S.Diag(Loc, IsError ? diag::err_typecheck_comparison_of_fptr_to_void 11733 : diag::ext_typecheck_comparison_of_fptr_to_void) 11734 << LHS.get()->getType() << RHS.get()->getType() 11735 << LHS.get()->getSourceRange() << RHS.get()->getSourceRange(); 11736 } 11737 11738 static bool isObjCObjectLiteral(ExprResult &E) { 11739 switch (E.get()->IgnoreParenImpCasts()->getStmtClass()) { 11740 case Stmt::ObjCArrayLiteralClass: 11741 case Stmt::ObjCDictionaryLiteralClass: 11742 case Stmt::ObjCStringLiteralClass: 11743 case Stmt::ObjCBoxedExprClass: 11744 return true; 11745 default: 11746 // Note that ObjCBoolLiteral is NOT an object literal! 11747 return false; 11748 } 11749 } 11750 11751 static bool hasIsEqualMethod(Sema &S, const Expr *LHS, const Expr *RHS) { 11752 const ObjCObjectPointerType *Type = 11753 LHS->getType()->getAs<ObjCObjectPointerType>(); 11754 11755 // If this is not actually an Objective-C object, bail out. 11756 if (!Type) 11757 return false; 11758 11759 // Get the LHS object's interface type. 11760 QualType InterfaceType = Type->getPointeeType(); 11761 11762 // If the RHS isn't an Objective-C object, bail out. 11763 if (!RHS->getType()->isObjCObjectPointerType()) 11764 return false; 11765 11766 // Try to find the -isEqual: method. 11767 Selector IsEqualSel = S.NSAPIObj->getIsEqualSelector(); 11768 ObjCMethodDecl *Method = S.LookupMethodInObjectType(IsEqualSel, 11769 InterfaceType, 11770 /*IsInstance=*/true); 11771 if (!Method) { 11772 if (Type->isObjCIdType()) { 11773 // For 'id', just check the global pool. 11774 Method = S.LookupInstanceMethodInGlobalPool(IsEqualSel, SourceRange(), 11775 /*receiverId=*/true); 11776 } else { 11777 // Check protocols. 11778 Method = S.LookupMethodInQualifiedType(IsEqualSel, Type, 11779 /*IsInstance=*/true); 11780 } 11781 } 11782 11783 if (!Method) 11784 return false; 11785 11786 QualType T = Method->parameters()[0]->getType(); 11787 if (!T->isObjCObjectPointerType()) 11788 return false; 11789 11790 QualType R = Method->getReturnType(); 11791 if (!R->isScalarType()) 11792 return false; 11793 11794 return true; 11795 } 11796 11797 Sema::ObjCLiteralKind Sema::CheckLiteralKind(Expr *FromE) { 11798 FromE = FromE->IgnoreParenImpCasts(); 11799 switch (FromE->getStmtClass()) { 11800 default: 11801 break; 11802 case Stmt::ObjCStringLiteralClass: 11803 // "string literal" 11804 return LK_String; 11805 case Stmt::ObjCArrayLiteralClass: 11806 // "array literal" 11807 return LK_Array; 11808 case Stmt::ObjCDictionaryLiteralClass: 11809 // "dictionary literal" 11810 return LK_Dictionary; 11811 case Stmt::BlockExprClass: 11812 return LK_Block; 11813 case Stmt::ObjCBoxedExprClass: { 11814 Expr *Inner = cast<ObjCBoxedExpr>(FromE)->getSubExpr()->IgnoreParens(); 11815 switch (Inner->getStmtClass()) { 11816 case Stmt::IntegerLiteralClass: 11817 case Stmt::FloatingLiteralClass: 11818 case Stmt::CharacterLiteralClass: 11819 case Stmt::ObjCBoolLiteralExprClass: 11820 case Stmt::CXXBoolLiteralExprClass: 11821 // "numeric literal" 11822 return LK_Numeric; 11823 case Stmt::ImplicitCastExprClass: { 11824 CastKind CK = cast<CastExpr>(Inner)->getCastKind(); 11825 // Boolean literals can be represented by implicit casts. 11826 if (CK == CK_IntegralToBoolean || CK == CK_IntegralCast) 11827 return LK_Numeric; 11828 break; 11829 } 11830 default: 11831 break; 11832 } 11833 return LK_Boxed; 11834 } 11835 } 11836 return LK_None; 11837 } 11838 11839 static void diagnoseObjCLiteralComparison(Sema &S, SourceLocation Loc, 11840 ExprResult &LHS, ExprResult &RHS, 11841 BinaryOperator::Opcode Opc){ 11842 Expr *Literal; 11843 Expr *Other; 11844 if (isObjCObjectLiteral(LHS)) { 11845 Literal = LHS.get(); 11846 Other = RHS.get(); 11847 } else { 11848 Literal = RHS.get(); 11849 Other = LHS.get(); 11850 } 11851 11852 // Don't warn on comparisons against nil. 11853 Other = Other->IgnoreParenCasts(); 11854 if (Other->isNullPointerConstant(S.getASTContext(), 11855 Expr::NPC_ValueDependentIsNotNull)) 11856 return; 11857 11858 // This should be kept in sync with warn_objc_literal_comparison. 11859 // LK_String should always be after the other literals, since it has its own 11860 // warning flag. 11861 Sema::ObjCLiteralKind LiteralKind = S.CheckLiteralKind(Literal); 11862 assert(LiteralKind != Sema::LK_Block); 11863 if (LiteralKind == Sema::LK_None) { 11864 llvm_unreachable("Unknown Objective-C object literal kind"); 11865 } 11866 11867 if (LiteralKind == Sema::LK_String) 11868 S.Diag(Loc, diag::warn_objc_string_literal_comparison) 11869 << Literal->getSourceRange(); 11870 else 11871 S.Diag(Loc, diag::warn_objc_literal_comparison) 11872 << LiteralKind << Literal->getSourceRange(); 11873 11874 if (BinaryOperator::isEqualityOp(Opc) && 11875 hasIsEqualMethod(S, LHS.get(), RHS.get())) { 11876 SourceLocation Start = LHS.get()->getBeginLoc(); 11877 SourceLocation End = S.getLocForEndOfToken(RHS.get()->getEndLoc()); 11878 CharSourceRange OpRange = 11879 CharSourceRange::getCharRange(Loc, S.getLocForEndOfToken(Loc)); 11880 11881 S.Diag(Loc, diag::note_objc_literal_comparison_isequal) 11882 << FixItHint::CreateInsertion(Start, Opc == BO_EQ ? "[" : "![") 11883 << FixItHint::CreateReplacement(OpRange, " isEqual:") 11884 << FixItHint::CreateInsertion(End, "]"); 11885 } 11886 } 11887 11888 /// Warns on !x < y, !x & y where !(x < y), !(x & y) was probably intended. 11889 static void diagnoseLogicalNotOnLHSofCheck(Sema &S, ExprResult &LHS, 11890 ExprResult &RHS, SourceLocation Loc, 11891 BinaryOperatorKind Opc) { 11892 // Check that left hand side is !something. 11893 UnaryOperator *UO = dyn_cast<UnaryOperator>(LHS.get()->IgnoreImpCasts()); 11894 if (!UO || UO->getOpcode() != UO_LNot) return; 11895 11896 // Only check if the right hand side is non-bool arithmetic type. 11897 if (RHS.get()->isKnownToHaveBooleanValue()) return; 11898 11899 // Make sure that the something in !something is not bool. 11900 Expr *SubExpr = UO->getSubExpr()->IgnoreImpCasts(); 11901 if (SubExpr->isKnownToHaveBooleanValue()) return; 11902 11903 // Emit warning. 11904 bool IsBitwiseOp = Opc == BO_And || Opc == BO_Or || Opc == BO_Xor; 11905 S.Diag(UO->getOperatorLoc(), diag::warn_logical_not_on_lhs_of_check) 11906 << Loc << IsBitwiseOp; 11907 11908 // First note suggest !(x < y) 11909 SourceLocation FirstOpen = SubExpr->getBeginLoc(); 11910 SourceLocation FirstClose = RHS.get()->getEndLoc(); 11911 FirstClose = S.getLocForEndOfToken(FirstClose); 11912 if (FirstClose.isInvalid()) 11913 FirstOpen = SourceLocation(); 11914 S.Diag(UO->getOperatorLoc(), diag::note_logical_not_fix) 11915 << IsBitwiseOp 11916 << FixItHint::CreateInsertion(FirstOpen, "(") 11917 << FixItHint::CreateInsertion(FirstClose, ")"); 11918 11919 // Second note suggests (!x) < y 11920 SourceLocation SecondOpen = LHS.get()->getBeginLoc(); 11921 SourceLocation SecondClose = LHS.get()->getEndLoc(); 11922 SecondClose = S.getLocForEndOfToken(SecondClose); 11923 if (SecondClose.isInvalid()) 11924 SecondOpen = SourceLocation(); 11925 S.Diag(UO->getOperatorLoc(), diag::note_logical_not_silence_with_parens) 11926 << FixItHint::CreateInsertion(SecondOpen, "(") 11927 << FixItHint::CreateInsertion(SecondClose, ")"); 11928 } 11929 11930 // Returns true if E refers to a non-weak array. 11931 static bool checkForArray(const Expr *E) { 11932 const ValueDecl *D = nullptr; 11933 if (const DeclRefExpr *DR = dyn_cast<DeclRefExpr>(E)) { 11934 D = DR->getDecl(); 11935 } else if (const MemberExpr *Mem = dyn_cast<MemberExpr>(E)) { 11936 if (Mem->isImplicitAccess()) 11937 D = Mem->getMemberDecl(); 11938 } 11939 if (!D) 11940 return false; 11941 return D->getType()->isArrayType() && !D->isWeak(); 11942 } 11943 11944 /// Diagnose some forms of syntactically-obvious tautological comparison. 11945 static void diagnoseTautologicalComparison(Sema &S, SourceLocation Loc, 11946 Expr *LHS, Expr *RHS, 11947 BinaryOperatorKind Opc) { 11948 Expr *LHSStripped = LHS->IgnoreParenImpCasts(); 11949 Expr *RHSStripped = RHS->IgnoreParenImpCasts(); 11950 11951 QualType LHSType = LHS->getType(); 11952 QualType RHSType = RHS->getType(); 11953 if (LHSType->hasFloatingRepresentation() || 11954 (LHSType->isBlockPointerType() && !BinaryOperator::isEqualityOp(Opc)) || 11955 S.inTemplateInstantiation()) 11956 return; 11957 11958 // Comparisons between two array types are ill-formed for operator<=>, so 11959 // we shouldn't emit any additional warnings about it. 11960 if (Opc == BO_Cmp && LHSType->isArrayType() && RHSType->isArrayType()) 11961 return; 11962 11963 // For non-floating point types, check for self-comparisons of the form 11964 // x == x, x != x, x < x, etc. These always evaluate to a constant, and 11965 // often indicate logic errors in the program. 11966 // 11967 // NOTE: Don't warn about comparison expressions resulting from macro 11968 // expansion. Also don't warn about comparisons which are only self 11969 // comparisons within a template instantiation. The warnings should catch 11970 // obvious cases in the definition of the template anyways. The idea is to 11971 // warn when the typed comparison operator will always evaluate to the same 11972 // result. 11973 11974 // Used for indexing into %select in warn_comparison_always 11975 enum { 11976 AlwaysConstant, 11977 AlwaysTrue, 11978 AlwaysFalse, 11979 AlwaysEqual, // std::strong_ordering::equal from operator<=> 11980 }; 11981 11982 // C++2a [depr.array.comp]: 11983 // Equality and relational comparisons ([expr.eq], [expr.rel]) between two 11984 // operands of array type are deprecated. 11985 if (S.getLangOpts().CPlusPlus20 && LHSStripped->getType()->isArrayType() && 11986 RHSStripped->getType()->isArrayType()) { 11987 S.Diag(Loc, diag::warn_depr_array_comparison) 11988 << LHS->getSourceRange() << RHS->getSourceRange() 11989 << LHSStripped->getType() << RHSStripped->getType(); 11990 // Carry on to produce the tautological comparison warning, if this 11991 // expression is potentially-evaluated, we can resolve the array to a 11992 // non-weak declaration, and so on. 11993 } 11994 11995 if (!LHS->getBeginLoc().isMacroID() && !RHS->getBeginLoc().isMacroID()) { 11996 if (Expr::isSameComparisonOperand(LHS, RHS)) { 11997 unsigned Result; 11998 switch (Opc) { 11999 case BO_EQ: 12000 case BO_LE: 12001 case BO_GE: 12002 Result = AlwaysTrue; 12003 break; 12004 case BO_NE: 12005 case BO_LT: 12006 case BO_GT: 12007 Result = AlwaysFalse; 12008 break; 12009 case BO_Cmp: 12010 Result = AlwaysEqual; 12011 break; 12012 default: 12013 Result = AlwaysConstant; 12014 break; 12015 } 12016 S.DiagRuntimeBehavior(Loc, nullptr, 12017 S.PDiag(diag::warn_comparison_always) 12018 << 0 /*self-comparison*/ 12019 << Result); 12020 } else if (checkForArray(LHSStripped) && checkForArray(RHSStripped)) { 12021 // What is it always going to evaluate to? 12022 unsigned Result; 12023 switch (Opc) { 12024 case BO_EQ: // e.g. array1 == array2 12025 Result = AlwaysFalse; 12026 break; 12027 case BO_NE: // e.g. array1 != array2 12028 Result = AlwaysTrue; 12029 break; 12030 default: // e.g. array1 <= array2 12031 // The best we can say is 'a constant' 12032 Result = AlwaysConstant; 12033 break; 12034 } 12035 S.DiagRuntimeBehavior(Loc, nullptr, 12036 S.PDiag(diag::warn_comparison_always) 12037 << 1 /*array comparison*/ 12038 << Result); 12039 } 12040 } 12041 12042 if (isa<CastExpr>(LHSStripped)) 12043 LHSStripped = LHSStripped->IgnoreParenCasts(); 12044 if (isa<CastExpr>(RHSStripped)) 12045 RHSStripped = RHSStripped->IgnoreParenCasts(); 12046 12047 // Warn about comparisons against a string constant (unless the other 12048 // operand is null); the user probably wants string comparison function. 12049 Expr *LiteralString = nullptr; 12050 Expr *LiteralStringStripped = nullptr; 12051 if ((isa<StringLiteral>(LHSStripped) || isa<ObjCEncodeExpr>(LHSStripped)) && 12052 !RHSStripped->isNullPointerConstant(S.Context, 12053 Expr::NPC_ValueDependentIsNull)) { 12054 LiteralString = LHS; 12055 LiteralStringStripped = LHSStripped; 12056 } else if ((isa<StringLiteral>(RHSStripped) || 12057 isa<ObjCEncodeExpr>(RHSStripped)) && 12058 !LHSStripped->isNullPointerConstant(S.Context, 12059 Expr::NPC_ValueDependentIsNull)) { 12060 LiteralString = RHS; 12061 LiteralStringStripped = RHSStripped; 12062 } 12063 12064 if (LiteralString) { 12065 S.DiagRuntimeBehavior(Loc, nullptr, 12066 S.PDiag(diag::warn_stringcompare) 12067 << isa<ObjCEncodeExpr>(LiteralStringStripped) 12068 << LiteralString->getSourceRange()); 12069 } 12070 } 12071 12072 static ImplicitConversionKind castKindToImplicitConversionKind(CastKind CK) { 12073 switch (CK) { 12074 default: { 12075 #ifndef NDEBUG 12076 llvm::errs() << "unhandled cast kind: " << CastExpr::getCastKindName(CK) 12077 << "\n"; 12078 #endif 12079 llvm_unreachable("unhandled cast kind"); 12080 } 12081 case CK_UserDefinedConversion: 12082 return ICK_Identity; 12083 case CK_LValueToRValue: 12084 return ICK_Lvalue_To_Rvalue; 12085 case CK_ArrayToPointerDecay: 12086 return ICK_Array_To_Pointer; 12087 case CK_FunctionToPointerDecay: 12088 return ICK_Function_To_Pointer; 12089 case CK_IntegralCast: 12090 return ICK_Integral_Conversion; 12091 case CK_FloatingCast: 12092 return ICK_Floating_Conversion; 12093 case CK_IntegralToFloating: 12094 case CK_FloatingToIntegral: 12095 return ICK_Floating_Integral; 12096 case CK_IntegralComplexCast: 12097 case CK_FloatingComplexCast: 12098 case CK_FloatingComplexToIntegralComplex: 12099 case CK_IntegralComplexToFloatingComplex: 12100 return ICK_Complex_Conversion; 12101 case CK_FloatingComplexToReal: 12102 case CK_FloatingRealToComplex: 12103 case CK_IntegralComplexToReal: 12104 case CK_IntegralRealToComplex: 12105 return ICK_Complex_Real; 12106 } 12107 } 12108 12109 static bool checkThreeWayNarrowingConversion(Sema &S, QualType ToType, Expr *E, 12110 QualType FromType, 12111 SourceLocation Loc) { 12112 // Check for a narrowing implicit conversion. 12113 StandardConversionSequence SCS; 12114 SCS.setAsIdentityConversion(); 12115 SCS.setToType(0, FromType); 12116 SCS.setToType(1, ToType); 12117 if (const auto *ICE = dyn_cast<ImplicitCastExpr>(E)) 12118 SCS.Second = castKindToImplicitConversionKind(ICE->getCastKind()); 12119 12120 APValue PreNarrowingValue; 12121 QualType PreNarrowingType; 12122 switch (SCS.getNarrowingKind(S.Context, E, PreNarrowingValue, 12123 PreNarrowingType, 12124 /*IgnoreFloatToIntegralConversion*/ true)) { 12125 case NK_Dependent_Narrowing: 12126 // Implicit conversion to a narrower type, but the expression is 12127 // value-dependent so we can't tell whether it's actually narrowing. 12128 case NK_Not_Narrowing: 12129 return false; 12130 12131 case NK_Constant_Narrowing: 12132 // Implicit conversion to a narrower type, and the value is not a constant 12133 // expression. 12134 S.Diag(E->getBeginLoc(), diag::err_spaceship_argument_narrowing) 12135 << /*Constant*/ 1 12136 << PreNarrowingValue.getAsString(S.Context, PreNarrowingType) << ToType; 12137 return true; 12138 12139 case NK_Variable_Narrowing: 12140 // Implicit conversion to a narrower type, and the value is not a constant 12141 // expression. 12142 case NK_Type_Narrowing: 12143 S.Diag(E->getBeginLoc(), diag::err_spaceship_argument_narrowing) 12144 << /*Constant*/ 0 << FromType << ToType; 12145 // TODO: It's not a constant expression, but what if the user intended it 12146 // to be? Can we produce notes to help them figure out why it isn't? 12147 return true; 12148 } 12149 llvm_unreachable("unhandled case in switch"); 12150 } 12151 12152 static QualType checkArithmeticOrEnumeralThreeWayCompare(Sema &S, 12153 ExprResult &LHS, 12154 ExprResult &RHS, 12155 SourceLocation Loc) { 12156 QualType LHSType = LHS.get()->getType(); 12157 QualType RHSType = RHS.get()->getType(); 12158 // Dig out the original argument type and expression before implicit casts 12159 // were applied. These are the types/expressions we need to check the 12160 // [expr.spaceship] requirements against. 12161 ExprResult LHSStripped = LHS.get()->IgnoreParenImpCasts(); 12162 ExprResult RHSStripped = RHS.get()->IgnoreParenImpCasts(); 12163 QualType LHSStrippedType = LHSStripped.get()->getType(); 12164 QualType RHSStrippedType = RHSStripped.get()->getType(); 12165 12166 // C++2a [expr.spaceship]p3: If one of the operands is of type bool and the 12167 // other is not, the program is ill-formed. 12168 if (LHSStrippedType->isBooleanType() != RHSStrippedType->isBooleanType()) { 12169 S.InvalidOperands(Loc, LHSStripped, RHSStripped); 12170 return QualType(); 12171 } 12172 12173 // FIXME: Consider combining this with checkEnumArithmeticConversions. 12174 int NumEnumArgs = (int)LHSStrippedType->isEnumeralType() + 12175 RHSStrippedType->isEnumeralType(); 12176 if (NumEnumArgs == 1) { 12177 bool LHSIsEnum = LHSStrippedType->isEnumeralType(); 12178 QualType OtherTy = LHSIsEnum ? RHSStrippedType : LHSStrippedType; 12179 if (OtherTy->hasFloatingRepresentation()) { 12180 S.InvalidOperands(Loc, LHSStripped, RHSStripped); 12181 return QualType(); 12182 } 12183 } 12184 if (NumEnumArgs == 2) { 12185 // C++2a [expr.spaceship]p5: If both operands have the same enumeration 12186 // type E, the operator yields the result of converting the operands 12187 // to the underlying type of E and applying <=> to the converted operands. 12188 if (!S.Context.hasSameUnqualifiedType(LHSStrippedType, RHSStrippedType)) { 12189 S.InvalidOperands(Loc, LHS, RHS); 12190 return QualType(); 12191 } 12192 QualType IntType = 12193 LHSStrippedType->castAs<EnumType>()->getDecl()->getIntegerType(); 12194 assert(IntType->isArithmeticType()); 12195 12196 // We can't use `CK_IntegralCast` when the underlying type is 'bool', so we 12197 // promote the boolean type, and all other promotable integer types, to 12198 // avoid this. 12199 if (IntType->isPromotableIntegerType()) 12200 IntType = S.Context.getPromotedIntegerType(IntType); 12201 12202 LHS = S.ImpCastExprToType(LHS.get(), IntType, CK_IntegralCast); 12203 RHS = S.ImpCastExprToType(RHS.get(), IntType, CK_IntegralCast); 12204 LHSType = RHSType = IntType; 12205 } 12206 12207 // C++2a [expr.spaceship]p4: If both operands have arithmetic types, the 12208 // usual arithmetic conversions are applied to the operands. 12209 QualType Type = 12210 S.UsualArithmeticConversions(LHS, RHS, Loc, Sema::ACK_Comparison); 12211 if (LHS.isInvalid() || RHS.isInvalid()) 12212 return QualType(); 12213 if (Type.isNull()) 12214 return S.InvalidOperands(Loc, LHS, RHS); 12215 12216 Optional<ComparisonCategoryType> CCT = 12217 getComparisonCategoryForBuiltinCmp(Type); 12218 if (!CCT) 12219 return S.InvalidOperands(Loc, LHS, RHS); 12220 12221 bool HasNarrowing = checkThreeWayNarrowingConversion( 12222 S, Type, LHS.get(), LHSType, LHS.get()->getBeginLoc()); 12223 HasNarrowing |= checkThreeWayNarrowingConversion(S, Type, RHS.get(), RHSType, 12224 RHS.get()->getBeginLoc()); 12225 if (HasNarrowing) 12226 return QualType(); 12227 12228 assert(!Type.isNull() && "composite type for <=> has not been set"); 12229 12230 return S.CheckComparisonCategoryType( 12231 *CCT, Loc, Sema::ComparisonCategoryUsage::OperatorInExpression); 12232 } 12233 12234 static QualType checkArithmeticOrEnumeralCompare(Sema &S, ExprResult &LHS, 12235 ExprResult &RHS, 12236 SourceLocation Loc, 12237 BinaryOperatorKind Opc) { 12238 if (Opc == BO_Cmp) 12239 return checkArithmeticOrEnumeralThreeWayCompare(S, LHS, RHS, Loc); 12240 12241 // C99 6.5.8p3 / C99 6.5.9p4 12242 QualType Type = 12243 S.UsualArithmeticConversions(LHS, RHS, Loc, Sema::ACK_Comparison); 12244 if (LHS.isInvalid() || RHS.isInvalid()) 12245 return QualType(); 12246 if (Type.isNull()) 12247 return S.InvalidOperands(Loc, LHS, RHS); 12248 assert(Type->isArithmeticType() || Type->isEnumeralType()); 12249 12250 if (Type->isAnyComplexType() && BinaryOperator::isRelationalOp(Opc)) 12251 return S.InvalidOperands(Loc, LHS, RHS); 12252 12253 // Check for comparisons of floating point operands using != and ==. 12254 if (Type->hasFloatingRepresentation() && BinaryOperator::isEqualityOp(Opc)) 12255 S.CheckFloatComparison(Loc, LHS.get(), RHS.get(), Opc); 12256 12257 // The result of comparisons is 'bool' in C++, 'int' in C. 12258 return S.Context.getLogicalOperationType(); 12259 } 12260 12261 void Sema::CheckPtrComparisonWithNullChar(ExprResult &E, ExprResult &NullE) { 12262 if (!NullE.get()->getType()->isAnyPointerType()) 12263 return; 12264 int NullValue = PP.isMacroDefined("NULL") ? 0 : 1; 12265 if (!E.get()->getType()->isAnyPointerType() && 12266 E.get()->isNullPointerConstant(Context, 12267 Expr::NPC_ValueDependentIsNotNull) == 12268 Expr::NPCK_ZeroExpression) { 12269 if (const auto *CL = dyn_cast<CharacterLiteral>(E.get())) { 12270 if (CL->getValue() == 0) 12271 Diag(E.get()->getExprLoc(), diag::warn_pointer_compare) 12272 << NullValue 12273 << FixItHint::CreateReplacement(E.get()->getExprLoc(), 12274 NullValue ? "NULL" : "(void *)0"); 12275 } else if (const auto *CE = dyn_cast<CStyleCastExpr>(E.get())) { 12276 TypeSourceInfo *TI = CE->getTypeInfoAsWritten(); 12277 QualType T = Context.getCanonicalType(TI->getType()).getUnqualifiedType(); 12278 if (T == Context.CharTy) 12279 Diag(E.get()->getExprLoc(), diag::warn_pointer_compare) 12280 << NullValue 12281 << FixItHint::CreateReplacement(E.get()->getExprLoc(), 12282 NullValue ? "NULL" : "(void *)0"); 12283 } 12284 } 12285 } 12286 12287 // C99 6.5.8, C++ [expr.rel] 12288 QualType Sema::CheckCompareOperands(ExprResult &LHS, ExprResult &RHS, 12289 SourceLocation Loc, 12290 BinaryOperatorKind Opc) { 12291 bool IsRelational = BinaryOperator::isRelationalOp(Opc); 12292 bool IsThreeWay = Opc == BO_Cmp; 12293 bool IsOrdered = IsRelational || IsThreeWay; 12294 auto IsAnyPointerType = [](ExprResult E) { 12295 QualType Ty = E.get()->getType(); 12296 return Ty->isPointerType() || Ty->isMemberPointerType(); 12297 }; 12298 12299 // C++2a [expr.spaceship]p6: If at least one of the operands is of pointer 12300 // type, array-to-pointer, ..., conversions are performed on both operands to 12301 // bring them to their composite type. 12302 // Otherwise, all comparisons expect an rvalue, so convert to rvalue before 12303 // any type-related checks. 12304 if (!IsThreeWay || IsAnyPointerType(LHS) || IsAnyPointerType(RHS)) { 12305 LHS = DefaultFunctionArrayLvalueConversion(LHS.get()); 12306 if (LHS.isInvalid()) 12307 return QualType(); 12308 RHS = DefaultFunctionArrayLvalueConversion(RHS.get()); 12309 if (RHS.isInvalid()) 12310 return QualType(); 12311 } else { 12312 LHS = DefaultLvalueConversion(LHS.get()); 12313 if (LHS.isInvalid()) 12314 return QualType(); 12315 RHS = DefaultLvalueConversion(RHS.get()); 12316 if (RHS.isInvalid()) 12317 return QualType(); 12318 } 12319 12320 checkArithmeticNull(*this, LHS, RHS, Loc, /*IsCompare=*/true); 12321 if (!getLangOpts().CPlusPlus && BinaryOperator::isEqualityOp(Opc)) { 12322 CheckPtrComparisonWithNullChar(LHS, RHS); 12323 CheckPtrComparisonWithNullChar(RHS, LHS); 12324 } 12325 12326 // Handle vector comparisons separately. 12327 if (LHS.get()->getType()->isVectorType() || 12328 RHS.get()->getType()->isVectorType()) 12329 return CheckVectorCompareOperands(LHS, RHS, Loc, Opc); 12330 12331 if (LHS.get()->getType()->isVLSTBuiltinType() || 12332 RHS.get()->getType()->isVLSTBuiltinType()) 12333 return CheckSizelessVectorCompareOperands(LHS, RHS, Loc, Opc); 12334 12335 diagnoseLogicalNotOnLHSofCheck(*this, LHS, RHS, Loc, Opc); 12336 diagnoseTautologicalComparison(*this, Loc, LHS.get(), RHS.get(), Opc); 12337 12338 QualType LHSType = LHS.get()->getType(); 12339 QualType RHSType = RHS.get()->getType(); 12340 if ((LHSType->isArithmeticType() || LHSType->isEnumeralType()) && 12341 (RHSType->isArithmeticType() || RHSType->isEnumeralType())) 12342 return checkArithmeticOrEnumeralCompare(*this, LHS, RHS, Loc, Opc); 12343 12344 const Expr::NullPointerConstantKind LHSNullKind = 12345 LHS.get()->isNullPointerConstant(Context, Expr::NPC_ValueDependentIsNull); 12346 const Expr::NullPointerConstantKind RHSNullKind = 12347 RHS.get()->isNullPointerConstant(Context, Expr::NPC_ValueDependentIsNull); 12348 bool LHSIsNull = LHSNullKind != Expr::NPCK_NotNull; 12349 bool RHSIsNull = RHSNullKind != Expr::NPCK_NotNull; 12350 12351 auto computeResultTy = [&]() { 12352 if (Opc != BO_Cmp) 12353 return Context.getLogicalOperationType(); 12354 assert(getLangOpts().CPlusPlus); 12355 assert(Context.hasSameType(LHS.get()->getType(), RHS.get()->getType())); 12356 12357 QualType CompositeTy = LHS.get()->getType(); 12358 assert(!CompositeTy->isReferenceType()); 12359 12360 Optional<ComparisonCategoryType> CCT = 12361 getComparisonCategoryForBuiltinCmp(CompositeTy); 12362 if (!CCT) 12363 return InvalidOperands(Loc, LHS, RHS); 12364 12365 if (CompositeTy->isPointerType() && LHSIsNull != RHSIsNull) { 12366 // P0946R0: Comparisons between a null pointer constant and an object 12367 // pointer result in std::strong_equality, which is ill-formed under 12368 // P1959R0. 12369 Diag(Loc, diag::err_typecheck_three_way_comparison_of_pointer_and_zero) 12370 << (LHSIsNull ? LHS.get()->getSourceRange() 12371 : RHS.get()->getSourceRange()); 12372 return QualType(); 12373 } 12374 12375 return CheckComparisonCategoryType( 12376 *CCT, Loc, ComparisonCategoryUsage::OperatorInExpression); 12377 }; 12378 12379 if (!IsOrdered && LHSIsNull != RHSIsNull) { 12380 bool IsEquality = Opc == BO_EQ; 12381 if (RHSIsNull) 12382 DiagnoseAlwaysNonNullPointer(LHS.get(), RHSNullKind, IsEquality, 12383 RHS.get()->getSourceRange()); 12384 else 12385 DiagnoseAlwaysNonNullPointer(RHS.get(), LHSNullKind, IsEquality, 12386 LHS.get()->getSourceRange()); 12387 } 12388 12389 if (IsOrdered && LHSType->isFunctionPointerType() && 12390 RHSType->isFunctionPointerType()) { 12391 // Valid unless a relational comparison of function pointers 12392 bool IsError = Opc == BO_Cmp; 12393 auto DiagID = 12394 IsError ? diag::err_typecheck_ordered_comparison_of_function_pointers 12395 : getLangOpts().CPlusPlus 12396 ? diag::warn_typecheck_ordered_comparison_of_function_pointers 12397 : diag::ext_typecheck_ordered_comparison_of_function_pointers; 12398 Diag(Loc, DiagID) << LHSType << RHSType << LHS.get()->getSourceRange() 12399 << RHS.get()->getSourceRange(); 12400 if (IsError) 12401 return QualType(); 12402 } 12403 12404 if ((LHSType->isIntegerType() && !LHSIsNull) || 12405 (RHSType->isIntegerType() && !RHSIsNull)) { 12406 // Skip normal pointer conversion checks in this case; we have better 12407 // diagnostics for this below. 12408 } else if (getLangOpts().CPlusPlus) { 12409 // Equality comparison of a function pointer to a void pointer is invalid, 12410 // but we allow it as an extension. 12411 // FIXME: If we really want to allow this, should it be part of composite 12412 // pointer type computation so it works in conditionals too? 12413 if (!IsOrdered && 12414 ((LHSType->isFunctionPointerType() && RHSType->isVoidPointerType()) || 12415 (RHSType->isFunctionPointerType() && LHSType->isVoidPointerType()))) { 12416 // This is a gcc extension compatibility comparison. 12417 // In a SFINAE context, we treat this as a hard error to maintain 12418 // conformance with the C++ standard. 12419 diagnoseFunctionPointerToVoidComparison( 12420 *this, Loc, LHS, RHS, /*isError*/ (bool)isSFINAEContext()); 12421 12422 if (isSFINAEContext()) 12423 return QualType(); 12424 12425 RHS = ImpCastExprToType(RHS.get(), LHSType, CK_BitCast); 12426 return computeResultTy(); 12427 } 12428 12429 // C++ [expr.eq]p2: 12430 // If at least one operand is a pointer [...] bring them to their 12431 // composite pointer type. 12432 // C++ [expr.spaceship]p6 12433 // If at least one of the operands is of pointer type, [...] bring them 12434 // to their composite pointer type. 12435 // C++ [expr.rel]p2: 12436 // If both operands are pointers, [...] bring them to their composite 12437 // pointer type. 12438 // For <=>, the only valid non-pointer types are arrays and functions, and 12439 // we already decayed those, so this is really the same as the relational 12440 // comparison rule. 12441 if ((int)LHSType->isPointerType() + (int)RHSType->isPointerType() >= 12442 (IsOrdered ? 2 : 1) && 12443 (!LangOpts.ObjCAutoRefCount || !(LHSType->isObjCObjectPointerType() || 12444 RHSType->isObjCObjectPointerType()))) { 12445 if (convertPointersToCompositeType(*this, Loc, LHS, RHS)) 12446 return QualType(); 12447 return computeResultTy(); 12448 } 12449 } else if (LHSType->isPointerType() && 12450 RHSType->isPointerType()) { // C99 6.5.8p2 12451 // All of the following pointer-related warnings are GCC extensions, except 12452 // when handling null pointer constants. 12453 QualType LCanPointeeTy = 12454 LHSType->castAs<PointerType>()->getPointeeType().getCanonicalType(); 12455 QualType RCanPointeeTy = 12456 RHSType->castAs<PointerType>()->getPointeeType().getCanonicalType(); 12457 12458 // C99 6.5.9p2 and C99 6.5.8p2 12459 if (Context.typesAreCompatible(LCanPointeeTy.getUnqualifiedType(), 12460 RCanPointeeTy.getUnqualifiedType())) { 12461 if (IsRelational) { 12462 // Pointers both need to point to complete or incomplete types 12463 if ((LCanPointeeTy->isIncompleteType() != 12464 RCanPointeeTy->isIncompleteType()) && 12465 !getLangOpts().C11) { 12466 Diag(Loc, diag::ext_typecheck_compare_complete_incomplete_pointers) 12467 << LHS.get()->getSourceRange() << RHS.get()->getSourceRange() 12468 << LHSType << RHSType << LCanPointeeTy->isIncompleteType() 12469 << RCanPointeeTy->isIncompleteType(); 12470 } 12471 } 12472 } else if (!IsRelational && 12473 (LCanPointeeTy->isVoidType() || RCanPointeeTy->isVoidType())) { 12474 // Valid unless comparison between non-null pointer and function pointer 12475 if ((LCanPointeeTy->isFunctionType() || RCanPointeeTy->isFunctionType()) 12476 && !LHSIsNull && !RHSIsNull) 12477 diagnoseFunctionPointerToVoidComparison(*this, Loc, LHS, RHS, 12478 /*isError*/false); 12479 } else { 12480 // Invalid 12481 diagnoseDistinctPointerComparison(*this, Loc, LHS, RHS, /*isError*/false); 12482 } 12483 if (LCanPointeeTy != RCanPointeeTy) { 12484 // Treat NULL constant as a special case in OpenCL. 12485 if (getLangOpts().OpenCL && !LHSIsNull && !RHSIsNull) { 12486 if (!LCanPointeeTy.isAddressSpaceOverlapping(RCanPointeeTy)) { 12487 Diag(Loc, 12488 diag::err_typecheck_op_on_nonoverlapping_address_space_pointers) 12489 << LHSType << RHSType << 0 /* comparison */ 12490 << LHS.get()->getSourceRange() << RHS.get()->getSourceRange(); 12491 } 12492 } 12493 LangAS AddrSpaceL = LCanPointeeTy.getAddressSpace(); 12494 LangAS AddrSpaceR = RCanPointeeTy.getAddressSpace(); 12495 CastKind Kind = AddrSpaceL != AddrSpaceR ? CK_AddressSpaceConversion 12496 : CK_BitCast; 12497 if (LHSIsNull && !RHSIsNull) 12498 LHS = ImpCastExprToType(LHS.get(), RHSType, Kind); 12499 else 12500 RHS = ImpCastExprToType(RHS.get(), LHSType, Kind); 12501 } 12502 return computeResultTy(); 12503 } 12504 12505 if (getLangOpts().CPlusPlus) { 12506 // C++ [expr.eq]p4: 12507 // Two operands of type std::nullptr_t or one operand of type 12508 // std::nullptr_t and the other a null pointer constant compare equal. 12509 if (!IsOrdered && LHSIsNull && RHSIsNull) { 12510 if (LHSType->isNullPtrType()) { 12511 RHS = ImpCastExprToType(RHS.get(), LHSType, CK_NullToPointer); 12512 return computeResultTy(); 12513 } 12514 if (RHSType->isNullPtrType()) { 12515 LHS = ImpCastExprToType(LHS.get(), RHSType, CK_NullToPointer); 12516 return computeResultTy(); 12517 } 12518 } 12519 12520 // Comparison of Objective-C pointers and block pointers against nullptr_t. 12521 // These aren't covered by the composite pointer type rules. 12522 if (!IsOrdered && RHSType->isNullPtrType() && 12523 (LHSType->isObjCObjectPointerType() || LHSType->isBlockPointerType())) { 12524 RHS = ImpCastExprToType(RHS.get(), LHSType, CK_NullToPointer); 12525 return computeResultTy(); 12526 } 12527 if (!IsOrdered && LHSType->isNullPtrType() && 12528 (RHSType->isObjCObjectPointerType() || RHSType->isBlockPointerType())) { 12529 LHS = ImpCastExprToType(LHS.get(), RHSType, CK_NullToPointer); 12530 return computeResultTy(); 12531 } 12532 12533 if (IsRelational && 12534 ((LHSType->isNullPtrType() && RHSType->isPointerType()) || 12535 (RHSType->isNullPtrType() && LHSType->isPointerType()))) { 12536 // HACK: Relational comparison of nullptr_t against a pointer type is 12537 // invalid per DR583, but we allow it within std::less<> and friends, 12538 // since otherwise common uses of it break. 12539 // FIXME: Consider removing this hack once LWG fixes std::less<> and 12540 // friends to have std::nullptr_t overload candidates. 12541 DeclContext *DC = CurContext; 12542 if (isa<FunctionDecl>(DC)) 12543 DC = DC->getParent(); 12544 if (auto *CTSD = dyn_cast<ClassTemplateSpecializationDecl>(DC)) { 12545 if (CTSD->isInStdNamespace() && 12546 llvm::StringSwitch<bool>(CTSD->getName()) 12547 .Cases("less", "less_equal", "greater", "greater_equal", true) 12548 .Default(false)) { 12549 if (RHSType->isNullPtrType()) 12550 RHS = ImpCastExprToType(RHS.get(), LHSType, CK_NullToPointer); 12551 else 12552 LHS = ImpCastExprToType(LHS.get(), RHSType, CK_NullToPointer); 12553 return computeResultTy(); 12554 } 12555 } 12556 } 12557 12558 // C++ [expr.eq]p2: 12559 // If at least one operand is a pointer to member, [...] bring them to 12560 // their composite pointer type. 12561 if (!IsOrdered && 12562 (LHSType->isMemberPointerType() || RHSType->isMemberPointerType())) { 12563 if (convertPointersToCompositeType(*this, Loc, LHS, RHS)) 12564 return QualType(); 12565 else 12566 return computeResultTy(); 12567 } 12568 } 12569 12570 // Handle block pointer types. 12571 if (!IsOrdered && LHSType->isBlockPointerType() && 12572 RHSType->isBlockPointerType()) { 12573 QualType lpointee = LHSType->castAs<BlockPointerType>()->getPointeeType(); 12574 QualType rpointee = RHSType->castAs<BlockPointerType>()->getPointeeType(); 12575 12576 if (!LHSIsNull && !RHSIsNull && 12577 !Context.typesAreCompatible(lpointee, rpointee)) { 12578 Diag(Loc, diag::err_typecheck_comparison_of_distinct_blocks) 12579 << LHSType << RHSType << LHS.get()->getSourceRange() 12580 << RHS.get()->getSourceRange(); 12581 } 12582 RHS = ImpCastExprToType(RHS.get(), LHSType, CK_BitCast); 12583 return computeResultTy(); 12584 } 12585 12586 // Allow block pointers to be compared with null pointer constants. 12587 if (!IsOrdered 12588 && ((LHSType->isBlockPointerType() && RHSType->isPointerType()) 12589 || (LHSType->isPointerType() && RHSType->isBlockPointerType()))) { 12590 if (!LHSIsNull && !RHSIsNull) { 12591 if (!((RHSType->isPointerType() && RHSType->castAs<PointerType>() 12592 ->getPointeeType()->isVoidType()) 12593 || (LHSType->isPointerType() && LHSType->castAs<PointerType>() 12594 ->getPointeeType()->isVoidType()))) 12595 Diag(Loc, diag::err_typecheck_comparison_of_distinct_blocks) 12596 << LHSType << RHSType << LHS.get()->getSourceRange() 12597 << RHS.get()->getSourceRange(); 12598 } 12599 if (LHSIsNull && !RHSIsNull) 12600 LHS = ImpCastExprToType(LHS.get(), RHSType, 12601 RHSType->isPointerType() ? CK_BitCast 12602 : CK_AnyPointerToBlockPointerCast); 12603 else 12604 RHS = ImpCastExprToType(RHS.get(), LHSType, 12605 LHSType->isPointerType() ? CK_BitCast 12606 : CK_AnyPointerToBlockPointerCast); 12607 return computeResultTy(); 12608 } 12609 12610 if (LHSType->isObjCObjectPointerType() || 12611 RHSType->isObjCObjectPointerType()) { 12612 const PointerType *LPT = LHSType->getAs<PointerType>(); 12613 const PointerType *RPT = RHSType->getAs<PointerType>(); 12614 if (LPT || RPT) { 12615 bool LPtrToVoid = LPT ? LPT->getPointeeType()->isVoidType() : false; 12616 bool RPtrToVoid = RPT ? RPT->getPointeeType()->isVoidType() : false; 12617 12618 if (!LPtrToVoid && !RPtrToVoid && 12619 !Context.typesAreCompatible(LHSType, RHSType)) { 12620 diagnoseDistinctPointerComparison(*this, Loc, LHS, RHS, 12621 /*isError*/false); 12622 } 12623 // FIXME: If LPtrToVoid, we should presumably convert the LHS rather than 12624 // the RHS, but we have test coverage for this behavior. 12625 // FIXME: Consider using convertPointersToCompositeType in C++. 12626 if (LHSIsNull && !RHSIsNull) { 12627 Expr *E = LHS.get(); 12628 if (getLangOpts().ObjCAutoRefCount) 12629 CheckObjCConversion(SourceRange(), RHSType, E, 12630 CCK_ImplicitConversion); 12631 LHS = ImpCastExprToType(E, RHSType, 12632 RPT ? CK_BitCast :CK_CPointerToObjCPointerCast); 12633 } 12634 else { 12635 Expr *E = RHS.get(); 12636 if (getLangOpts().ObjCAutoRefCount) 12637 CheckObjCConversion(SourceRange(), LHSType, E, CCK_ImplicitConversion, 12638 /*Diagnose=*/true, 12639 /*DiagnoseCFAudited=*/false, Opc); 12640 RHS = ImpCastExprToType(E, LHSType, 12641 LPT ? CK_BitCast :CK_CPointerToObjCPointerCast); 12642 } 12643 return computeResultTy(); 12644 } 12645 if (LHSType->isObjCObjectPointerType() && 12646 RHSType->isObjCObjectPointerType()) { 12647 if (!Context.areComparableObjCPointerTypes(LHSType, RHSType)) 12648 diagnoseDistinctPointerComparison(*this, Loc, LHS, RHS, 12649 /*isError*/false); 12650 if (isObjCObjectLiteral(LHS) || isObjCObjectLiteral(RHS)) 12651 diagnoseObjCLiteralComparison(*this, Loc, LHS, RHS, Opc); 12652 12653 if (LHSIsNull && !RHSIsNull) 12654 LHS = ImpCastExprToType(LHS.get(), RHSType, CK_BitCast); 12655 else 12656 RHS = ImpCastExprToType(RHS.get(), LHSType, CK_BitCast); 12657 return computeResultTy(); 12658 } 12659 12660 if (!IsOrdered && LHSType->isBlockPointerType() && 12661 RHSType->isBlockCompatibleObjCPointerType(Context)) { 12662 LHS = ImpCastExprToType(LHS.get(), RHSType, 12663 CK_BlockPointerToObjCPointerCast); 12664 return computeResultTy(); 12665 } else if (!IsOrdered && 12666 LHSType->isBlockCompatibleObjCPointerType(Context) && 12667 RHSType->isBlockPointerType()) { 12668 RHS = ImpCastExprToType(RHS.get(), LHSType, 12669 CK_BlockPointerToObjCPointerCast); 12670 return computeResultTy(); 12671 } 12672 } 12673 if ((LHSType->isAnyPointerType() && RHSType->isIntegerType()) || 12674 (LHSType->isIntegerType() && RHSType->isAnyPointerType())) { 12675 unsigned DiagID = 0; 12676 bool isError = false; 12677 if (LangOpts.DebuggerSupport) { 12678 // Under a debugger, allow the comparison of pointers to integers, 12679 // since users tend to want to compare addresses. 12680 } else if ((LHSIsNull && LHSType->isIntegerType()) || 12681 (RHSIsNull && RHSType->isIntegerType())) { 12682 if (IsOrdered) { 12683 isError = getLangOpts().CPlusPlus; 12684 DiagID = 12685 isError ? diag::err_typecheck_ordered_comparison_of_pointer_and_zero 12686 : diag::ext_typecheck_ordered_comparison_of_pointer_and_zero; 12687 } 12688 } else if (getLangOpts().CPlusPlus) { 12689 DiagID = diag::err_typecheck_comparison_of_pointer_integer; 12690 isError = true; 12691 } else if (IsOrdered) 12692 DiagID = diag::ext_typecheck_ordered_comparison_of_pointer_integer; 12693 else 12694 DiagID = diag::ext_typecheck_comparison_of_pointer_integer; 12695 12696 if (DiagID) { 12697 Diag(Loc, DiagID) 12698 << LHSType << RHSType << LHS.get()->getSourceRange() 12699 << RHS.get()->getSourceRange(); 12700 if (isError) 12701 return QualType(); 12702 } 12703 12704 if (LHSType->isIntegerType()) 12705 LHS = ImpCastExprToType(LHS.get(), RHSType, 12706 LHSIsNull ? CK_NullToPointer : CK_IntegralToPointer); 12707 else 12708 RHS = ImpCastExprToType(RHS.get(), LHSType, 12709 RHSIsNull ? CK_NullToPointer : CK_IntegralToPointer); 12710 return computeResultTy(); 12711 } 12712 12713 // Handle block pointers. 12714 if (!IsOrdered && RHSIsNull 12715 && LHSType->isBlockPointerType() && RHSType->isIntegerType()) { 12716 RHS = ImpCastExprToType(RHS.get(), LHSType, CK_NullToPointer); 12717 return computeResultTy(); 12718 } 12719 if (!IsOrdered && LHSIsNull 12720 && LHSType->isIntegerType() && RHSType->isBlockPointerType()) { 12721 LHS = ImpCastExprToType(LHS.get(), RHSType, CK_NullToPointer); 12722 return computeResultTy(); 12723 } 12724 12725 if (getLangOpts().getOpenCLCompatibleVersion() >= 200) { 12726 if (LHSType->isClkEventT() && RHSType->isClkEventT()) { 12727 return computeResultTy(); 12728 } 12729 12730 if (LHSType->isQueueT() && RHSType->isQueueT()) { 12731 return computeResultTy(); 12732 } 12733 12734 if (LHSIsNull && RHSType->isQueueT()) { 12735 LHS = ImpCastExprToType(LHS.get(), RHSType, CK_NullToPointer); 12736 return computeResultTy(); 12737 } 12738 12739 if (LHSType->isQueueT() && RHSIsNull) { 12740 RHS = ImpCastExprToType(RHS.get(), LHSType, CK_NullToPointer); 12741 return computeResultTy(); 12742 } 12743 } 12744 12745 return InvalidOperands(Loc, LHS, RHS); 12746 } 12747 12748 // Return a signed ext_vector_type that is of identical size and number of 12749 // elements. For floating point vectors, return an integer type of identical 12750 // size and number of elements. In the non ext_vector_type case, search from 12751 // the largest type to the smallest type to avoid cases where long long == long, 12752 // where long gets picked over long long. 12753 QualType Sema::GetSignedVectorType(QualType V) { 12754 const VectorType *VTy = V->castAs<VectorType>(); 12755 unsigned TypeSize = Context.getTypeSize(VTy->getElementType()); 12756 12757 if (isa<ExtVectorType>(VTy)) { 12758 if (VTy->isExtVectorBoolType()) 12759 return Context.getExtVectorType(Context.BoolTy, VTy->getNumElements()); 12760 if (TypeSize == Context.getTypeSize(Context.CharTy)) 12761 return Context.getExtVectorType(Context.CharTy, VTy->getNumElements()); 12762 if (TypeSize == Context.getTypeSize(Context.ShortTy)) 12763 return Context.getExtVectorType(Context.ShortTy, VTy->getNumElements()); 12764 if (TypeSize == Context.getTypeSize(Context.IntTy)) 12765 return Context.getExtVectorType(Context.IntTy, VTy->getNumElements()); 12766 if (TypeSize == Context.getTypeSize(Context.Int128Ty)) 12767 return Context.getExtVectorType(Context.Int128Ty, VTy->getNumElements()); 12768 if (TypeSize == Context.getTypeSize(Context.LongTy)) 12769 return Context.getExtVectorType(Context.LongTy, VTy->getNumElements()); 12770 assert(TypeSize == Context.getTypeSize(Context.LongLongTy) && 12771 "Unhandled vector element size in vector compare"); 12772 return Context.getExtVectorType(Context.LongLongTy, VTy->getNumElements()); 12773 } 12774 12775 if (TypeSize == Context.getTypeSize(Context.Int128Ty)) 12776 return Context.getVectorType(Context.Int128Ty, VTy->getNumElements(), 12777 VectorType::GenericVector); 12778 if (TypeSize == Context.getTypeSize(Context.LongLongTy)) 12779 return Context.getVectorType(Context.LongLongTy, VTy->getNumElements(), 12780 VectorType::GenericVector); 12781 if (TypeSize == Context.getTypeSize(Context.LongTy)) 12782 return Context.getVectorType(Context.LongTy, VTy->getNumElements(), 12783 VectorType::GenericVector); 12784 if (TypeSize == Context.getTypeSize(Context.IntTy)) 12785 return Context.getVectorType(Context.IntTy, VTy->getNumElements(), 12786 VectorType::GenericVector); 12787 if (TypeSize == Context.getTypeSize(Context.ShortTy)) 12788 return Context.getVectorType(Context.ShortTy, VTy->getNumElements(), 12789 VectorType::GenericVector); 12790 assert(TypeSize == Context.getTypeSize(Context.CharTy) && 12791 "Unhandled vector element size in vector compare"); 12792 return Context.getVectorType(Context.CharTy, VTy->getNumElements(), 12793 VectorType::GenericVector); 12794 } 12795 12796 QualType Sema::GetSignedSizelessVectorType(QualType V) { 12797 const BuiltinType *VTy = V->castAs<BuiltinType>(); 12798 assert(VTy->isSizelessBuiltinType() && "expected sizeless type"); 12799 12800 const QualType ETy = V->getSveEltType(Context); 12801 const auto TypeSize = Context.getTypeSize(ETy); 12802 12803 const QualType IntTy = Context.getIntTypeForBitwidth(TypeSize, true); 12804 const llvm::ElementCount VecSize = Context.getBuiltinVectorTypeInfo(VTy).EC; 12805 return Context.getScalableVectorType(IntTy, VecSize.getKnownMinValue()); 12806 } 12807 12808 /// CheckVectorCompareOperands - vector comparisons are a clang extension that 12809 /// operates on extended vector types. Instead of producing an IntTy result, 12810 /// like a scalar comparison, a vector comparison produces a vector of integer 12811 /// types. 12812 QualType Sema::CheckVectorCompareOperands(ExprResult &LHS, ExprResult &RHS, 12813 SourceLocation Loc, 12814 BinaryOperatorKind Opc) { 12815 if (Opc == BO_Cmp) { 12816 Diag(Loc, diag::err_three_way_vector_comparison); 12817 return QualType(); 12818 } 12819 12820 // Check to make sure we're operating on vectors of the same type and width, 12821 // Allowing one side to be a scalar of element type. 12822 QualType vType = 12823 CheckVectorOperands(LHS, RHS, Loc, /*isCompAssign*/ false, 12824 /*AllowBothBool*/ true, 12825 /*AllowBoolConversions*/ getLangOpts().ZVector, 12826 /*AllowBooleanOperation*/ true, 12827 /*ReportInvalid*/ true); 12828 if (vType.isNull()) 12829 return vType; 12830 12831 QualType LHSType = LHS.get()->getType(); 12832 12833 // Determine the return type of a vector compare. By default clang will return 12834 // a scalar for all vector compares except vector bool and vector pixel. 12835 // With the gcc compiler we will always return a vector type and with the xl 12836 // compiler we will always return a scalar type. This switch allows choosing 12837 // which behavior is prefered. 12838 if (getLangOpts().AltiVec) { 12839 switch (getLangOpts().getAltivecSrcCompat()) { 12840 case LangOptions::AltivecSrcCompatKind::Mixed: 12841 // If AltiVec, the comparison results in a numeric type, i.e. 12842 // bool for C++, int for C 12843 if (vType->castAs<VectorType>()->getVectorKind() == 12844 VectorType::AltiVecVector) 12845 return Context.getLogicalOperationType(); 12846 else 12847 Diag(Loc, diag::warn_deprecated_altivec_src_compat); 12848 break; 12849 case LangOptions::AltivecSrcCompatKind::GCC: 12850 // For GCC we always return the vector type. 12851 break; 12852 case LangOptions::AltivecSrcCompatKind::XL: 12853 return Context.getLogicalOperationType(); 12854 break; 12855 } 12856 } 12857 12858 // For non-floating point types, check for self-comparisons of the form 12859 // x == x, x != x, x < x, etc. These always evaluate to a constant, and 12860 // often indicate logic errors in the program. 12861 diagnoseTautologicalComparison(*this, Loc, LHS.get(), RHS.get(), Opc); 12862 12863 // Check for comparisons of floating point operands using != and ==. 12864 if (BinaryOperator::isEqualityOp(Opc) && 12865 LHSType->hasFloatingRepresentation()) { 12866 assert(RHS.get()->getType()->hasFloatingRepresentation()); 12867 CheckFloatComparison(Loc, LHS.get(), RHS.get(), Opc); 12868 } 12869 12870 // Return a signed type for the vector. 12871 return GetSignedVectorType(vType); 12872 } 12873 12874 QualType Sema::CheckSizelessVectorCompareOperands(ExprResult &LHS, 12875 ExprResult &RHS, 12876 SourceLocation Loc, 12877 BinaryOperatorKind Opc) { 12878 if (Opc == BO_Cmp) { 12879 Diag(Loc, diag::err_three_way_vector_comparison); 12880 return QualType(); 12881 } 12882 12883 // Check to make sure we're operating on vectors of the same type and width, 12884 // Allowing one side to be a scalar of element type. 12885 QualType vType = CheckSizelessVectorOperands( 12886 LHS, RHS, Loc, /*isCompAssign*/ false, ACK_Comparison); 12887 12888 if (vType.isNull()) 12889 return vType; 12890 12891 QualType LHSType = LHS.get()->getType(); 12892 12893 // For non-floating point types, check for self-comparisons of the form 12894 // x == x, x != x, x < x, etc. These always evaluate to a constant, and 12895 // often indicate logic errors in the program. 12896 diagnoseTautologicalComparison(*this, Loc, LHS.get(), RHS.get(), Opc); 12897 12898 // Check for comparisons of floating point operands using != and ==. 12899 if (BinaryOperator::isEqualityOp(Opc) && 12900 LHSType->hasFloatingRepresentation()) { 12901 assert(RHS.get()->getType()->hasFloatingRepresentation()); 12902 CheckFloatComparison(Loc, LHS.get(), RHS.get(), Opc); 12903 } 12904 12905 const BuiltinType *LHSBuiltinTy = LHSType->getAs<BuiltinType>(); 12906 const BuiltinType *RHSBuiltinTy = RHS.get()->getType()->getAs<BuiltinType>(); 12907 12908 if (LHSBuiltinTy && RHSBuiltinTy && LHSBuiltinTy->isSVEBool() && 12909 RHSBuiltinTy->isSVEBool()) 12910 return LHSType; 12911 12912 // Return a signed type for the vector. 12913 return GetSignedSizelessVectorType(vType); 12914 } 12915 12916 static void diagnoseXorMisusedAsPow(Sema &S, const ExprResult &XorLHS, 12917 const ExprResult &XorRHS, 12918 const SourceLocation Loc) { 12919 // Do not diagnose macros. 12920 if (Loc.isMacroID()) 12921 return; 12922 12923 // Do not diagnose if both LHS and RHS are macros. 12924 if (XorLHS.get()->getExprLoc().isMacroID() && 12925 XorRHS.get()->getExprLoc().isMacroID()) 12926 return; 12927 12928 bool Negative = false; 12929 bool ExplicitPlus = false; 12930 const auto *LHSInt = dyn_cast<IntegerLiteral>(XorLHS.get()); 12931 const auto *RHSInt = dyn_cast<IntegerLiteral>(XorRHS.get()); 12932 12933 if (!LHSInt) 12934 return; 12935 if (!RHSInt) { 12936 // Check negative literals. 12937 if (const auto *UO = dyn_cast<UnaryOperator>(XorRHS.get())) { 12938 UnaryOperatorKind Opc = UO->getOpcode(); 12939 if (Opc != UO_Minus && Opc != UO_Plus) 12940 return; 12941 RHSInt = dyn_cast<IntegerLiteral>(UO->getSubExpr()); 12942 if (!RHSInt) 12943 return; 12944 Negative = (Opc == UO_Minus); 12945 ExplicitPlus = !Negative; 12946 } else { 12947 return; 12948 } 12949 } 12950 12951 const llvm::APInt &LeftSideValue = LHSInt->getValue(); 12952 llvm::APInt RightSideValue = RHSInt->getValue(); 12953 if (LeftSideValue != 2 && LeftSideValue != 10) 12954 return; 12955 12956 if (LeftSideValue.getBitWidth() != RightSideValue.getBitWidth()) 12957 return; 12958 12959 CharSourceRange ExprRange = CharSourceRange::getCharRange( 12960 LHSInt->getBeginLoc(), S.getLocForEndOfToken(RHSInt->getLocation())); 12961 llvm::StringRef ExprStr = 12962 Lexer::getSourceText(ExprRange, S.getSourceManager(), S.getLangOpts()); 12963 12964 CharSourceRange XorRange = 12965 CharSourceRange::getCharRange(Loc, S.getLocForEndOfToken(Loc)); 12966 llvm::StringRef XorStr = 12967 Lexer::getSourceText(XorRange, S.getSourceManager(), S.getLangOpts()); 12968 // Do not diagnose if xor keyword/macro is used. 12969 if (XorStr == "xor") 12970 return; 12971 12972 std::string LHSStr = std::string(Lexer::getSourceText( 12973 CharSourceRange::getTokenRange(LHSInt->getSourceRange()), 12974 S.getSourceManager(), S.getLangOpts())); 12975 std::string RHSStr = std::string(Lexer::getSourceText( 12976 CharSourceRange::getTokenRange(RHSInt->getSourceRange()), 12977 S.getSourceManager(), S.getLangOpts())); 12978 12979 if (Negative) { 12980 RightSideValue = -RightSideValue; 12981 RHSStr = "-" + RHSStr; 12982 } else if (ExplicitPlus) { 12983 RHSStr = "+" + RHSStr; 12984 } 12985 12986 StringRef LHSStrRef = LHSStr; 12987 StringRef RHSStrRef = RHSStr; 12988 // Do not diagnose literals with digit separators, binary, hexadecimal, octal 12989 // literals. 12990 if (LHSStrRef.startswith("0b") || LHSStrRef.startswith("0B") || 12991 RHSStrRef.startswith("0b") || RHSStrRef.startswith("0B") || 12992 LHSStrRef.startswith("0x") || LHSStrRef.startswith("0X") || 12993 RHSStrRef.startswith("0x") || RHSStrRef.startswith("0X") || 12994 (LHSStrRef.size() > 1 && LHSStrRef.startswith("0")) || 12995 (RHSStrRef.size() > 1 && RHSStrRef.startswith("0")) || 12996 LHSStrRef.contains('\'') || RHSStrRef.contains('\'')) 12997 return; 12998 12999 bool SuggestXor = 13000 S.getLangOpts().CPlusPlus || S.getPreprocessor().isMacroDefined("xor"); 13001 const llvm::APInt XorValue = LeftSideValue ^ RightSideValue; 13002 int64_t RightSideIntValue = RightSideValue.getSExtValue(); 13003 if (LeftSideValue == 2 && RightSideIntValue >= 0) { 13004 std::string SuggestedExpr = "1 << " + RHSStr; 13005 bool Overflow = false; 13006 llvm::APInt One = (LeftSideValue - 1); 13007 llvm::APInt PowValue = One.sshl_ov(RightSideValue, Overflow); 13008 if (Overflow) { 13009 if (RightSideIntValue < 64) 13010 S.Diag(Loc, diag::warn_xor_used_as_pow_base) 13011 << ExprStr << toString(XorValue, 10, true) << ("1LL << " + RHSStr) 13012 << FixItHint::CreateReplacement(ExprRange, "1LL << " + RHSStr); 13013 else if (RightSideIntValue == 64) 13014 S.Diag(Loc, diag::warn_xor_used_as_pow) 13015 << ExprStr << toString(XorValue, 10, true); 13016 else 13017 return; 13018 } else { 13019 S.Diag(Loc, diag::warn_xor_used_as_pow_base_extra) 13020 << ExprStr << toString(XorValue, 10, true) << SuggestedExpr 13021 << toString(PowValue, 10, true) 13022 << FixItHint::CreateReplacement( 13023 ExprRange, (RightSideIntValue == 0) ? "1" : SuggestedExpr); 13024 } 13025 13026 S.Diag(Loc, diag::note_xor_used_as_pow_silence) 13027 << ("0x2 ^ " + RHSStr) << SuggestXor; 13028 } else if (LeftSideValue == 10) { 13029 std::string SuggestedValue = "1e" + std::to_string(RightSideIntValue); 13030 S.Diag(Loc, diag::warn_xor_used_as_pow_base) 13031 << ExprStr << toString(XorValue, 10, true) << SuggestedValue 13032 << FixItHint::CreateReplacement(ExprRange, SuggestedValue); 13033 S.Diag(Loc, diag::note_xor_used_as_pow_silence) 13034 << ("0xA ^ " + RHSStr) << SuggestXor; 13035 } 13036 } 13037 13038 QualType Sema::CheckVectorLogicalOperands(ExprResult &LHS, ExprResult &RHS, 13039 SourceLocation Loc) { 13040 // Ensure that either both operands are of the same vector type, or 13041 // one operand is of a vector type and the other is of its element type. 13042 QualType vType = CheckVectorOperands(LHS, RHS, Loc, false, 13043 /*AllowBothBool*/ true, 13044 /*AllowBoolConversions*/ false, 13045 /*AllowBooleanOperation*/ false, 13046 /*ReportInvalid*/ false); 13047 if (vType.isNull()) 13048 return InvalidOperands(Loc, LHS, RHS); 13049 if (getLangOpts().OpenCL && 13050 getLangOpts().getOpenCLCompatibleVersion() < 120 && 13051 vType->hasFloatingRepresentation()) 13052 return InvalidOperands(Loc, LHS, RHS); 13053 // FIXME: The check for C++ here is for GCC compatibility. GCC rejects the 13054 // usage of the logical operators && and || with vectors in C. This 13055 // check could be notionally dropped. 13056 if (!getLangOpts().CPlusPlus && 13057 !(isa<ExtVectorType>(vType->getAs<VectorType>()))) 13058 return InvalidLogicalVectorOperands(Loc, LHS, RHS); 13059 13060 return GetSignedVectorType(LHS.get()->getType()); 13061 } 13062 13063 QualType Sema::CheckMatrixElementwiseOperands(ExprResult &LHS, ExprResult &RHS, 13064 SourceLocation Loc, 13065 bool IsCompAssign) { 13066 if (!IsCompAssign) { 13067 LHS = DefaultFunctionArrayLvalueConversion(LHS.get()); 13068 if (LHS.isInvalid()) 13069 return QualType(); 13070 } 13071 RHS = DefaultFunctionArrayLvalueConversion(RHS.get()); 13072 if (RHS.isInvalid()) 13073 return QualType(); 13074 13075 // For conversion purposes, we ignore any qualifiers. 13076 // For example, "const float" and "float" are equivalent. 13077 QualType LHSType = LHS.get()->getType().getUnqualifiedType(); 13078 QualType RHSType = RHS.get()->getType().getUnqualifiedType(); 13079 13080 const MatrixType *LHSMatType = LHSType->getAs<MatrixType>(); 13081 const MatrixType *RHSMatType = RHSType->getAs<MatrixType>(); 13082 assert((LHSMatType || RHSMatType) && "At least one operand must be a matrix"); 13083 13084 if (Context.hasSameType(LHSType, RHSType)) 13085 return LHSType; 13086 13087 // Type conversion may change LHS/RHS. Keep copies to the original results, in 13088 // case we have to return InvalidOperands. 13089 ExprResult OriginalLHS = LHS; 13090 ExprResult OriginalRHS = RHS; 13091 if (LHSMatType && !RHSMatType) { 13092 RHS = tryConvertExprToType(RHS.get(), LHSMatType->getElementType()); 13093 if (!RHS.isInvalid()) 13094 return LHSType; 13095 13096 return InvalidOperands(Loc, OriginalLHS, OriginalRHS); 13097 } 13098 13099 if (!LHSMatType && RHSMatType) { 13100 LHS = tryConvertExprToType(LHS.get(), RHSMatType->getElementType()); 13101 if (!LHS.isInvalid()) 13102 return RHSType; 13103 return InvalidOperands(Loc, OriginalLHS, OriginalRHS); 13104 } 13105 13106 return InvalidOperands(Loc, LHS, RHS); 13107 } 13108 13109 QualType Sema::CheckMatrixMultiplyOperands(ExprResult &LHS, ExprResult &RHS, 13110 SourceLocation Loc, 13111 bool IsCompAssign) { 13112 if (!IsCompAssign) { 13113 LHS = DefaultFunctionArrayLvalueConversion(LHS.get()); 13114 if (LHS.isInvalid()) 13115 return QualType(); 13116 } 13117 RHS = DefaultFunctionArrayLvalueConversion(RHS.get()); 13118 if (RHS.isInvalid()) 13119 return QualType(); 13120 13121 auto *LHSMatType = LHS.get()->getType()->getAs<ConstantMatrixType>(); 13122 auto *RHSMatType = RHS.get()->getType()->getAs<ConstantMatrixType>(); 13123 assert((LHSMatType || RHSMatType) && "At least one operand must be a matrix"); 13124 13125 if (LHSMatType && RHSMatType) { 13126 if (LHSMatType->getNumColumns() != RHSMatType->getNumRows()) 13127 return InvalidOperands(Loc, LHS, RHS); 13128 13129 if (!Context.hasSameType(LHSMatType->getElementType(), 13130 RHSMatType->getElementType())) 13131 return InvalidOperands(Loc, LHS, RHS); 13132 13133 return Context.getConstantMatrixType(LHSMatType->getElementType(), 13134 LHSMatType->getNumRows(), 13135 RHSMatType->getNumColumns()); 13136 } 13137 return CheckMatrixElementwiseOperands(LHS, RHS, Loc, IsCompAssign); 13138 } 13139 13140 static bool isLegalBoolVectorBinaryOp(BinaryOperatorKind Opc) { 13141 switch (Opc) { 13142 default: 13143 return false; 13144 case BO_And: 13145 case BO_AndAssign: 13146 case BO_Or: 13147 case BO_OrAssign: 13148 case BO_Xor: 13149 case BO_XorAssign: 13150 return true; 13151 } 13152 } 13153 13154 inline QualType Sema::CheckBitwiseOperands(ExprResult &LHS, ExprResult &RHS, 13155 SourceLocation Loc, 13156 BinaryOperatorKind Opc) { 13157 checkArithmeticNull(*this, LHS, RHS, Loc, /*IsCompare=*/false); 13158 13159 bool IsCompAssign = 13160 Opc == BO_AndAssign || Opc == BO_OrAssign || Opc == BO_XorAssign; 13161 13162 bool LegalBoolVecOperator = isLegalBoolVectorBinaryOp(Opc); 13163 13164 if (LHS.get()->getType()->isVectorType() || 13165 RHS.get()->getType()->isVectorType()) { 13166 if (LHS.get()->getType()->hasIntegerRepresentation() && 13167 RHS.get()->getType()->hasIntegerRepresentation()) 13168 return CheckVectorOperands(LHS, RHS, Loc, IsCompAssign, 13169 /*AllowBothBool*/ true, 13170 /*AllowBoolConversions*/ getLangOpts().ZVector, 13171 /*AllowBooleanOperation*/ LegalBoolVecOperator, 13172 /*ReportInvalid*/ true); 13173 return InvalidOperands(Loc, LHS, RHS); 13174 } 13175 13176 if (LHS.get()->getType()->isVLSTBuiltinType() || 13177 RHS.get()->getType()->isVLSTBuiltinType()) { 13178 if (LHS.get()->getType()->hasIntegerRepresentation() && 13179 RHS.get()->getType()->hasIntegerRepresentation()) 13180 return CheckSizelessVectorOperands(LHS, RHS, Loc, IsCompAssign, 13181 ACK_BitwiseOp); 13182 return InvalidOperands(Loc, LHS, RHS); 13183 } 13184 13185 if (LHS.get()->getType()->isVLSTBuiltinType() || 13186 RHS.get()->getType()->isVLSTBuiltinType()) { 13187 if (LHS.get()->getType()->hasIntegerRepresentation() && 13188 RHS.get()->getType()->hasIntegerRepresentation()) 13189 return CheckSizelessVectorOperands(LHS, RHS, Loc, IsCompAssign, 13190 ACK_BitwiseOp); 13191 return InvalidOperands(Loc, LHS, RHS); 13192 } 13193 13194 if (Opc == BO_And) 13195 diagnoseLogicalNotOnLHSofCheck(*this, LHS, RHS, Loc, Opc); 13196 13197 if (LHS.get()->getType()->hasFloatingRepresentation() || 13198 RHS.get()->getType()->hasFloatingRepresentation()) 13199 return InvalidOperands(Loc, LHS, RHS); 13200 13201 ExprResult LHSResult = LHS, RHSResult = RHS; 13202 QualType compType = UsualArithmeticConversions( 13203 LHSResult, RHSResult, Loc, IsCompAssign ? ACK_CompAssign : ACK_BitwiseOp); 13204 if (LHSResult.isInvalid() || RHSResult.isInvalid()) 13205 return QualType(); 13206 LHS = LHSResult.get(); 13207 RHS = RHSResult.get(); 13208 13209 if (Opc == BO_Xor) 13210 diagnoseXorMisusedAsPow(*this, LHS, RHS, Loc); 13211 13212 if (!compType.isNull() && compType->isIntegralOrUnscopedEnumerationType()) 13213 return compType; 13214 return InvalidOperands(Loc, LHS, RHS); 13215 } 13216 13217 // C99 6.5.[13,14] 13218 inline QualType Sema::CheckLogicalOperands(ExprResult &LHS, ExprResult &RHS, 13219 SourceLocation Loc, 13220 BinaryOperatorKind Opc) { 13221 // Check vector operands differently. 13222 if (LHS.get()->getType()->isVectorType() || 13223 RHS.get()->getType()->isVectorType()) 13224 return CheckVectorLogicalOperands(LHS, RHS, Loc); 13225 13226 bool EnumConstantInBoolContext = false; 13227 for (const ExprResult &HS : {LHS, RHS}) { 13228 if (const auto *DREHS = dyn_cast<DeclRefExpr>(HS.get())) { 13229 const auto *ECDHS = dyn_cast<EnumConstantDecl>(DREHS->getDecl()); 13230 if (ECDHS && ECDHS->getInitVal() != 0 && ECDHS->getInitVal() != 1) 13231 EnumConstantInBoolContext = true; 13232 } 13233 } 13234 13235 if (EnumConstantInBoolContext) 13236 Diag(Loc, diag::warn_enum_constant_in_bool_context); 13237 13238 // Diagnose cases where the user write a logical and/or but probably meant a 13239 // bitwise one. We do this when the LHS is a non-bool integer and the RHS 13240 // is a constant. 13241 if (!EnumConstantInBoolContext && LHS.get()->getType()->isIntegerType() && 13242 !LHS.get()->getType()->isBooleanType() && 13243 RHS.get()->getType()->isIntegerType() && !RHS.get()->isValueDependent() && 13244 // Don't warn in macros or template instantiations. 13245 !Loc.isMacroID() && !inTemplateInstantiation()) { 13246 // If the RHS can be constant folded, and if it constant folds to something 13247 // that isn't 0 or 1 (which indicate a potential logical operation that 13248 // happened to fold to true/false) then warn. 13249 // Parens on the RHS are ignored. 13250 Expr::EvalResult EVResult; 13251 if (RHS.get()->EvaluateAsInt(EVResult, Context)) { 13252 llvm::APSInt Result = EVResult.Val.getInt(); 13253 if ((getLangOpts().Bool && !RHS.get()->getType()->isBooleanType() && 13254 !RHS.get()->getExprLoc().isMacroID()) || 13255 (Result != 0 && Result != 1)) { 13256 Diag(Loc, diag::warn_logical_instead_of_bitwise) 13257 << RHS.get()->getSourceRange() << (Opc == BO_LAnd ? "&&" : "||"); 13258 // Suggest replacing the logical operator with the bitwise version 13259 Diag(Loc, diag::note_logical_instead_of_bitwise_change_operator) 13260 << (Opc == BO_LAnd ? "&" : "|") 13261 << FixItHint::CreateReplacement( 13262 SourceRange(Loc, getLocForEndOfToken(Loc)), 13263 Opc == BO_LAnd ? "&" : "|"); 13264 if (Opc == BO_LAnd) 13265 // Suggest replacing "Foo() && kNonZero" with "Foo()" 13266 Diag(Loc, diag::note_logical_instead_of_bitwise_remove_constant) 13267 << FixItHint::CreateRemoval( 13268 SourceRange(getLocForEndOfToken(LHS.get()->getEndLoc()), 13269 RHS.get()->getEndLoc())); 13270 } 13271 } 13272 } 13273 13274 if (!Context.getLangOpts().CPlusPlus) { 13275 // OpenCL v1.1 s6.3.g: The logical operators and (&&), or (||) do 13276 // not operate on the built-in scalar and vector float types. 13277 if (Context.getLangOpts().OpenCL && 13278 Context.getLangOpts().OpenCLVersion < 120) { 13279 if (LHS.get()->getType()->isFloatingType() || 13280 RHS.get()->getType()->isFloatingType()) 13281 return InvalidOperands(Loc, LHS, RHS); 13282 } 13283 13284 LHS = UsualUnaryConversions(LHS.get()); 13285 if (LHS.isInvalid()) 13286 return QualType(); 13287 13288 RHS = UsualUnaryConversions(RHS.get()); 13289 if (RHS.isInvalid()) 13290 return QualType(); 13291 13292 if (!LHS.get()->getType()->isScalarType() || 13293 !RHS.get()->getType()->isScalarType()) 13294 return InvalidOperands(Loc, LHS, RHS); 13295 13296 return Context.IntTy; 13297 } 13298 13299 // The following is safe because we only use this method for 13300 // non-overloadable operands. 13301 13302 // C++ [expr.log.and]p1 13303 // C++ [expr.log.or]p1 13304 // The operands are both contextually converted to type bool. 13305 ExprResult LHSRes = PerformContextuallyConvertToBool(LHS.get()); 13306 if (LHSRes.isInvalid()) 13307 return InvalidOperands(Loc, LHS, RHS); 13308 LHS = LHSRes; 13309 13310 ExprResult RHSRes = PerformContextuallyConvertToBool(RHS.get()); 13311 if (RHSRes.isInvalid()) 13312 return InvalidOperands(Loc, LHS, RHS); 13313 RHS = RHSRes; 13314 13315 // C++ [expr.log.and]p2 13316 // C++ [expr.log.or]p2 13317 // The result is a bool. 13318 return Context.BoolTy; 13319 } 13320 13321 static bool IsReadonlyMessage(Expr *E, Sema &S) { 13322 const MemberExpr *ME = dyn_cast<MemberExpr>(E); 13323 if (!ME) return false; 13324 if (!isa<FieldDecl>(ME->getMemberDecl())) return false; 13325 ObjCMessageExpr *Base = dyn_cast<ObjCMessageExpr>( 13326 ME->getBase()->IgnoreImplicit()->IgnoreParenImpCasts()); 13327 if (!Base) return false; 13328 return Base->getMethodDecl() != nullptr; 13329 } 13330 13331 /// Is the given expression (which must be 'const') a reference to a 13332 /// variable which was originally non-const, but which has become 13333 /// 'const' due to being captured within a block? 13334 enum NonConstCaptureKind { NCCK_None, NCCK_Block, NCCK_Lambda }; 13335 static NonConstCaptureKind isReferenceToNonConstCapture(Sema &S, Expr *E) { 13336 assert(E->isLValue() && E->getType().isConstQualified()); 13337 E = E->IgnoreParens(); 13338 13339 // Must be a reference to a declaration from an enclosing scope. 13340 DeclRefExpr *DRE = dyn_cast<DeclRefExpr>(E); 13341 if (!DRE) return NCCK_None; 13342 if (!DRE->refersToEnclosingVariableOrCapture()) return NCCK_None; 13343 13344 // The declaration must be a variable which is not declared 'const'. 13345 VarDecl *var = dyn_cast<VarDecl>(DRE->getDecl()); 13346 if (!var) return NCCK_None; 13347 if (var->getType().isConstQualified()) return NCCK_None; 13348 assert(var->hasLocalStorage() && "capture added 'const' to non-local?"); 13349 13350 // Decide whether the first capture was for a block or a lambda. 13351 DeclContext *DC = S.CurContext, *Prev = nullptr; 13352 // Decide whether the first capture was for a block or a lambda. 13353 while (DC) { 13354 // For init-capture, it is possible that the variable belongs to the 13355 // template pattern of the current context. 13356 if (auto *FD = dyn_cast<FunctionDecl>(DC)) 13357 if (var->isInitCapture() && 13358 FD->getTemplateInstantiationPattern() == var->getDeclContext()) 13359 break; 13360 if (DC == var->getDeclContext()) 13361 break; 13362 Prev = DC; 13363 DC = DC->getParent(); 13364 } 13365 // Unless we have an init-capture, we've gone one step too far. 13366 if (!var->isInitCapture()) 13367 DC = Prev; 13368 return (isa<BlockDecl>(DC) ? NCCK_Block : NCCK_Lambda); 13369 } 13370 13371 static bool IsTypeModifiable(QualType Ty, bool IsDereference) { 13372 Ty = Ty.getNonReferenceType(); 13373 if (IsDereference && Ty->isPointerType()) 13374 Ty = Ty->getPointeeType(); 13375 return !Ty.isConstQualified(); 13376 } 13377 13378 // Update err_typecheck_assign_const and note_typecheck_assign_const 13379 // when this enum is changed. 13380 enum { 13381 ConstFunction, 13382 ConstVariable, 13383 ConstMember, 13384 ConstMethod, 13385 NestedConstMember, 13386 ConstUnknown, // Keep as last element 13387 }; 13388 13389 /// Emit the "read-only variable not assignable" error and print notes to give 13390 /// more information about why the variable is not assignable, such as pointing 13391 /// to the declaration of a const variable, showing that a method is const, or 13392 /// that the function is returning a const reference. 13393 static void DiagnoseConstAssignment(Sema &S, const Expr *E, 13394 SourceLocation Loc) { 13395 SourceRange ExprRange = E->getSourceRange(); 13396 13397 // Only emit one error on the first const found. All other consts will emit 13398 // a note to the error. 13399 bool DiagnosticEmitted = false; 13400 13401 // Track if the current expression is the result of a dereference, and if the 13402 // next checked expression is the result of a dereference. 13403 bool IsDereference = false; 13404 bool NextIsDereference = false; 13405 13406 // Loop to process MemberExpr chains. 13407 while (true) { 13408 IsDereference = NextIsDereference; 13409 13410 E = E->IgnoreImplicit()->IgnoreParenImpCasts(); 13411 if (const MemberExpr *ME = dyn_cast<MemberExpr>(E)) { 13412 NextIsDereference = ME->isArrow(); 13413 const ValueDecl *VD = ME->getMemberDecl(); 13414 if (const FieldDecl *Field = dyn_cast<FieldDecl>(VD)) { 13415 // Mutable fields can be modified even if the class is const. 13416 if (Field->isMutable()) { 13417 assert(DiagnosticEmitted && "Expected diagnostic not emitted."); 13418 break; 13419 } 13420 13421 if (!IsTypeModifiable(Field->getType(), IsDereference)) { 13422 if (!DiagnosticEmitted) { 13423 S.Diag(Loc, diag::err_typecheck_assign_const) 13424 << ExprRange << ConstMember << false /*static*/ << Field 13425 << Field->getType(); 13426 DiagnosticEmitted = true; 13427 } 13428 S.Diag(VD->getLocation(), diag::note_typecheck_assign_const) 13429 << ConstMember << false /*static*/ << Field << Field->getType() 13430 << Field->getSourceRange(); 13431 } 13432 E = ME->getBase(); 13433 continue; 13434 } else if (const VarDecl *VDecl = dyn_cast<VarDecl>(VD)) { 13435 if (VDecl->getType().isConstQualified()) { 13436 if (!DiagnosticEmitted) { 13437 S.Diag(Loc, diag::err_typecheck_assign_const) 13438 << ExprRange << ConstMember << true /*static*/ << VDecl 13439 << VDecl->getType(); 13440 DiagnosticEmitted = true; 13441 } 13442 S.Diag(VD->getLocation(), diag::note_typecheck_assign_const) 13443 << ConstMember << true /*static*/ << VDecl << VDecl->getType() 13444 << VDecl->getSourceRange(); 13445 } 13446 // Static fields do not inherit constness from parents. 13447 break; 13448 } 13449 break; // End MemberExpr 13450 } else if (const ArraySubscriptExpr *ASE = 13451 dyn_cast<ArraySubscriptExpr>(E)) { 13452 E = ASE->getBase()->IgnoreParenImpCasts(); 13453 continue; 13454 } else if (const ExtVectorElementExpr *EVE = 13455 dyn_cast<ExtVectorElementExpr>(E)) { 13456 E = EVE->getBase()->IgnoreParenImpCasts(); 13457 continue; 13458 } 13459 break; 13460 } 13461 13462 if (const CallExpr *CE = dyn_cast<CallExpr>(E)) { 13463 // Function calls 13464 const FunctionDecl *FD = CE->getDirectCallee(); 13465 if (FD && !IsTypeModifiable(FD->getReturnType(), IsDereference)) { 13466 if (!DiagnosticEmitted) { 13467 S.Diag(Loc, diag::err_typecheck_assign_const) << ExprRange 13468 << ConstFunction << FD; 13469 DiagnosticEmitted = true; 13470 } 13471 S.Diag(FD->getReturnTypeSourceRange().getBegin(), 13472 diag::note_typecheck_assign_const) 13473 << ConstFunction << FD << FD->getReturnType() 13474 << FD->getReturnTypeSourceRange(); 13475 } 13476 } else if (const DeclRefExpr *DRE = dyn_cast<DeclRefExpr>(E)) { 13477 // Point to variable declaration. 13478 if (const ValueDecl *VD = DRE->getDecl()) { 13479 if (!IsTypeModifiable(VD->getType(), IsDereference)) { 13480 if (!DiagnosticEmitted) { 13481 S.Diag(Loc, diag::err_typecheck_assign_const) 13482 << ExprRange << ConstVariable << VD << VD->getType(); 13483 DiagnosticEmitted = true; 13484 } 13485 S.Diag(VD->getLocation(), diag::note_typecheck_assign_const) 13486 << ConstVariable << VD << VD->getType() << VD->getSourceRange(); 13487 } 13488 } 13489 } else if (isa<CXXThisExpr>(E)) { 13490 if (const DeclContext *DC = S.getFunctionLevelDeclContext()) { 13491 if (const CXXMethodDecl *MD = dyn_cast<CXXMethodDecl>(DC)) { 13492 if (MD->isConst()) { 13493 if (!DiagnosticEmitted) { 13494 S.Diag(Loc, diag::err_typecheck_assign_const) << ExprRange 13495 << ConstMethod << MD; 13496 DiagnosticEmitted = true; 13497 } 13498 S.Diag(MD->getLocation(), diag::note_typecheck_assign_const) 13499 << ConstMethod << MD << MD->getSourceRange(); 13500 } 13501 } 13502 } 13503 } 13504 13505 if (DiagnosticEmitted) 13506 return; 13507 13508 // Can't determine a more specific message, so display the generic error. 13509 S.Diag(Loc, diag::err_typecheck_assign_const) << ExprRange << ConstUnknown; 13510 } 13511 13512 enum OriginalExprKind { 13513 OEK_Variable, 13514 OEK_Member, 13515 OEK_LValue 13516 }; 13517 13518 static void DiagnoseRecursiveConstFields(Sema &S, const ValueDecl *VD, 13519 const RecordType *Ty, 13520 SourceLocation Loc, SourceRange Range, 13521 OriginalExprKind OEK, 13522 bool &DiagnosticEmitted) { 13523 std::vector<const RecordType *> RecordTypeList; 13524 RecordTypeList.push_back(Ty); 13525 unsigned NextToCheckIndex = 0; 13526 // We walk the record hierarchy breadth-first to ensure that we print 13527 // diagnostics in field nesting order. 13528 while (RecordTypeList.size() > NextToCheckIndex) { 13529 bool IsNested = NextToCheckIndex > 0; 13530 for (const FieldDecl *Field : 13531 RecordTypeList[NextToCheckIndex]->getDecl()->fields()) { 13532 // First, check every field for constness. 13533 QualType FieldTy = Field->getType(); 13534 if (FieldTy.isConstQualified()) { 13535 if (!DiagnosticEmitted) { 13536 S.Diag(Loc, diag::err_typecheck_assign_const) 13537 << Range << NestedConstMember << OEK << VD 13538 << IsNested << Field; 13539 DiagnosticEmitted = true; 13540 } 13541 S.Diag(Field->getLocation(), diag::note_typecheck_assign_const) 13542 << NestedConstMember << IsNested << Field 13543 << FieldTy << Field->getSourceRange(); 13544 } 13545 13546 // Then we append it to the list to check next in order. 13547 FieldTy = FieldTy.getCanonicalType(); 13548 if (const auto *FieldRecTy = FieldTy->getAs<RecordType>()) { 13549 if (!llvm::is_contained(RecordTypeList, FieldRecTy)) 13550 RecordTypeList.push_back(FieldRecTy); 13551 } 13552 } 13553 ++NextToCheckIndex; 13554 } 13555 } 13556 13557 /// Emit an error for the case where a record we are trying to assign to has a 13558 /// const-qualified field somewhere in its hierarchy. 13559 static void DiagnoseRecursiveConstFields(Sema &S, const Expr *E, 13560 SourceLocation Loc) { 13561 QualType Ty = E->getType(); 13562 assert(Ty->isRecordType() && "lvalue was not record?"); 13563 SourceRange Range = E->getSourceRange(); 13564 const RecordType *RTy = Ty.getCanonicalType()->getAs<RecordType>(); 13565 bool DiagEmitted = false; 13566 13567 if (const MemberExpr *ME = dyn_cast<MemberExpr>(E)) 13568 DiagnoseRecursiveConstFields(S, ME->getMemberDecl(), RTy, Loc, 13569 Range, OEK_Member, DiagEmitted); 13570 else if (const DeclRefExpr *DRE = dyn_cast<DeclRefExpr>(E)) 13571 DiagnoseRecursiveConstFields(S, DRE->getDecl(), RTy, Loc, 13572 Range, OEK_Variable, DiagEmitted); 13573 else 13574 DiagnoseRecursiveConstFields(S, nullptr, RTy, Loc, 13575 Range, OEK_LValue, DiagEmitted); 13576 if (!DiagEmitted) 13577 DiagnoseConstAssignment(S, E, Loc); 13578 } 13579 13580 /// CheckForModifiableLvalue - Verify that E is a modifiable lvalue. If not, 13581 /// emit an error and return true. If so, return false. 13582 static bool CheckForModifiableLvalue(Expr *E, SourceLocation Loc, Sema &S) { 13583 assert(!E->hasPlaceholderType(BuiltinType::PseudoObject)); 13584 13585 S.CheckShadowingDeclModification(E, Loc); 13586 13587 SourceLocation OrigLoc = Loc; 13588 Expr::isModifiableLvalueResult IsLV = E->isModifiableLvalue(S.Context, 13589 &Loc); 13590 if (IsLV == Expr::MLV_ClassTemporary && IsReadonlyMessage(E, S)) 13591 IsLV = Expr::MLV_InvalidMessageExpression; 13592 if (IsLV == Expr::MLV_Valid) 13593 return false; 13594 13595 unsigned DiagID = 0; 13596 bool NeedType = false; 13597 switch (IsLV) { // C99 6.5.16p2 13598 case Expr::MLV_ConstQualified: 13599 // Use a specialized diagnostic when we're assigning to an object 13600 // from an enclosing function or block. 13601 if (NonConstCaptureKind NCCK = isReferenceToNonConstCapture(S, E)) { 13602 if (NCCK == NCCK_Block) 13603 DiagID = diag::err_block_decl_ref_not_modifiable_lvalue; 13604 else 13605 DiagID = diag::err_lambda_decl_ref_not_modifiable_lvalue; 13606 break; 13607 } 13608 13609 // In ARC, use some specialized diagnostics for occasions where we 13610 // infer 'const'. These are always pseudo-strong variables. 13611 if (S.getLangOpts().ObjCAutoRefCount) { 13612 DeclRefExpr *declRef = dyn_cast<DeclRefExpr>(E->IgnoreParenCasts()); 13613 if (declRef && isa<VarDecl>(declRef->getDecl())) { 13614 VarDecl *var = cast<VarDecl>(declRef->getDecl()); 13615 13616 // Use the normal diagnostic if it's pseudo-__strong but the 13617 // user actually wrote 'const'. 13618 if (var->isARCPseudoStrong() && 13619 (!var->getTypeSourceInfo() || 13620 !var->getTypeSourceInfo()->getType().isConstQualified())) { 13621 // There are three pseudo-strong cases: 13622 // - self 13623 ObjCMethodDecl *method = S.getCurMethodDecl(); 13624 if (method && var == method->getSelfDecl()) { 13625 DiagID = method->isClassMethod() 13626 ? diag::err_typecheck_arc_assign_self_class_method 13627 : diag::err_typecheck_arc_assign_self; 13628 13629 // - Objective-C externally_retained attribute. 13630 } else if (var->hasAttr<ObjCExternallyRetainedAttr>() || 13631 isa<ParmVarDecl>(var)) { 13632 DiagID = diag::err_typecheck_arc_assign_externally_retained; 13633 13634 // - fast enumeration variables 13635 } else { 13636 DiagID = diag::err_typecheck_arr_assign_enumeration; 13637 } 13638 13639 SourceRange Assign; 13640 if (Loc != OrigLoc) 13641 Assign = SourceRange(OrigLoc, OrigLoc); 13642 S.Diag(Loc, DiagID) << E->getSourceRange() << Assign; 13643 // We need to preserve the AST regardless, so migration tool 13644 // can do its job. 13645 return false; 13646 } 13647 } 13648 } 13649 13650 // If none of the special cases above are triggered, then this is a 13651 // simple const assignment. 13652 if (DiagID == 0) { 13653 DiagnoseConstAssignment(S, E, Loc); 13654 return true; 13655 } 13656 13657 break; 13658 case Expr::MLV_ConstAddrSpace: 13659 DiagnoseConstAssignment(S, E, Loc); 13660 return true; 13661 case Expr::MLV_ConstQualifiedField: 13662 DiagnoseRecursiveConstFields(S, E, Loc); 13663 return true; 13664 case Expr::MLV_ArrayType: 13665 case Expr::MLV_ArrayTemporary: 13666 DiagID = diag::err_typecheck_array_not_modifiable_lvalue; 13667 NeedType = true; 13668 break; 13669 case Expr::MLV_NotObjectType: 13670 DiagID = diag::err_typecheck_non_object_not_modifiable_lvalue; 13671 NeedType = true; 13672 break; 13673 case Expr::MLV_LValueCast: 13674 DiagID = diag::err_typecheck_lvalue_casts_not_supported; 13675 break; 13676 case Expr::MLV_Valid: 13677 llvm_unreachable("did not take early return for MLV_Valid"); 13678 case Expr::MLV_InvalidExpression: 13679 case Expr::MLV_MemberFunction: 13680 case Expr::MLV_ClassTemporary: 13681 DiagID = diag::err_typecheck_expression_not_modifiable_lvalue; 13682 break; 13683 case Expr::MLV_IncompleteType: 13684 case Expr::MLV_IncompleteVoidType: 13685 return S.RequireCompleteType(Loc, E->getType(), 13686 diag::err_typecheck_incomplete_type_not_modifiable_lvalue, E); 13687 case Expr::MLV_DuplicateVectorComponents: 13688 DiagID = diag::err_typecheck_duplicate_vector_components_not_mlvalue; 13689 break; 13690 case Expr::MLV_NoSetterProperty: 13691 llvm_unreachable("readonly properties should be processed differently"); 13692 case Expr::MLV_InvalidMessageExpression: 13693 DiagID = diag::err_readonly_message_assignment; 13694 break; 13695 case Expr::MLV_SubObjCPropertySetting: 13696 DiagID = diag::err_no_subobject_property_setting; 13697 break; 13698 } 13699 13700 SourceRange Assign; 13701 if (Loc != OrigLoc) 13702 Assign = SourceRange(OrigLoc, OrigLoc); 13703 if (NeedType) 13704 S.Diag(Loc, DiagID) << E->getType() << E->getSourceRange() << Assign; 13705 else 13706 S.Diag(Loc, DiagID) << E->getSourceRange() << Assign; 13707 return true; 13708 } 13709 13710 static void CheckIdentityFieldAssignment(Expr *LHSExpr, Expr *RHSExpr, 13711 SourceLocation Loc, 13712 Sema &Sema) { 13713 if (Sema.inTemplateInstantiation()) 13714 return; 13715 if (Sema.isUnevaluatedContext()) 13716 return; 13717 if (Loc.isInvalid() || Loc.isMacroID()) 13718 return; 13719 if (LHSExpr->getExprLoc().isMacroID() || RHSExpr->getExprLoc().isMacroID()) 13720 return; 13721 13722 // C / C++ fields 13723 MemberExpr *ML = dyn_cast<MemberExpr>(LHSExpr); 13724 MemberExpr *MR = dyn_cast<MemberExpr>(RHSExpr); 13725 if (ML && MR) { 13726 if (!(isa<CXXThisExpr>(ML->getBase()) && isa<CXXThisExpr>(MR->getBase()))) 13727 return; 13728 const ValueDecl *LHSDecl = 13729 cast<ValueDecl>(ML->getMemberDecl()->getCanonicalDecl()); 13730 const ValueDecl *RHSDecl = 13731 cast<ValueDecl>(MR->getMemberDecl()->getCanonicalDecl()); 13732 if (LHSDecl != RHSDecl) 13733 return; 13734 if (LHSDecl->getType().isVolatileQualified()) 13735 return; 13736 if (const ReferenceType *RefTy = LHSDecl->getType()->getAs<ReferenceType>()) 13737 if (RefTy->getPointeeType().isVolatileQualified()) 13738 return; 13739 13740 Sema.Diag(Loc, diag::warn_identity_field_assign) << 0; 13741 } 13742 13743 // Objective-C instance variables 13744 ObjCIvarRefExpr *OL = dyn_cast<ObjCIvarRefExpr>(LHSExpr); 13745 ObjCIvarRefExpr *OR = dyn_cast<ObjCIvarRefExpr>(RHSExpr); 13746 if (OL && OR && OL->getDecl() == OR->getDecl()) { 13747 DeclRefExpr *RL = dyn_cast<DeclRefExpr>(OL->getBase()->IgnoreImpCasts()); 13748 DeclRefExpr *RR = dyn_cast<DeclRefExpr>(OR->getBase()->IgnoreImpCasts()); 13749 if (RL && RR && RL->getDecl() == RR->getDecl()) 13750 Sema.Diag(Loc, diag::warn_identity_field_assign) << 1; 13751 } 13752 } 13753 13754 // C99 6.5.16.1 13755 QualType Sema::CheckAssignmentOperands(Expr *LHSExpr, ExprResult &RHS, 13756 SourceLocation Loc, 13757 QualType CompoundType) { 13758 assert(!LHSExpr->hasPlaceholderType(BuiltinType::PseudoObject)); 13759 13760 // Verify that LHS is a modifiable lvalue, and emit error if not. 13761 if (CheckForModifiableLvalue(LHSExpr, Loc, *this)) 13762 return QualType(); 13763 13764 QualType LHSType = LHSExpr->getType(); 13765 QualType RHSType = CompoundType.isNull() ? RHS.get()->getType() : 13766 CompoundType; 13767 // OpenCL v1.2 s6.1.1.1 p2: 13768 // The half data type can only be used to declare a pointer to a buffer that 13769 // contains half values 13770 if (getLangOpts().OpenCL && 13771 !getOpenCLOptions().isAvailableOption("cl_khr_fp16", getLangOpts()) && 13772 LHSType->isHalfType()) { 13773 Diag(Loc, diag::err_opencl_half_load_store) << 1 13774 << LHSType.getUnqualifiedType(); 13775 return QualType(); 13776 } 13777 13778 AssignConvertType ConvTy; 13779 if (CompoundType.isNull()) { 13780 Expr *RHSCheck = RHS.get(); 13781 13782 CheckIdentityFieldAssignment(LHSExpr, RHSCheck, Loc, *this); 13783 13784 QualType LHSTy(LHSType); 13785 ConvTy = CheckSingleAssignmentConstraints(LHSTy, RHS); 13786 if (RHS.isInvalid()) 13787 return QualType(); 13788 // Special case of NSObject attributes on c-style pointer types. 13789 if (ConvTy == IncompatiblePointer && 13790 ((Context.isObjCNSObjectType(LHSType) && 13791 RHSType->isObjCObjectPointerType()) || 13792 (Context.isObjCNSObjectType(RHSType) && 13793 LHSType->isObjCObjectPointerType()))) 13794 ConvTy = Compatible; 13795 13796 if (ConvTy == Compatible && 13797 LHSType->isObjCObjectType()) 13798 Diag(Loc, diag::err_objc_object_assignment) 13799 << LHSType; 13800 13801 // If the RHS is a unary plus or minus, check to see if they = and + are 13802 // right next to each other. If so, the user may have typo'd "x =+ 4" 13803 // instead of "x += 4". 13804 if (ImplicitCastExpr *ICE = dyn_cast<ImplicitCastExpr>(RHSCheck)) 13805 RHSCheck = ICE->getSubExpr(); 13806 if (UnaryOperator *UO = dyn_cast<UnaryOperator>(RHSCheck)) { 13807 if ((UO->getOpcode() == UO_Plus || UO->getOpcode() == UO_Minus) && 13808 Loc.isFileID() && UO->getOperatorLoc().isFileID() && 13809 // Only if the two operators are exactly adjacent. 13810 Loc.getLocWithOffset(1) == UO->getOperatorLoc() && 13811 // And there is a space or other character before the subexpr of the 13812 // unary +/-. We don't want to warn on "x=-1". 13813 Loc.getLocWithOffset(2) != UO->getSubExpr()->getBeginLoc() && 13814 UO->getSubExpr()->getBeginLoc().isFileID()) { 13815 Diag(Loc, diag::warn_not_compound_assign) 13816 << (UO->getOpcode() == UO_Plus ? "+" : "-") 13817 << SourceRange(UO->getOperatorLoc(), UO->getOperatorLoc()); 13818 } 13819 } 13820 13821 if (ConvTy == Compatible) { 13822 if (LHSType.getObjCLifetime() == Qualifiers::OCL_Strong) { 13823 // Warn about retain cycles where a block captures the LHS, but 13824 // not if the LHS is a simple variable into which the block is 13825 // being stored...unless that variable can be captured by reference! 13826 const Expr *InnerLHS = LHSExpr->IgnoreParenCasts(); 13827 const DeclRefExpr *DRE = dyn_cast<DeclRefExpr>(InnerLHS); 13828 if (!DRE || DRE->getDecl()->hasAttr<BlocksAttr>()) 13829 checkRetainCycles(LHSExpr, RHS.get()); 13830 } 13831 13832 if (LHSType.getObjCLifetime() == Qualifiers::OCL_Strong || 13833 LHSType.isNonWeakInMRRWithObjCWeak(Context)) { 13834 // It is safe to assign a weak reference into a strong variable. 13835 // Although this code can still have problems: 13836 // id x = self.weakProp; 13837 // id y = self.weakProp; 13838 // we do not warn to warn spuriously when 'x' and 'y' are on separate 13839 // paths through the function. This should be revisited if 13840 // -Wrepeated-use-of-weak is made flow-sensitive. 13841 // For ObjCWeak only, we do not warn if the assign is to a non-weak 13842 // variable, which will be valid for the current autorelease scope. 13843 if (!Diags.isIgnored(diag::warn_arc_repeated_use_of_weak, 13844 RHS.get()->getBeginLoc())) 13845 getCurFunction()->markSafeWeakUse(RHS.get()); 13846 13847 } else if (getLangOpts().ObjCAutoRefCount || getLangOpts().ObjCWeak) { 13848 checkUnsafeExprAssigns(Loc, LHSExpr, RHS.get()); 13849 } 13850 } 13851 } else { 13852 // Compound assignment "x += y" 13853 ConvTy = CheckAssignmentConstraints(Loc, LHSType, RHSType); 13854 } 13855 13856 if (DiagnoseAssignmentResult(ConvTy, Loc, LHSType, RHSType, 13857 RHS.get(), AA_Assigning)) 13858 return QualType(); 13859 13860 CheckForNullPointerDereference(*this, LHSExpr); 13861 13862 if (getLangOpts().CPlusPlus20 && LHSType.isVolatileQualified()) { 13863 if (CompoundType.isNull()) { 13864 // C++2a [expr.ass]p5: 13865 // A simple-assignment whose left operand is of a volatile-qualified 13866 // type is deprecated unless the assignment is either a discarded-value 13867 // expression or an unevaluated operand 13868 ExprEvalContexts.back().VolatileAssignmentLHSs.push_back(LHSExpr); 13869 } else { 13870 // C++2a [expr.ass]p6: 13871 // [Compound-assignment] expressions are deprecated if E1 has 13872 // volatile-qualified type 13873 Diag(Loc, diag::warn_deprecated_compound_assign_volatile) << LHSType; 13874 } 13875 } 13876 13877 // C11 6.5.16p3: The type of an assignment expression is the type of the 13878 // left operand would have after lvalue conversion. 13879 // C11 6.3.2.1p2: ...this is called lvalue conversion. If the lvalue has 13880 // qualified type, the value has the unqualified version of the type of the 13881 // lvalue; additionally, if the lvalue has atomic type, the value has the 13882 // non-atomic version of the type of the lvalue. 13883 // C++ 5.17p1: the type of the assignment expression is that of its left 13884 // operand. 13885 return getLangOpts().CPlusPlus ? LHSType : LHSType.getAtomicUnqualifiedType(); 13886 } 13887 13888 // Only ignore explicit casts to void. 13889 static bool IgnoreCommaOperand(const Expr *E) { 13890 E = E->IgnoreParens(); 13891 13892 if (const CastExpr *CE = dyn_cast<CastExpr>(E)) { 13893 if (CE->getCastKind() == CK_ToVoid) { 13894 return true; 13895 } 13896 13897 // static_cast<void> on a dependent type will not show up as CK_ToVoid. 13898 if (CE->getCastKind() == CK_Dependent && E->getType()->isVoidType() && 13899 CE->getSubExpr()->getType()->isDependentType()) { 13900 return true; 13901 } 13902 } 13903 13904 return false; 13905 } 13906 13907 // Look for instances where it is likely the comma operator is confused with 13908 // another operator. There is an explicit list of acceptable expressions for 13909 // the left hand side of the comma operator, otherwise emit a warning. 13910 void Sema::DiagnoseCommaOperator(const Expr *LHS, SourceLocation Loc) { 13911 // No warnings in macros 13912 if (Loc.isMacroID()) 13913 return; 13914 13915 // Don't warn in template instantiations. 13916 if (inTemplateInstantiation()) 13917 return; 13918 13919 // Scope isn't fine-grained enough to explicitly list the specific cases, so 13920 // instead, skip more than needed, then call back into here with the 13921 // CommaVisitor in SemaStmt.cpp. 13922 // The listed locations are the initialization and increment portions 13923 // of a for loop. The additional checks are on the condition of 13924 // if statements, do/while loops, and for loops. 13925 // Differences in scope flags for C89 mode requires the extra logic. 13926 const unsigned ForIncrementFlags = 13927 getLangOpts().C99 || getLangOpts().CPlusPlus 13928 ? Scope::ControlScope | Scope::ContinueScope | Scope::BreakScope 13929 : Scope::ContinueScope | Scope::BreakScope; 13930 const unsigned ForInitFlags = Scope::ControlScope | Scope::DeclScope; 13931 const unsigned ScopeFlags = getCurScope()->getFlags(); 13932 if ((ScopeFlags & ForIncrementFlags) == ForIncrementFlags || 13933 (ScopeFlags & ForInitFlags) == ForInitFlags) 13934 return; 13935 13936 // If there are multiple comma operators used together, get the RHS of the 13937 // of the comma operator as the LHS. 13938 while (const BinaryOperator *BO = dyn_cast<BinaryOperator>(LHS)) { 13939 if (BO->getOpcode() != BO_Comma) 13940 break; 13941 LHS = BO->getRHS(); 13942 } 13943 13944 // Only allow some expressions on LHS to not warn. 13945 if (IgnoreCommaOperand(LHS)) 13946 return; 13947 13948 Diag(Loc, diag::warn_comma_operator); 13949 Diag(LHS->getBeginLoc(), diag::note_cast_to_void) 13950 << LHS->getSourceRange() 13951 << FixItHint::CreateInsertion(LHS->getBeginLoc(), 13952 LangOpts.CPlusPlus ? "static_cast<void>(" 13953 : "(void)(") 13954 << FixItHint::CreateInsertion(PP.getLocForEndOfToken(LHS->getEndLoc()), 13955 ")"); 13956 } 13957 13958 // C99 6.5.17 13959 static QualType CheckCommaOperands(Sema &S, ExprResult &LHS, ExprResult &RHS, 13960 SourceLocation Loc) { 13961 LHS = S.CheckPlaceholderExpr(LHS.get()); 13962 RHS = S.CheckPlaceholderExpr(RHS.get()); 13963 if (LHS.isInvalid() || RHS.isInvalid()) 13964 return QualType(); 13965 13966 // C's comma performs lvalue conversion (C99 6.3.2.1) on both its 13967 // operands, but not unary promotions. 13968 // C++'s comma does not do any conversions at all (C++ [expr.comma]p1). 13969 13970 // So we treat the LHS as a ignored value, and in C++ we allow the 13971 // containing site to determine what should be done with the RHS. 13972 LHS = S.IgnoredValueConversions(LHS.get()); 13973 if (LHS.isInvalid()) 13974 return QualType(); 13975 13976 S.DiagnoseUnusedExprResult(LHS.get(), diag::warn_unused_comma_left_operand); 13977 13978 if (!S.getLangOpts().CPlusPlus) { 13979 RHS = S.DefaultFunctionArrayLvalueConversion(RHS.get()); 13980 if (RHS.isInvalid()) 13981 return QualType(); 13982 if (!RHS.get()->getType()->isVoidType()) 13983 S.RequireCompleteType(Loc, RHS.get()->getType(), 13984 diag::err_incomplete_type); 13985 } 13986 13987 if (!S.getDiagnostics().isIgnored(diag::warn_comma_operator, Loc)) 13988 S.DiagnoseCommaOperator(LHS.get(), Loc); 13989 13990 return RHS.get()->getType(); 13991 } 13992 13993 /// CheckIncrementDecrementOperand - unlike most "Check" methods, this routine 13994 /// doesn't need to call UsualUnaryConversions or UsualArithmeticConversions. 13995 static QualType CheckIncrementDecrementOperand(Sema &S, Expr *Op, 13996 ExprValueKind &VK, 13997 ExprObjectKind &OK, 13998 SourceLocation OpLoc, 13999 bool IsInc, bool IsPrefix) { 14000 if (Op->isTypeDependent()) 14001 return S.Context.DependentTy; 14002 14003 QualType ResType = Op->getType(); 14004 // Atomic types can be used for increment / decrement where the non-atomic 14005 // versions can, so ignore the _Atomic() specifier for the purpose of 14006 // checking. 14007 if (const AtomicType *ResAtomicType = ResType->getAs<AtomicType>()) 14008 ResType = ResAtomicType->getValueType(); 14009 14010 assert(!ResType.isNull() && "no type for increment/decrement expression"); 14011 14012 if (S.getLangOpts().CPlusPlus && ResType->isBooleanType()) { 14013 // Decrement of bool is not allowed. 14014 if (!IsInc) { 14015 S.Diag(OpLoc, diag::err_decrement_bool) << Op->getSourceRange(); 14016 return QualType(); 14017 } 14018 // Increment of bool sets it to true, but is deprecated. 14019 S.Diag(OpLoc, S.getLangOpts().CPlusPlus17 ? diag::ext_increment_bool 14020 : diag::warn_increment_bool) 14021 << Op->getSourceRange(); 14022 } else if (S.getLangOpts().CPlusPlus && ResType->isEnumeralType()) { 14023 // Error on enum increments and decrements in C++ mode 14024 S.Diag(OpLoc, diag::err_increment_decrement_enum) << IsInc << ResType; 14025 return QualType(); 14026 } else if (ResType->isRealType()) { 14027 // OK! 14028 } else if (ResType->isPointerType()) { 14029 // C99 6.5.2.4p2, 6.5.6p2 14030 if (!checkArithmeticOpPointerOperand(S, OpLoc, Op)) 14031 return QualType(); 14032 } else if (ResType->isObjCObjectPointerType()) { 14033 // On modern runtimes, ObjC pointer arithmetic is forbidden. 14034 // Otherwise, we just need a complete type. 14035 if (checkArithmeticIncompletePointerType(S, OpLoc, Op) || 14036 checkArithmeticOnObjCPointer(S, OpLoc, Op)) 14037 return QualType(); 14038 } else if (ResType->isAnyComplexType()) { 14039 // C99 does not support ++/-- on complex types, we allow as an extension. 14040 S.Diag(OpLoc, diag::ext_integer_increment_complex) 14041 << ResType << Op->getSourceRange(); 14042 } else if (ResType->isPlaceholderType()) { 14043 ExprResult PR = S.CheckPlaceholderExpr(Op); 14044 if (PR.isInvalid()) return QualType(); 14045 return CheckIncrementDecrementOperand(S, PR.get(), VK, OK, OpLoc, 14046 IsInc, IsPrefix); 14047 } else if (S.getLangOpts().AltiVec && ResType->isVectorType()) { 14048 // OK! ( C/C++ Language Extensions for CBEA(Version 2.6) 10.3 ) 14049 } else if (S.getLangOpts().ZVector && ResType->isVectorType() && 14050 (ResType->castAs<VectorType>()->getVectorKind() != 14051 VectorType::AltiVecBool)) { 14052 // The z vector extensions allow ++ and -- for non-bool vectors. 14053 } else if(S.getLangOpts().OpenCL && ResType->isVectorType() && 14054 ResType->castAs<VectorType>()->getElementType()->isIntegerType()) { 14055 // OpenCL V1.2 6.3 says dec/inc ops operate on integer vector types. 14056 } else { 14057 S.Diag(OpLoc, diag::err_typecheck_illegal_increment_decrement) 14058 << ResType << int(IsInc) << Op->getSourceRange(); 14059 return QualType(); 14060 } 14061 // At this point, we know we have a real, complex or pointer type. 14062 // Now make sure the operand is a modifiable lvalue. 14063 if (CheckForModifiableLvalue(Op, OpLoc, S)) 14064 return QualType(); 14065 if (S.getLangOpts().CPlusPlus20 && ResType.isVolatileQualified()) { 14066 // C++2a [expr.pre.inc]p1, [expr.post.inc]p1: 14067 // An operand with volatile-qualified type is deprecated 14068 S.Diag(OpLoc, diag::warn_deprecated_increment_decrement_volatile) 14069 << IsInc << ResType; 14070 } 14071 // In C++, a prefix increment is the same type as the operand. Otherwise 14072 // (in C or with postfix), the increment is the unqualified type of the 14073 // operand. 14074 if (IsPrefix && S.getLangOpts().CPlusPlus) { 14075 VK = VK_LValue; 14076 OK = Op->getObjectKind(); 14077 return ResType; 14078 } else { 14079 VK = VK_PRValue; 14080 return ResType.getUnqualifiedType(); 14081 } 14082 } 14083 14084 14085 /// getPrimaryDecl - Helper function for CheckAddressOfOperand(). 14086 /// This routine allows us to typecheck complex/recursive expressions 14087 /// where the declaration is needed for type checking. We only need to 14088 /// handle cases when the expression references a function designator 14089 /// or is an lvalue. Here are some examples: 14090 /// - &(x) => x 14091 /// - &*****f => f for f a function designator. 14092 /// - &s.xx => s 14093 /// - &s.zz[1].yy -> s, if zz is an array 14094 /// - *(x + 1) -> x, if x is an array 14095 /// - &"123"[2] -> 0 14096 /// - & __real__ x -> x 14097 /// 14098 /// FIXME: We don't recurse to the RHS of a comma, nor handle pointers to 14099 /// members. 14100 static ValueDecl *getPrimaryDecl(Expr *E) { 14101 switch (E->getStmtClass()) { 14102 case Stmt::DeclRefExprClass: 14103 return cast<DeclRefExpr>(E)->getDecl(); 14104 case Stmt::MemberExprClass: 14105 // If this is an arrow operator, the address is an offset from 14106 // the base's value, so the object the base refers to is 14107 // irrelevant. 14108 if (cast<MemberExpr>(E)->isArrow()) 14109 return nullptr; 14110 // Otherwise, the expression refers to a part of the base 14111 return getPrimaryDecl(cast<MemberExpr>(E)->getBase()); 14112 case Stmt::ArraySubscriptExprClass: { 14113 // FIXME: This code shouldn't be necessary! We should catch the implicit 14114 // promotion of register arrays earlier. 14115 Expr* Base = cast<ArraySubscriptExpr>(E)->getBase(); 14116 if (ImplicitCastExpr* ICE = dyn_cast<ImplicitCastExpr>(Base)) { 14117 if (ICE->getSubExpr()->getType()->isArrayType()) 14118 return getPrimaryDecl(ICE->getSubExpr()); 14119 } 14120 return nullptr; 14121 } 14122 case Stmt::UnaryOperatorClass: { 14123 UnaryOperator *UO = cast<UnaryOperator>(E); 14124 14125 switch(UO->getOpcode()) { 14126 case UO_Real: 14127 case UO_Imag: 14128 case UO_Extension: 14129 return getPrimaryDecl(UO->getSubExpr()); 14130 default: 14131 return nullptr; 14132 } 14133 } 14134 case Stmt::ParenExprClass: 14135 return getPrimaryDecl(cast<ParenExpr>(E)->getSubExpr()); 14136 case Stmt::ImplicitCastExprClass: 14137 // If the result of an implicit cast is an l-value, we care about 14138 // the sub-expression; otherwise, the result here doesn't matter. 14139 return getPrimaryDecl(cast<ImplicitCastExpr>(E)->getSubExpr()); 14140 case Stmt::CXXUuidofExprClass: 14141 return cast<CXXUuidofExpr>(E)->getGuidDecl(); 14142 default: 14143 return nullptr; 14144 } 14145 } 14146 14147 namespace { 14148 enum { 14149 AO_Bit_Field = 0, 14150 AO_Vector_Element = 1, 14151 AO_Property_Expansion = 2, 14152 AO_Register_Variable = 3, 14153 AO_Matrix_Element = 4, 14154 AO_No_Error = 5 14155 }; 14156 } 14157 /// Diagnose invalid operand for address of operations. 14158 /// 14159 /// \param Type The type of operand which cannot have its address taken. 14160 static void diagnoseAddressOfInvalidType(Sema &S, SourceLocation Loc, 14161 Expr *E, unsigned Type) { 14162 S.Diag(Loc, diag::err_typecheck_address_of) << Type << E->getSourceRange(); 14163 } 14164 14165 /// CheckAddressOfOperand - The operand of & must be either a function 14166 /// designator or an lvalue designating an object. If it is an lvalue, the 14167 /// object cannot be declared with storage class register or be a bit field. 14168 /// Note: The usual conversions are *not* applied to the operand of the & 14169 /// operator (C99 6.3.2.1p[2-4]), and its result is never an lvalue. 14170 /// In C++, the operand might be an overloaded function name, in which case 14171 /// we allow the '&' but retain the overloaded-function type. 14172 QualType Sema::CheckAddressOfOperand(ExprResult &OrigOp, SourceLocation OpLoc) { 14173 if (const BuiltinType *PTy = OrigOp.get()->getType()->getAsPlaceholderType()){ 14174 if (PTy->getKind() == BuiltinType::Overload) { 14175 Expr *E = OrigOp.get()->IgnoreParens(); 14176 if (!isa<OverloadExpr>(E)) { 14177 assert(cast<UnaryOperator>(E)->getOpcode() == UO_AddrOf); 14178 Diag(OpLoc, diag::err_typecheck_invalid_lvalue_addrof_addrof_function) 14179 << OrigOp.get()->getSourceRange(); 14180 return QualType(); 14181 } 14182 14183 OverloadExpr *Ovl = cast<OverloadExpr>(E); 14184 if (isa<UnresolvedMemberExpr>(Ovl)) 14185 if (!ResolveSingleFunctionTemplateSpecialization(Ovl)) { 14186 Diag(OpLoc, diag::err_invalid_form_pointer_member_function) 14187 << OrigOp.get()->getSourceRange(); 14188 return QualType(); 14189 } 14190 14191 return Context.OverloadTy; 14192 } 14193 14194 if (PTy->getKind() == BuiltinType::UnknownAny) 14195 return Context.UnknownAnyTy; 14196 14197 if (PTy->getKind() == BuiltinType::BoundMember) { 14198 Diag(OpLoc, diag::err_invalid_form_pointer_member_function) 14199 << OrigOp.get()->getSourceRange(); 14200 return QualType(); 14201 } 14202 14203 OrigOp = CheckPlaceholderExpr(OrigOp.get()); 14204 if (OrigOp.isInvalid()) return QualType(); 14205 } 14206 14207 if (OrigOp.get()->isTypeDependent()) 14208 return Context.DependentTy; 14209 14210 assert(!OrigOp.get()->hasPlaceholderType()); 14211 14212 // Make sure to ignore parentheses in subsequent checks 14213 Expr *op = OrigOp.get()->IgnoreParens(); 14214 14215 // In OpenCL captures for blocks called as lambda functions 14216 // are located in the private address space. Blocks used in 14217 // enqueue_kernel can be located in a different address space 14218 // depending on a vendor implementation. Thus preventing 14219 // taking an address of the capture to avoid invalid AS casts. 14220 if (LangOpts.OpenCL) { 14221 auto* VarRef = dyn_cast<DeclRefExpr>(op); 14222 if (VarRef && VarRef->refersToEnclosingVariableOrCapture()) { 14223 Diag(op->getExprLoc(), diag::err_opencl_taking_address_capture); 14224 return QualType(); 14225 } 14226 } 14227 14228 if (getLangOpts().C99) { 14229 // Implement C99-only parts of addressof rules. 14230 if (UnaryOperator* uOp = dyn_cast<UnaryOperator>(op)) { 14231 if (uOp->getOpcode() == UO_Deref) 14232 // Per C99 6.5.3.2, the address of a deref always returns a valid result 14233 // (assuming the deref expression is valid). 14234 return uOp->getSubExpr()->getType(); 14235 } 14236 // Technically, there should be a check for array subscript 14237 // expressions here, but the result of one is always an lvalue anyway. 14238 } 14239 ValueDecl *dcl = getPrimaryDecl(op); 14240 14241 if (auto *FD = dyn_cast_or_null<FunctionDecl>(dcl)) 14242 if (!checkAddressOfFunctionIsAvailable(FD, /*Complain=*/true, 14243 op->getBeginLoc())) 14244 return QualType(); 14245 14246 Expr::LValueClassification lval = op->ClassifyLValue(Context); 14247 unsigned AddressOfError = AO_No_Error; 14248 14249 if (lval == Expr::LV_ClassTemporary || lval == Expr::LV_ArrayTemporary) { 14250 bool sfinae = (bool)isSFINAEContext(); 14251 Diag(OpLoc, isSFINAEContext() ? diag::err_typecheck_addrof_temporary 14252 : diag::ext_typecheck_addrof_temporary) 14253 << op->getType() << op->getSourceRange(); 14254 if (sfinae) 14255 return QualType(); 14256 // Materialize the temporary as an lvalue so that we can take its address. 14257 OrigOp = op = 14258 CreateMaterializeTemporaryExpr(op->getType(), OrigOp.get(), true); 14259 } else if (isa<ObjCSelectorExpr>(op)) { 14260 return Context.getPointerType(op->getType()); 14261 } else if (lval == Expr::LV_MemberFunction) { 14262 // If it's an instance method, make a member pointer. 14263 // The expression must have exactly the form &A::foo. 14264 14265 // If the underlying expression isn't a decl ref, give up. 14266 if (!isa<DeclRefExpr>(op)) { 14267 Diag(OpLoc, diag::err_invalid_form_pointer_member_function) 14268 << OrigOp.get()->getSourceRange(); 14269 return QualType(); 14270 } 14271 DeclRefExpr *DRE = cast<DeclRefExpr>(op); 14272 CXXMethodDecl *MD = cast<CXXMethodDecl>(DRE->getDecl()); 14273 14274 // The id-expression was parenthesized. 14275 if (OrigOp.get() != DRE) { 14276 Diag(OpLoc, diag::err_parens_pointer_member_function) 14277 << OrigOp.get()->getSourceRange(); 14278 14279 // The method was named without a qualifier. 14280 } else if (!DRE->getQualifier()) { 14281 if (MD->getParent()->getName().empty()) 14282 Diag(OpLoc, diag::err_unqualified_pointer_member_function) 14283 << op->getSourceRange(); 14284 else { 14285 SmallString<32> Str; 14286 StringRef Qual = (MD->getParent()->getName() + "::").toStringRef(Str); 14287 Diag(OpLoc, diag::err_unqualified_pointer_member_function) 14288 << op->getSourceRange() 14289 << FixItHint::CreateInsertion(op->getSourceRange().getBegin(), Qual); 14290 } 14291 } 14292 14293 // Taking the address of a dtor is illegal per C++ [class.dtor]p2. 14294 if (isa<CXXDestructorDecl>(MD)) 14295 Diag(OpLoc, diag::err_typecheck_addrof_dtor) << op->getSourceRange(); 14296 14297 QualType MPTy = Context.getMemberPointerType( 14298 op->getType(), Context.getTypeDeclType(MD->getParent()).getTypePtr()); 14299 // Under the MS ABI, lock down the inheritance model now. 14300 if (Context.getTargetInfo().getCXXABI().isMicrosoft()) 14301 (void)isCompleteType(OpLoc, MPTy); 14302 return MPTy; 14303 } else if (lval != Expr::LV_Valid && lval != Expr::LV_IncompleteVoidType) { 14304 // C99 6.5.3.2p1 14305 // The operand must be either an l-value or a function designator 14306 if (!op->getType()->isFunctionType()) { 14307 // Use a special diagnostic for loads from property references. 14308 if (isa<PseudoObjectExpr>(op)) { 14309 AddressOfError = AO_Property_Expansion; 14310 } else { 14311 Diag(OpLoc, diag::err_typecheck_invalid_lvalue_addrof) 14312 << op->getType() << op->getSourceRange(); 14313 return QualType(); 14314 } 14315 } 14316 } else if (op->getObjectKind() == OK_BitField) { // C99 6.5.3.2p1 14317 // The operand cannot be a bit-field 14318 AddressOfError = AO_Bit_Field; 14319 } else if (op->getObjectKind() == OK_VectorComponent) { 14320 // The operand cannot be an element of a vector 14321 AddressOfError = AO_Vector_Element; 14322 } else if (op->getObjectKind() == OK_MatrixComponent) { 14323 // The operand cannot be an element of a matrix. 14324 AddressOfError = AO_Matrix_Element; 14325 } else if (dcl) { // C99 6.5.3.2p1 14326 // We have an lvalue with a decl. Make sure the decl is not declared 14327 // with the register storage-class specifier. 14328 if (const VarDecl *vd = dyn_cast<VarDecl>(dcl)) { 14329 // in C++ it is not error to take address of a register 14330 // variable (c++03 7.1.1P3) 14331 if (vd->getStorageClass() == SC_Register && 14332 !getLangOpts().CPlusPlus) { 14333 AddressOfError = AO_Register_Variable; 14334 } 14335 } else if (isa<MSPropertyDecl>(dcl)) { 14336 AddressOfError = AO_Property_Expansion; 14337 } else if (isa<FunctionTemplateDecl>(dcl)) { 14338 return Context.OverloadTy; 14339 } else if (isa<FieldDecl>(dcl) || isa<IndirectFieldDecl>(dcl)) { 14340 // Okay: we can take the address of a field. 14341 // Could be a pointer to member, though, if there is an explicit 14342 // scope qualifier for the class. 14343 if (isa<DeclRefExpr>(op) && cast<DeclRefExpr>(op)->getQualifier()) { 14344 DeclContext *Ctx = dcl->getDeclContext(); 14345 if (Ctx && Ctx->isRecord()) { 14346 if (dcl->getType()->isReferenceType()) { 14347 Diag(OpLoc, 14348 diag::err_cannot_form_pointer_to_member_of_reference_type) 14349 << dcl->getDeclName() << dcl->getType(); 14350 return QualType(); 14351 } 14352 14353 while (cast<RecordDecl>(Ctx)->isAnonymousStructOrUnion()) 14354 Ctx = Ctx->getParent(); 14355 14356 QualType MPTy = Context.getMemberPointerType( 14357 op->getType(), 14358 Context.getTypeDeclType(cast<RecordDecl>(Ctx)).getTypePtr()); 14359 // Under the MS ABI, lock down the inheritance model now. 14360 if (Context.getTargetInfo().getCXXABI().isMicrosoft()) 14361 (void)isCompleteType(OpLoc, MPTy); 14362 return MPTy; 14363 } 14364 } 14365 } else if (!isa<FunctionDecl, NonTypeTemplateParmDecl, BindingDecl, 14366 MSGuidDecl, UnnamedGlobalConstantDecl>(dcl)) 14367 llvm_unreachable("Unknown/unexpected decl type"); 14368 } 14369 14370 if (AddressOfError != AO_No_Error) { 14371 diagnoseAddressOfInvalidType(*this, OpLoc, op, AddressOfError); 14372 return QualType(); 14373 } 14374 14375 if (lval == Expr::LV_IncompleteVoidType) { 14376 // Taking the address of a void variable is technically illegal, but we 14377 // allow it in cases which are otherwise valid. 14378 // Example: "extern void x; void* y = &x;". 14379 Diag(OpLoc, diag::ext_typecheck_addrof_void) << op->getSourceRange(); 14380 } 14381 14382 // If the operand has type "type", the result has type "pointer to type". 14383 if (op->getType()->isObjCObjectType()) 14384 return Context.getObjCObjectPointerType(op->getType()); 14385 14386 CheckAddressOfPackedMember(op); 14387 14388 return Context.getPointerType(op->getType()); 14389 } 14390 14391 static void RecordModifiableNonNullParam(Sema &S, const Expr *Exp) { 14392 const DeclRefExpr *DRE = dyn_cast<DeclRefExpr>(Exp); 14393 if (!DRE) 14394 return; 14395 const Decl *D = DRE->getDecl(); 14396 if (!D) 14397 return; 14398 const ParmVarDecl *Param = dyn_cast<ParmVarDecl>(D); 14399 if (!Param) 14400 return; 14401 if (const FunctionDecl* FD = dyn_cast<FunctionDecl>(Param->getDeclContext())) 14402 if (!FD->hasAttr<NonNullAttr>() && !Param->hasAttr<NonNullAttr>()) 14403 return; 14404 if (FunctionScopeInfo *FD = S.getCurFunction()) 14405 if (!FD->ModifiedNonNullParams.count(Param)) 14406 FD->ModifiedNonNullParams.insert(Param); 14407 } 14408 14409 /// CheckIndirectionOperand - Type check unary indirection (prefix '*'). 14410 static QualType CheckIndirectionOperand(Sema &S, Expr *Op, ExprValueKind &VK, 14411 SourceLocation OpLoc) { 14412 if (Op->isTypeDependent()) 14413 return S.Context.DependentTy; 14414 14415 ExprResult ConvResult = S.UsualUnaryConversions(Op); 14416 if (ConvResult.isInvalid()) 14417 return QualType(); 14418 Op = ConvResult.get(); 14419 QualType OpTy = Op->getType(); 14420 QualType Result; 14421 14422 if (isa<CXXReinterpretCastExpr>(Op)) { 14423 QualType OpOrigType = Op->IgnoreParenCasts()->getType(); 14424 S.CheckCompatibleReinterpretCast(OpOrigType, OpTy, /*IsDereference*/true, 14425 Op->getSourceRange()); 14426 } 14427 14428 if (const PointerType *PT = OpTy->getAs<PointerType>()) 14429 { 14430 Result = PT->getPointeeType(); 14431 } 14432 else if (const ObjCObjectPointerType *OPT = 14433 OpTy->getAs<ObjCObjectPointerType>()) 14434 Result = OPT->getPointeeType(); 14435 else { 14436 ExprResult PR = S.CheckPlaceholderExpr(Op); 14437 if (PR.isInvalid()) return QualType(); 14438 if (PR.get() != Op) 14439 return CheckIndirectionOperand(S, PR.get(), VK, OpLoc); 14440 } 14441 14442 if (Result.isNull()) { 14443 S.Diag(OpLoc, diag::err_typecheck_indirection_requires_pointer) 14444 << OpTy << Op->getSourceRange(); 14445 return QualType(); 14446 } 14447 14448 // Note that per both C89 and C99, indirection is always legal, even if Result 14449 // is an incomplete type or void. It would be possible to warn about 14450 // dereferencing a void pointer, but it's completely well-defined, and such a 14451 // warning is unlikely to catch any mistakes. In C++, indirection is not valid 14452 // for pointers to 'void' but is fine for any other pointer type: 14453 // 14454 // C++ [expr.unary.op]p1: 14455 // [...] the expression to which [the unary * operator] is applied shall 14456 // be a pointer to an object type, or a pointer to a function type 14457 if (S.getLangOpts().CPlusPlus && Result->isVoidType()) 14458 S.Diag(OpLoc, diag::ext_typecheck_indirection_through_void_pointer) 14459 << OpTy << Op->getSourceRange(); 14460 14461 // Dereferences are usually l-values... 14462 VK = VK_LValue; 14463 14464 // ...except that certain expressions are never l-values in C. 14465 if (!S.getLangOpts().CPlusPlus && Result.isCForbiddenLValueType()) 14466 VK = VK_PRValue; 14467 14468 return Result; 14469 } 14470 14471 BinaryOperatorKind Sema::ConvertTokenKindToBinaryOpcode(tok::TokenKind Kind) { 14472 BinaryOperatorKind Opc; 14473 switch (Kind) { 14474 default: llvm_unreachable("Unknown binop!"); 14475 case tok::periodstar: Opc = BO_PtrMemD; break; 14476 case tok::arrowstar: Opc = BO_PtrMemI; break; 14477 case tok::star: Opc = BO_Mul; break; 14478 case tok::slash: Opc = BO_Div; break; 14479 case tok::percent: Opc = BO_Rem; break; 14480 case tok::plus: Opc = BO_Add; break; 14481 case tok::minus: Opc = BO_Sub; break; 14482 case tok::lessless: Opc = BO_Shl; break; 14483 case tok::greatergreater: Opc = BO_Shr; break; 14484 case tok::lessequal: Opc = BO_LE; break; 14485 case tok::less: Opc = BO_LT; break; 14486 case tok::greaterequal: Opc = BO_GE; break; 14487 case tok::greater: Opc = BO_GT; break; 14488 case tok::exclaimequal: Opc = BO_NE; break; 14489 case tok::equalequal: Opc = BO_EQ; break; 14490 case tok::spaceship: Opc = BO_Cmp; break; 14491 case tok::amp: Opc = BO_And; break; 14492 case tok::caret: Opc = BO_Xor; break; 14493 case tok::pipe: Opc = BO_Or; break; 14494 case tok::ampamp: Opc = BO_LAnd; break; 14495 case tok::pipepipe: Opc = BO_LOr; break; 14496 case tok::equal: Opc = BO_Assign; break; 14497 case tok::starequal: Opc = BO_MulAssign; break; 14498 case tok::slashequal: Opc = BO_DivAssign; break; 14499 case tok::percentequal: Opc = BO_RemAssign; break; 14500 case tok::plusequal: Opc = BO_AddAssign; break; 14501 case tok::minusequal: Opc = BO_SubAssign; break; 14502 case tok::lesslessequal: Opc = BO_ShlAssign; break; 14503 case tok::greatergreaterequal: Opc = BO_ShrAssign; break; 14504 case tok::ampequal: Opc = BO_AndAssign; break; 14505 case tok::caretequal: Opc = BO_XorAssign; break; 14506 case tok::pipeequal: Opc = BO_OrAssign; break; 14507 case tok::comma: Opc = BO_Comma; break; 14508 } 14509 return Opc; 14510 } 14511 14512 static inline UnaryOperatorKind ConvertTokenKindToUnaryOpcode( 14513 tok::TokenKind Kind) { 14514 UnaryOperatorKind Opc; 14515 switch (Kind) { 14516 default: llvm_unreachable("Unknown unary op!"); 14517 case tok::plusplus: Opc = UO_PreInc; break; 14518 case tok::minusminus: Opc = UO_PreDec; break; 14519 case tok::amp: Opc = UO_AddrOf; break; 14520 case tok::star: Opc = UO_Deref; break; 14521 case tok::plus: Opc = UO_Plus; break; 14522 case tok::minus: Opc = UO_Minus; break; 14523 case tok::tilde: Opc = UO_Not; break; 14524 case tok::exclaim: Opc = UO_LNot; break; 14525 case tok::kw___real: Opc = UO_Real; break; 14526 case tok::kw___imag: Opc = UO_Imag; break; 14527 case tok::kw___extension__: Opc = UO_Extension; break; 14528 } 14529 return Opc; 14530 } 14531 14532 /// DiagnoseSelfAssignment - Emits a warning if a value is assigned to itself. 14533 /// This warning suppressed in the event of macro expansions. 14534 static void DiagnoseSelfAssignment(Sema &S, Expr *LHSExpr, Expr *RHSExpr, 14535 SourceLocation OpLoc, bool IsBuiltin) { 14536 if (S.inTemplateInstantiation()) 14537 return; 14538 if (S.isUnevaluatedContext()) 14539 return; 14540 if (OpLoc.isInvalid() || OpLoc.isMacroID()) 14541 return; 14542 LHSExpr = LHSExpr->IgnoreParenImpCasts(); 14543 RHSExpr = RHSExpr->IgnoreParenImpCasts(); 14544 const DeclRefExpr *LHSDeclRef = dyn_cast<DeclRefExpr>(LHSExpr); 14545 const DeclRefExpr *RHSDeclRef = dyn_cast<DeclRefExpr>(RHSExpr); 14546 if (!LHSDeclRef || !RHSDeclRef || 14547 LHSDeclRef->getLocation().isMacroID() || 14548 RHSDeclRef->getLocation().isMacroID()) 14549 return; 14550 const ValueDecl *LHSDecl = 14551 cast<ValueDecl>(LHSDeclRef->getDecl()->getCanonicalDecl()); 14552 const ValueDecl *RHSDecl = 14553 cast<ValueDecl>(RHSDeclRef->getDecl()->getCanonicalDecl()); 14554 if (LHSDecl != RHSDecl) 14555 return; 14556 if (LHSDecl->getType().isVolatileQualified()) 14557 return; 14558 if (const ReferenceType *RefTy = LHSDecl->getType()->getAs<ReferenceType>()) 14559 if (RefTy->getPointeeType().isVolatileQualified()) 14560 return; 14561 14562 S.Diag(OpLoc, IsBuiltin ? diag::warn_self_assignment_builtin 14563 : diag::warn_self_assignment_overloaded) 14564 << LHSDeclRef->getType() << LHSExpr->getSourceRange() 14565 << RHSExpr->getSourceRange(); 14566 } 14567 14568 /// Check if a bitwise-& is performed on an Objective-C pointer. This 14569 /// is usually indicative of introspection within the Objective-C pointer. 14570 static void checkObjCPointerIntrospection(Sema &S, ExprResult &L, ExprResult &R, 14571 SourceLocation OpLoc) { 14572 if (!S.getLangOpts().ObjC) 14573 return; 14574 14575 const Expr *ObjCPointerExpr = nullptr, *OtherExpr = nullptr; 14576 const Expr *LHS = L.get(); 14577 const Expr *RHS = R.get(); 14578 14579 if (LHS->IgnoreParenCasts()->getType()->isObjCObjectPointerType()) { 14580 ObjCPointerExpr = LHS; 14581 OtherExpr = RHS; 14582 } 14583 else if (RHS->IgnoreParenCasts()->getType()->isObjCObjectPointerType()) { 14584 ObjCPointerExpr = RHS; 14585 OtherExpr = LHS; 14586 } 14587 14588 // This warning is deliberately made very specific to reduce false 14589 // positives with logic that uses '&' for hashing. This logic mainly 14590 // looks for code trying to introspect into tagged pointers, which 14591 // code should generally never do. 14592 if (ObjCPointerExpr && isa<IntegerLiteral>(OtherExpr->IgnoreParenCasts())) { 14593 unsigned Diag = diag::warn_objc_pointer_masking; 14594 // Determine if we are introspecting the result of performSelectorXXX. 14595 const Expr *Ex = ObjCPointerExpr->IgnoreParenCasts(); 14596 // Special case messages to -performSelector and friends, which 14597 // can return non-pointer values boxed in a pointer value. 14598 // Some clients may wish to silence warnings in this subcase. 14599 if (const ObjCMessageExpr *ME = dyn_cast<ObjCMessageExpr>(Ex)) { 14600 Selector S = ME->getSelector(); 14601 StringRef SelArg0 = S.getNameForSlot(0); 14602 if (SelArg0.startswith("performSelector")) 14603 Diag = diag::warn_objc_pointer_masking_performSelector; 14604 } 14605 14606 S.Diag(OpLoc, Diag) 14607 << ObjCPointerExpr->getSourceRange(); 14608 } 14609 } 14610 14611 static NamedDecl *getDeclFromExpr(Expr *E) { 14612 if (!E) 14613 return nullptr; 14614 if (auto *DRE = dyn_cast<DeclRefExpr>(E)) 14615 return DRE->getDecl(); 14616 if (auto *ME = dyn_cast<MemberExpr>(E)) 14617 return ME->getMemberDecl(); 14618 if (auto *IRE = dyn_cast<ObjCIvarRefExpr>(E)) 14619 return IRE->getDecl(); 14620 return nullptr; 14621 } 14622 14623 // This helper function promotes a binary operator's operands (which are of a 14624 // half vector type) to a vector of floats and then truncates the result to 14625 // a vector of either half or short. 14626 static ExprResult convertHalfVecBinOp(Sema &S, ExprResult LHS, ExprResult RHS, 14627 BinaryOperatorKind Opc, QualType ResultTy, 14628 ExprValueKind VK, ExprObjectKind OK, 14629 bool IsCompAssign, SourceLocation OpLoc, 14630 FPOptionsOverride FPFeatures) { 14631 auto &Context = S.getASTContext(); 14632 assert((isVector(ResultTy, Context.HalfTy) || 14633 isVector(ResultTy, Context.ShortTy)) && 14634 "Result must be a vector of half or short"); 14635 assert(isVector(LHS.get()->getType(), Context.HalfTy) && 14636 isVector(RHS.get()->getType(), Context.HalfTy) && 14637 "both operands expected to be a half vector"); 14638 14639 RHS = convertVector(RHS.get(), Context.FloatTy, S); 14640 QualType BinOpResTy = RHS.get()->getType(); 14641 14642 // If Opc is a comparison, ResultType is a vector of shorts. In that case, 14643 // change BinOpResTy to a vector of ints. 14644 if (isVector(ResultTy, Context.ShortTy)) 14645 BinOpResTy = S.GetSignedVectorType(BinOpResTy); 14646 14647 if (IsCompAssign) 14648 return CompoundAssignOperator::Create(Context, LHS.get(), RHS.get(), Opc, 14649 ResultTy, VK, OK, OpLoc, FPFeatures, 14650 BinOpResTy, BinOpResTy); 14651 14652 LHS = convertVector(LHS.get(), Context.FloatTy, S); 14653 auto *BO = BinaryOperator::Create(Context, LHS.get(), RHS.get(), Opc, 14654 BinOpResTy, VK, OK, OpLoc, FPFeatures); 14655 return convertVector(BO, ResultTy->castAs<VectorType>()->getElementType(), S); 14656 } 14657 14658 static std::pair<ExprResult, ExprResult> 14659 CorrectDelayedTyposInBinOp(Sema &S, BinaryOperatorKind Opc, Expr *LHSExpr, 14660 Expr *RHSExpr) { 14661 ExprResult LHS = LHSExpr, RHS = RHSExpr; 14662 if (!S.Context.isDependenceAllowed()) { 14663 // C cannot handle TypoExpr nodes on either side of a binop because it 14664 // doesn't handle dependent types properly, so make sure any TypoExprs have 14665 // been dealt with before checking the operands. 14666 LHS = S.CorrectDelayedTyposInExpr(LHS); 14667 RHS = S.CorrectDelayedTyposInExpr( 14668 RHS, /*InitDecl=*/nullptr, /*RecoverUncorrectedTypos=*/false, 14669 [Opc, LHS](Expr *E) { 14670 if (Opc != BO_Assign) 14671 return ExprResult(E); 14672 // Avoid correcting the RHS to the same Expr as the LHS. 14673 Decl *D = getDeclFromExpr(E); 14674 return (D && D == getDeclFromExpr(LHS.get())) ? ExprError() : E; 14675 }); 14676 } 14677 return std::make_pair(LHS, RHS); 14678 } 14679 14680 /// Returns true if conversion between vectors of halfs and vectors of floats 14681 /// is needed. 14682 static bool needsConversionOfHalfVec(bool OpRequiresConversion, ASTContext &Ctx, 14683 Expr *E0, Expr *E1 = nullptr) { 14684 if (!OpRequiresConversion || Ctx.getLangOpts().NativeHalfType || 14685 Ctx.getTargetInfo().useFP16ConversionIntrinsics()) 14686 return false; 14687 14688 auto HasVectorOfHalfType = [&Ctx](Expr *E) { 14689 QualType Ty = E->IgnoreImplicit()->getType(); 14690 14691 // Don't promote half precision neon vectors like float16x4_t in arm_neon.h 14692 // to vectors of floats. Although the element type of the vectors is __fp16, 14693 // the vectors shouldn't be treated as storage-only types. See the 14694 // discussion here: https://reviews.llvm.org/rG825235c140e7 14695 if (const VectorType *VT = Ty->getAs<VectorType>()) { 14696 if (VT->getVectorKind() == VectorType::NeonVector) 14697 return false; 14698 return VT->getElementType().getCanonicalType() == Ctx.HalfTy; 14699 } 14700 return false; 14701 }; 14702 14703 return HasVectorOfHalfType(E0) && (!E1 || HasVectorOfHalfType(E1)); 14704 } 14705 14706 /// CreateBuiltinBinOp - Creates a new built-in binary operation with 14707 /// operator @p Opc at location @c TokLoc. This routine only supports 14708 /// built-in operations; ActOnBinOp handles overloaded operators. 14709 ExprResult Sema::CreateBuiltinBinOp(SourceLocation OpLoc, 14710 BinaryOperatorKind Opc, 14711 Expr *LHSExpr, Expr *RHSExpr) { 14712 if (getLangOpts().CPlusPlus11 && isa<InitListExpr>(RHSExpr)) { 14713 // The syntax only allows initializer lists on the RHS of assignment, 14714 // so we don't need to worry about accepting invalid code for 14715 // non-assignment operators. 14716 // C++11 5.17p9: 14717 // The meaning of x = {v} [...] is that of x = T(v) [...]. The meaning 14718 // of x = {} is x = T(). 14719 InitializationKind Kind = InitializationKind::CreateDirectList( 14720 RHSExpr->getBeginLoc(), RHSExpr->getBeginLoc(), RHSExpr->getEndLoc()); 14721 InitializedEntity Entity = 14722 InitializedEntity::InitializeTemporary(LHSExpr->getType()); 14723 InitializationSequence InitSeq(*this, Entity, Kind, RHSExpr); 14724 ExprResult Init = InitSeq.Perform(*this, Entity, Kind, RHSExpr); 14725 if (Init.isInvalid()) 14726 return Init; 14727 RHSExpr = Init.get(); 14728 } 14729 14730 ExprResult LHS = LHSExpr, RHS = RHSExpr; 14731 QualType ResultTy; // Result type of the binary operator. 14732 // The following two variables are used for compound assignment operators 14733 QualType CompLHSTy; // Type of LHS after promotions for computation 14734 QualType CompResultTy; // Type of computation result 14735 ExprValueKind VK = VK_PRValue; 14736 ExprObjectKind OK = OK_Ordinary; 14737 bool ConvertHalfVec = false; 14738 14739 std::tie(LHS, RHS) = CorrectDelayedTyposInBinOp(*this, Opc, LHSExpr, RHSExpr); 14740 if (!LHS.isUsable() || !RHS.isUsable()) 14741 return ExprError(); 14742 14743 if (getLangOpts().OpenCL) { 14744 QualType LHSTy = LHSExpr->getType(); 14745 QualType RHSTy = RHSExpr->getType(); 14746 // OpenCLC v2.0 s6.13.11.1 allows atomic variables to be initialized by 14747 // the ATOMIC_VAR_INIT macro. 14748 if (LHSTy->isAtomicType() || RHSTy->isAtomicType()) { 14749 SourceRange SR(LHSExpr->getBeginLoc(), RHSExpr->getEndLoc()); 14750 if (BO_Assign == Opc) 14751 Diag(OpLoc, diag::err_opencl_atomic_init) << 0 << SR; 14752 else 14753 ResultTy = InvalidOperands(OpLoc, LHS, RHS); 14754 return ExprError(); 14755 } 14756 14757 // OpenCL special types - image, sampler, pipe, and blocks are to be used 14758 // only with a builtin functions and therefore should be disallowed here. 14759 if (LHSTy->isImageType() || RHSTy->isImageType() || 14760 LHSTy->isSamplerT() || RHSTy->isSamplerT() || 14761 LHSTy->isPipeType() || RHSTy->isPipeType() || 14762 LHSTy->isBlockPointerType() || RHSTy->isBlockPointerType()) { 14763 ResultTy = InvalidOperands(OpLoc, LHS, RHS); 14764 return ExprError(); 14765 } 14766 } 14767 14768 checkTypeSupport(LHSExpr->getType(), OpLoc, /*ValueDecl*/ nullptr); 14769 checkTypeSupport(RHSExpr->getType(), OpLoc, /*ValueDecl*/ nullptr); 14770 14771 switch (Opc) { 14772 case BO_Assign: 14773 ResultTy = CheckAssignmentOperands(LHS.get(), RHS, OpLoc, QualType()); 14774 if (getLangOpts().CPlusPlus && 14775 LHS.get()->getObjectKind() != OK_ObjCProperty) { 14776 VK = LHS.get()->getValueKind(); 14777 OK = LHS.get()->getObjectKind(); 14778 } 14779 if (!ResultTy.isNull()) { 14780 DiagnoseSelfAssignment(*this, LHS.get(), RHS.get(), OpLoc, true); 14781 DiagnoseSelfMove(LHS.get(), RHS.get(), OpLoc); 14782 14783 // Avoid copying a block to the heap if the block is assigned to a local 14784 // auto variable that is declared in the same scope as the block. This 14785 // optimization is unsafe if the local variable is declared in an outer 14786 // scope. For example: 14787 // 14788 // BlockTy b; 14789 // { 14790 // b = ^{...}; 14791 // } 14792 // // It is unsafe to invoke the block here if it wasn't copied to the 14793 // // heap. 14794 // b(); 14795 14796 if (auto *BE = dyn_cast<BlockExpr>(RHS.get()->IgnoreParens())) 14797 if (auto *DRE = dyn_cast<DeclRefExpr>(LHS.get()->IgnoreParens())) 14798 if (auto *VD = dyn_cast<VarDecl>(DRE->getDecl())) 14799 if (VD->hasLocalStorage() && getCurScope()->isDeclScope(VD)) 14800 BE->getBlockDecl()->setCanAvoidCopyToHeap(); 14801 14802 if (LHS.get()->getType().hasNonTrivialToPrimitiveCopyCUnion()) 14803 checkNonTrivialCUnion(LHS.get()->getType(), LHS.get()->getExprLoc(), 14804 NTCUC_Assignment, NTCUK_Copy); 14805 } 14806 RecordModifiableNonNullParam(*this, LHS.get()); 14807 break; 14808 case BO_PtrMemD: 14809 case BO_PtrMemI: 14810 ResultTy = CheckPointerToMemberOperands(LHS, RHS, VK, OpLoc, 14811 Opc == BO_PtrMemI); 14812 break; 14813 case BO_Mul: 14814 case BO_Div: 14815 ConvertHalfVec = true; 14816 ResultTy = CheckMultiplyDivideOperands(LHS, RHS, OpLoc, false, 14817 Opc == BO_Div); 14818 break; 14819 case BO_Rem: 14820 ResultTy = CheckRemainderOperands(LHS, RHS, OpLoc); 14821 break; 14822 case BO_Add: 14823 ConvertHalfVec = true; 14824 ResultTy = CheckAdditionOperands(LHS, RHS, OpLoc, Opc); 14825 break; 14826 case BO_Sub: 14827 ConvertHalfVec = true; 14828 ResultTy = CheckSubtractionOperands(LHS, RHS, OpLoc); 14829 break; 14830 case BO_Shl: 14831 case BO_Shr: 14832 ResultTy = CheckShiftOperands(LHS, RHS, OpLoc, Opc); 14833 break; 14834 case BO_LE: 14835 case BO_LT: 14836 case BO_GE: 14837 case BO_GT: 14838 ConvertHalfVec = true; 14839 ResultTy = CheckCompareOperands(LHS, RHS, OpLoc, Opc); 14840 break; 14841 case BO_EQ: 14842 case BO_NE: 14843 ConvertHalfVec = true; 14844 ResultTy = CheckCompareOperands(LHS, RHS, OpLoc, Opc); 14845 break; 14846 case BO_Cmp: 14847 ConvertHalfVec = true; 14848 ResultTy = CheckCompareOperands(LHS, RHS, OpLoc, Opc); 14849 assert(ResultTy.isNull() || ResultTy->getAsCXXRecordDecl()); 14850 break; 14851 case BO_And: 14852 checkObjCPointerIntrospection(*this, LHS, RHS, OpLoc); 14853 LLVM_FALLTHROUGH; 14854 case BO_Xor: 14855 case BO_Or: 14856 ResultTy = CheckBitwiseOperands(LHS, RHS, OpLoc, Opc); 14857 break; 14858 case BO_LAnd: 14859 case BO_LOr: 14860 ConvertHalfVec = true; 14861 ResultTy = CheckLogicalOperands(LHS, RHS, OpLoc, Opc); 14862 break; 14863 case BO_MulAssign: 14864 case BO_DivAssign: 14865 ConvertHalfVec = true; 14866 CompResultTy = CheckMultiplyDivideOperands(LHS, RHS, OpLoc, true, 14867 Opc == BO_DivAssign); 14868 CompLHSTy = CompResultTy; 14869 if (!CompResultTy.isNull() && !LHS.isInvalid() && !RHS.isInvalid()) 14870 ResultTy = CheckAssignmentOperands(LHS.get(), RHS, OpLoc, CompResultTy); 14871 break; 14872 case BO_RemAssign: 14873 CompResultTy = CheckRemainderOperands(LHS, RHS, OpLoc, true); 14874 CompLHSTy = CompResultTy; 14875 if (!CompResultTy.isNull() && !LHS.isInvalid() && !RHS.isInvalid()) 14876 ResultTy = CheckAssignmentOperands(LHS.get(), RHS, OpLoc, CompResultTy); 14877 break; 14878 case BO_AddAssign: 14879 ConvertHalfVec = true; 14880 CompResultTy = CheckAdditionOperands(LHS, RHS, OpLoc, Opc, &CompLHSTy); 14881 if (!CompResultTy.isNull() && !LHS.isInvalid() && !RHS.isInvalid()) 14882 ResultTy = CheckAssignmentOperands(LHS.get(), RHS, OpLoc, CompResultTy); 14883 break; 14884 case BO_SubAssign: 14885 ConvertHalfVec = true; 14886 CompResultTy = CheckSubtractionOperands(LHS, RHS, OpLoc, &CompLHSTy); 14887 if (!CompResultTy.isNull() && !LHS.isInvalid() && !RHS.isInvalid()) 14888 ResultTy = CheckAssignmentOperands(LHS.get(), RHS, OpLoc, CompResultTy); 14889 break; 14890 case BO_ShlAssign: 14891 case BO_ShrAssign: 14892 CompResultTy = CheckShiftOperands(LHS, RHS, OpLoc, Opc, true); 14893 CompLHSTy = CompResultTy; 14894 if (!CompResultTy.isNull() && !LHS.isInvalid() && !RHS.isInvalid()) 14895 ResultTy = CheckAssignmentOperands(LHS.get(), RHS, OpLoc, CompResultTy); 14896 break; 14897 case BO_AndAssign: 14898 case BO_OrAssign: // fallthrough 14899 DiagnoseSelfAssignment(*this, LHS.get(), RHS.get(), OpLoc, true); 14900 LLVM_FALLTHROUGH; 14901 case BO_XorAssign: 14902 CompResultTy = CheckBitwiseOperands(LHS, RHS, OpLoc, Opc); 14903 CompLHSTy = CompResultTy; 14904 if (!CompResultTy.isNull() && !LHS.isInvalid() && !RHS.isInvalid()) 14905 ResultTy = CheckAssignmentOperands(LHS.get(), RHS, OpLoc, CompResultTy); 14906 break; 14907 case BO_Comma: 14908 ResultTy = CheckCommaOperands(*this, LHS, RHS, OpLoc); 14909 if (getLangOpts().CPlusPlus && !RHS.isInvalid()) { 14910 VK = RHS.get()->getValueKind(); 14911 OK = RHS.get()->getObjectKind(); 14912 } 14913 break; 14914 } 14915 if (ResultTy.isNull() || LHS.isInvalid() || RHS.isInvalid()) 14916 return ExprError(); 14917 14918 // Some of the binary operations require promoting operands of half vector to 14919 // float vectors and truncating the result back to half vector. For now, we do 14920 // this only when HalfArgsAndReturn is set (that is, when the target is arm or 14921 // arm64). 14922 assert( 14923 (Opc == BO_Comma || isVector(RHS.get()->getType(), Context.HalfTy) == 14924 isVector(LHS.get()->getType(), Context.HalfTy)) && 14925 "both sides are half vectors or neither sides are"); 14926 ConvertHalfVec = 14927 needsConversionOfHalfVec(ConvertHalfVec, Context, LHS.get(), RHS.get()); 14928 14929 // Check for array bounds violations for both sides of the BinaryOperator 14930 CheckArrayAccess(LHS.get()); 14931 CheckArrayAccess(RHS.get()); 14932 14933 if (const ObjCIsaExpr *OISA = dyn_cast<ObjCIsaExpr>(LHS.get()->IgnoreParenCasts())) { 14934 NamedDecl *ObjectSetClass = LookupSingleName(TUScope, 14935 &Context.Idents.get("object_setClass"), 14936 SourceLocation(), LookupOrdinaryName); 14937 if (ObjectSetClass && isa<ObjCIsaExpr>(LHS.get())) { 14938 SourceLocation RHSLocEnd = getLocForEndOfToken(RHS.get()->getEndLoc()); 14939 Diag(LHS.get()->getExprLoc(), diag::warn_objc_isa_assign) 14940 << FixItHint::CreateInsertion(LHS.get()->getBeginLoc(), 14941 "object_setClass(") 14942 << FixItHint::CreateReplacement(SourceRange(OISA->getOpLoc(), OpLoc), 14943 ",") 14944 << FixItHint::CreateInsertion(RHSLocEnd, ")"); 14945 } 14946 else 14947 Diag(LHS.get()->getExprLoc(), diag::warn_objc_isa_assign); 14948 } 14949 else if (const ObjCIvarRefExpr *OIRE = 14950 dyn_cast<ObjCIvarRefExpr>(LHS.get()->IgnoreParenCasts())) 14951 DiagnoseDirectIsaAccess(*this, OIRE, OpLoc, RHS.get()); 14952 14953 // Opc is not a compound assignment if CompResultTy is null. 14954 if (CompResultTy.isNull()) { 14955 if (ConvertHalfVec) 14956 return convertHalfVecBinOp(*this, LHS, RHS, Opc, ResultTy, VK, OK, false, 14957 OpLoc, CurFPFeatureOverrides()); 14958 return BinaryOperator::Create(Context, LHS.get(), RHS.get(), Opc, ResultTy, 14959 VK, OK, OpLoc, CurFPFeatureOverrides()); 14960 } 14961 14962 // Handle compound assignments. 14963 if (getLangOpts().CPlusPlus && LHS.get()->getObjectKind() != 14964 OK_ObjCProperty) { 14965 VK = VK_LValue; 14966 OK = LHS.get()->getObjectKind(); 14967 } 14968 14969 // The LHS is not converted to the result type for fixed-point compound 14970 // assignment as the common type is computed on demand. Reset the CompLHSTy 14971 // to the LHS type we would have gotten after unary conversions. 14972 if (CompResultTy->isFixedPointType()) 14973 CompLHSTy = UsualUnaryConversions(LHS.get()).get()->getType(); 14974 14975 if (ConvertHalfVec) 14976 return convertHalfVecBinOp(*this, LHS, RHS, Opc, ResultTy, VK, OK, true, 14977 OpLoc, CurFPFeatureOverrides()); 14978 14979 return CompoundAssignOperator::Create( 14980 Context, LHS.get(), RHS.get(), Opc, ResultTy, VK, OK, OpLoc, 14981 CurFPFeatureOverrides(), CompLHSTy, CompResultTy); 14982 } 14983 14984 /// DiagnoseBitwisePrecedence - Emit a warning when bitwise and comparison 14985 /// operators are mixed in a way that suggests that the programmer forgot that 14986 /// comparison operators have higher precedence. The most typical example of 14987 /// such code is "flags & 0x0020 != 0", which is equivalent to "flags & 1". 14988 static void DiagnoseBitwisePrecedence(Sema &Self, BinaryOperatorKind Opc, 14989 SourceLocation OpLoc, Expr *LHSExpr, 14990 Expr *RHSExpr) { 14991 BinaryOperator *LHSBO = dyn_cast<BinaryOperator>(LHSExpr); 14992 BinaryOperator *RHSBO = dyn_cast<BinaryOperator>(RHSExpr); 14993 14994 // Check that one of the sides is a comparison operator and the other isn't. 14995 bool isLeftComp = LHSBO && LHSBO->isComparisonOp(); 14996 bool isRightComp = RHSBO && RHSBO->isComparisonOp(); 14997 if (isLeftComp == isRightComp) 14998 return; 14999 15000 // Bitwise operations are sometimes used as eager logical ops. 15001 // Don't diagnose this. 15002 bool isLeftBitwise = LHSBO && LHSBO->isBitwiseOp(); 15003 bool isRightBitwise = RHSBO && RHSBO->isBitwiseOp(); 15004 if (isLeftBitwise || isRightBitwise) 15005 return; 15006 15007 SourceRange DiagRange = isLeftComp 15008 ? SourceRange(LHSExpr->getBeginLoc(), OpLoc) 15009 : SourceRange(OpLoc, RHSExpr->getEndLoc()); 15010 StringRef OpStr = isLeftComp ? LHSBO->getOpcodeStr() : RHSBO->getOpcodeStr(); 15011 SourceRange ParensRange = 15012 isLeftComp 15013 ? SourceRange(LHSBO->getRHS()->getBeginLoc(), RHSExpr->getEndLoc()) 15014 : SourceRange(LHSExpr->getBeginLoc(), RHSBO->getLHS()->getEndLoc()); 15015 15016 Self.Diag(OpLoc, diag::warn_precedence_bitwise_rel) 15017 << DiagRange << BinaryOperator::getOpcodeStr(Opc) << OpStr; 15018 SuggestParentheses(Self, OpLoc, 15019 Self.PDiag(diag::note_precedence_silence) << OpStr, 15020 (isLeftComp ? LHSExpr : RHSExpr)->getSourceRange()); 15021 SuggestParentheses(Self, OpLoc, 15022 Self.PDiag(diag::note_precedence_bitwise_first) 15023 << BinaryOperator::getOpcodeStr(Opc), 15024 ParensRange); 15025 } 15026 15027 /// It accepts a '&&' expr that is inside a '||' one. 15028 /// Emit a diagnostic together with a fixit hint that wraps the '&&' expression 15029 /// in parentheses. 15030 static void 15031 EmitDiagnosticForLogicalAndInLogicalOr(Sema &Self, SourceLocation OpLoc, 15032 BinaryOperator *Bop) { 15033 assert(Bop->getOpcode() == BO_LAnd); 15034 Self.Diag(Bop->getOperatorLoc(), diag::warn_logical_and_in_logical_or) 15035 << Bop->getSourceRange() << OpLoc; 15036 SuggestParentheses(Self, Bop->getOperatorLoc(), 15037 Self.PDiag(diag::note_precedence_silence) 15038 << Bop->getOpcodeStr(), 15039 Bop->getSourceRange()); 15040 } 15041 15042 /// Returns true if the given expression can be evaluated as a constant 15043 /// 'true'. 15044 static bool EvaluatesAsTrue(Sema &S, Expr *E) { 15045 bool Res; 15046 return !E->isValueDependent() && 15047 E->EvaluateAsBooleanCondition(Res, S.getASTContext()) && Res; 15048 } 15049 15050 /// Returns true if the given expression can be evaluated as a constant 15051 /// 'false'. 15052 static bool EvaluatesAsFalse(Sema &S, Expr *E) { 15053 bool Res; 15054 return !E->isValueDependent() && 15055 E->EvaluateAsBooleanCondition(Res, S.getASTContext()) && !Res; 15056 } 15057 15058 /// Look for '&&' in the left hand of a '||' expr. 15059 static void DiagnoseLogicalAndInLogicalOrLHS(Sema &S, SourceLocation OpLoc, 15060 Expr *LHSExpr, Expr *RHSExpr) { 15061 if (BinaryOperator *Bop = dyn_cast<BinaryOperator>(LHSExpr)) { 15062 if (Bop->getOpcode() == BO_LAnd) { 15063 // If it's "a && b || 0" don't warn since the precedence doesn't matter. 15064 if (EvaluatesAsFalse(S, RHSExpr)) 15065 return; 15066 // If it's "1 && a || b" don't warn since the precedence doesn't matter. 15067 if (!EvaluatesAsTrue(S, Bop->getLHS())) 15068 return EmitDiagnosticForLogicalAndInLogicalOr(S, OpLoc, Bop); 15069 } else if (Bop->getOpcode() == BO_LOr) { 15070 if (BinaryOperator *RBop = dyn_cast<BinaryOperator>(Bop->getRHS())) { 15071 // If it's "a || b && 1 || c" we didn't warn earlier for 15072 // "a || b && 1", but warn now. 15073 if (RBop->getOpcode() == BO_LAnd && EvaluatesAsTrue(S, RBop->getRHS())) 15074 return EmitDiagnosticForLogicalAndInLogicalOr(S, OpLoc, RBop); 15075 } 15076 } 15077 } 15078 } 15079 15080 /// Look for '&&' in the right hand of a '||' expr. 15081 static void DiagnoseLogicalAndInLogicalOrRHS(Sema &S, SourceLocation OpLoc, 15082 Expr *LHSExpr, Expr *RHSExpr) { 15083 if (BinaryOperator *Bop = dyn_cast<BinaryOperator>(RHSExpr)) { 15084 if (Bop->getOpcode() == BO_LAnd) { 15085 // If it's "0 || a && b" don't warn since the precedence doesn't matter. 15086 if (EvaluatesAsFalse(S, LHSExpr)) 15087 return; 15088 // If it's "a || b && 1" don't warn since the precedence doesn't matter. 15089 if (!EvaluatesAsTrue(S, Bop->getRHS())) 15090 return EmitDiagnosticForLogicalAndInLogicalOr(S, OpLoc, Bop); 15091 } 15092 } 15093 } 15094 15095 /// Look for bitwise op in the left or right hand of a bitwise op with 15096 /// lower precedence and emit a diagnostic together with a fixit hint that wraps 15097 /// the '&' expression in parentheses. 15098 static void DiagnoseBitwiseOpInBitwiseOp(Sema &S, BinaryOperatorKind Opc, 15099 SourceLocation OpLoc, Expr *SubExpr) { 15100 if (BinaryOperator *Bop = dyn_cast<BinaryOperator>(SubExpr)) { 15101 if (Bop->isBitwiseOp() && Bop->getOpcode() < Opc) { 15102 S.Diag(Bop->getOperatorLoc(), diag::warn_bitwise_op_in_bitwise_op) 15103 << Bop->getOpcodeStr() << BinaryOperator::getOpcodeStr(Opc) 15104 << Bop->getSourceRange() << OpLoc; 15105 SuggestParentheses(S, Bop->getOperatorLoc(), 15106 S.PDiag(diag::note_precedence_silence) 15107 << Bop->getOpcodeStr(), 15108 Bop->getSourceRange()); 15109 } 15110 } 15111 } 15112 15113 static void DiagnoseAdditionInShift(Sema &S, SourceLocation OpLoc, 15114 Expr *SubExpr, StringRef Shift) { 15115 if (BinaryOperator *Bop = dyn_cast<BinaryOperator>(SubExpr)) { 15116 if (Bop->getOpcode() == BO_Add || Bop->getOpcode() == BO_Sub) { 15117 StringRef Op = Bop->getOpcodeStr(); 15118 S.Diag(Bop->getOperatorLoc(), diag::warn_addition_in_bitshift) 15119 << Bop->getSourceRange() << OpLoc << Shift << Op; 15120 SuggestParentheses(S, Bop->getOperatorLoc(), 15121 S.PDiag(diag::note_precedence_silence) << Op, 15122 Bop->getSourceRange()); 15123 } 15124 } 15125 } 15126 15127 static void DiagnoseShiftCompare(Sema &S, SourceLocation OpLoc, 15128 Expr *LHSExpr, Expr *RHSExpr) { 15129 CXXOperatorCallExpr *OCE = dyn_cast<CXXOperatorCallExpr>(LHSExpr); 15130 if (!OCE) 15131 return; 15132 15133 FunctionDecl *FD = OCE->getDirectCallee(); 15134 if (!FD || !FD->isOverloadedOperator()) 15135 return; 15136 15137 OverloadedOperatorKind Kind = FD->getOverloadedOperator(); 15138 if (Kind != OO_LessLess && Kind != OO_GreaterGreater) 15139 return; 15140 15141 S.Diag(OpLoc, diag::warn_overloaded_shift_in_comparison) 15142 << LHSExpr->getSourceRange() << RHSExpr->getSourceRange() 15143 << (Kind == OO_LessLess); 15144 SuggestParentheses(S, OCE->getOperatorLoc(), 15145 S.PDiag(diag::note_precedence_silence) 15146 << (Kind == OO_LessLess ? "<<" : ">>"), 15147 OCE->getSourceRange()); 15148 SuggestParentheses( 15149 S, OpLoc, S.PDiag(diag::note_evaluate_comparison_first), 15150 SourceRange(OCE->getArg(1)->getBeginLoc(), RHSExpr->getEndLoc())); 15151 } 15152 15153 /// DiagnoseBinOpPrecedence - Emit warnings for expressions with tricky 15154 /// precedence. 15155 static void DiagnoseBinOpPrecedence(Sema &Self, BinaryOperatorKind Opc, 15156 SourceLocation OpLoc, Expr *LHSExpr, 15157 Expr *RHSExpr){ 15158 // Diagnose "arg1 'bitwise' arg2 'eq' arg3". 15159 if (BinaryOperator::isBitwiseOp(Opc)) 15160 DiagnoseBitwisePrecedence(Self, Opc, OpLoc, LHSExpr, RHSExpr); 15161 15162 // Diagnose "arg1 & arg2 | arg3" 15163 if ((Opc == BO_Or || Opc == BO_Xor) && 15164 !OpLoc.isMacroID()/* Don't warn in macros. */) { 15165 DiagnoseBitwiseOpInBitwiseOp(Self, Opc, OpLoc, LHSExpr); 15166 DiagnoseBitwiseOpInBitwiseOp(Self, Opc, OpLoc, RHSExpr); 15167 } 15168 15169 // Warn about arg1 || arg2 && arg3, as GCC 4.3+ does. 15170 // We don't warn for 'assert(a || b && "bad")' since this is safe. 15171 if (Opc == BO_LOr && !OpLoc.isMacroID()/* Don't warn in macros. */) { 15172 DiagnoseLogicalAndInLogicalOrLHS(Self, OpLoc, LHSExpr, RHSExpr); 15173 DiagnoseLogicalAndInLogicalOrRHS(Self, OpLoc, LHSExpr, RHSExpr); 15174 } 15175 15176 if ((Opc == BO_Shl && LHSExpr->getType()->isIntegralType(Self.getASTContext())) 15177 || Opc == BO_Shr) { 15178 StringRef Shift = BinaryOperator::getOpcodeStr(Opc); 15179 DiagnoseAdditionInShift(Self, OpLoc, LHSExpr, Shift); 15180 DiagnoseAdditionInShift(Self, OpLoc, RHSExpr, Shift); 15181 } 15182 15183 // Warn on overloaded shift operators and comparisons, such as: 15184 // cout << 5 == 4; 15185 if (BinaryOperator::isComparisonOp(Opc)) 15186 DiagnoseShiftCompare(Self, OpLoc, LHSExpr, RHSExpr); 15187 } 15188 15189 // Binary Operators. 'Tok' is the token for the operator. 15190 ExprResult Sema::ActOnBinOp(Scope *S, SourceLocation TokLoc, 15191 tok::TokenKind Kind, 15192 Expr *LHSExpr, Expr *RHSExpr) { 15193 BinaryOperatorKind Opc = ConvertTokenKindToBinaryOpcode(Kind); 15194 assert(LHSExpr && "ActOnBinOp(): missing left expression"); 15195 assert(RHSExpr && "ActOnBinOp(): missing right expression"); 15196 15197 // Emit warnings for tricky precedence issues, e.g. "bitfield & 0x4 == 0" 15198 DiagnoseBinOpPrecedence(*this, Opc, TokLoc, LHSExpr, RHSExpr); 15199 15200 return BuildBinOp(S, TokLoc, Opc, LHSExpr, RHSExpr); 15201 } 15202 15203 void Sema::LookupBinOp(Scope *S, SourceLocation OpLoc, BinaryOperatorKind Opc, 15204 UnresolvedSetImpl &Functions) { 15205 OverloadedOperatorKind OverOp = BinaryOperator::getOverloadedOperator(Opc); 15206 if (OverOp != OO_None && OverOp != OO_Equal) 15207 LookupOverloadedOperatorName(OverOp, S, Functions); 15208 15209 // In C++20 onwards, we may have a second operator to look up. 15210 if (getLangOpts().CPlusPlus20) { 15211 if (OverloadedOperatorKind ExtraOp = getRewrittenOverloadedOperator(OverOp)) 15212 LookupOverloadedOperatorName(ExtraOp, S, Functions); 15213 } 15214 } 15215 15216 /// Build an overloaded binary operator expression in the given scope. 15217 static ExprResult BuildOverloadedBinOp(Sema &S, Scope *Sc, SourceLocation OpLoc, 15218 BinaryOperatorKind Opc, 15219 Expr *LHS, Expr *RHS) { 15220 switch (Opc) { 15221 case BO_Assign: 15222 case BO_DivAssign: 15223 case BO_RemAssign: 15224 case BO_SubAssign: 15225 case BO_AndAssign: 15226 case BO_OrAssign: 15227 case BO_XorAssign: 15228 DiagnoseSelfAssignment(S, LHS, RHS, OpLoc, false); 15229 CheckIdentityFieldAssignment(LHS, RHS, OpLoc, S); 15230 break; 15231 default: 15232 break; 15233 } 15234 15235 // Find all of the overloaded operators visible from this point. 15236 UnresolvedSet<16> Functions; 15237 S.LookupBinOp(Sc, OpLoc, Opc, Functions); 15238 15239 // Build the (potentially-overloaded, potentially-dependent) 15240 // binary operation. 15241 return S.CreateOverloadedBinOp(OpLoc, Opc, Functions, LHS, RHS); 15242 } 15243 15244 ExprResult Sema::BuildBinOp(Scope *S, SourceLocation OpLoc, 15245 BinaryOperatorKind Opc, 15246 Expr *LHSExpr, Expr *RHSExpr) { 15247 ExprResult LHS, RHS; 15248 std::tie(LHS, RHS) = CorrectDelayedTyposInBinOp(*this, Opc, LHSExpr, RHSExpr); 15249 if (!LHS.isUsable() || !RHS.isUsable()) 15250 return ExprError(); 15251 LHSExpr = LHS.get(); 15252 RHSExpr = RHS.get(); 15253 15254 // We want to end up calling one of checkPseudoObjectAssignment 15255 // (if the LHS is a pseudo-object), BuildOverloadedBinOp (if 15256 // both expressions are overloadable or either is type-dependent), 15257 // or CreateBuiltinBinOp (in any other case). We also want to get 15258 // any placeholder types out of the way. 15259 15260 // Handle pseudo-objects in the LHS. 15261 if (const BuiltinType *pty = LHSExpr->getType()->getAsPlaceholderType()) { 15262 // Assignments with a pseudo-object l-value need special analysis. 15263 if (pty->getKind() == BuiltinType::PseudoObject && 15264 BinaryOperator::isAssignmentOp(Opc)) 15265 return checkPseudoObjectAssignment(S, OpLoc, Opc, LHSExpr, RHSExpr); 15266 15267 // Don't resolve overloads if the other type is overloadable. 15268 if (getLangOpts().CPlusPlus && pty->getKind() == BuiltinType::Overload) { 15269 // We can't actually test that if we still have a placeholder, 15270 // though. Fortunately, none of the exceptions we see in that 15271 // code below are valid when the LHS is an overload set. Note 15272 // that an overload set can be dependently-typed, but it never 15273 // instantiates to having an overloadable type. 15274 ExprResult resolvedRHS = CheckPlaceholderExpr(RHSExpr); 15275 if (resolvedRHS.isInvalid()) return ExprError(); 15276 RHSExpr = resolvedRHS.get(); 15277 15278 if (RHSExpr->isTypeDependent() || 15279 RHSExpr->getType()->isOverloadableType()) 15280 return BuildOverloadedBinOp(*this, S, OpLoc, Opc, LHSExpr, RHSExpr); 15281 } 15282 15283 // If we're instantiating "a.x < b" or "A::x < b" and 'x' names a function 15284 // template, diagnose the missing 'template' keyword instead of diagnosing 15285 // an invalid use of a bound member function. 15286 // 15287 // Note that "A::x < b" might be valid if 'b' has an overloadable type due 15288 // to C++1z [over.over]/1.4, but we already checked for that case above. 15289 if (Opc == BO_LT && inTemplateInstantiation() && 15290 (pty->getKind() == BuiltinType::BoundMember || 15291 pty->getKind() == BuiltinType::Overload)) { 15292 auto *OE = dyn_cast<OverloadExpr>(LHSExpr); 15293 if (OE && !OE->hasTemplateKeyword() && !OE->hasExplicitTemplateArgs() && 15294 std::any_of(OE->decls_begin(), OE->decls_end(), [](NamedDecl *ND) { 15295 return isa<FunctionTemplateDecl>(ND); 15296 })) { 15297 Diag(OE->getQualifier() ? OE->getQualifierLoc().getBeginLoc() 15298 : OE->getNameLoc(), 15299 diag::err_template_kw_missing) 15300 << OE->getName().getAsString() << ""; 15301 return ExprError(); 15302 } 15303 } 15304 15305 ExprResult LHS = CheckPlaceholderExpr(LHSExpr); 15306 if (LHS.isInvalid()) return ExprError(); 15307 LHSExpr = LHS.get(); 15308 } 15309 15310 // Handle pseudo-objects in the RHS. 15311 if (const BuiltinType *pty = RHSExpr->getType()->getAsPlaceholderType()) { 15312 // An overload in the RHS can potentially be resolved by the type 15313 // being assigned to. 15314 if (Opc == BO_Assign && pty->getKind() == BuiltinType::Overload) { 15315 if (getLangOpts().CPlusPlus && 15316 (LHSExpr->isTypeDependent() || RHSExpr->isTypeDependent() || 15317 LHSExpr->getType()->isOverloadableType())) 15318 return BuildOverloadedBinOp(*this, S, OpLoc, Opc, LHSExpr, RHSExpr); 15319 15320 return CreateBuiltinBinOp(OpLoc, Opc, LHSExpr, RHSExpr); 15321 } 15322 15323 // Don't resolve overloads if the other type is overloadable. 15324 if (getLangOpts().CPlusPlus && pty->getKind() == BuiltinType::Overload && 15325 LHSExpr->getType()->isOverloadableType()) 15326 return BuildOverloadedBinOp(*this, S, OpLoc, Opc, LHSExpr, RHSExpr); 15327 15328 ExprResult resolvedRHS = CheckPlaceholderExpr(RHSExpr); 15329 if (!resolvedRHS.isUsable()) return ExprError(); 15330 RHSExpr = resolvedRHS.get(); 15331 } 15332 15333 if (getLangOpts().CPlusPlus) { 15334 // If either expression is type-dependent, always build an 15335 // overloaded op. 15336 if (LHSExpr->isTypeDependent() || RHSExpr->isTypeDependent()) 15337 return BuildOverloadedBinOp(*this, S, OpLoc, Opc, LHSExpr, RHSExpr); 15338 15339 // Otherwise, build an overloaded op if either expression has an 15340 // overloadable type. 15341 if (LHSExpr->getType()->isOverloadableType() || 15342 RHSExpr->getType()->isOverloadableType()) 15343 return BuildOverloadedBinOp(*this, S, OpLoc, Opc, LHSExpr, RHSExpr); 15344 } 15345 15346 if (getLangOpts().RecoveryAST && 15347 (LHSExpr->isTypeDependent() || RHSExpr->isTypeDependent())) { 15348 assert(!getLangOpts().CPlusPlus); 15349 assert((LHSExpr->containsErrors() || RHSExpr->containsErrors()) && 15350 "Should only occur in error-recovery path."); 15351 if (BinaryOperator::isCompoundAssignmentOp(Opc)) 15352 // C [6.15.16] p3: 15353 // An assignment expression has the value of the left operand after the 15354 // assignment, but is not an lvalue. 15355 return CompoundAssignOperator::Create( 15356 Context, LHSExpr, RHSExpr, Opc, 15357 LHSExpr->getType().getUnqualifiedType(), VK_PRValue, OK_Ordinary, 15358 OpLoc, CurFPFeatureOverrides()); 15359 QualType ResultType; 15360 switch (Opc) { 15361 case BO_Assign: 15362 ResultType = LHSExpr->getType().getUnqualifiedType(); 15363 break; 15364 case BO_LT: 15365 case BO_GT: 15366 case BO_LE: 15367 case BO_GE: 15368 case BO_EQ: 15369 case BO_NE: 15370 case BO_LAnd: 15371 case BO_LOr: 15372 // These operators have a fixed result type regardless of operands. 15373 ResultType = Context.IntTy; 15374 break; 15375 case BO_Comma: 15376 ResultType = RHSExpr->getType(); 15377 break; 15378 default: 15379 ResultType = Context.DependentTy; 15380 break; 15381 } 15382 return BinaryOperator::Create(Context, LHSExpr, RHSExpr, Opc, ResultType, 15383 VK_PRValue, OK_Ordinary, OpLoc, 15384 CurFPFeatureOverrides()); 15385 } 15386 15387 // Build a built-in binary operation. 15388 return CreateBuiltinBinOp(OpLoc, Opc, LHSExpr, RHSExpr); 15389 } 15390 15391 static bool isOverflowingIntegerType(ASTContext &Ctx, QualType T) { 15392 if (T.isNull() || T->isDependentType()) 15393 return false; 15394 15395 if (!T->isPromotableIntegerType()) 15396 return true; 15397 15398 return Ctx.getIntWidth(T) >= Ctx.getIntWidth(Ctx.IntTy); 15399 } 15400 15401 ExprResult Sema::CreateBuiltinUnaryOp(SourceLocation OpLoc, 15402 UnaryOperatorKind Opc, 15403 Expr *InputExpr) { 15404 ExprResult Input = InputExpr; 15405 ExprValueKind VK = VK_PRValue; 15406 ExprObjectKind OK = OK_Ordinary; 15407 QualType resultType; 15408 bool CanOverflow = false; 15409 15410 bool ConvertHalfVec = false; 15411 if (getLangOpts().OpenCL) { 15412 QualType Ty = InputExpr->getType(); 15413 // The only legal unary operation for atomics is '&'. 15414 if ((Opc != UO_AddrOf && Ty->isAtomicType()) || 15415 // OpenCL special types - image, sampler, pipe, and blocks are to be used 15416 // only with a builtin functions and therefore should be disallowed here. 15417 (Ty->isImageType() || Ty->isSamplerT() || Ty->isPipeType() 15418 || Ty->isBlockPointerType())) { 15419 return ExprError(Diag(OpLoc, diag::err_typecheck_unary_expr) 15420 << InputExpr->getType() 15421 << Input.get()->getSourceRange()); 15422 } 15423 } 15424 15425 if (getLangOpts().HLSL) { 15426 if (Opc == UO_AddrOf) 15427 return ExprError(Diag(OpLoc, diag::err_hlsl_operator_unsupported) << 0); 15428 if (Opc == UO_Deref) 15429 return ExprError(Diag(OpLoc, diag::err_hlsl_operator_unsupported) << 1); 15430 } 15431 15432 switch (Opc) { 15433 case UO_PreInc: 15434 case UO_PreDec: 15435 case UO_PostInc: 15436 case UO_PostDec: 15437 resultType = CheckIncrementDecrementOperand(*this, Input.get(), VK, OK, 15438 OpLoc, 15439 Opc == UO_PreInc || 15440 Opc == UO_PostInc, 15441 Opc == UO_PreInc || 15442 Opc == UO_PreDec); 15443 CanOverflow = isOverflowingIntegerType(Context, resultType); 15444 break; 15445 case UO_AddrOf: 15446 resultType = CheckAddressOfOperand(Input, OpLoc); 15447 CheckAddressOfNoDeref(InputExpr); 15448 RecordModifiableNonNullParam(*this, InputExpr); 15449 break; 15450 case UO_Deref: { 15451 Input = DefaultFunctionArrayLvalueConversion(Input.get()); 15452 if (Input.isInvalid()) return ExprError(); 15453 resultType = CheckIndirectionOperand(*this, Input.get(), VK, OpLoc); 15454 break; 15455 } 15456 case UO_Plus: 15457 case UO_Minus: 15458 CanOverflow = Opc == UO_Minus && 15459 isOverflowingIntegerType(Context, Input.get()->getType()); 15460 Input = UsualUnaryConversions(Input.get()); 15461 if (Input.isInvalid()) return ExprError(); 15462 // Unary plus and minus require promoting an operand of half vector to a 15463 // float vector and truncating the result back to a half vector. For now, we 15464 // do this only when HalfArgsAndReturns is set (that is, when the target is 15465 // arm or arm64). 15466 ConvertHalfVec = needsConversionOfHalfVec(true, Context, Input.get()); 15467 15468 // If the operand is a half vector, promote it to a float vector. 15469 if (ConvertHalfVec) 15470 Input = convertVector(Input.get(), Context.FloatTy, *this); 15471 resultType = Input.get()->getType(); 15472 if (resultType->isDependentType()) 15473 break; 15474 if (resultType->isArithmeticType()) // C99 6.5.3.3p1 15475 break; 15476 else if (resultType->isVectorType() && 15477 // The z vector extensions don't allow + or - with bool vectors. 15478 (!Context.getLangOpts().ZVector || 15479 resultType->castAs<VectorType>()->getVectorKind() != 15480 VectorType::AltiVecBool)) 15481 break; 15482 else if (getLangOpts().CPlusPlus && // C++ [expr.unary.op]p6 15483 Opc == UO_Plus && 15484 resultType->isPointerType()) 15485 break; 15486 15487 return ExprError(Diag(OpLoc, diag::err_typecheck_unary_expr) 15488 << resultType << Input.get()->getSourceRange()); 15489 15490 case UO_Not: // bitwise complement 15491 Input = UsualUnaryConversions(Input.get()); 15492 if (Input.isInvalid()) 15493 return ExprError(); 15494 resultType = Input.get()->getType(); 15495 if (resultType->isDependentType()) 15496 break; 15497 // C99 6.5.3.3p1. We allow complex int and float as a GCC extension. 15498 if (resultType->isComplexType() || resultType->isComplexIntegerType()) 15499 // C99 does not support '~' for complex conjugation. 15500 Diag(OpLoc, diag::ext_integer_complement_complex) 15501 << resultType << Input.get()->getSourceRange(); 15502 else if (resultType->hasIntegerRepresentation()) 15503 break; 15504 else if (resultType->isExtVectorType() && Context.getLangOpts().OpenCL) { 15505 // OpenCL v1.1 s6.3.f: The bitwise operator not (~) does not operate 15506 // on vector float types. 15507 QualType T = resultType->castAs<ExtVectorType>()->getElementType(); 15508 if (!T->isIntegerType()) 15509 return ExprError(Diag(OpLoc, diag::err_typecheck_unary_expr) 15510 << resultType << Input.get()->getSourceRange()); 15511 } else { 15512 return ExprError(Diag(OpLoc, diag::err_typecheck_unary_expr) 15513 << resultType << Input.get()->getSourceRange()); 15514 } 15515 break; 15516 15517 case UO_LNot: // logical negation 15518 // Unlike +/-/~, integer promotions aren't done here (C99 6.5.3.3p5). 15519 Input = DefaultFunctionArrayLvalueConversion(Input.get()); 15520 if (Input.isInvalid()) return ExprError(); 15521 resultType = Input.get()->getType(); 15522 15523 // Though we still have to promote half FP to float... 15524 if (resultType->isHalfType() && !Context.getLangOpts().NativeHalfType) { 15525 Input = ImpCastExprToType(Input.get(), Context.FloatTy, CK_FloatingCast).get(); 15526 resultType = Context.FloatTy; 15527 } 15528 15529 if (resultType->isDependentType()) 15530 break; 15531 if (resultType->isScalarType() && !isScopedEnumerationType(resultType)) { 15532 // C99 6.5.3.3p1: ok, fallthrough; 15533 if (Context.getLangOpts().CPlusPlus) { 15534 // C++03 [expr.unary.op]p8, C++0x [expr.unary.op]p9: 15535 // operand contextually converted to bool. 15536 Input = ImpCastExprToType(Input.get(), Context.BoolTy, 15537 ScalarTypeToBooleanCastKind(resultType)); 15538 } else if (Context.getLangOpts().OpenCL && 15539 Context.getLangOpts().OpenCLVersion < 120) { 15540 // OpenCL v1.1 6.3.h: The logical operator not (!) does not 15541 // operate on scalar float types. 15542 if (!resultType->isIntegerType() && !resultType->isPointerType()) 15543 return ExprError(Diag(OpLoc, diag::err_typecheck_unary_expr) 15544 << resultType << Input.get()->getSourceRange()); 15545 } 15546 } else if (resultType->isExtVectorType()) { 15547 if (Context.getLangOpts().OpenCL && 15548 Context.getLangOpts().getOpenCLCompatibleVersion() < 120) { 15549 // OpenCL v1.1 6.3.h: The logical operator not (!) does not 15550 // operate on vector float types. 15551 QualType T = resultType->castAs<ExtVectorType>()->getElementType(); 15552 if (!T->isIntegerType()) 15553 return ExprError(Diag(OpLoc, diag::err_typecheck_unary_expr) 15554 << resultType << Input.get()->getSourceRange()); 15555 } 15556 // Vector logical not returns the signed variant of the operand type. 15557 resultType = GetSignedVectorType(resultType); 15558 break; 15559 } else if (Context.getLangOpts().CPlusPlus && resultType->isVectorType()) { 15560 const VectorType *VTy = resultType->castAs<VectorType>(); 15561 if (VTy->getVectorKind() != VectorType::GenericVector) 15562 return ExprError(Diag(OpLoc, diag::err_typecheck_unary_expr) 15563 << resultType << Input.get()->getSourceRange()); 15564 15565 // Vector logical not returns the signed variant of the operand type. 15566 resultType = GetSignedVectorType(resultType); 15567 break; 15568 } else { 15569 return ExprError(Diag(OpLoc, diag::err_typecheck_unary_expr) 15570 << resultType << Input.get()->getSourceRange()); 15571 } 15572 15573 // LNot always has type int. C99 6.5.3.3p5. 15574 // In C++, it's bool. C++ 5.3.1p8 15575 resultType = Context.getLogicalOperationType(); 15576 break; 15577 case UO_Real: 15578 case UO_Imag: 15579 resultType = CheckRealImagOperand(*this, Input, OpLoc, Opc == UO_Real); 15580 // _Real maps ordinary l-values into ordinary l-values. _Imag maps ordinary 15581 // complex l-values to ordinary l-values and all other values to r-values. 15582 if (Input.isInvalid()) return ExprError(); 15583 if (Opc == UO_Real || Input.get()->getType()->isAnyComplexType()) { 15584 if (Input.get()->isGLValue() && 15585 Input.get()->getObjectKind() == OK_Ordinary) 15586 VK = Input.get()->getValueKind(); 15587 } else if (!getLangOpts().CPlusPlus) { 15588 // In C, a volatile scalar is read by __imag. In C++, it is not. 15589 Input = DefaultLvalueConversion(Input.get()); 15590 } 15591 break; 15592 case UO_Extension: 15593 resultType = Input.get()->getType(); 15594 VK = Input.get()->getValueKind(); 15595 OK = Input.get()->getObjectKind(); 15596 break; 15597 case UO_Coawait: 15598 // It's unnecessary to represent the pass-through operator co_await in the 15599 // AST; just return the input expression instead. 15600 assert(!Input.get()->getType()->isDependentType() && 15601 "the co_await expression must be non-dependant before " 15602 "building operator co_await"); 15603 return Input; 15604 } 15605 if (resultType.isNull() || Input.isInvalid()) 15606 return ExprError(); 15607 15608 // Check for array bounds violations in the operand of the UnaryOperator, 15609 // except for the '*' and '&' operators that have to be handled specially 15610 // by CheckArrayAccess (as there are special cases like &array[arraysize] 15611 // that are explicitly defined as valid by the standard). 15612 if (Opc != UO_AddrOf && Opc != UO_Deref) 15613 CheckArrayAccess(Input.get()); 15614 15615 auto *UO = 15616 UnaryOperator::Create(Context, Input.get(), Opc, resultType, VK, OK, 15617 OpLoc, CanOverflow, CurFPFeatureOverrides()); 15618 15619 if (Opc == UO_Deref && UO->getType()->hasAttr(attr::NoDeref) && 15620 !isa<ArrayType>(UO->getType().getDesugaredType(Context)) && 15621 !isUnevaluatedContext()) 15622 ExprEvalContexts.back().PossibleDerefs.insert(UO); 15623 15624 // Convert the result back to a half vector. 15625 if (ConvertHalfVec) 15626 return convertVector(UO, Context.HalfTy, *this); 15627 return UO; 15628 } 15629 15630 /// Determine whether the given expression is a qualified member 15631 /// access expression, of a form that could be turned into a pointer to member 15632 /// with the address-of operator. 15633 bool Sema::isQualifiedMemberAccess(Expr *E) { 15634 if (DeclRefExpr *DRE = dyn_cast<DeclRefExpr>(E)) { 15635 if (!DRE->getQualifier()) 15636 return false; 15637 15638 ValueDecl *VD = DRE->getDecl(); 15639 if (!VD->isCXXClassMember()) 15640 return false; 15641 15642 if (isa<FieldDecl>(VD) || isa<IndirectFieldDecl>(VD)) 15643 return true; 15644 if (CXXMethodDecl *Method = dyn_cast<CXXMethodDecl>(VD)) 15645 return Method->isInstance(); 15646 15647 return false; 15648 } 15649 15650 if (UnresolvedLookupExpr *ULE = dyn_cast<UnresolvedLookupExpr>(E)) { 15651 if (!ULE->getQualifier()) 15652 return false; 15653 15654 for (NamedDecl *D : ULE->decls()) { 15655 if (CXXMethodDecl *Method = dyn_cast<CXXMethodDecl>(D)) { 15656 if (Method->isInstance()) 15657 return true; 15658 } else { 15659 // Overload set does not contain methods. 15660 break; 15661 } 15662 } 15663 15664 return false; 15665 } 15666 15667 return false; 15668 } 15669 15670 ExprResult Sema::BuildUnaryOp(Scope *S, SourceLocation OpLoc, 15671 UnaryOperatorKind Opc, Expr *Input) { 15672 // First things first: handle placeholders so that the 15673 // overloaded-operator check considers the right type. 15674 if (const BuiltinType *pty = Input->getType()->getAsPlaceholderType()) { 15675 // Increment and decrement of pseudo-object references. 15676 if (pty->getKind() == BuiltinType::PseudoObject && 15677 UnaryOperator::isIncrementDecrementOp(Opc)) 15678 return checkPseudoObjectIncDec(S, OpLoc, Opc, Input); 15679 15680 // extension is always a builtin operator. 15681 if (Opc == UO_Extension) 15682 return CreateBuiltinUnaryOp(OpLoc, Opc, Input); 15683 15684 // & gets special logic for several kinds of placeholder. 15685 // The builtin code knows what to do. 15686 if (Opc == UO_AddrOf && 15687 (pty->getKind() == BuiltinType::Overload || 15688 pty->getKind() == BuiltinType::UnknownAny || 15689 pty->getKind() == BuiltinType::BoundMember)) 15690 return CreateBuiltinUnaryOp(OpLoc, Opc, Input); 15691 15692 // Anything else needs to be handled now. 15693 ExprResult Result = CheckPlaceholderExpr(Input); 15694 if (Result.isInvalid()) return ExprError(); 15695 Input = Result.get(); 15696 } 15697 15698 if (getLangOpts().CPlusPlus && Input->getType()->isOverloadableType() && 15699 UnaryOperator::getOverloadedOperator(Opc) != OO_None && 15700 !(Opc == UO_AddrOf && isQualifiedMemberAccess(Input))) { 15701 // Find all of the overloaded operators visible from this point. 15702 UnresolvedSet<16> Functions; 15703 OverloadedOperatorKind OverOp = UnaryOperator::getOverloadedOperator(Opc); 15704 if (S && OverOp != OO_None) 15705 LookupOverloadedOperatorName(OverOp, S, Functions); 15706 15707 return CreateOverloadedUnaryOp(OpLoc, Opc, Functions, Input); 15708 } 15709 15710 return CreateBuiltinUnaryOp(OpLoc, Opc, Input); 15711 } 15712 15713 // Unary Operators. 'Tok' is the token for the operator. 15714 ExprResult Sema::ActOnUnaryOp(Scope *S, SourceLocation OpLoc, 15715 tok::TokenKind Op, Expr *Input) { 15716 return BuildUnaryOp(S, OpLoc, ConvertTokenKindToUnaryOpcode(Op), Input); 15717 } 15718 15719 /// ActOnAddrLabel - Parse the GNU address of label extension: "&&foo". 15720 ExprResult Sema::ActOnAddrLabel(SourceLocation OpLoc, SourceLocation LabLoc, 15721 LabelDecl *TheDecl) { 15722 TheDecl->markUsed(Context); 15723 // Create the AST node. The address of a label always has type 'void*'. 15724 return new (Context) AddrLabelExpr(OpLoc, LabLoc, TheDecl, 15725 Context.getPointerType(Context.VoidTy)); 15726 } 15727 15728 void Sema::ActOnStartStmtExpr() { 15729 PushExpressionEvaluationContext(ExprEvalContexts.back().Context); 15730 } 15731 15732 void Sema::ActOnStmtExprError() { 15733 // Note that function is also called by TreeTransform when leaving a 15734 // StmtExpr scope without rebuilding anything. 15735 15736 DiscardCleanupsInEvaluationContext(); 15737 PopExpressionEvaluationContext(); 15738 } 15739 15740 ExprResult Sema::ActOnStmtExpr(Scope *S, SourceLocation LPLoc, Stmt *SubStmt, 15741 SourceLocation RPLoc) { 15742 return BuildStmtExpr(LPLoc, SubStmt, RPLoc, getTemplateDepth(S)); 15743 } 15744 15745 ExprResult Sema::BuildStmtExpr(SourceLocation LPLoc, Stmt *SubStmt, 15746 SourceLocation RPLoc, unsigned TemplateDepth) { 15747 assert(SubStmt && isa<CompoundStmt>(SubStmt) && "Invalid action invocation!"); 15748 CompoundStmt *Compound = cast<CompoundStmt>(SubStmt); 15749 15750 if (hasAnyUnrecoverableErrorsInThisFunction()) 15751 DiscardCleanupsInEvaluationContext(); 15752 assert(!Cleanup.exprNeedsCleanups() && 15753 "cleanups within StmtExpr not correctly bound!"); 15754 PopExpressionEvaluationContext(); 15755 15756 // FIXME: there are a variety of strange constraints to enforce here, for 15757 // example, it is not possible to goto into a stmt expression apparently. 15758 // More semantic analysis is needed. 15759 15760 // If there are sub-stmts in the compound stmt, take the type of the last one 15761 // as the type of the stmtexpr. 15762 QualType Ty = Context.VoidTy; 15763 bool StmtExprMayBindToTemp = false; 15764 if (!Compound->body_empty()) { 15765 // For GCC compatibility we get the last Stmt excluding trailing NullStmts. 15766 if (const auto *LastStmt = 15767 dyn_cast<ValueStmt>(Compound->getStmtExprResult())) { 15768 if (const Expr *Value = LastStmt->getExprStmt()) { 15769 StmtExprMayBindToTemp = true; 15770 Ty = Value->getType(); 15771 } 15772 } 15773 } 15774 15775 // FIXME: Check that expression type is complete/non-abstract; statement 15776 // expressions are not lvalues. 15777 Expr *ResStmtExpr = 15778 new (Context) StmtExpr(Compound, Ty, LPLoc, RPLoc, TemplateDepth); 15779 if (StmtExprMayBindToTemp) 15780 return MaybeBindToTemporary(ResStmtExpr); 15781 return ResStmtExpr; 15782 } 15783 15784 ExprResult Sema::ActOnStmtExprResult(ExprResult ER) { 15785 if (ER.isInvalid()) 15786 return ExprError(); 15787 15788 // Do function/array conversion on the last expression, but not 15789 // lvalue-to-rvalue. However, initialize an unqualified type. 15790 ER = DefaultFunctionArrayConversion(ER.get()); 15791 if (ER.isInvalid()) 15792 return ExprError(); 15793 Expr *E = ER.get(); 15794 15795 if (E->isTypeDependent()) 15796 return E; 15797 15798 // In ARC, if the final expression ends in a consume, splice 15799 // the consume out and bind it later. In the alternate case 15800 // (when dealing with a retainable type), the result 15801 // initialization will create a produce. In both cases the 15802 // result will be +1, and we'll need to balance that out with 15803 // a bind. 15804 auto *Cast = dyn_cast<ImplicitCastExpr>(E); 15805 if (Cast && Cast->getCastKind() == CK_ARCConsumeObject) 15806 return Cast->getSubExpr(); 15807 15808 // FIXME: Provide a better location for the initialization. 15809 return PerformCopyInitialization( 15810 InitializedEntity::InitializeStmtExprResult( 15811 E->getBeginLoc(), E->getType().getUnqualifiedType()), 15812 SourceLocation(), E); 15813 } 15814 15815 ExprResult Sema::BuildBuiltinOffsetOf(SourceLocation BuiltinLoc, 15816 TypeSourceInfo *TInfo, 15817 ArrayRef<OffsetOfComponent> Components, 15818 SourceLocation RParenLoc) { 15819 QualType ArgTy = TInfo->getType(); 15820 bool Dependent = ArgTy->isDependentType(); 15821 SourceRange TypeRange = TInfo->getTypeLoc().getLocalSourceRange(); 15822 15823 // We must have at least one component that refers to the type, and the first 15824 // one is known to be a field designator. Verify that the ArgTy represents 15825 // a struct/union/class. 15826 if (!Dependent && !ArgTy->isRecordType()) 15827 return ExprError(Diag(BuiltinLoc, diag::err_offsetof_record_type) 15828 << ArgTy << TypeRange); 15829 15830 // Type must be complete per C99 7.17p3 because a declaring a variable 15831 // with an incomplete type would be ill-formed. 15832 if (!Dependent 15833 && RequireCompleteType(BuiltinLoc, ArgTy, 15834 diag::err_offsetof_incomplete_type, TypeRange)) 15835 return ExprError(); 15836 15837 bool DidWarnAboutNonPOD = false; 15838 QualType CurrentType = ArgTy; 15839 SmallVector<OffsetOfNode, 4> Comps; 15840 SmallVector<Expr*, 4> Exprs; 15841 for (const OffsetOfComponent &OC : Components) { 15842 if (OC.isBrackets) { 15843 // Offset of an array sub-field. TODO: Should we allow vector elements? 15844 if (!CurrentType->isDependentType()) { 15845 const ArrayType *AT = Context.getAsArrayType(CurrentType); 15846 if(!AT) 15847 return ExprError(Diag(OC.LocEnd, diag::err_offsetof_array_type) 15848 << CurrentType); 15849 CurrentType = AT->getElementType(); 15850 } else 15851 CurrentType = Context.DependentTy; 15852 15853 ExprResult IdxRval = DefaultLvalueConversion(static_cast<Expr*>(OC.U.E)); 15854 if (IdxRval.isInvalid()) 15855 return ExprError(); 15856 Expr *Idx = IdxRval.get(); 15857 15858 // The expression must be an integral expression. 15859 // FIXME: An integral constant expression? 15860 if (!Idx->isTypeDependent() && !Idx->isValueDependent() && 15861 !Idx->getType()->isIntegerType()) 15862 return ExprError( 15863 Diag(Idx->getBeginLoc(), diag::err_typecheck_subscript_not_integer) 15864 << Idx->getSourceRange()); 15865 15866 // Record this array index. 15867 Comps.push_back(OffsetOfNode(OC.LocStart, Exprs.size(), OC.LocEnd)); 15868 Exprs.push_back(Idx); 15869 continue; 15870 } 15871 15872 // Offset of a field. 15873 if (CurrentType->isDependentType()) { 15874 // We have the offset of a field, but we can't look into the dependent 15875 // type. Just record the identifier of the field. 15876 Comps.push_back(OffsetOfNode(OC.LocStart, OC.U.IdentInfo, OC.LocEnd)); 15877 CurrentType = Context.DependentTy; 15878 continue; 15879 } 15880 15881 // We need to have a complete type to look into. 15882 if (RequireCompleteType(OC.LocStart, CurrentType, 15883 diag::err_offsetof_incomplete_type)) 15884 return ExprError(); 15885 15886 // Look for the designated field. 15887 const RecordType *RC = CurrentType->getAs<RecordType>(); 15888 if (!RC) 15889 return ExprError(Diag(OC.LocEnd, diag::err_offsetof_record_type) 15890 << CurrentType); 15891 RecordDecl *RD = RC->getDecl(); 15892 15893 // C++ [lib.support.types]p5: 15894 // The macro offsetof accepts a restricted set of type arguments in this 15895 // International Standard. type shall be a POD structure or a POD union 15896 // (clause 9). 15897 // C++11 [support.types]p4: 15898 // If type is not a standard-layout class (Clause 9), the results are 15899 // undefined. 15900 if (CXXRecordDecl *CRD = dyn_cast<CXXRecordDecl>(RD)) { 15901 bool IsSafe = LangOpts.CPlusPlus11? CRD->isStandardLayout() : CRD->isPOD(); 15902 unsigned DiagID = 15903 LangOpts.CPlusPlus11? diag::ext_offsetof_non_standardlayout_type 15904 : diag::ext_offsetof_non_pod_type; 15905 15906 if (!IsSafe && !DidWarnAboutNonPOD && 15907 DiagRuntimeBehavior(BuiltinLoc, nullptr, 15908 PDiag(DiagID) 15909 << SourceRange(Components[0].LocStart, OC.LocEnd) 15910 << CurrentType)) 15911 DidWarnAboutNonPOD = true; 15912 } 15913 15914 // Look for the field. 15915 LookupResult R(*this, OC.U.IdentInfo, OC.LocStart, LookupMemberName); 15916 LookupQualifiedName(R, RD); 15917 FieldDecl *MemberDecl = R.getAsSingle<FieldDecl>(); 15918 IndirectFieldDecl *IndirectMemberDecl = nullptr; 15919 if (!MemberDecl) { 15920 if ((IndirectMemberDecl = R.getAsSingle<IndirectFieldDecl>())) 15921 MemberDecl = IndirectMemberDecl->getAnonField(); 15922 } 15923 15924 if (!MemberDecl) 15925 return ExprError(Diag(BuiltinLoc, diag::err_no_member) 15926 << OC.U.IdentInfo << RD << SourceRange(OC.LocStart, 15927 OC.LocEnd)); 15928 15929 // C99 7.17p3: 15930 // (If the specified member is a bit-field, the behavior is undefined.) 15931 // 15932 // We diagnose this as an error. 15933 if (MemberDecl->isBitField()) { 15934 Diag(OC.LocEnd, diag::err_offsetof_bitfield) 15935 << MemberDecl->getDeclName() 15936 << SourceRange(BuiltinLoc, RParenLoc); 15937 Diag(MemberDecl->getLocation(), diag::note_bitfield_decl); 15938 return ExprError(); 15939 } 15940 15941 RecordDecl *Parent = MemberDecl->getParent(); 15942 if (IndirectMemberDecl) 15943 Parent = cast<RecordDecl>(IndirectMemberDecl->getDeclContext()); 15944 15945 // If the member was found in a base class, introduce OffsetOfNodes for 15946 // the base class indirections. 15947 CXXBasePaths Paths; 15948 if (IsDerivedFrom(OC.LocStart, CurrentType, Context.getTypeDeclType(Parent), 15949 Paths)) { 15950 if (Paths.getDetectedVirtual()) { 15951 Diag(OC.LocEnd, diag::err_offsetof_field_of_virtual_base) 15952 << MemberDecl->getDeclName() 15953 << SourceRange(BuiltinLoc, RParenLoc); 15954 return ExprError(); 15955 } 15956 15957 CXXBasePath &Path = Paths.front(); 15958 for (const CXXBasePathElement &B : Path) 15959 Comps.push_back(OffsetOfNode(B.Base)); 15960 } 15961 15962 if (IndirectMemberDecl) { 15963 for (auto *FI : IndirectMemberDecl->chain()) { 15964 assert(isa<FieldDecl>(FI)); 15965 Comps.push_back(OffsetOfNode(OC.LocStart, 15966 cast<FieldDecl>(FI), OC.LocEnd)); 15967 } 15968 } else 15969 Comps.push_back(OffsetOfNode(OC.LocStart, MemberDecl, OC.LocEnd)); 15970 15971 CurrentType = MemberDecl->getType().getNonReferenceType(); 15972 } 15973 15974 return OffsetOfExpr::Create(Context, Context.getSizeType(), BuiltinLoc, TInfo, 15975 Comps, Exprs, RParenLoc); 15976 } 15977 15978 ExprResult Sema::ActOnBuiltinOffsetOf(Scope *S, 15979 SourceLocation BuiltinLoc, 15980 SourceLocation TypeLoc, 15981 ParsedType ParsedArgTy, 15982 ArrayRef<OffsetOfComponent> Components, 15983 SourceLocation RParenLoc) { 15984 15985 TypeSourceInfo *ArgTInfo; 15986 QualType ArgTy = GetTypeFromParser(ParsedArgTy, &ArgTInfo); 15987 if (ArgTy.isNull()) 15988 return ExprError(); 15989 15990 if (!ArgTInfo) 15991 ArgTInfo = Context.getTrivialTypeSourceInfo(ArgTy, TypeLoc); 15992 15993 return BuildBuiltinOffsetOf(BuiltinLoc, ArgTInfo, Components, RParenLoc); 15994 } 15995 15996 15997 ExprResult Sema::ActOnChooseExpr(SourceLocation BuiltinLoc, 15998 Expr *CondExpr, 15999 Expr *LHSExpr, Expr *RHSExpr, 16000 SourceLocation RPLoc) { 16001 assert((CondExpr && LHSExpr && RHSExpr) && "Missing type argument(s)"); 16002 16003 ExprValueKind VK = VK_PRValue; 16004 ExprObjectKind OK = OK_Ordinary; 16005 QualType resType; 16006 bool CondIsTrue = false; 16007 if (CondExpr->isTypeDependent() || CondExpr->isValueDependent()) { 16008 resType = Context.DependentTy; 16009 } else { 16010 // The conditional expression is required to be a constant expression. 16011 llvm::APSInt condEval(32); 16012 ExprResult CondICE = VerifyIntegerConstantExpression( 16013 CondExpr, &condEval, diag::err_typecheck_choose_expr_requires_constant); 16014 if (CondICE.isInvalid()) 16015 return ExprError(); 16016 CondExpr = CondICE.get(); 16017 CondIsTrue = condEval.getZExtValue(); 16018 16019 // If the condition is > zero, then the AST type is the same as the LHSExpr. 16020 Expr *ActiveExpr = CondIsTrue ? LHSExpr : RHSExpr; 16021 16022 resType = ActiveExpr->getType(); 16023 VK = ActiveExpr->getValueKind(); 16024 OK = ActiveExpr->getObjectKind(); 16025 } 16026 16027 return new (Context) ChooseExpr(BuiltinLoc, CondExpr, LHSExpr, RHSExpr, 16028 resType, VK, OK, RPLoc, CondIsTrue); 16029 } 16030 16031 //===----------------------------------------------------------------------===// 16032 // Clang Extensions. 16033 //===----------------------------------------------------------------------===// 16034 16035 /// ActOnBlockStart - This callback is invoked when a block literal is started. 16036 void Sema::ActOnBlockStart(SourceLocation CaretLoc, Scope *CurScope) { 16037 BlockDecl *Block = BlockDecl::Create(Context, CurContext, CaretLoc); 16038 16039 if (LangOpts.CPlusPlus) { 16040 MangleNumberingContext *MCtx; 16041 Decl *ManglingContextDecl; 16042 std::tie(MCtx, ManglingContextDecl) = 16043 getCurrentMangleNumberContext(Block->getDeclContext()); 16044 if (MCtx) { 16045 unsigned ManglingNumber = MCtx->getManglingNumber(Block); 16046 Block->setBlockMangling(ManglingNumber, ManglingContextDecl); 16047 } 16048 } 16049 16050 PushBlockScope(CurScope, Block); 16051 CurContext->addDecl(Block); 16052 if (CurScope) 16053 PushDeclContext(CurScope, Block); 16054 else 16055 CurContext = Block; 16056 16057 getCurBlock()->HasImplicitReturnType = true; 16058 16059 // Enter a new evaluation context to insulate the block from any 16060 // cleanups from the enclosing full-expression. 16061 PushExpressionEvaluationContext( 16062 ExpressionEvaluationContext::PotentiallyEvaluated); 16063 } 16064 16065 void Sema::ActOnBlockArguments(SourceLocation CaretLoc, Declarator &ParamInfo, 16066 Scope *CurScope) { 16067 assert(ParamInfo.getIdentifier() == nullptr && 16068 "block-id should have no identifier!"); 16069 assert(ParamInfo.getContext() == DeclaratorContext::BlockLiteral); 16070 BlockScopeInfo *CurBlock = getCurBlock(); 16071 16072 TypeSourceInfo *Sig = GetTypeForDeclarator(ParamInfo, CurScope); 16073 QualType T = Sig->getType(); 16074 16075 // FIXME: We should allow unexpanded parameter packs here, but that would, 16076 // in turn, make the block expression contain unexpanded parameter packs. 16077 if (DiagnoseUnexpandedParameterPack(CaretLoc, Sig, UPPC_Block)) { 16078 // Drop the parameters. 16079 FunctionProtoType::ExtProtoInfo EPI; 16080 EPI.HasTrailingReturn = false; 16081 EPI.TypeQuals.addConst(); 16082 T = Context.getFunctionType(Context.DependentTy, None, EPI); 16083 Sig = Context.getTrivialTypeSourceInfo(T); 16084 } 16085 16086 // GetTypeForDeclarator always produces a function type for a block 16087 // literal signature. Furthermore, it is always a FunctionProtoType 16088 // unless the function was written with a typedef. 16089 assert(T->isFunctionType() && 16090 "GetTypeForDeclarator made a non-function block signature"); 16091 16092 // Look for an explicit signature in that function type. 16093 FunctionProtoTypeLoc ExplicitSignature; 16094 16095 if ((ExplicitSignature = Sig->getTypeLoc() 16096 .getAsAdjusted<FunctionProtoTypeLoc>())) { 16097 16098 // Check whether that explicit signature was synthesized by 16099 // GetTypeForDeclarator. If so, don't save that as part of the 16100 // written signature. 16101 if (ExplicitSignature.getLocalRangeBegin() == 16102 ExplicitSignature.getLocalRangeEnd()) { 16103 // This would be much cheaper if we stored TypeLocs instead of 16104 // TypeSourceInfos. 16105 TypeLoc Result = ExplicitSignature.getReturnLoc(); 16106 unsigned Size = Result.getFullDataSize(); 16107 Sig = Context.CreateTypeSourceInfo(Result.getType(), Size); 16108 Sig->getTypeLoc().initializeFullCopy(Result, Size); 16109 16110 ExplicitSignature = FunctionProtoTypeLoc(); 16111 } 16112 } 16113 16114 CurBlock->TheDecl->setSignatureAsWritten(Sig); 16115 CurBlock->FunctionType = T; 16116 16117 const auto *Fn = T->castAs<FunctionType>(); 16118 QualType RetTy = Fn->getReturnType(); 16119 bool isVariadic = 16120 (isa<FunctionProtoType>(Fn) && cast<FunctionProtoType>(Fn)->isVariadic()); 16121 16122 CurBlock->TheDecl->setIsVariadic(isVariadic); 16123 16124 // Context.DependentTy is used as a placeholder for a missing block 16125 // return type. TODO: what should we do with declarators like: 16126 // ^ * { ... } 16127 // If the answer is "apply template argument deduction".... 16128 if (RetTy != Context.DependentTy) { 16129 CurBlock->ReturnType = RetTy; 16130 CurBlock->TheDecl->setBlockMissingReturnType(false); 16131 CurBlock->HasImplicitReturnType = false; 16132 } 16133 16134 // Push block parameters from the declarator if we had them. 16135 SmallVector<ParmVarDecl*, 8> Params; 16136 if (ExplicitSignature) { 16137 for (unsigned I = 0, E = ExplicitSignature.getNumParams(); I != E; ++I) { 16138 ParmVarDecl *Param = ExplicitSignature.getParam(I); 16139 if (Param->getIdentifier() == nullptr && !Param->isImplicit() && 16140 !Param->isInvalidDecl() && !getLangOpts().CPlusPlus) { 16141 // Diagnose this as an extension in C17 and earlier. 16142 if (!getLangOpts().C2x) 16143 Diag(Param->getLocation(), diag::ext_parameter_name_omitted_c2x); 16144 } 16145 Params.push_back(Param); 16146 } 16147 16148 // Fake up parameter variables if we have a typedef, like 16149 // ^ fntype { ... } 16150 } else if (const FunctionProtoType *Fn = T->getAs<FunctionProtoType>()) { 16151 for (const auto &I : Fn->param_types()) { 16152 ParmVarDecl *Param = BuildParmVarDeclForTypedef( 16153 CurBlock->TheDecl, ParamInfo.getBeginLoc(), I); 16154 Params.push_back(Param); 16155 } 16156 } 16157 16158 // Set the parameters on the block decl. 16159 if (!Params.empty()) { 16160 CurBlock->TheDecl->setParams(Params); 16161 CheckParmsForFunctionDef(CurBlock->TheDecl->parameters(), 16162 /*CheckParameterNames=*/false); 16163 } 16164 16165 // Finally we can process decl attributes. 16166 ProcessDeclAttributes(CurScope, CurBlock->TheDecl, ParamInfo); 16167 16168 // Put the parameter variables in scope. 16169 for (auto AI : CurBlock->TheDecl->parameters()) { 16170 AI->setOwningFunction(CurBlock->TheDecl); 16171 16172 // If this has an identifier, add it to the scope stack. 16173 if (AI->getIdentifier()) { 16174 CheckShadow(CurBlock->TheScope, AI); 16175 16176 PushOnScopeChains(AI, CurBlock->TheScope); 16177 } 16178 } 16179 } 16180 16181 /// ActOnBlockError - If there is an error parsing a block, this callback 16182 /// is invoked to pop the information about the block from the action impl. 16183 void Sema::ActOnBlockError(SourceLocation CaretLoc, Scope *CurScope) { 16184 // Leave the expression-evaluation context. 16185 DiscardCleanupsInEvaluationContext(); 16186 PopExpressionEvaluationContext(); 16187 16188 // Pop off CurBlock, handle nested blocks. 16189 PopDeclContext(); 16190 PopFunctionScopeInfo(); 16191 } 16192 16193 /// ActOnBlockStmtExpr - This is called when the body of a block statement 16194 /// literal was successfully completed. ^(int x){...} 16195 ExprResult Sema::ActOnBlockStmtExpr(SourceLocation CaretLoc, 16196 Stmt *Body, Scope *CurScope) { 16197 // If blocks are disabled, emit an error. 16198 if (!LangOpts.Blocks) 16199 Diag(CaretLoc, diag::err_blocks_disable) << LangOpts.OpenCL; 16200 16201 // Leave the expression-evaluation context. 16202 if (hasAnyUnrecoverableErrorsInThisFunction()) 16203 DiscardCleanupsInEvaluationContext(); 16204 assert(!Cleanup.exprNeedsCleanups() && 16205 "cleanups within block not correctly bound!"); 16206 PopExpressionEvaluationContext(); 16207 16208 BlockScopeInfo *BSI = cast<BlockScopeInfo>(FunctionScopes.back()); 16209 BlockDecl *BD = BSI->TheDecl; 16210 16211 if (BSI->HasImplicitReturnType) 16212 deduceClosureReturnType(*BSI); 16213 16214 QualType RetTy = Context.VoidTy; 16215 if (!BSI->ReturnType.isNull()) 16216 RetTy = BSI->ReturnType; 16217 16218 bool NoReturn = BD->hasAttr<NoReturnAttr>(); 16219 QualType BlockTy; 16220 16221 // If the user wrote a function type in some form, try to use that. 16222 if (!BSI->FunctionType.isNull()) { 16223 const FunctionType *FTy = BSI->FunctionType->castAs<FunctionType>(); 16224 16225 FunctionType::ExtInfo Ext = FTy->getExtInfo(); 16226 if (NoReturn && !Ext.getNoReturn()) Ext = Ext.withNoReturn(true); 16227 16228 // Turn protoless block types into nullary block types. 16229 if (isa<FunctionNoProtoType>(FTy)) { 16230 FunctionProtoType::ExtProtoInfo EPI; 16231 EPI.ExtInfo = Ext; 16232 BlockTy = Context.getFunctionType(RetTy, None, EPI); 16233 16234 // Otherwise, if we don't need to change anything about the function type, 16235 // preserve its sugar structure. 16236 } else if (FTy->getReturnType() == RetTy && 16237 (!NoReturn || FTy->getNoReturnAttr())) { 16238 BlockTy = BSI->FunctionType; 16239 16240 // Otherwise, make the minimal modifications to the function type. 16241 } else { 16242 const FunctionProtoType *FPT = cast<FunctionProtoType>(FTy); 16243 FunctionProtoType::ExtProtoInfo EPI = FPT->getExtProtoInfo(); 16244 EPI.TypeQuals = Qualifiers(); 16245 EPI.ExtInfo = Ext; 16246 BlockTy = Context.getFunctionType(RetTy, FPT->getParamTypes(), EPI); 16247 } 16248 16249 // If we don't have a function type, just build one from nothing. 16250 } else { 16251 FunctionProtoType::ExtProtoInfo EPI; 16252 EPI.ExtInfo = FunctionType::ExtInfo().withNoReturn(NoReturn); 16253 BlockTy = Context.getFunctionType(RetTy, None, EPI); 16254 } 16255 16256 DiagnoseUnusedParameters(BD->parameters()); 16257 BlockTy = Context.getBlockPointerType(BlockTy); 16258 16259 // If needed, diagnose invalid gotos and switches in the block. 16260 if (getCurFunction()->NeedsScopeChecking() && 16261 !PP.isCodeCompletionEnabled()) 16262 DiagnoseInvalidJumps(cast<CompoundStmt>(Body)); 16263 16264 BD->setBody(cast<CompoundStmt>(Body)); 16265 16266 if (Body && getCurFunction()->HasPotentialAvailabilityViolations) 16267 DiagnoseUnguardedAvailabilityViolations(BD); 16268 16269 // Try to apply the named return value optimization. We have to check again 16270 // if we can do this, though, because blocks keep return statements around 16271 // to deduce an implicit return type. 16272 if (getLangOpts().CPlusPlus && RetTy->isRecordType() && 16273 !BD->isDependentContext()) 16274 computeNRVO(Body, BSI); 16275 16276 if (RetTy.hasNonTrivialToPrimitiveDestructCUnion() || 16277 RetTy.hasNonTrivialToPrimitiveCopyCUnion()) 16278 checkNonTrivialCUnion(RetTy, BD->getCaretLocation(), NTCUC_FunctionReturn, 16279 NTCUK_Destruct|NTCUK_Copy); 16280 16281 PopDeclContext(); 16282 16283 // Set the captured variables on the block. 16284 SmallVector<BlockDecl::Capture, 4> Captures; 16285 for (Capture &Cap : BSI->Captures) { 16286 if (Cap.isInvalid() || Cap.isThisCapture()) 16287 continue; 16288 16289 VarDecl *Var = Cap.getVariable(); 16290 Expr *CopyExpr = nullptr; 16291 if (getLangOpts().CPlusPlus && Cap.isCopyCapture()) { 16292 if (const RecordType *Record = 16293 Cap.getCaptureType()->getAs<RecordType>()) { 16294 // The capture logic needs the destructor, so make sure we mark it. 16295 // Usually this is unnecessary because most local variables have 16296 // their destructors marked at declaration time, but parameters are 16297 // an exception because it's technically only the call site that 16298 // actually requires the destructor. 16299 if (isa<ParmVarDecl>(Var)) 16300 FinalizeVarWithDestructor(Var, Record); 16301 16302 // Enter a separate potentially-evaluated context while building block 16303 // initializers to isolate their cleanups from those of the block 16304 // itself. 16305 // FIXME: Is this appropriate even when the block itself occurs in an 16306 // unevaluated operand? 16307 EnterExpressionEvaluationContext EvalContext( 16308 *this, ExpressionEvaluationContext::PotentiallyEvaluated); 16309 16310 SourceLocation Loc = Cap.getLocation(); 16311 16312 ExprResult Result = BuildDeclarationNameExpr( 16313 CXXScopeSpec(), DeclarationNameInfo(Var->getDeclName(), Loc), Var); 16314 16315 // According to the blocks spec, the capture of a variable from 16316 // the stack requires a const copy constructor. This is not true 16317 // of the copy/move done to move a __block variable to the heap. 16318 if (!Result.isInvalid() && 16319 !Result.get()->getType().isConstQualified()) { 16320 Result = ImpCastExprToType(Result.get(), 16321 Result.get()->getType().withConst(), 16322 CK_NoOp, VK_LValue); 16323 } 16324 16325 if (!Result.isInvalid()) { 16326 Result = PerformCopyInitialization( 16327 InitializedEntity::InitializeBlock(Var->getLocation(), 16328 Cap.getCaptureType()), 16329 Loc, Result.get()); 16330 } 16331 16332 // Build a full-expression copy expression if initialization 16333 // succeeded and used a non-trivial constructor. Recover from 16334 // errors by pretending that the copy isn't necessary. 16335 if (!Result.isInvalid() && 16336 !cast<CXXConstructExpr>(Result.get())->getConstructor() 16337 ->isTrivial()) { 16338 Result = MaybeCreateExprWithCleanups(Result); 16339 CopyExpr = Result.get(); 16340 } 16341 } 16342 } 16343 16344 BlockDecl::Capture NewCap(Var, Cap.isBlockCapture(), Cap.isNested(), 16345 CopyExpr); 16346 Captures.push_back(NewCap); 16347 } 16348 BD->setCaptures(Context, Captures, BSI->CXXThisCaptureIndex != 0); 16349 16350 // Pop the block scope now but keep it alive to the end of this function. 16351 AnalysisBasedWarnings::Policy WP = AnalysisWarnings.getDefaultPolicy(); 16352 PoppedFunctionScopePtr ScopeRAII = PopFunctionScopeInfo(&WP, BD, BlockTy); 16353 16354 BlockExpr *Result = new (Context) BlockExpr(BD, BlockTy); 16355 16356 // If the block isn't obviously global, i.e. it captures anything at 16357 // all, then we need to do a few things in the surrounding context: 16358 if (Result->getBlockDecl()->hasCaptures()) { 16359 // First, this expression has a new cleanup object. 16360 ExprCleanupObjects.push_back(Result->getBlockDecl()); 16361 Cleanup.setExprNeedsCleanups(true); 16362 16363 // It also gets a branch-protected scope if any of the captured 16364 // variables needs destruction. 16365 for (const auto &CI : Result->getBlockDecl()->captures()) { 16366 const VarDecl *var = CI.getVariable(); 16367 if (var->getType().isDestructedType() != QualType::DK_none) { 16368 setFunctionHasBranchProtectedScope(); 16369 break; 16370 } 16371 } 16372 } 16373 16374 if (getCurFunction()) 16375 getCurFunction()->addBlock(BD); 16376 16377 return Result; 16378 } 16379 16380 ExprResult Sema::ActOnVAArg(SourceLocation BuiltinLoc, Expr *E, ParsedType Ty, 16381 SourceLocation RPLoc) { 16382 TypeSourceInfo *TInfo; 16383 GetTypeFromParser(Ty, &TInfo); 16384 return BuildVAArgExpr(BuiltinLoc, E, TInfo, RPLoc); 16385 } 16386 16387 ExprResult Sema::BuildVAArgExpr(SourceLocation BuiltinLoc, 16388 Expr *E, TypeSourceInfo *TInfo, 16389 SourceLocation RPLoc) { 16390 Expr *OrigExpr = E; 16391 bool IsMS = false; 16392 16393 // CUDA device code does not support varargs. 16394 if (getLangOpts().CUDA && getLangOpts().CUDAIsDevice) { 16395 if (const FunctionDecl *F = dyn_cast<FunctionDecl>(CurContext)) { 16396 CUDAFunctionTarget T = IdentifyCUDATarget(F); 16397 if (T == CFT_Global || T == CFT_Device || T == CFT_HostDevice) 16398 return ExprError(Diag(E->getBeginLoc(), diag::err_va_arg_in_device)); 16399 } 16400 } 16401 16402 // NVPTX does not support va_arg expression. 16403 if (getLangOpts().OpenMP && getLangOpts().OpenMPIsDevice && 16404 Context.getTargetInfo().getTriple().isNVPTX()) 16405 targetDiag(E->getBeginLoc(), diag::err_va_arg_in_device); 16406 16407 // It might be a __builtin_ms_va_list. (But don't ever mark a va_arg() 16408 // as Microsoft ABI on an actual Microsoft platform, where 16409 // __builtin_ms_va_list and __builtin_va_list are the same.) 16410 if (!E->isTypeDependent() && Context.getTargetInfo().hasBuiltinMSVaList() && 16411 Context.getTargetInfo().getBuiltinVaListKind() != TargetInfo::CharPtrBuiltinVaList) { 16412 QualType MSVaListType = Context.getBuiltinMSVaListType(); 16413 if (Context.hasSameType(MSVaListType, E->getType())) { 16414 if (CheckForModifiableLvalue(E, BuiltinLoc, *this)) 16415 return ExprError(); 16416 IsMS = true; 16417 } 16418 } 16419 16420 // Get the va_list type 16421 QualType VaListType = Context.getBuiltinVaListType(); 16422 if (!IsMS) { 16423 if (VaListType->isArrayType()) { 16424 // Deal with implicit array decay; for example, on x86-64, 16425 // va_list is an array, but it's supposed to decay to 16426 // a pointer for va_arg. 16427 VaListType = Context.getArrayDecayedType(VaListType); 16428 // Make sure the input expression also decays appropriately. 16429 ExprResult Result = UsualUnaryConversions(E); 16430 if (Result.isInvalid()) 16431 return ExprError(); 16432 E = Result.get(); 16433 } else if (VaListType->isRecordType() && getLangOpts().CPlusPlus) { 16434 // If va_list is a record type and we are compiling in C++ mode, 16435 // check the argument using reference binding. 16436 InitializedEntity Entity = InitializedEntity::InitializeParameter( 16437 Context, Context.getLValueReferenceType(VaListType), false); 16438 ExprResult Init = PerformCopyInitialization(Entity, SourceLocation(), E); 16439 if (Init.isInvalid()) 16440 return ExprError(); 16441 E = Init.getAs<Expr>(); 16442 } else { 16443 // Otherwise, the va_list argument must be an l-value because 16444 // it is modified by va_arg. 16445 if (!E->isTypeDependent() && 16446 CheckForModifiableLvalue(E, BuiltinLoc, *this)) 16447 return ExprError(); 16448 } 16449 } 16450 16451 if (!IsMS && !E->isTypeDependent() && 16452 !Context.hasSameType(VaListType, E->getType())) 16453 return ExprError( 16454 Diag(E->getBeginLoc(), 16455 diag::err_first_argument_to_va_arg_not_of_type_va_list) 16456 << OrigExpr->getType() << E->getSourceRange()); 16457 16458 if (!TInfo->getType()->isDependentType()) { 16459 if (RequireCompleteType(TInfo->getTypeLoc().getBeginLoc(), TInfo->getType(), 16460 diag::err_second_parameter_to_va_arg_incomplete, 16461 TInfo->getTypeLoc())) 16462 return ExprError(); 16463 16464 if (RequireNonAbstractType(TInfo->getTypeLoc().getBeginLoc(), 16465 TInfo->getType(), 16466 diag::err_second_parameter_to_va_arg_abstract, 16467 TInfo->getTypeLoc())) 16468 return ExprError(); 16469 16470 if (!TInfo->getType().isPODType(Context)) { 16471 Diag(TInfo->getTypeLoc().getBeginLoc(), 16472 TInfo->getType()->isObjCLifetimeType() 16473 ? diag::warn_second_parameter_to_va_arg_ownership_qualified 16474 : diag::warn_second_parameter_to_va_arg_not_pod) 16475 << TInfo->getType() 16476 << TInfo->getTypeLoc().getSourceRange(); 16477 } 16478 16479 // Check for va_arg where arguments of the given type will be promoted 16480 // (i.e. this va_arg is guaranteed to have undefined behavior). 16481 QualType PromoteType; 16482 if (TInfo->getType()->isPromotableIntegerType()) { 16483 PromoteType = Context.getPromotedIntegerType(TInfo->getType()); 16484 // [cstdarg.syn]p1 defers the C++ behavior to what the C standard says, 16485 // and C2x 7.16.1.1p2 says, in part: 16486 // If type is not compatible with the type of the actual next argument 16487 // (as promoted according to the default argument promotions), the 16488 // behavior is undefined, except for the following cases: 16489 // - both types are pointers to qualified or unqualified versions of 16490 // compatible types; 16491 // - one type is a signed integer type, the other type is the 16492 // corresponding unsigned integer type, and the value is 16493 // representable in both types; 16494 // - one type is pointer to qualified or unqualified void and the 16495 // other is a pointer to a qualified or unqualified character type. 16496 // Given that type compatibility is the primary requirement (ignoring 16497 // qualifications), you would think we could call typesAreCompatible() 16498 // directly to test this. However, in C++, that checks for *same type*, 16499 // which causes false positives when passing an enumeration type to 16500 // va_arg. Instead, get the underlying type of the enumeration and pass 16501 // that. 16502 QualType UnderlyingType = TInfo->getType(); 16503 if (const auto *ET = UnderlyingType->getAs<EnumType>()) 16504 UnderlyingType = ET->getDecl()->getIntegerType(); 16505 if (Context.typesAreCompatible(PromoteType, UnderlyingType, 16506 /*CompareUnqualified*/ true)) 16507 PromoteType = QualType(); 16508 16509 // If the types are still not compatible, we need to test whether the 16510 // promoted type and the underlying type are the same except for 16511 // signedness. Ask the AST for the correctly corresponding type and see 16512 // if that's compatible. 16513 if (!PromoteType.isNull() && !UnderlyingType->isBooleanType() && 16514 PromoteType->isUnsignedIntegerType() != 16515 UnderlyingType->isUnsignedIntegerType()) { 16516 UnderlyingType = 16517 UnderlyingType->isUnsignedIntegerType() 16518 ? Context.getCorrespondingSignedType(UnderlyingType) 16519 : Context.getCorrespondingUnsignedType(UnderlyingType); 16520 if (Context.typesAreCompatible(PromoteType, UnderlyingType, 16521 /*CompareUnqualified*/ true)) 16522 PromoteType = QualType(); 16523 } 16524 } 16525 if (TInfo->getType()->isSpecificBuiltinType(BuiltinType::Float)) 16526 PromoteType = Context.DoubleTy; 16527 if (!PromoteType.isNull()) 16528 DiagRuntimeBehavior(TInfo->getTypeLoc().getBeginLoc(), E, 16529 PDiag(diag::warn_second_parameter_to_va_arg_never_compatible) 16530 << TInfo->getType() 16531 << PromoteType 16532 << TInfo->getTypeLoc().getSourceRange()); 16533 } 16534 16535 QualType T = TInfo->getType().getNonLValueExprType(Context); 16536 return new (Context) VAArgExpr(BuiltinLoc, E, TInfo, RPLoc, T, IsMS); 16537 } 16538 16539 ExprResult Sema::ActOnGNUNullExpr(SourceLocation TokenLoc) { 16540 // The type of __null will be int or long, depending on the size of 16541 // pointers on the target. 16542 QualType Ty; 16543 unsigned pw = Context.getTargetInfo().getPointerWidth(0); 16544 if (pw == Context.getTargetInfo().getIntWidth()) 16545 Ty = Context.IntTy; 16546 else if (pw == Context.getTargetInfo().getLongWidth()) 16547 Ty = Context.LongTy; 16548 else if (pw == Context.getTargetInfo().getLongLongWidth()) 16549 Ty = Context.LongLongTy; 16550 else { 16551 llvm_unreachable("I don't know size of pointer!"); 16552 } 16553 16554 return new (Context) GNUNullExpr(Ty, TokenLoc); 16555 } 16556 16557 static CXXRecordDecl *LookupStdSourceLocationImpl(Sema &S, SourceLocation Loc) { 16558 CXXRecordDecl *ImplDecl = nullptr; 16559 16560 // Fetch the std::source_location::__impl decl. 16561 if (NamespaceDecl *Std = S.getStdNamespace()) { 16562 LookupResult ResultSL(S, &S.PP.getIdentifierTable().get("source_location"), 16563 Loc, Sema::LookupOrdinaryName); 16564 if (S.LookupQualifiedName(ResultSL, Std)) { 16565 if (auto *SLDecl = ResultSL.getAsSingle<RecordDecl>()) { 16566 LookupResult ResultImpl(S, &S.PP.getIdentifierTable().get("__impl"), 16567 Loc, Sema::LookupOrdinaryName); 16568 if ((SLDecl->isCompleteDefinition() || SLDecl->isBeingDefined()) && 16569 S.LookupQualifiedName(ResultImpl, SLDecl)) { 16570 ImplDecl = ResultImpl.getAsSingle<CXXRecordDecl>(); 16571 } 16572 } 16573 } 16574 } 16575 16576 if (!ImplDecl || !ImplDecl->isCompleteDefinition()) { 16577 S.Diag(Loc, diag::err_std_source_location_impl_not_found); 16578 return nullptr; 16579 } 16580 16581 // Verify that __impl is a trivial struct type, with no base classes, and with 16582 // only the four expected fields. 16583 if (ImplDecl->isUnion() || !ImplDecl->isStandardLayout() || 16584 ImplDecl->getNumBases() != 0) { 16585 S.Diag(Loc, diag::err_std_source_location_impl_malformed); 16586 return nullptr; 16587 } 16588 16589 unsigned Count = 0; 16590 for (FieldDecl *F : ImplDecl->fields()) { 16591 StringRef Name = F->getName(); 16592 16593 if (Name == "_M_file_name") { 16594 if (F->getType() != 16595 S.Context.getPointerType(S.Context.CharTy.withConst())) 16596 break; 16597 Count++; 16598 } else if (Name == "_M_function_name") { 16599 if (F->getType() != 16600 S.Context.getPointerType(S.Context.CharTy.withConst())) 16601 break; 16602 Count++; 16603 } else if (Name == "_M_line") { 16604 if (!F->getType()->isIntegerType()) 16605 break; 16606 Count++; 16607 } else if (Name == "_M_column") { 16608 if (!F->getType()->isIntegerType()) 16609 break; 16610 Count++; 16611 } else { 16612 Count = 100; // invalid 16613 break; 16614 } 16615 } 16616 if (Count != 4) { 16617 S.Diag(Loc, diag::err_std_source_location_impl_malformed); 16618 return nullptr; 16619 } 16620 16621 return ImplDecl; 16622 } 16623 16624 ExprResult Sema::ActOnSourceLocExpr(SourceLocExpr::IdentKind Kind, 16625 SourceLocation BuiltinLoc, 16626 SourceLocation RPLoc) { 16627 QualType ResultTy; 16628 switch (Kind) { 16629 case SourceLocExpr::File: 16630 case SourceLocExpr::Function: { 16631 QualType ArrTy = Context.getStringLiteralArrayType(Context.CharTy, 0); 16632 ResultTy = 16633 Context.getPointerType(ArrTy->getAsArrayTypeUnsafe()->getElementType()); 16634 break; 16635 } 16636 case SourceLocExpr::Line: 16637 case SourceLocExpr::Column: 16638 ResultTy = Context.UnsignedIntTy; 16639 break; 16640 case SourceLocExpr::SourceLocStruct: 16641 if (!StdSourceLocationImplDecl) { 16642 StdSourceLocationImplDecl = 16643 LookupStdSourceLocationImpl(*this, BuiltinLoc); 16644 if (!StdSourceLocationImplDecl) 16645 return ExprError(); 16646 } 16647 ResultTy = Context.getPointerType( 16648 Context.getRecordType(StdSourceLocationImplDecl).withConst()); 16649 break; 16650 } 16651 16652 return BuildSourceLocExpr(Kind, ResultTy, BuiltinLoc, RPLoc, CurContext); 16653 } 16654 16655 ExprResult Sema::BuildSourceLocExpr(SourceLocExpr::IdentKind Kind, 16656 QualType ResultTy, 16657 SourceLocation BuiltinLoc, 16658 SourceLocation RPLoc, 16659 DeclContext *ParentContext) { 16660 return new (Context) 16661 SourceLocExpr(Context, Kind, ResultTy, BuiltinLoc, RPLoc, ParentContext); 16662 } 16663 16664 bool Sema::CheckConversionToObjCLiteral(QualType DstType, Expr *&Exp, 16665 bool Diagnose) { 16666 if (!getLangOpts().ObjC) 16667 return false; 16668 16669 const ObjCObjectPointerType *PT = DstType->getAs<ObjCObjectPointerType>(); 16670 if (!PT) 16671 return false; 16672 const ObjCInterfaceDecl *ID = PT->getInterfaceDecl(); 16673 16674 // Ignore any parens, implicit casts (should only be 16675 // array-to-pointer decays), and not-so-opaque values. The last is 16676 // important for making this trigger for property assignments. 16677 Expr *SrcExpr = Exp->IgnoreParenImpCasts(); 16678 if (OpaqueValueExpr *OV = dyn_cast<OpaqueValueExpr>(SrcExpr)) 16679 if (OV->getSourceExpr()) 16680 SrcExpr = OV->getSourceExpr()->IgnoreParenImpCasts(); 16681 16682 if (auto *SL = dyn_cast<StringLiteral>(SrcExpr)) { 16683 if (!PT->isObjCIdType() && 16684 !(ID && ID->getIdentifier()->isStr("NSString"))) 16685 return false; 16686 if (!SL->isAscii()) 16687 return false; 16688 16689 if (Diagnose) { 16690 Diag(SL->getBeginLoc(), diag::err_missing_atsign_prefix) 16691 << /*string*/0 << FixItHint::CreateInsertion(SL->getBeginLoc(), "@"); 16692 Exp = BuildObjCStringLiteral(SL->getBeginLoc(), SL).get(); 16693 } 16694 return true; 16695 } 16696 16697 if ((isa<IntegerLiteral>(SrcExpr) || isa<CharacterLiteral>(SrcExpr) || 16698 isa<FloatingLiteral>(SrcExpr) || isa<ObjCBoolLiteralExpr>(SrcExpr) || 16699 isa<CXXBoolLiteralExpr>(SrcExpr)) && 16700 !SrcExpr->isNullPointerConstant( 16701 getASTContext(), Expr::NPC_NeverValueDependent)) { 16702 if (!ID || !ID->getIdentifier()->isStr("NSNumber")) 16703 return false; 16704 if (Diagnose) { 16705 Diag(SrcExpr->getBeginLoc(), diag::err_missing_atsign_prefix) 16706 << /*number*/1 16707 << FixItHint::CreateInsertion(SrcExpr->getBeginLoc(), "@"); 16708 Expr *NumLit = 16709 BuildObjCNumericLiteral(SrcExpr->getBeginLoc(), SrcExpr).get(); 16710 if (NumLit) 16711 Exp = NumLit; 16712 } 16713 return true; 16714 } 16715 16716 return false; 16717 } 16718 16719 static bool maybeDiagnoseAssignmentToFunction(Sema &S, QualType DstType, 16720 const Expr *SrcExpr) { 16721 if (!DstType->isFunctionPointerType() || 16722 !SrcExpr->getType()->isFunctionType()) 16723 return false; 16724 16725 auto *DRE = dyn_cast<DeclRefExpr>(SrcExpr->IgnoreParenImpCasts()); 16726 if (!DRE) 16727 return false; 16728 16729 auto *FD = dyn_cast<FunctionDecl>(DRE->getDecl()); 16730 if (!FD) 16731 return false; 16732 16733 return !S.checkAddressOfFunctionIsAvailable(FD, 16734 /*Complain=*/true, 16735 SrcExpr->getBeginLoc()); 16736 } 16737 16738 bool Sema::DiagnoseAssignmentResult(AssignConvertType ConvTy, 16739 SourceLocation Loc, 16740 QualType DstType, QualType SrcType, 16741 Expr *SrcExpr, AssignmentAction Action, 16742 bool *Complained) { 16743 if (Complained) 16744 *Complained = false; 16745 16746 // Decode the result (notice that AST's are still created for extensions). 16747 bool CheckInferredResultType = false; 16748 bool isInvalid = false; 16749 unsigned DiagKind = 0; 16750 ConversionFixItGenerator ConvHints; 16751 bool MayHaveConvFixit = false; 16752 bool MayHaveFunctionDiff = false; 16753 const ObjCInterfaceDecl *IFace = nullptr; 16754 const ObjCProtocolDecl *PDecl = nullptr; 16755 16756 switch (ConvTy) { 16757 case Compatible: 16758 DiagnoseAssignmentEnum(DstType, SrcType, SrcExpr); 16759 return false; 16760 16761 case PointerToInt: 16762 if (getLangOpts().CPlusPlus) { 16763 DiagKind = diag::err_typecheck_convert_pointer_int; 16764 isInvalid = true; 16765 } else { 16766 DiagKind = diag::ext_typecheck_convert_pointer_int; 16767 } 16768 ConvHints.tryToFixConversion(SrcExpr, SrcType, DstType, *this); 16769 MayHaveConvFixit = true; 16770 break; 16771 case IntToPointer: 16772 if (getLangOpts().CPlusPlus) { 16773 DiagKind = diag::err_typecheck_convert_int_pointer; 16774 isInvalid = true; 16775 } else { 16776 DiagKind = diag::ext_typecheck_convert_int_pointer; 16777 } 16778 ConvHints.tryToFixConversion(SrcExpr, SrcType, DstType, *this); 16779 MayHaveConvFixit = true; 16780 break; 16781 case IncompatibleFunctionPointer: 16782 if (getLangOpts().CPlusPlus) { 16783 DiagKind = diag::err_typecheck_convert_incompatible_function_pointer; 16784 isInvalid = true; 16785 } else { 16786 DiagKind = diag::ext_typecheck_convert_incompatible_function_pointer; 16787 } 16788 ConvHints.tryToFixConversion(SrcExpr, SrcType, DstType, *this); 16789 MayHaveConvFixit = true; 16790 break; 16791 case IncompatiblePointer: 16792 if (Action == AA_Passing_CFAudited) { 16793 DiagKind = diag::err_arc_typecheck_convert_incompatible_pointer; 16794 } else if (getLangOpts().CPlusPlus) { 16795 DiagKind = diag::err_typecheck_convert_incompatible_pointer; 16796 isInvalid = true; 16797 } else { 16798 DiagKind = diag::ext_typecheck_convert_incompatible_pointer; 16799 } 16800 CheckInferredResultType = DstType->isObjCObjectPointerType() && 16801 SrcType->isObjCObjectPointerType(); 16802 if (!CheckInferredResultType) { 16803 ConvHints.tryToFixConversion(SrcExpr, SrcType, DstType, *this); 16804 } else if (CheckInferredResultType) { 16805 SrcType = SrcType.getUnqualifiedType(); 16806 DstType = DstType.getUnqualifiedType(); 16807 } 16808 MayHaveConvFixit = true; 16809 break; 16810 case IncompatiblePointerSign: 16811 if (getLangOpts().CPlusPlus) { 16812 DiagKind = diag::err_typecheck_convert_incompatible_pointer_sign; 16813 isInvalid = true; 16814 } else { 16815 DiagKind = diag::ext_typecheck_convert_incompatible_pointer_sign; 16816 } 16817 break; 16818 case FunctionVoidPointer: 16819 if (getLangOpts().CPlusPlus) { 16820 DiagKind = diag::err_typecheck_convert_pointer_void_func; 16821 isInvalid = true; 16822 } else { 16823 DiagKind = diag::ext_typecheck_convert_pointer_void_func; 16824 } 16825 break; 16826 case IncompatiblePointerDiscardsQualifiers: { 16827 // Perform array-to-pointer decay if necessary. 16828 if (SrcType->isArrayType()) SrcType = Context.getArrayDecayedType(SrcType); 16829 16830 isInvalid = true; 16831 16832 Qualifiers lhq = SrcType->getPointeeType().getQualifiers(); 16833 Qualifiers rhq = DstType->getPointeeType().getQualifiers(); 16834 if (lhq.getAddressSpace() != rhq.getAddressSpace()) { 16835 DiagKind = diag::err_typecheck_incompatible_address_space; 16836 break; 16837 16838 } else if (lhq.getObjCLifetime() != rhq.getObjCLifetime()) { 16839 DiagKind = diag::err_typecheck_incompatible_ownership; 16840 break; 16841 } 16842 16843 llvm_unreachable("unknown error case for discarding qualifiers!"); 16844 // fallthrough 16845 } 16846 case CompatiblePointerDiscardsQualifiers: 16847 // If the qualifiers lost were because we were applying the 16848 // (deprecated) C++ conversion from a string literal to a char* 16849 // (or wchar_t*), then there was no error (C++ 4.2p2). FIXME: 16850 // Ideally, this check would be performed in 16851 // checkPointerTypesForAssignment. However, that would require a 16852 // bit of refactoring (so that the second argument is an 16853 // expression, rather than a type), which should be done as part 16854 // of a larger effort to fix checkPointerTypesForAssignment for 16855 // C++ semantics. 16856 if (getLangOpts().CPlusPlus && 16857 IsStringLiteralToNonConstPointerConversion(SrcExpr, DstType)) 16858 return false; 16859 if (getLangOpts().CPlusPlus) { 16860 DiagKind = diag::err_typecheck_convert_discards_qualifiers; 16861 isInvalid = true; 16862 } else { 16863 DiagKind = diag::ext_typecheck_convert_discards_qualifiers; 16864 } 16865 16866 break; 16867 case IncompatibleNestedPointerQualifiers: 16868 if (getLangOpts().CPlusPlus) { 16869 isInvalid = true; 16870 DiagKind = diag::err_nested_pointer_qualifier_mismatch; 16871 } else { 16872 DiagKind = diag::ext_nested_pointer_qualifier_mismatch; 16873 } 16874 break; 16875 case IncompatibleNestedPointerAddressSpaceMismatch: 16876 DiagKind = diag::err_typecheck_incompatible_nested_address_space; 16877 isInvalid = true; 16878 break; 16879 case IntToBlockPointer: 16880 DiagKind = diag::err_int_to_block_pointer; 16881 isInvalid = true; 16882 break; 16883 case IncompatibleBlockPointer: 16884 DiagKind = diag::err_typecheck_convert_incompatible_block_pointer; 16885 isInvalid = true; 16886 break; 16887 case IncompatibleObjCQualifiedId: { 16888 if (SrcType->isObjCQualifiedIdType()) { 16889 const ObjCObjectPointerType *srcOPT = 16890 SrcType->castAs<ObjCObjectPointerType>(); 16891 for (auto *srcProto : srcOPT->quals()) { 16892 PDecl = srcProto; 16893 break; 16894 } 16895 if (const ObjCInterfaceType *IFaceT = 16896 DstType->castAs<ObjCObjectPointerType>()->getInterfaceType()) 16897 IFace = IFaceT->getDecl(); 16898 } 16899 else if (DstType->isObjCQualifiedIdType()) { 16900 const ObjCObjectPointerType *dstOPT = 16901 DstType->castAs<ObjCObjectPointerType>(); 16902 for (auto *dstProto : dstOPT->quals()) { 16903 PDecl = dstProto; 16904 break; 16905 } 16906 if (const ObjCInterfaceType *IFaceT = 16907 SrcType->castAs<ObjCObjectPointerType>()->getInterfaceType()) 16908 IFace = IFaceT->getDecl(); 16909 } 16910 if (getLangOpts().CPlusPlus) { 16911 DiagKind = diag::err_incompatible_qualified_id; 16912 isInvalid = true; 16913 } else { 16914 DiagKind = diag::warn_incompatible_qualified_id; 16915 } 16916 break; 16917 } 16918 case IncompatibleVectors: 16919 if (getLangOpts().CPlusPlus) { 16920 DiagKind = diag::err_incompatible_vectors; 16921 isInvalid = true; 16922 } else { 16923 DiagKind = diag::warn_incompatible_vectors; 16924 } 16925 break; 16926 case IncompatibleObjCWeakRef: 16927 DiagKind = diag::err_arc_weak_unavailable_assign; 16928 isInvalid = true; 16929 break; 16930 case Incompatible: 16931 if (maybeDiagnoseAssignmentToFunction(*this, DstType, SrcExpr)) { 16932 if (Complained) 16933 *Complained = true; 16934 return true; 16935 } 16936 16937 DiagKind = diag::err_typecheck_convert_incompatible; 16938 ConvHints.tryToFixConversion(SrcExpr, SrcType, DstType, *this); 16939 MayHaveConvFixit = true; 16940 isInvalid = true; 16941 MayHaveFunctionDiff = true; 16942 break; 16943 } 16944 16945 QualType FirstType, SecondType; 16946 switch (Action) { 16947 case AA_Assigning: 16948 case AA_Initializing: 16949 // The destination type comes first. 16950 FirstType = DstType; 16951 SecondType = SrcType; 16952 break; 16953 16954 case AA_Returning: 16955 case AA_Passing: 16956 case AA_Passing_CFAudited: 16957 case AA_Converting: 16958 case AA_Sending: 16959 case AA_Casting: 16960 // The source type comes first. 16961 FirstType = SrcType; 16962 SecondType = DstType; 16963 break; 16964 } 16965 16966 PartialDiagnostic FDiag = PDiag(DiagKind); 16967 AssignmentAction ActionForDiag = Action; 16968 if (Action == AA_Passing_CFAudited) 16969 ActionForDiag = AA_Passing; 16970 16971 FDiag << FirstType << SecondType << ActionForDiag 16972 << SrcExpr->getSourceRange(); 16973 16974 if (DiagKind == diag::ext_typecheck_convert_incompatible_pointer_sign || 16975 DiagKind == diag::err_typecheck_convert_incompatible_pointer_sign) { 16976 auto isPlainChar = [](const clang::Type *Type) { 16977 return Type->isSpecificBuiltinType(BuiltinType::Char_S) || 16978 Type->isSpecificBuiltinType(BuiltinType::Char_U); 16979 }; 16980 FDiag << (isPlainChar(FirstType->getPointeeOrArrayElementType()) || 16981 isPlainChar(SecondType->getPointeeOrArrayElementType())); 16982 } 16983 16984 // If we can fix the conversion, suggest the FixIts. 16985 if (!ConvHints.isNull()) { 16986 for (FixItHint &H : ConvHints.Hints) 16987 FDiag << H; 16988 } 16989 16990 if (MayHaveConvFixit) { FDiag << (unsigned) (ConvHints.Kind); } 16991 16992 if (MayHaveFunctionDiff) 16993 HandleFunctionTypeMismatch(FDiag, SecondType, FirstType); 16994 16995 Diag(Loc, FDiag); 16996 if ((DiagKind == diag::warn_incompatible_qualified_id || 16997 DiagKind == diag::err_incompatible_qualified_id) && 16998 PDecl && IFace && !IFace->hasDefinition()) 16999 Diag(IFace->getLocation(), diag::note_incomplete_class_and_qualified_id) 17000 << IFace << PDecl; 17001 17002 if (SecondType == Context.OverloadTy) 17003 NoteAllOverloadCandidates(OverloadExpr::find(SrcExpr).Expression, 17004 FirstType, /*TakingAddress=*/true); 17005 17006 if (CheckInferredResultType) 17007 EmitRelatedResultTypeNote(SrcExpr); 17008 17009 if (Action == AA_Returning && ConvTy == IncompatiblePointer) 17010 EmitRelatedResultTypeNoteForReturn(DstType); 17011 17012 if (Complained) 17013 *Complained = true; 17014 return isInvalid; 17015 } 17016 17017 ExprResult Sema::VerifyIntegerConstantExpression(Expr *E, 17018 llvm::APSInt *Result, 17019 AllowFoldKind CanFold) { 17020 class SimpleICEDiagnoser : public VerifyICEDiagnoser { 17021 public: 17022 SemaDiagnosticBuilder diagnoseNotICEType(Sema &S, SourceLocation Loc, 17023 QualType T) override { 17024 return S.Diag(Loc, diag::err_ice_not_integral) 17025 << T << S.LangOpts.CPlusPlus; 17026 } 17027 SemaDiagnosticBuilder diagnoseNotICE(Sema &S, SourceLocation Loc) override { 17028 return S.Diag(Loc, diag::err_expr_not_ice) << S.LangOpts.CPlusPlus; 17029 } 17030 } Diagnoser; 17031 17032 return VerifyIntegerConstantExpression(E, Result, Diagnoser, CanFold); 17033 } 17034 17035 ExprResult Sema::VerifyIntegerConstantExpression(Expr *E, 17036 llvm::APSInt *Result, 17037 unsigned DiagID, 17038 AllowFoldKind CanFold) { 17039 class IDDiagnoser : public VerifyICEDiagnoser { 17040 unsigned DiagID; 17041 17042 public: 17043 IDDiagnoser(unsigned DiagID) 17044 : VerifyICEDiagnoser(DiagID == 0), DiagID(DiagID) { } 17045 17046 SemaDiagnosticBuilder diagnoseNotICE(Sema &S, SourceLocation Loc) override { 17047 return S.Diag(Loc, DiagID); 17048 } 17049 } Diagnoser(DiagID); 17050 17051 return VerifyIntegerConstantExpression(E, Result, Diagnoser, CanFold); 17052 } 17053 17054 Sema::SemaDiagnosticBuilder 17055 Sema::VerifyICEDiagnoser::diagnoseNotICEType(Sema &S, SourceLocation Loc, 17056 QualType T) { 17057 return diagnoseNotICE(S, Loc); 17058 } 17059 17060 Sema::SemaDiagnosticBuilder 17061 Sema::VerifyICEDiagnoser::diagnoseFold(Sema &S, SourceLocation Loc) { 17062 return S.Diag(Loc, diag::ext_expr_not_ice) << S.LangOpts.CPlusPlus; 17063 } 17064 17065 ExprResult 17066 Sema::VerifyIntegerConstantExpression(Expr *E, llvm::APSInt *Result, 17067 VerifyICEDiagnoser &Diagnoser, 17068 AllowFoldKind CanFold) { 17069 SourceLocation DiagLoc = E->getBeginLoc(); 17070 17071 if (getLangOpts().CPlusPlus11) { 17072 // C++11 [expr.const]p5: 17073 // If an expression of literal class type is used in a context where an 17074 // integral constant expression is required, then that class type shall 17075 // have a single non-explicit conversion function to an integral or 17076 // unscoped enumeration type 17077 ExprResult Converted; 17078 class CXX11ConvertDiagnoser : public ICEConvertDiagnoser { 17079 VerifyICEDiagnoser &BaseDiagnoser; 17080 public: 17081 CXX11ConvertDiagnoser(VerifyICEDiagnoser &BaseDiagnoser) 17082 : ICEConvertDiagnoser(/*AllowScopedEnumerations*/ false, 17083 BaseDiagnoser.Suppress, true), 17084 BaseDiagnoser(BaseDiagnoser) {} 17085 17086 SemaDiagnosticBuilder diagnoseNotInt(Sema &S, SourceLocation Loc, 17087 QualType T) override { 17088 return BaseDiagnoser.diagnoseNotICEType(S, Loc, T); 17089 } 17090 17091 SemaDiagnosticBuilder diagnoseIncomplete( 17092 Sema &S, SourceLocation Loc, QualType T) override { 17093 return S.Diag(Loc, diag::err_ice_incomplete_type) << T; 17094 } 17095 17096 SemaDiagnosticBuilder diagnoseExplicitConv( 17097 Sema &S, SourceLocation Loc, QualType T, QualType ConvTy) override { 17098 return S.Diag(Loc, diag::err_ice_explicit_conversion) << T << ConvTy; 17099 } 17100 17101 SemaDiagnosticBuilder noteExplicitConv( 17102 Sema &S, CXXConversionDecl *Conv, QualType ConvTy) override { 17103 return S.Diag(Conv->getLocation(), diag::note_ice_conversion_here) 17104 << ConvTy->isEnumeralType() << ConvTy; 17105 } 17106 17107 SemaDiagnosticBuilder diagnoseAmbiguous( 17108 Sema &S, SourceLocation Loc, QualType T) override { 17109 return S.Diag(Loc, diag::err_ice_ambiguous_conversion) << T; 17110 } 17111 17112 SemaDiagnosticBuilder noteAmbiguous( 17113 Sema &S, CXXConversionDecl *Conv, QualType ConvTy) override { 17114 return S.Diag(Conv->getLocation(), diag::note_ice_conversion_here) 17115 << ConvTy->isEnumeralType() << ConvTy; 17116 } 17117 17118 SemaDiagnosticBuilder diagnoseConversion( 17119 Sema &S, SourceLocation Loc, QualType T, QualType ConvTy) override { 17120 llvm_unreachable("conversion functions are permitted"); 17121 } 17122 } ConvertDiagnoser(Diagnoser); 17123 17124 Converted = PerformContextualImplicitConversion(DiagLoc, E, 17125 ConvertDiagnoser); 17126 if (Converted.isInvalid()) 17127 return Converted; 17128 E = Converted.get(); 17129 if (!E->getType()->isIntegralOrUnscopedEnumerationType()) 17130 return ExprError(); 17131 } else if (!E->getType()->isIntegralOrUnscopedEnumerationType()) { 17132 // An ICE must be of integral or unscoped enumeration type. 17133 if (!Diagnoser.Suppress) 17134 Diagnoser.diagnoseNotICEType(*this, DiagLoc, E->getType()) 17135 << E->getSourceRange(); 17136 return ExprError(); 17137 } 17138 17139 ExprResult RValueExpr = DefaultLvalueConversion(E); 17140 if (RValueExpr.isInvalid()) 17141 return ExprError(); 17142 17143 E = RValueExpr.get(); 17144 17145 // Circumvent ICE checking in C++11 to avoid evaluating the expression twice 17146 // in the non-ICE case. 17147 if (!getLangOpts().CPlusPlus11 && E->isIntegerConstantExpr(Context)) { 17148 if (Result) 17149 *Result = E->EvaluateKnownConstIntCheckOverflow(Context); 17150 if (!isa<ConstantExpr>(E)) 17151 E = Result ? ConstantExpr::Create(Context, E, APValue(*Result)) 17152 : ConstantExpr::Create(Context, E); 17153 return E; 17154 } 17155 17156 Expr::EvalResult EvalResult; 17157 SmallVector<PartialDiagnosticAt, 8> Notes; 17158 EvalResult.Diag = &Notes; 17159 17160 // Try to evaluate the expression, and produce diagnostics explaining why it's 17161 // not a constant expression as a side-effect. 17162 bool Folded = 17163 E->EvaluateAsRValue(EvalResult, Context, /*isConstantContext*/ true) && 17164 EvalResult.Val.isInt() && !EvalResult.HasSideEffects; 17165 17166 if (!isa<ConstantExpr>(E)) 17167 E = ConstantExpr::Create(Context, E, EvalResult.Val); 17168 17169 // In C++11, we can rely on diagnostics being produced for any expression 17170 // which is not a constant expression. If no diagnostics were produced, then 17171 // this is a constant expression. 17172 if (Folded && getLangOpts().CPlusPlus11 && Notes.empty()) { 17173 if (Result) 17174 *Result = EvalResult.Val.getInt(); 17175 return E; 17176 } 17177 17178 // If our only note is the usual "invalid subexpression" note, just point 17179 // the caret at its location rather than producing an essentially 17180 // redundant note. 17181 if (Notes.size() == 1 && Notes[0].second.getDiagID() == 17182 diag::note_invalid_subexpr_in_const_expr) { 17183 DiagLoc = Notes[0].first; 17184 Notes.clear(); 17185 } 17186 17187 if (!Folded || !CanFold) { 17188 if (!Diagnoser.Suppress) { 17189 Diagnoser.diagnoseNotICE(*this, DiagLoc) << E->getSourceRange(); 17190 for (const PartialDiagnosticAt &Note : Notes) 17191 Diag(Note.first, Note.second); 17192 } 17193 17194 return ExprError(); 17195 } 17196 17197 Diagnoser.diagnoseFold(*this, DiagLoc) << E->getSourceRange(); 17198 for (const PartialDiagnosticAt &Note : Notes) 17199 Diag(Note.first, Note.second); 17200 17201 if (Result) 17202 *Result = EvalResult.Val.getInt(); 17203 return E; 17204 } 17205 17206 namespace { 17207 // Handle the case where we conclude a expression which we speculatively 17208 // considered to be unevaluated is actually evaluated. 17209 class TransformToPE : public TreeTransform<TransformToPE> { 17210 typedef TreeTransform<TransformToPE> BaseTransform; 17211 17212 public: 17213 TransformToPE(Sema &SemaRef) : BaseTransform(SemaRef) { } 17214 17215 // Make sure we redo semantic analysis 17216 bool AlwaysRebuild() { return true; } 17217 bool ReplacingOriginal() { return true; } 17218 17219 // We need to special-case DeclRefExprs referring to FieldDecls which 17220 // are not part of a member pointer formation; normal TreeTransforming 17221 // doesn't catch this case because of the way we represent them in the AST. 17222 // FIXME: This is a bit ugly; is it really the best way to handle this 17223 // case? 17224 // 17225 // Error on DeclRefExprs referring to FieldDecls. 17226 ExprResult TransformDeclRefExpr(DeclRefExpr *E) { 17227 if (isa<FieldDecl>(E->getDecl()) && 17228 !SemaRef.isUnevaluatedContext()) 17229 return SemaRef.Diag(E->getLocation(), 17230 diag::err_invalid_non_static_member_use) 17231 << E->getDecl() << E->getSourceRange(); 17232 17233 return BaseTransform::TransformDeclRefExpr(E); 17234 } 17235 17236 // Exception: filter out member pointer formation 17237 ExprResult TransformUnaryOperator(UnaryOperator *E) { 17238 if (E->getOpcode() == UO_AddrOf && E->getType()->isMemberPointerType()) 17239 return E; 17240 17241 return BaseTransform::TransformUnaryOperator(E); 17242 } 17243 17244 // The body of a lambda-expression is in a separate expression evaluation 17245 // context so never needs to be transformed. 17246 // FIXME: Ideally we wouldn't transform the closure type either, and would 17247 // just recreate the capture expressions and lambda expression. 17248 StmtResult TransformLambdaBody(LambdaExpr *E, Stmt *Body) { 17249 return SkipLambdaBody(E, Body); 17250 } 17251 }; 17252 } 17253 17254 ExprResult Sema::TransformToPotentiallyEvaluated(Expr *E) { 17255 assert(isUnevaluatedContext() && 17256 "Should only transform unevaluated expressions"); 17257 ExprEvalContexts.back().Context = 17258 ExprEvalContexts[ExprEvalContexts.size()-2].Context; 17259 if (isUnevaluatedContext()) 17260 return E; 17261 return TransformToPE(*this).TransformExpr(E); 17262 } 17263 17264 TypeSourceInfo *Sema::TransformToPotentiallyEvaluated(TypeSourceInfo *TInfo) { 17265 assert(isUnevaluatedContext() && 17266 "Should only transform unevaluated expressions"); 17267 ExprEvalContexts.back().Context = 17268 ExprEvalContexts[ExprEvalContexts.size() - 2].Context; 17269 if (isUnevaluatedContext()) 17270 return TInfo; 17271 return TransformToPE(*this).TransformType(TInfo); 17272 } 17273 17274 void 17275 Sema::PushExpressionEvaluationContext( 17276 ExpressionEvaluationContext NewContext, Decl *LambdaContextDecl, 17277 ExpressionEvaluationContextRecord::ExpressionKind ExprContext) { 17278 ExprEvalContexts.emplace_back(NewContext, ExprCleanupObjects.size(), Cleanup, 17279 LambdaContextDecl, ExprContext); 17280 17281 // Discarded statements and immediate contexts nested in other 17282 // discarded statements or immediate context are themselves 17283 // a discarded statement or an immediate context, respectively. 17284 ExprEvalContexts.back().InDiscardedStatement = 17285 ExprEvalContexts[ExprEvalContexts.size() - 2] 17286 .isDiscardedStatementContext(); 17287 ExprEvalContexts.back().InImmediateFunctionContext = 17288 ExprEvalContexts[ExprEvalContexts.size() - 2] 17289 .isImmediateFunctionContext(); 17290 17291 Cleanup.reset(); 17292 if (!MaybeODRUseExprs.empty()) 17293 std::swap(MaybeODRUseExprs, ExprEvalContexts.back().SavedMaybeODRUseExprs); 17294 } 17295 17296 void 17297 Sema::PushExpressionEvaluationContext( 17298 ExpressionEvaluationContext NewContext, ReuseLambdaContextDecl_t, 17299 ExpressionEvaluationContextRecord::ExpressionKind ExprContext) { 17300 Decl *ClosureContextDecl = ExprEvalContexts.back().ManglingContextDecl; 17301 PushExpressionEvaluationContext(NewContext, ClosureContextDecl, ExprContext); 17302 } 17303 17304 namespace { 17305 17306 const DeclRefExpr *CheckPossibleDeref(Sema &S, const Expr *PossibleDeref) { 17307 PossibleDeref = PossibleDeref->IgnoreParenImpCasts(); 17308 if (const auto *E = dyn_cast<UnaryOperator>(PossibleDeref)) { 17309 if (E->getOpcode() == UO_Deref) 17310 return CheckPossibleDeref(S, E->getSubExpr()); 17311 } else if (const auto *E = dyn_cast<ArraySubscriptExpr>(PossibleDeref)) { 17312 return CheckPossibleDeref(S, E->getBase()); 17313 } else if (const auto *E = dyn_cast<MemberExpr>(PossibleDeref)) { 17314 return CheckPossibleDeref(S, E->getBase()); 17315 } else if (const auto E = dyn_cast<DeclRefExpr>(PossibleDeref)) { 17316 QualType Inner; 17317 QualType Ty = E->getType(); 17318 if (const auto *Ptr = Ty->getAs<PointerType>()) 17319 Inner = Ptr->getPointeeType(); 17320 else if (const auto *Arr = S.Context.getAsArrayType(Ty)) 17321 Inner = Arr->getElementType(); 17322 else 17323 return nullptr; 17324 17325 if (Inner->hasAttr(attr::NoDeref)) 17326 return E; 17327 } 17328 return nullptr; 17329 } 17330 17331 } // namespace 17332 17333 void Sema::WarnOnPendingNoDerefs(ExpressionEvaluationContextRecord &Rec) { 17334 for (const Expr *E : Rec.PossibleDerefs) { 17335 const DeclRefExpr *DeclRef = CheckPossibleDeref(*this, E); 17336 if (DeclRef) { 17337 const ValueDecl *Decl = DeclRef->getDecl(); 17338 Diag(E->getExprLoc(), diag::warn_dereference_of_noderef_type) 17339 << Decl->getName() << E->getSourceRange(); 17340 Diag(Decl->getLocation(), diag::note_previous_decl) << Decl->getName(); 17341 } else { 17342 Diag(E->getExprLoc(), diag::warn_dereference_of_noderef_type_no_decl) 17343 << E->getSourceRange(); 17344 } 17345 } 17346 Rec.PossibleDerefs.clear(); 17347 } 17348 17349 /// Check whether E, which is either a discarded-value expression or an 17350 /// unevaluated operand, is a simple-assignment to a volatlie-qualified lvalue, 17351 /// and if so, remove it from the list of volatile-qualified assignments that 17352 /// we are going to warn are deprecated. 17353 void Sema::CheckUnusedVolatileAssignment(Expr *E) { 17354 if (!E->getType().isVolatileQualified() || !getLangOpts().CPlusPlus20) 17355 return; 17356 17357 // Note: ignoring parens here is not justified by the standard rules, but 17358 // ignoring parentheses seems like a more reasonable approach, and this only 17359 // drives a deprecation warning so doesn't affect conformance. 17360 if (auto *BO = dyn_cast<BinaryOperator>(E->IgnoreParenImpCasts())) { 17361 if (BO->getOpcode() == BO_Assign) { 17362 auto &LHSs = ExprEvalContexts.back().VolatileAssignmentLHSs; 17363 llvm::erase_value(LHSs, BO->getLHS()); 17364 } 17365 } 17366 } 17367 17368 ExprResult Sema::CheckForImmediateInvocation(ExprResult E, FunctionDecl *Decl) { 17369 if (isUnevaluatedContext() || !E.isUsable() || !Decl || 17370 !Decl->isConsteval() || isConstantEvaluated() || 17371 RebuildingImmediateInvocation || isImmediateFunctionContext()) 17372 return E; 17373 17374 /// Opportunistically remove the callee from ReferencesToConsteval if we can. 17375 /// It's OK if this fails; we'll also remove this in 17376 /// HandleImmediateInvocations, but catching it here allows us to avoid 17377 /// walking the AST looking for it in simple cases. 17378 if (auto *Call = dyn_cast<CallExpr>(E.get()->IgnoreImplicit())) 17379 if (auto *DeclRef = 17380 dyn_cast<DeclRefExpr>(Call->getCallee()->IgnoreImplicit())) 17381 ExprEvalContexts.back().ReferenceToConsteval.erase(DeclRef); 17382 17383 E = MaybeCreateExprWithCleanups(E); 17384 17385 ConstantExpr *Res = ConstantExpr::Create( 17386 getASTContext(), E.get(), 17387 ConstantExpr::getStorageKind(Decl->getReturnType().getTypePtr(), 17388 getASTContext()), 17389 /*IsImmediateInvocation*/ true); 17390 /// Value-dependent constant expressions should not be immediately 17391 /// evaluated until they are instantiated. 17392 if (!Res->isValueDependent()) 17393 ExprEvalContexts.back().ImmediateInvocationCandidates.emplace_back(Res, 0); 17394 return Res; 17395 } 17396 17397 static void EvaluateAndDiagnoseImmediateInvocation( 17398 Sema &SemaRef, Sema::ImmediateInvocationCandidate Candidate) { 17399 llvm::SmallVector<PartialDiagnosticAt, 8> Notes; 17400 Expr::EvalResult Eval; 17401 Eval.Diag = &Notes; 17402 ConstantExpr *CE = Candidate.getPointer(); 17403 bool Result = CE->EvaluateAsConstantExpr( 17404 Eval, SemaRef.getASTContext(), ConstantExprKind::ImmediateInvocation); 17405 if (!Result || !Notes.empty()) { 17406 Expr *InnerExpr = CE->getSubExpr()->IgnoreImplicit(); 17407 if (auto *FunctionalCast = dyn_cast<CXXFunctionalCastExpr>(InnerExpr)) 17408 InnerExpr = FunctionalCast->getSubExpr(); 17409 FunctionDecl *FD = nullptr; 17410 if (auto *Call = dyn_cast<CallExpr>(InnerExpr)) 17411 FD = cast<FunctionDecl>(Call->getCalleeDecl()); 17412 else if (auto *Call = dyn_cast<CXXConstructExpr>(InnerExpr)) 17413 FD = Call->getConstructor(); 17414 else 17415 llvm_unreachable("unhandled decl kind"); 17416 assert(FD->isConsteval()); 17417 SemaRef.Diag(CE->getBeginLoc(), diag::err_invalid_consteval_call) << FD; 17418 for (auto &Note : Notes) 17419 SemaRef.Diag(Note.first, Note.second); 17420 return; 17421 } 17422 CE->MoveIntoResult(Eval.Val, SemaRef.getASTContext()); 17423 } 17424 17425 static void RemoveNestedImmediateInvocation( 17426 Sema &SemaRef, Sema::ExpressionEvaluationContextRecord &Rec, 17427 SmallVector<Sema::ImmediateInvocationCandidate, 4>::reverse_iterator It) { 17428 struct ComplexRemove : TreeTransform<ComplexRemove> { 17429 using Base = TreeTransform<ComplexRemove>; 17430 llvm::SmallPtrSetImpl<DeclRefExpr *> &DRSet; 17431 SmallVector<Sema::ImmediateInvocationCandidate, 4> &IISet; 17432 SmallVector<Sema::ImmediateInvocationCandidate, 4>::reverse_iterator 17433 CurrentII; 17434 ComplexRemove(Sema &SemaRef, llvm::SmallPtrSetImpl<DeclRefExpr *> &DR, 17435 SmallVector<Sema::ImmediateInvocationCandidate, 4> &II, 17436 SmallVector<Sema::ImmediateInvocationCandidate, 17437 4>::reverse_iterator Current) 17438 : Base(SemaRef), DRSet(DR), IISet(II), CurrentII(Current) {} 17439 void RemoveImmediateInvocation(ConstantExpr* E) { 17440 auto It = std::find_if(CurrentII, IISet.rend(), 17441 [E](Sema::ImmediateInvocationCandidate Elem) { 17442 return Elem.getPointer() == E; 17443 }); 17444 assert(It != IISet.rend() && 17445 "ConstantExpr marked IsImmediateInvocation should " 17446 "be present"); 17447 It->setInt(1); // Mark as deleted 17448 } 17449 ExprResult TransformConstantExpr(ConstantExpr *E) { 17450 if (!E->isImmediateInvocation()) 17451 return Base::TransformConstantExpr(E); 17452 RemoveImmediateInvocation(E); 17453 return Base::TransformExpr(E->getSubExpr()); 17454 } 17455 /// Base::TransfromCXXOperatorCallExpr doesn't traverse the callee so 17456 /// we need to remove its DeclRefExpr from the DRSet. 17457 ExprResult TransformCXXOperatorCallExpr(CXXOperatorCallExpr *E) { 17458 DRSet.erase(cast<DeclRefExpr>(E->getCallee()->IgnoreImplicit())); 17459 return Base::TransformCXXOperatorCallExpr(E); 17460 } 17461 /// Base::TransformInitializer skip ConstantExpr so we need to visit them 17462 /// here. 17463 ExprResult TransformInitializer(Expr *Init, bool NotCopyInit) { 17464 if (!Init) 17465 return Init; 17466 /// ConstantExpr are the first layer of implicit node to be removed so if 17467 /// Init isn't a ConstantExpr, no ConstantExpr will be skipped. 17468 if (auto *CE = dyn_cast<ConstantExpr>(Init)) 17469 if (CE->isImmediateInvocation()) 17470 RemoveImmediateInvocation(CE); 17471 return Base::TransformInitializer(Init, NotCopyInit); 17472 } 17473 ExprResult TransformDeclRefExpr(DeclRefExpr *E) { 17474 DRSet.erase(E); 17475 return E; 17476 } 17477 bool AlwaysRebuild() { return false; } 17478 bool ReplacingOriginal() { return true; } 17479 bool AllowSkippingCXXConstructExpr() { 17480 bool Res = AllowSkippingFirstCXXConstructExpr; 17481 AllowSkippingFirstCXXConstructExpr = true; 17482 return Res; 17483 } 17484 bool AllowSkippingFirstCXXConstructExpr = true; 17485 } Transformer(SemaRef, Rec.ReferenceToConsteval, 17486 Rec.ImmediateInvocationCandidates, It); 17487 17488 /// CXXConstructExpr with a single argument are getting skipped by 17489 /// TreeTransform in some situtation because they could be implicit. This 17490 /// can only occur for the top-level CXXConstructExpr because it is used 17491 /// nowhere in the expression being transformed therefore will not be rebuilt. 17492 /// Setting AllowSkippingFirstCXXConstructExpr to false will prevent from 17493 /// skipping the first CXXConstructExpr. 17494 if (isa<CXXConstructExpr>(It->getPointer()->IgnoreImplicit())) 17495 Transformer.AllowSkippingFirstCXXConstructExpr = false; 17496 17497 ExprResult Res = Transformer.TransformExpr(It->getPointer()->getSubExpr()); 17498 assert(Res.isUsable()); 17499 Res = SemaRef.MaybeCreateExprWithCleanups(Res); 17500 It->getPointer()->setSubExpr(Res.get()); 17501 } 17502 17503 static void 17504 HandleImmediateInvocations(Sema &SemaRef, 17505 Sema::ExpressionEvaluationContextRecord &Rec) { 17506 if ((Rec.ImmediateInvocationCandidates.size() == 0 && 17507 Rec.ReferenceToConsteval.size() == 0) || 17508 SemaRef.RebuildingImmediateInvocation) 17509 return; 17510 17511 /// When we have more then 1 ImmediateInvocationCandidates we need to check 17512 /// for nested ImmediateInvocationCandidates. when we have only 1 we only 17513 /// need to remove ReferenceToConsteval in the immediate invocation. 17514 if (Rec.ImmediateInvocationCandidates.size() > 1) { 17515 17516 /// Prevent sema calls during the tree transform from adding pointers that 17517 /// are already in the sets. 17518 llvm::SaveAndRestore<bool> DisableIITracking( 17519 SemaRef.RebuildingImmediateInvocation, true); 17520 17521 /// Prevent diagnostic during tree transfrom as they are duplicates 17522 Sema::TentativeAnalysisScope DisableDiag(SemaRef); 17523 17524 for (auto It = Rec.ImmediateInvocationCandidates.rbegin(); 17525 It != Rec.ImmediateInvocationCandidates.rend(); It++) 17526 if (!It->getInt()) 17527 RemoveNestedImmediateInvocation(SemaRef, Rec, It); 17528 } else if (Rec.ImmediateInvocationCandidates.size() == 1 && 17529 Rec.ReferenceToConsteval.size()) { 17530 struct SimpleRemove : RecursiveASTVisitor<SimpleRemove> { 17531 llvm::SmallPtrSetImpl<DeclRefExpr *> &DRSet; 17532 SimpleRemove(llvm::SmallPtrSetImpl<DeclRefExpr *> &S) : DRSet(S) {} 17533 bool VisitDeclRefExpr(DeclRefExpr *E) { 17534 DRSet.erase(E); 17535 return DRSet.size(); 17536 } 17537 } Visitor(Rec.ReferenceToConsteval); 17538 Visitor.TraverseStmt( 17539 Rec.ImmediateInvocationCandidates.front().getPointer()->getSubExpr()); 17540 } 17541 for (auto CE : Rec.ImmediateInvocationCandidates) 17542 if (!CE.getInt()) 17543 EvaluateAndDiagnoseImmediateInvocation(SemaRef, CE); 17544 for (auto DR : Rec.ReferenceToConsteval) { 17545 auto *FD = cast<FunctionDecl>(DR->getDecl()); 17546 SemaRef.Diag(DR->getBeginLoc(), diag::err_invalid_consteval_take_address) 17547 << FD; 17548 SemaRef.Diag(FD->getLocation(), diag::note_declared_at); 17549 } 17550 } 17551 17552 void Sema::PopExpressionEvaluationContext() { 17553 ExpressionEvaluationContextRecord& Rec = ExprEvalContexts.back(); 17554 unsigned NumTypos = Rec.NumTypos; 17555 17556 if (!Rec.Lambdas.empty()) { 17557 using ExpressionKind = ExpressionEvaluationContextRecord::ExpressionKind; 17558 if (!getLangOpts().CPlusPlus20 && 17559 (Rec.ExprContext == ExpressionKind::EK_TemplateArgument || 17560 Rec.isUnevaluated() || 17561 (Rec.isConstantEvaluated() && !getLangOpts().CPlusPlus17))) { 17562 unsigned D; 17563 if (Rec.isUnevaluated()) { 17564 // C++11 [expr.prim.lambda]p2: 17565 // A lambda-expression shall not appear in an unevaluated operand 17566 // (Clause 5). 17567 D = diag::err_lambda_unevaluated_operand; 17568 } else if (Rec.isConstantEvaluated() && !getLangOpts().CPlusPlus17) { 17569 // C++1y [expr.const]p2: 17570 // A conditional-expression e is a core constant expression unless the 17571 // evaluation of e, following the rules of the abstract machine, would 17572 // evaluate [...] a lambda-expression. 17573 D = diag::err_lambda_in_constant_expression; 17574 } else if (Rec.ExprContext == ExpressionKind::EK_TemplateArgument) { 17575 // C++17 [expr.prim.lamda]p2: 17576 // A lambda-expression shall not appear [...] in a template-argument. 17577 D = diag::err_lambda_in_invalid_context; 17578 } else 17579 llvm_unreachable("Couldn't infer lambda error message."); 17580 17581 for (const auto *L : Rec.Lambdas) 17582 Diag(L->getBeginLoc(), D); 17583 } 17584 } 17585 17586 WarnOnPendingNoDerefs(Rec); 17587 HandleImmediateInvocations(*this, Rec); 17588 17589 // Warn on any volatile-qualified simple-assignments that are not discarded- 17590 // value expressions nor unevaluated operands (those cases get removed from 17591 // this list by CheckUnusedVolatileAssignment). 17592 for (auto *BO : Rec.VolatileAssignmentLHSs) 17593 Diag(BO->getBeginLoc(), diag::warn_deprecated_simple_assign_volatile) 17594 << BO->getType(); 17595 17596 // When are coming out of an unevaluated context, clear out any 17597 // temporaries that we may have created as part of the evaluation of 17598 // the expression in that context: they aren't relevant because they 17599 // will never be constructed. 17600 if (Rec.isUnevaluated() || Rec.isConstantEvaluated()) { 17601 ExprCleanupObjects.erase(ExprCleanupObjects.begin() + Rec.NumCleanupObjects, 17602 ExprCleanupObjects.end()); 17603 Cleanup = Rec.ParentCleanup; 17604 CleanupVarDeclMarking(); 17605 std::swap(MaybeODRUseExprs, Rec.SavedMaybeODRUseExprs); 17606 // Otherwise, merge the contexts together. 17607 } else { 17608 Cleanup.mergeFrom(Rec.ParentCleanup); 17609 MaybeODRUseExprs.insert(Rec.SavedMaybeODRUseExprs.begin(), 17610 Rec.SavedMaybeODRUseExprs.end()); 17611 } 17612 17613 // Pop the current expression evaluation context off the stack. 17614 ExprEvalContexts.pop_back(); 17615 17616 // The global expression evaluation context record is never popped. 17617 ExprEvalContexts.back().NumTypos += NumTypos; 17618 } 17619 17620 void Sema::DiscardCleanupsInEvaluationContext() { 17621 ExprCleanupObjects.erase( 17622 ExprCleanupObjects.begin() + ExprEvalContexts.back().NumCleanupObjects, 17623 ExprCleanupObjects.end()); 17624 Cleanup.reset(); 17625 MaybeODRUseExprs.clear(); 17626 } 17627 17628 ExprResult Sema::HandleExprEvaluationContextForTypeof(Expr *E) { 17629 ExprResult Result = CheckPlaceholderExpr(E); 17630 if (Result.isInvalid()) 17631 return ExprError(); 17632 E = Result.get(); 17633 if (!E->getType()->isVariablyModifiedType()) 17634 return E; 17635 return TransformToPotentiallyEvaluated(E); 17636 } 17637 17638 /// Are we in a context that is potentially constant evaluated per C++20 17639 /// [expr.const]p12? 17640 static bool isPotentiallyConstantEvaluatedContext(Sema &SemaRef) { 17641 /// C++2a [expr.const]p12: 17642 // An expression or conversion is potentially constant evaluated if it is 17643 switch (SemaRef.ExprEvalContexts.back().Context) { 17644 case Sema::ExpressionEvaluationContext::ConstantEvaluated: 17645 case Sema::ExpressionEvaluationContext::ImmediateFunctionContext: 17646 17647 // -- a manifestly constant-evaluated expression, 17648 case Sema::ExpressionEvaluationContext::PotentiallyEvaluated: 17649 case Sema::ExpressionEvaluationContext::PotentiallyEvaluatedIfUsed: 17650 case Sema::ExpressionEvaluationContext::DiscardedStatement: 17651 // -- a potentially-evaluated expression, 17652 case Sema::ExpressionEvaluationContext::UnevaluatedList: 17653 // -- an immediate subexpression of a braced-init-list, 17654 17655 // -- [FIXME] an expression of the form & cast-expression that occurs 17656 // within a templated entity 17657 // -- a subexpression of one of the above that is not a subexpression of 17658 // a nested unevaluated operand. 17659 return true; 17660 17661 case Sema::ExpressionEvaluationContext::Unevaluated: 17662 case Sema::ExpressionEvaluationContext::UnevaluatedAbstract: 17663 // Expressions in this context are never evaluated. 17664 return false; 17665 } 17666 llvm_unreachable("Invalid context"); 17667 } 17668 17669 /// Return true if this function has a calling convention that requires mangling 17670 /// in the size of the parameter pack. 17671 static bool funcHasParameterSizeMangling(Sema &S, FunctionDecl *FD) { 17672 // These manglings don't do anything on non-Windows or non-x86 platforms, so 17673 // we don't need parameter type sizes. 17674 const llvm::Triple &TT = S.Context.getTargetInfo().getTriple(); 17675 if (!TT.isOSWindows() || !TT.isX86()) 17676 return false; 17677 17678 // If this is C++ and this isn't an extern "C" function, parameters do not 17679 // need to be complete. In this case, C++ mangling will apply, which doesn't 17680 // use the size of the parameters. 17681 if (S.getLangOpts().CPlusPlus && !FD->isExternC()) 17682 return false; 17683 17684 // Stdcall, fastcall, and vectorcall need this special treatment. 17685 CallingConv CC = FD->getType()->castAs<FunctionType>()->getCallConv(); 17686 switch (CC) { 17687 case CC_X86StdCall: 17688 case CC_X86FastCall: 17689 case CC_X86VectorCall: 17690 return true; 17691 default: 17692 break; 17693 } 17694 return false; 17695 } 17696 17697 /// Require that all of the parameter types of function be complete. Normally, 17698 /// parameter types are only required to be complete when a function is called 17699 /// or defined, but to mangle functions with certain calling conventions, the 17700 /// mangler needs to know the size of the parameter list. In this situation, 17701 /// MSVC doesn't emit an error or instantiate templates. Instead, MSVC mangles 17702 /// the function as _foo@0, i.e. zero bytes of parameters, which will usually 17703 /// result in a linker error. Clang doesn't implement this behavior, and instead 17704 /// attempts to error at compile time. 17705 static void CheckCompleteParameterTypesForMangler(Sema &S, FunctionDecl *FD, 17706 SourceLocation Loc) { 17707 class ParamIncompleteTypeDiagnoser : public Sema::TypeDiagnoser { 17708 FunctionDecl *FD; 17709 ParmVarDecl *Param; 17710 17711 public: 17712 ParamIncompleteTypeDiagnoser(FunctionDecl *FD, ParmVarDecl *Param) 17713 : FD(FD), Param(Param) {} 17714 17715 void diagnose(Sema &S, SourceLocation Loc, QualType T) override { 17716 CallingConv CC = FD->getType()->castAs<FunctionType>()->getCallConv(); 17717 StringRef CCName; 17718 switch (CC) { 17719 case CC_X86StdCall: 17720 CCName = "stdcall"; 17721 break; 17722 case CC_X86FastCall: 17723 CCName = "fastcall"; 17724 break; 17725 case CC_X86VectorCall: 17726 CCName = "vectorcall"; 17727 break; 17728 default: 17729 llvm_unreachable("CC does not need mangling"); 17730 } 17731 17732 S.Diag(Loc, diag::err_cconv_incomplete_param_type) 17733 << Param->getDeclName() << FD->getDeclName() << CCName; 17734 } 17735 }; 17736 17737 for (ParmVarDecl *Param : FD->parameters()) { 17738 ParamIncompleteTypeDiagnoser Diagnoser(FD, Param); 17739 S.RequireCompleteType(Loc, Param->getType(), Diagnoser); 17740 } 17741 } 17742 17743 namespace { 17744 enum class OdrUseContext { 17745 /// Declarations in this context are not odr-used. 17746 None, 17747 /// Declarations in this context are formally odr-used, but this is a 17748 /// dependent context. 17749 Dependent, 17750 /// Declarations in this context are odr-used but not actually used (yet). 17751 FormallyOdrUsed, 17752 /// Declarations in this context are used. 17753 Used 17754 }; 17755 } 17756 17757 /// Are we within a context in which references to resolved functions or to 17758 /// variables result in odr-use? 17759 static OdrUseContext isOdrUseContext(Sema &SemaRef) { 17760 OdrUseContext Result; 17761 17762 switch (SemaRef.ExprEvalContexts.back().Context) { 17763 case Sema::ExpressionEvaluationContext::Unevaluated: 17764 case Sema::ExpressionEvaluationContext::UnevaluatedList: 17765 case Sema::ExpressionEvaluationContext::UnevaluatedAbstract: 17766 return OdrUseContext::None; 17767 17768 case Sema::ExpressionEvaluationContext::ConstantEvaluated: 17769 case Sema::ExpressionEvaluationContext::ImmediateFunctionContext: 17770 case Sema::ExpressionEvaluationContext::PotentiallyEvaluated: 17771 Result = OdrUseContext::Used; 17772 break; 17773 17774 case Sema::ExpressionEvaluationContext::DiscardedStatement: 17775 Result = OdrUseContext::FormallyOdrUsed; 17776 break; 17777 17778 case Sema::ExpressionEvaluationContext::PotentiallyEvaluatedIfUsed: 17779 // A default argument formally results in odr-use, but doesn't actually 17780 // result in a use in any real sense until it itself is used. 17781 Result = OdrUseContext::FormallyOdrUsed; 17782 break; 17783 } 17784 17785 if (SemaRef.CurContext->isDependentContext()) 17786 return OdrUseContext::Dependent; 17787 17788 return Result; 17789 } 17790 17791 static bool isImplicitlyDefinableConstexprFunction(FunctionDecl *Func) { 17792 if (!Func->isConstexpr()) 17793 return false; 17794 17795 if (Func->isImplicitlyInstantiable() || !Func->isUserProvided()) 17796 return true; 17797 auto *CCD = dyn_cast<CXXConstructorDecl>(Func); 17798 return CCD && CCD->getInheritedConstructor(); 17799 } 17800 17801 /// Mark a function referenced, and check whether it is odr-used 17802 /// (C++ [basic.def.odr]p2, C99 6.9p3) 17803 void Sema::MarkFunctionReferenced(SourceLocation Loc, FunctionDecl *Func, 17804 bool MightBeOdrUse) { 17805 assert(Func && "No function?"); 17806 17807 Func->setReferenced(); 17808 17809 // Recursive functions aren't really used until they're used from some other 17810 // context. 17811 bool IsRecursiveCall = CurContext == Func; 17812 17813 // C++11 [basic.def.odr]p3: 17814 // A function whose name appears as a potentially-evaluated expression is 17815 // odr-used if it is the unique lookup result or the selected member of a 17816 // set of overloaded functions [...]. 17817 // 17818 // We (incorrectly) mark overload resolution as an unevaluated context, so we 17819 // can just check that here. 17820 OdrUseContext OdrUse = 17821 MightBeOdrUse ? isOdrUseContext(*this) : OdrUseContext::None; 17822 if (IsRecursiveCall && OdrUse == OdrUseContext::Used) 17823 OdrUse = OdrUseContext::FormallyOdrUsed; 17824 17825 // Trivial default constructors and destructors are never actually used. 17826 // FIXME: What about other special members? 17827 if (Func->isTrivial() && !Func->hasAttr<DLLExportAttr>() && 17828 OdrUse == OdrUseContext::Used) { 17829 if (auto *Constructor = dyn_cast<CXXConstructorDecl>(Func)) 17830 if (Constructor->isDefaultConstructor()) 17831 OdrUse = OdrUseContext::FormallyOdrUsed; 17832 if (isa<CXXDestructorDecl>(Func)) 17833 OdrUse = OdrUseContext::FormallyOdrUsed; 17834 } 17835 17836 // C++20 [expr.const]p12: 17837 // A function [...] is needed for constant evaluation if it is [...] a 17838 // constexpr function that is named by an expression that is potentially 17839 // constant evaluated 17840 bool NeededForConstantEvaluation = 17841 isPotentiallyConstantEvaluatedContext(*this) && 17842 isImplicitlyDefinableConstexprFunction(Func); 17843 17844 // Determine whether we require a function definition to exist, per 17845 // C++11 [temp.inst]p3: 17846 // Unless a function template specialization has been explicitly 17847 // instantiated or explicitly specialized, the function template 17848 // specialization is implicitly instantiated when the specialization is 17849 // referenced in a context that requires a function definition to exist. 17850 // C++20 [temp.inst]p7: 17851 // The existence of a definition of a [...] function is considered to 17852 // affect the semantics of the program if the [...] function is needed for 17853 // constant evaluation by an expression 17854 // C++20 [basic.def.odr]p10: 17855 // Every program shall contain exactly one definition of every non-inline 17856 // function or variable that is odr-used in that program outside of a 17857 // discarded statement 17858 // C++20 [special]p1: 17859 // The implementation will implicitly define [defaulted special members] 17860 // if they are odr-used or needed for constant evaluation. 17861 // 17862 // Note that we skip the implicit instantiation of templates that are only 17863 // used in unused default arguments or by recursive calls to themselves. 17864 // This is formally non-conforming, but seems reasonable in practice. 17865 bool NeedDefinition = !IsRecursiveCall && (OdrUse == OdrUseContext::Used || 17866 NeededForConstantEvaluation); 17867 17868 // C++14 [temp.expl.spec]p6: 17869 // If a template [...] is explicitly specialized then that specialization 17870 // shall be declared before the first use of that specialization that would 17871 // cause an implicit instantiation to take place, in every translation unit 17872 // in which such a use occurs 17873 if (NeedDefinition && 17874 (Func->getTemplateSpecializationKind() != TSK_Undeclared || 17875 Func->getMemberSpecializationInfo())) 17876 checkSpecializationVisibility(Loc, Func); 17877 17878 if (getLangOpts().CUDA) 17879 CheckCUDACall(Loc, Func); 17880 17881 if (getLangOpts().SYCLIsDevice) 17882 checkSYCLDeviceFunction(Loc, Func); 17883 17884 // If we need a definition, try to create one. 17885 if (NeedDefinition && !Func->getBody()) { 17886 runWithSufficientStackSpace(Loc, [&] { 17887 if (CXXConstructorDecl *Constructor = 17888 dyn_cast<CXXConstructorDecl>(Func)) { 17889 Constructor = cast<CXXConstructorDecl>(Constructor->getFirstDecl()); 17890 if (Constructor->isDefaulted() && !Constructor->isDeleted()) { 17891 if (Constructor->isDefaultConstructor()) { 17892 if (Constructor->isTrivial() && 17893 !Constructor->hasAttr<DLLExportAttr>()) 17894 return; 17895 DefineImplicitDefaultConstructor(Loc, Constructor); 17896 } else if (Constructor->isCopyConstructor()) { 17897 DefineImplicitCopyConstructor(Loc, Constructor); 17898 } else if (Constructor->isMoveConstructor()) { 17899 DefineImplicitMoveConstructor(Loc, Constructor); 17900 } 17901 } else if (Constructor->getInheritedConstructor()) { 17902 DefineInheritingConstructor(Loc, Constructor); 17903 } 17904 } else if (CXXDestructorDecl *Destructor = 17905 dyn_cast<CXXDestructorDecl>(Func)) { 17906 Destructor = cast<CXXDestructorDecl>(Destructor->getFirstDecl()); 17907 if (Destructor->isDefaulted() && !Destructor->isDeleted()) { 17908 if (Destructor->isTrivial() && !Destructor->hasAttr<DLLExportAttr>()) 17909 return; 17910 DefineImplicitDestructor(Loc, Destructor); 17911 } 17912 if (Destructor->isVirtual() && getLangOpts().AppleKext) 17913 MarkVTableUsed(Loc, Destructor->getParent()); 17914 } else if (CXXMethodDecl *MethodDecl = dyn_cast<CXXMethodDecl>(Func)) { 17915 if (MethodDecl->isOverloadedOperator() && 17916 MethodDecl->getOverloadedOperator() == OO_Equal) { 17917 MethodDecl = cast<CXXMethodDecl>(MethodDecl->getFirstDecl()); 17918 if (MethodDecl->isDefaulted() && !MethodDecl->isDeleted()) { 17919 if (MethodDecl->isCopyAssignmentOperator()) 17920 DefineImplicitCopyAssignment(Loc, MethodDecl); 17921 else if (MethodDecl->isMoveAssignmentOperator()) 17922 DefineImplicitMoveAssignment(Loc, MethodDecl); 17923 } 17924 } else if (isa<CXXConversionDecl>(MethodDecl) && 17925 MethodDecl->getParent()->isLambda()) { 17926 CXXConversionDecl *Conversion = 17927 cast<CXXConversionDecl>(MethodDecl->getFirstDecl()); 17928 if (Conversion->isLambdaToBlockPointerConversion()) 17929 DefineImplicitLambdaToBlockPointerConversion(Loc, Conversion); 17930 else 17931 DefineImplicitLambdaToFunctionPointerConversion(Loc, Conversion); 17932 } else if (MethodDecl->isVirtual() && getLangOpts().AppleKext) 17933 MarkVTableUsed(Loc, MethodDecl->getParent()); 17934 } 17935 17936 if (Func->isDefaulted() && !Func->isDeleted()) { 17937 DefaultedComparisonKind DCK = getDefaultedComparisonKind(Func); 17938 if (DCK != DefaultedComparisonKind::None) 17939 DefineDefaultedComparison(Loc, Func, DCK); 17940 } 17941 17942 // Implicit instantiation of function templates and member functions of 17943 // class templates. 17944 if (Func->isImplicitlyInstantiable()) { 17945 TemplateSpecializationKind TSK = 17946 Func->getTemplateSpecializationKindForInstantiation(); 17947 SourceLocation PointOfInstantiation = Func->getPointOfInstantiation(); 17948 bool FirstInstantiation = PointOfInstantiation.isInvalid(); 17949 if (FirstInstantiation) { 17950 PointOfInstantiation = Loc; 17951 if (auto *MSI = Func->getMemberSpecializationInfo()) 17952 MSI->setPointOfInstantiation(Loc); 17953 // FIXME: Notify listener. 17954 else 17955 Func->setTemplateSpecializationKind(TSK, PointOfInstantiation); 17956 } else if (TSK != TSK_ImplicitInstantiation) { 17957 // Use the point of use as the point of instantiation, instead of the 17958 // point of explicit instantiation (which we track as the actual point 17959 // of instantiation). This gives better backtraces in diagnostics. 17960 PointOfInstantiation = Loc; 17961 } 17962 17963 if (FirstInstantiation || TSK != TSK_ImplicitInstantiation || 17964 Func->isConstexpr()) { 17965 if (isa<CXXRecordDecl>(Func->getDeclContext()) && 17966 cast<CXXRecordDecl>(Func->getDeclContext())->isLocalClass() && 17967 CodeSynthesisContexts.size()) 17968 PendingLocalImplicitInstantiations.push_back( 17969 std::make_pair(Func, PointOfInstantiation)); 17970 else if (Func->isConstexpr()) 17971 // Do not defer instantiations of constexpr functions, to avoid the 17972 // expression evaluator needing to call back into Sema if it sees a 17973 // call to such a function. 17974 InstantiateFunctionDefinition(PointOfInstantiation, Func); 17975 else { 17976 Func->setInstantiationIsPending(true); 17977 PendingInstantiations.push_back( 17978 std::make_pair(Func, PointOfInstantiation)); 17979 // Notify the consumer that a function was implicitly instantiated. 17980 Consumer.HandleCXXImplicitFunctionInstantiation(Func); 17981 } 17982 } 17983 } else { 17984 // Walk redefinitions, as some of them may be instantiable. 17985 for (auto i : Func->redecls()) { 17986 if (!i->isUsed(false) && i->isImplicitlyInstantiable()) 17987 MarkFunctionReferenced(Loc, i, MightBeOdrUse); 17988 } 17989 } 17990 }); 17991 } 17992 17993 // C++14 [except.spec]p17: 17994 // An exception-specification is considered to be needed when: 17995 // - the function is odr-used or, if it appears in an unevaluated operand, 17996 // would be odr-used if the expression were potentially-evaluated; 17997 // 17998 // Note, we do this even if MightBeOdrUse is false. That indicates that the 17999 // function is a pure virtual function we're calling, and in that case the 18000 // function was selected by overload resolution and we need to resolve its 18001 // exception specification for a different reason. 18002 const FunctionProtoType *FPT = Func->getType()->getAs<FunctionProtoType>(); 18003 if (FPT && isUnresolvedExceptionSpec(FPT->getExceptionSpecType())) 18004 ResolveExceptionSpec(Loc, FPT); 18005 18006 // If this is the first "real" use, act on that. 18007 if (OdrUse == OdrUseContext::Used && !Func->isUsed(/*CheckUsedAttr=*/false)) { 18008 // Keep track of used but undefined functions. 18009 if (!Func->isDefined()) { 18010 if (mightHaveNonExternalLinkage(Func)) 18011 UndefinedButUsed.insert(std::make_pair(Func->getCanonicalDecl(), Loc)); 18012 else if (Func->getMostRecentDecl()->isInlined() && 18013 !LangOpts.GNUInline && 18014 !Func->getMostRecentDecl()->hasAttr<GNUInlineAttr>()) 18015 UndefinedButUsed.insert(std::make_pair(Func->getCanonicalDecl(), Loc)); 18016 else if (isExternalWithNoLinkageType(Func)) 18017 UndefinedButUsed.insert(std::make_pair(Func->getCanonicalDecl(), Loc)); 18018 } 18019 18020 // Some x86 Windows calling conventions mangle the size of the parameter 18021 // pack into the name. Computing the size of the parameters requires the 18022 // parameter types to be complete. Check that now. 18023 if (funcHasParameterSizeMangling(*this, Func)) 18024 CheckCompleteParameterTypesForMangler(*this, Func, Loc); 18025 18026 // In the MS C++ ABI, the compiler emits destructor variants where they are 18027 // used. If the destructor is used here but defined elsewhere, mark the 18028 // virtual base destructors referenced. If those virtual base destructors 18029 // are inline, this will ensure they are defined when emitting the complete 18030 // destructor variant. This checking may be redundant if the destructor is 18031 // provided later in this TU. 18032 if (Context.getTargetInfo().getCXXABI().isMicrosoft()) { 18033 if (auto *Dtor = dyn_cast<CXXDestructorDecl>(Func)) { 18034 CXXRecordDecl *Parent = Dtor->getParent(); 18035 if (Parent->getNumVBases() > 0 && !Dtor->getBody()) 18036 CheckCompleteDestructorVariant(Loc, Dtor); 18037 } 18038 } 18039 18040 Func->markUsed(Context); 18041 } 18042 } 18043 18044 /// Directly mark a variable odr-used. Given a choice, prefer to use 18045 /// MarkVariableReferenced since it does additional checks and then 18046 /// calls MarkVarDeclODRUsed. 18047 /// If the variable must be captured: 18048 /// - if FunctionScopeIndexToStopAt is null, capture it in the CurContext 18049 /// - else capture it in the DeclContext that maps to the 18050 /// *FunctionScopeIndexToStopAt on the FunctionScopeInfo stack. 18051 static void 18052 MarkVarDeclODRUsed(VarDecl *Var, SourceLocation Loc, Sema &SemaRef, 18053 const unsigned *const FunctionScopeIndexToStopAt = nullptr) { 18054 // Keep track of used but undefined variables. 18055 // FIXME: We shouldn't suppress this warning for static data members. 18056 if (Var->hasDefinition(SemaRef.Context) == VarDecl::DeclarationOnly && 18057 (!Var->isExternallyVisible() || Var->isInline() || 18058 SemaRef.isExternalWithNoLinkageType(Var)) && 18059 !(Var->isStaticDataMember() && Var->hasInit())) { 18060 SourceLocation &old = SemaRef.UndefinedButUsed[Var->getCanonicalDecl()]; 18061 if (old.isInvalid()) 18062 old = Loc; 18063 } 18064 QualType CaptureType, DeclRefType; 18065 if (SemaRef.LangOpts.OpenMP) 18066 SemaRef.tryCaptureOpenMPLambdas(Var); 18067 SemaRef.tryCaptureVariable(Var, Loc, Sema::TryCapture_Implicit, 18068 /*EllipsisLoc*/ SourceLocation(), 18069 /*BuildAndDiagnose*/ true, 18070 CaptureType, DeclRefType, 18071 FunctionScopeIndexToStopAt); 18072 18073 if (SemaRef.LangOpts.CUDA && Var->hasGlobalStorage()) { 18074 auto *FD = dyn_cast_or_null<FunctionDecl>(SemaRef.CurContext); 18075 auto VarTarget = SemaRef.IdentifyCUDATarget(Var); 18076 auto UserTarget = SemaRef.IdentifyCUDATarget(FD); 18077 if (VarTarget == Sema::CVT_Host && 18078 (UserTarget == Sema::CFT_Device || UserTarget == Sema::CFT_HostDevice || 18079 UserTarget == Sema::CFT_Global)) { 18080 // Diagnose ODR-use of host global variables in device functions. 18081 // Reference of device global variables in host functions is allowed 18082 // through shadow variables therefore it is not diagnosed. 18083 if (SemaRef.LangOpts.CUDAIsDevice) { 18084 SemaRef.targetDiag(Loc, diag::err_ref_bad_target) 18085 << /*host*/ 2 << /*variable*/ 1 << Var << UserTarget; 18086 SemaRef.targetDiag(Var->getLocation(), 18087 Var->getType().isConstQualified() 18088 ? diag::note_cuda_const_var_unpromoted 18089 : diag::note_cuda_host_var); 18090 } 18091 } else if (VarTarget == Sema::CVT_Device && 18092 (UserTarget == Sema::CFT_Host || 18093 UserTarget == Sema::CFT_HostDevice)) { 18094 // Record a CUDA/HIP device side variable if it is ODR-used 18095 // by host code. This is done conservatively, when the variable is 18096 // referenced in any of the following contexts: 18097 // - a non-function context 18098 // - a host function 18099 // - a host device function 18100 // This makes the ODR-use of the device side variable by host code to 18101 // be visible in the device compilation for the compiler to be able to 18102 // emit template variables instantiated by host code only and to 18103 // externalize the static device side variable ODR-used by host code. 18104 if (!Var->hasExternalStorage()) 18105 SemaRef.getASTContext().CUDADeviceVarODRUsedByHost.insert(Var); 18106 else if (SemaRef.LangOpts.GPURelocatableDeviceCode) 18107 SemaRef.getASTContext().CUDAExternalDeviceDeclODRUsedByHost.insert(Var); 18108 } 18109 } 18110 18111 Var->markUsed(SemaRef.Context); 18112 } 18113 18114 void Sema::MarkCaptureUsedInEnclosingContext(VarDecl *Capture, 18115 SourceLocation Loc, 18116 unsigned CapturingScopeIndex) { 18117 MarkVarDeclODRUsed(Capture, Loc, *this, &CapturingScopeIndex); 18118 } 18119 18120 static void diagnoseUncapturableValueReference(Sema &S, SourceLocation loc, 18121 ValueDecl *var) { 18122 DeclContext *VarDC = var->getDeclContext(); 18123 18124 // If the parameter still belongs to the translation unit, then 18125 // we're actually just using one parameter in the declaration of 18126 // the next. 18127 if (isa<ParmVarDecl>(var) && 18128 isa<TranslationUnitDecl>(VarDC)) 18129 return; 18130 18131 // For C code, don't diagnose about capture if we're not actually in code 18132 // right now; it's impossible to write a non-constant expression outside of 18133 // function context, so we'll get other (more useful) diagnostics later. 18134 // 18135 // For C++, things get a bit more nasty... it would be nice to suppress this 18136 // diagnostic for certain cases like using a local variable in an array bound 18137 // for a member of a local class, but the correct predicate is not obvious. 18138 if (!S.getLangOpts().CPlusPlus && !S.CurContext->isFunctionOrMethod()) 18139 return; 18140 18141 unsigned ValueKind = isa<BindingDecl>(var) ? 1 : 0; 18142 unsigned ContextKind = 3; // unknown 18143 if (isa<CXXMethodDecl>(VarDC) && 18144 cast<CXXRecordDecl>(VarDC->getParent())->isLambda()) { 18145 ContextKind = 2; 18146 } else if (isa<FunctionDecl>(VarDC)) { 18147 ContextKind = 0; 18148 } else if (isa<BlockDecl>(VarDC)) { 18149 ContextKind = 1; 18150 } 18151 18152 S.Diag(loc, diag::err_reference_to_local_in_enclosing_context) 18153 << var << ValueKind << ContextKind << VarDC; 18154 S.Diag(var->getLocation(), diag::note_entity_declared_at) 18155 << var; 18156 18157 // FIXME: Add additional diagnostic info about class etc. which prevents 18158 // capture. 18159 } 18160 18161 18162 static bool isVariableAlreadyCapturedInScopeInfo(CapturingScopeInfo *CSI, VarDecl *Var, 18163 bool &SubCapturesAreNested, 18164 QualType &CaptureType, 18165 QualType &DeclRefType) { 18166 // Check whether we've already captured it. 18167 if (CSI->CaptureMap.count(Var)) { 18168 // If we found a capture, any subcaptures are nested. 18169 SubCapturesAreNested = true; 18170 18171 // Retrieve the capture type for this variable. 18172 CaptureType = CSI->getCapture(Var).getCaptureType(); 18173 18174 // Compute the type of an expression that refers to this variable. 18175 DeclRefType = CaptureType.getNonReferenceType(); 18176 18177 // Similarly to mutable captures in lambda, all the OpenMP captures by copy 18178 // are mutable in the sense that user can change their value - they are 18179 // private instances of the captured declarations. 18180 const Capture &Cap = CSI->getCapture(Var); 18181 if (Cap.isCopyCapture() && 18182 !(isa<LambdaScopeInfo>(CSI) && cast<LambdaScopeInfo>(CSI)->Mutable) && 18183 !(isa<CapturedRegionScopeInfo>(CSI) && 18184 cast<CapturedRegionScopeInfo>(CSI)->CapRegionKind == CR_OpenMP)) 18185 DeclRefType.addConst(); 18186 return true; 18187 } 18188 return false; 18189 } 18190 18191 // Only block literals, captured statements, and lambda expressions can 18192 // capture; other scopes don't work. 18193 static DeclContext *getParentOfCapturingContextOrNull(DeclContext *DC, VarDecl *Var, 18194 SourceLocation Loc, 18195 const bool Diagnose, Sema &S) { 18196 if (isa<BlockDecl>(DC) || isa<CapturedDecl>(DC) || isLambdaCallOperator(DC)) 18197 return getLambdaAwareParentOfDeclContext(DC); 18198 else if (Var->hasLocalStorage()) { 18199 if (Diagnose) 18200 diagnoseUncapturableValueReference(S, Loc, Var); 18201 } 18202 return nullptr; 18203 } 18204 18205 // Certain capturing entities (lambdas, blocks etc.) are not allowed to capture 18206 // certain types of variables (unnamed, variably modified types etc.) 18207 // so check for eligibility. 18208 static bool isVariableCapturable(CapturingScopeInfo *CSI, VarDecl *Var, 18209 SourceLocation Loc, 18210 const bool Diagnose, Sema &S) { 18211 18212 bool IsBlock = isa<BlockScopeInfo>(CSI); 18213 bool IsLambda = isa<LambdaScopeInfo>(CSI); 18214 18215 // Lambdas are not allowed to capture unnamed variables 18216 // (e.g. anonymous unions). 18217 // FIXME: The C++11 rule don't actually state this explicitly, but I'm 18218 // assuming that's the intent. 18219 if (IsLambda && !Var->getDeclName()) { 18220 if (Diagnose) { 18221 S.Diag(Loc, diag::err_lambda_capture_anonymous_var); 18222 S.Diag(Var->getLocation(), diag::note_declared_at); 18223 } 18224 return false; 18225 } 18226 18227 // Prohibit variably-modified types in blocks; they're difficult to deal with. 18228 if (Var->getType()->isVariablyModifiedType() && IsBlock) { 18229 if (Diagnose) { 18230 S.Diag(Loc, diag::err_ref_vm_type); 18231 S.Diag(Var->getLocation(), diag::note_previous_decl) << Var; 18232 } 18233 return false; 18234 } 18235 // Prohibit structs with flexible array members too. 18236 // We cannot capture what is in the tail end of the struct. 18237 if (const RecordType *VTTy = Var->getType()->getAs<RecordType>()) { 18238 if (VTTy->getDecl()->hasFlexibleArrayMember()) { 18239 if (Diagnose) { 18240 if (IsBlock) 18241 S.Diag(Loc, diag::err_ref_flexarray_type); 18242 else 18243 S.Diag(Loc, diag::err_lambda_capture_flexarray_type) << Var; 18244 S.Diag(Var->getLocation(), diag::note_previous_decl) << Var; 18245 } 18246 return false; 18247 } 18248 } 18249 const bool HasBlocksAttr = Var->hasAttr<BlocksAttr>(); 18250 // Lambdas and captured statements are not allowed to capture __block 18251 // variables; they don't support the expected semantics. 18252 if (HasBlocksAttr && (IsLambda || isa<CapturedRegionScopeInfo>(CSI))) { 18253 if (Diagnose) { 18254 S.Diag(Loc, diag::err_capture_block_variable) << Var << !IsLambda; 18255 S.Diag(Var->getLocation(), diag::note_previous_decl) << Var; 18256 } 18257 return false; 18258 } 18259 // OpenCL v2.0 s6.12.5: Blocks cannot reference/capture other blocks 18260 if (S.getLangOpts().OpenCL && IsBlock && 18261 Var->getType()->isBlockPointerType()) { 18262 if (Diagnose) 18263 S.Diag(Loc, diag::err_opencl_block_ref_block); 18264 return false; 18265 } 18266 18267 return true; 18268 } 18269 18270 // Returns true if the capture by block was successful. 18271 static bool captureInBlock(BlockScopeInfo *BSI, VarDecl *Var, 18272 SourceLocation Loc, 18273 const bool BuildAndDiagnose, 18274 QualType &CaptureType, 18275 QualType &DeclRefType, 18276 const bool Nested, 18277 Sema &S, bool Invalid) { 18278 bool ByRef = false; 18279 18280 // Blocks are not allowed to capture arrays, excepting OpenCL. 18281 // OpenCL v2.0 s1.12.5 (revision 40): arrays are captured by reference 18282 // (decayed to pointers). 18283 if (!Invalid && !S.getLangOpts().OpenCL && CaptureType->isArrayType()) { 18284 if (BuildAndDiagnose) { 18285 S.Diag(Loc, diag::err_ref_array_type); 18286 S.Diag(Var->getLocation(), diag::note_previous_decl) << Var; 18287 Invalid = true; 18288 } else { 18289 return false; 18290 } 18291 } 18292 18293 // Forbid the block-capture of autoreleasing variables. 18294 if (!Invalid && 18295 CaptureType.getObjCLifetime() == Qualifiers::OCL_Autoreleasing) { 18296 if (BuildAndDiagnose) { 18297 S.Diag(Loc, diag::err_arc_autoreleasing_capture) 18298 << /*block*/ 0; 18299 S.Diag(Var->getLocation(), diag::note_previous_decl) << Var; 18300 Invalid = true; 18301 } else { 18302 return false; 18303 } 18304 } 18305 18306 // Warn about implicitly autoreleasing indirect parameters captured by blocks. 18307 if (const auto *PT = CaptureType->getAs<PointerType>()) { 18308 QualType PointeeTy = PT->getPointeeType(); 18309 18310 if (!Invalid && PointeeTy->getAs<ObjCObjectPointerType>() && 18311 PointeeTy.getObjCLifetime() == Qualifiers::OCL_Autoreleasing && 18312 !S.Context.hasDirectOwnershipQualifier(PointeeTy)) { 18313 if (BuildAndDiagnose) { 18314 SourceLocation VarLoc = Var->getLocation(); 18315 S.Diag(Loc, diag::warn_block_capture_autoreleasing); 18316 S.Diag(VarLoc, diag::note_declare_parameter_strong); 18317 } 18318 } 18319 } 18320 18321 const bool HasBlocksAttr = Var->hasAttr<BlocksAttr>(); 18322 if (HasBlocksAttr || CaptureType->isReferenceType() || 18323 (S.getLangOpts().OpenMP && S.isOpenMPCapturedDecl(Var))) { 18324 // Block capture by reference does not change the capture or 18325 // declaration reference types. 18326 ByRef = true; 18327 } else { 18328 // Block capture by copy introduces 'const'. 18329 CaptureType = CaptureType.getNonReferenceType().withConst(); 18330 DeclRefType = CaptureType; 18331 } 18332 18333 // Actually capture the variable. 18334 if (BuildAndDiagnose) 18335 BSI->addCapture(Var, HasBlocksAttr, ByRef, Nested, Loc, SourceLocation(), 18336 CaptureType, Invalid); 18337 18338 return !Invalid; 18339 } 18340 18341 18342 /// Capture the given variable in the captured region. 18343 static bool captureInCapturedRegion( 18344 CapturedRegionScopeInfo *RSI, VarDecl *Var, SourceLocation Loc, 18345 const bool BuildAndDiagnose, QualType &CaptureType, QualType &DeclRefType, 18346 const bool RefersToCapturedVariable, Sema::TryCaptureKind Kind, 18347 bool IsTopScope, Sema &S, bool Invalid) { 18348 // By default, capture variables by reference. 18349 bool ByRef = true; 18350 if (IsTopScope && Kind != Sema::TryCapture_Implicit) { 18351 ByRef = (Kind == Sema::TryCapture_ExplicitByRef); 18352 } else if (S.getLangOpts().OpenMP && RSI->CapRegionKind == CR_OpenMP) { 18353 // Using an LValue reference type is consistent with Lambdas (see below). 18354 if (S.isOpenMPCapturedDecl(Var)) { 18355 bool HasConst = DeclRefType.isConstQualified(); 18356 DeclRefType = DeclRefType.getUnqualifiedType(); 18357 // Don't lose diagnostics about assignments to const. 18358 if (HasConst) 18359 DeclRefType.addConst(); 18360 } 18361 // Do not capture firstprivates in tasks. 18362 if (S.isOpenMPPrivateDecl(Var, RSI->OpenMPLevel, RSI->OpenMPCaptureLevel) != 18363 OMPC_unknown) 18364 return true; 18365 ByRef = S.isOpenMPCapturedByRef(Var, RSI->OpenMPLevel, 18366 RSI->OpenMPCaptureLevel); 18367 } 18368 18369 if (ByRef) 18370 CaptureType = S.Context.getLValueReferenceType(DeclRefType); 18371 else 18372 CaptureType = DeclRefType; 18373 18374 // Actually capture the variable. 18375 if (BuildAndDiagnose) 18376 RSI->addCapture(Var, /*isBlock*/ false, ByRef, RefersToCapturedVariable, 18377 Loc, SourceLocation(), CaptureType, Invalid); 18378 18379 return !Invalid; 18380 } 18381 18382 /// Capture the given variable in the lambda. 18383 static bool captureInLambda(LambdaScopeInfo *LSI, 18384 VarDecl *Var, 18385 SourceLocation Loc, 18386 const bool BuildAndDiagnose, 18387 QualType &CaptureType, 18388 QualType &DeclRefType, 18389 const bool RefersToCapturedVariable, 18390 const Sema::TryCaptureKind Kind, 18391 SourceLocation EllipsisLoc, 18392 const bool IsTopScope, 18393 Sema &S, bool Invalid) { 18394 // Determine whether we are capturing by reference or by value. 18395 bool ByRef = false; 18396 if (IsTopScope && Kind != Sema::TryCapture_Implicit) { 18397 ByRef = (Kind == Sema::TryCapture_ExplicitByRef); 18398 } else { 18399 ByRef = (LSI->ImpCaptureStyle == LambdaScopeInfo::ImpCap_LambdaByref); 18400 } 18401 18402 // Compute the type of the field that will capture this variable. 18403 if (ByRef) { 18404 // C++11 [expr.prim.lambda]p15: 18405 // An entity is captured by reference if it is implicitly or 18406 // explicitly captured but not captured by copy. It is 18407 // unspecified whether additional unnamed non-static data 18408 // members are declared in the closure type for entities 18409 // captured by reference. 18410 // 18411 // FIXME: It is not clear whether we want to build an lvalue reference 18412 // to the DeclRefType or to CaptureType.getNonReferenceType(). GCC appears 18413 // to do the former, while EDG does the latter. Core issue 1249 will 18414 // clarify, but for now we follow GCC because it's a more permissive and 18415 // easily defensible position. 18416 CaptureType = S.Context.getLValueReferenceType(DeclRefType); 18417 } else { 18418 // C++11 [expr.prim.lambda]p14: 18419 // For each entity captured by copy, an unnamed non-static 18420 // data member is declared in the closure type. The 18421 // declaration order of these members is unspecified. The type 18422 // of such a data member is the type of the corresponding 18423 // captured entity if the entity is not a reference to an 18424 // object, or the referenced type otherwise. [Note: If the 18425 // captured entity is a reference to a function, the 18426 // corresponding data member is also a reference to a 18427 // function. - end note ] 18428 if (const ReferenceType *RefType = CaptureType->getAs<ReferenceType>()){ 18429 if (!RefType->getPointeeType()->isFunctionType()) 18430 CaptureType = RefType->getPointeeType(); 18431 } 18432 18433 // Forbid the lambda copy-capture of autoreleasing variables. 18434 if (!Invalid && 18435 CaptureType.getObjCLifetime() == Qualifiers::OCL_Autoreleasing) { 18436 if (BuildAndDiagnose) { 18437 S.Diag(Loc, diag::err_arc_autoreleasing_capture) << /*lambda*/ 1; 18438 S.Diag(Var->getLocation(), diag::note_previous_decl) 18439 << Var->getDeclName(); 18440 Invalid = true; 18441 } else { 18442 return false; 18443 } 18444 } 18445 18446 // Make sure that by-copy captures are of a complete and non-abstract type. 18447 if (!Invalid && BuildAndDiagnose) { 18448 if (!CaptureType->isDependentType() && 18449 S.RequireCompleteSizedType( 18450 Loc, CaptureType, 18451 diag::err_capture_of_incomplete_or_sizeless_type, 18452 Var->getDeclName())) 18453 Invalid = true; 18454 else if (S.RequireNonAbstractType(Loc, CaptureType, 18455 diag::err_capture_of_abstract_type)) 18456 Invalid = true; 18457 } 18458 } 18459 18460 // Compute the type of a reference to this captured variable. 18461 if (ByRef) 18462 DeclRefType = CaptureType.getNonReferenceType(); 18463 else { 18464 // C++ [expr.prim.lambda]p5: 18465 // The closure type for a lambda-expression has a public inline 18466 // function call operator [...]. This function call operator is 18467 // declared const (9.3.1) if and only if the lambda-expression's 18468 // parameter-declaration-clause is not followed by mutable. 18469 DeclRefType = CaptureType.getNonReferenceType(); 18470 if (!LSI->Mutable && !CaptureType->isReferenceType()) 18471 DeclRefType.addConst(); 18472 } 18473 18474 // Add the capture. 18475 if (BuildAndDiagnose) 18476 LSI->addCapture(Var, /*isBlock=*/false, ByRef, RefersToCapturedVariable, 18477 Loc, EllipsisLoc, CaptureType, Invalid); 18478 18479 return !Invalid; 18480 } 18481 18482 static bool canCaptureVariableByCopy(VarDecl *Var, const ASTContext &Context) { 18483 // Offer a Copy fix even if the type is dependent. 18484 if (Var->getType()->isDependentType()) 18485 return true; 18486 QualType T = Var->getType().getNonReferenceType(); 18487 if (T.isTriviallyCopyableType(Context)) 18488 return true; 18489 if (CXXRecordDecl *RD = T->getAsCXXRecordDecl()) { 18490 18491 if (!(RD = RD->getDefinition())) 18492 return false; 18493 if (RD->hasSimpleCopyConstructor()) 18494 return true; 18495 if (RD->hasUserDeclaredCopyConstructor()) 18496 for (CXXConstructorDecl *Ctor : RD->ctors()) 18497 if (Ctor->isCopyConstructor()) 18498 return !Ctor->isDeleted(); 18499 } 18500 return false; 18501 } 18502 18503 /// Create up to 4 fix-its for explicit reference and value capture of \p Var or 18504 /// default capture. Fixes may be omitted if they aren't allowed by the 18505 /// standard, for example we can't emit a default copy capture fix-it if we 18506 /// already explicitly copy capture capture another variable. 18507 static void buildLambdaCaptureFixit(Sema &Sema, LambdaScopeInfo *LSI, 18508 VarDecl *Var) { 18509 assert(LSI->ImpCaptureStyle == CapturingScopeInfo::ImpCap_None); 18510 // Don't offer Capture by copy of default capture by copy fixes if Var is 18511 // known not to be copy constructible. 18512 bool ShouldOfferCopyFix = canCaptureVariableByCopy(Var, Sema.getASTContext()); 18513 18514 SmallString<32> FixBuffer; 18515 StringRef Separator = LSI->NumExplicitCaptures > 0 ? ", " : ""; 18516 if (Var->getDeclName().isIdentifier() && !Var->getName().empty()) { 18517 SourceLocation VarInsertLoc = LSI->IntroducerRange.getEnd(); 18518 if (ShouldOfferCopyFix) { 18519 // Offer fixes to insert an explicit capture for the variable. 18520 // [] -> [VarName] 18521 // [OtherCapture] -> [OtherCapture, VarName] 18522 FixBuffer.assign({Separator, Var->getName()}); 18523 Sema.Diag(VarInsertLoc, diag::note_lambda_variable_capture_fixit) 18524 << Var << /*value*/ 0 18525 << FixItHint::CreateInsertion(VarInsertLoc, FixBuffer); 18526 } 18527 // As above but capture by reference. 18528 FixBuffer.assign({Separator, "&", Var->getName()}); 18529 Sema.Diag(VarInsertLoc, diag::note_lambda_variable_capture_fixit) 18530 << Var << /*reference*/ 1 18531 << FixItHint::CreateInsertion(VarInsertLoc, FixBuffer); 18532 } 18533 18534 // Only try to offer default capture if there are no captures excluding this 18535 // and init captures. 18536 // [this]: OK. 18537 // [X = Y]: OK. 18538 // [&A, &B]: Don't offer. 18539 // [A, B]: Don't offer. 18540 if (llvm::any_of(LSI->Captures, [](Capture &C) { 18541 return !C.isThisCapture() && !C.isInitCapture(); 18542 })) 18543 return; 18544 18545 // The default capture specifiers, '=' or '&', must appear first in the 18546 // capture body. 18547 SourceLocation DefaultInsertLoc = 18548 LSI->IntroducerRange.getBegin().getLocWithOffset(1); 18549 18550 if (ShouldOfferCopyFix) { 18551 bool CanDefaultCopyCapture = true; 18552 // [=, *this] OK since c++17 18553 // [=, this] OK since c++20 18554 if (LSI->isCXXThisCaptured() && !Sema.getLangOpts().CPlusPlus20) 18555 CanDefaultCopyCapture = Sema.getLangOpts().CPlusPlus17 18556 ? LSI->getCXXThisCapture().isCopyCapture() 18557 : false; 18558 // We can't use default capture by copy if any captures already specified 18559 // capture by copy. 18560 if (CanDefaultCopyCapture && llvm::none_of(LSI->Captures, [](Capture &C) { 18561 return !C.isThisCapture() && !C.isInitCapture() && C.isCopyCapture(); 18562 })) { 18563 FixBuffer.assign({"=", Separator}); 18564 Sema.Diag(DefaultInsertLoc, diag::note_lambda_default_capture_fixit) 18565 << /*value*/ 0 18566 << FixItHint::CreateInsertion(DefaultInsertLoc, FixBuffer); 18567 } 18568 } 18569 18570 // We can't use default capture by reference if any captures already specified 18571 // capture by reference. 18572 if (llvm::none_of(LSI->Captures, [](Capture &C) { 18573 return !C.isInitCapture() && C.isReferenceCapture() && 18574 !C.isThisCapture(); 18575 })) { 18576 FixBuffer.assign({"&", Separator}); 18577 Sema.Diag(DefaultInsertLoc, diag::note_lambda_default_capture_fixit) 18578 << /*reference*/ 1 18579 << FixItHint::CreateInsertion(DefaultInsertLoc, FixBuffer); 18580 } 18581 } 18582 18583 bool Sema::tryCaptureVariable( 18584 VarDecl *Var, SourceLocation ExprLoc, TryCaptureKind Kind, 18585 SourceLocation EllipsisLoc, bool BuildAndDiagnose, QualType &CaptureType, 18586 QualType &DeclRefType, const unsigned *const FunctionScopeIndexToStopAt) { 18587 // An init-capture is notionally from the context surrounding its 18588 // declaration, but its parent DC is the lambda class. 18589 DeclContext *VarDC = Var->getDeclContext(); 18590 if (Var->isInitCapture()) 18591 VarDC = VarDC->getParent(); 18592 18593 DeclContext *DC = CurContext; 18594 const unsigned MaxFunctionScopesIndex = FunctionScopeIndexToStopAt 18595 ? *FunctionScopeIndexToStopAt : FunctionScopes.size() - 1; 18596 // We need to sync up the Declaration Context with the 18597 // FunctionScopeIndexToStopAt 18598 if (FunctionScopeIndexToStopAt) { 18599 unsigned FSIndex = FunctionScopes.size() - 1; 18600 while (FSIndex != MaxFunctionScopesIndex) { 18601 DC = getLambdaAwareParentOfDeclContext(DC); 18602 --FSIndex; 18603 } 18604 } 18605 18606 18607 // If the variable is declared in the current context, there is no need to 18608 // capture it. 18609 if (VarDC == DC) return true; 18610 18611 // Capture global variables if it is required to use private copy of this 18612 // variable. 18613 bool IsGlobal = !Var->hasLocalStorage(); 18614 if (IsGlobal && 18615 !(LangOpts.OpenMP && isOpenMPCapturedDecl(Var, /*CheckScopeInfo=*/true, 18616 MaxFunctionScopesIndex))) 18617 return true; 18618 Var = Var->getCanonicalDecl(); 18619 18620 // Walk up the stack to determine whether we can capture the variable, 18621 // performing the "simple" checks that don't depend on type. We stop when 18622 // we've either hit the declared scope of the variable or find an existing 18623 // capture of that variable. We start from the innermost capturing-entity 18624 // (the DC) and ensure that all intervening capturing-entities 18625 // (blocks/lambdas etc.) between the innermost capturer and the variable`s 18626 // declcontext can either capture the variable or have already captured 18627 // the variable. 18628 CaptureType = Var->getType(); 18629 DeclRefType = CaptureType.getNonReferenceType(); 18630 bool Nested = false; 18631 bool Explicit = (Kind != TryCapture_Implicit); 18632 unsigned FunctionScopesIndex = MaxFunctionScopesIndex; 18633 do { 18634 // Only block literals, captured statements, and lambda expressions can 18635 // capture; other scopes don't work. 18636 DeclContext *ParentDC = getParentOfCapturingContextOrNull(DC, Var, 18637 ExprLoc, 18638 BuildAndDiagnose, 18639 *this); 18640 // We need to check for the parent *first* because, if we *have* 18641 // private-captured a global variable, we need to recursively capture it in 18642 // intermediate blocks, lambdas, etc. 18643 if (!ParentDC) { 18644 if (IsGlobal) { 18645 FunctionScopesIndex = MaxFunctionScopesIndex - 1; 18646 break; 18647 } 18648 return true; 18649 } 18650 18651 FunctionScopeInfo *FSI = FunctionScopes[FunctionScopesIndex]; 18652 CapturingScopeInfo *CSI = cast<CapturingScopeInfo>(FSI); 18653 18654 18655 // Check whether we've already captured it. 18656 if (isVariableAlreadyCapturedInScopeInfo(CSI, Var, Nested, CaptureType, 18657 DeclRefType)) { 18658 CSI->getCapture(Var).markUsed(BuildAndDiagnose); 18659 break; 18660 } 18661 // If we are instantiating a generic lambda call operator body, 18662 // we do not want to capture new variables. What was captured 18663 // during either a lambdas transformation or initial parsing 18664 // should be used. 18665 if (isGenericLambdaCallOperatorSpecialization(DC)) { 18666 if (BuildAndDiagnose) { 18667 LambdaScopeInfo *LSI = cast<LambdaScopeInfo>(CSI); 18668 if (LSI->ImpCaptureStyle == CapturingScopeInfo::ImpCap_None) { 18669 Diag(ExprLoc, diag::err_lambda_impcap) << Var; 18670 Diag(Var->getLocation(), diag::note_previous_decl) << Var; 18671 Diag(LSI->Lambda->getBeginLoc(), diag::note_lambda_decl); 18672 buildLambdaCaptureFixit(*this, LSI, Var); 18673 } else 18674 diagnoseUncapturableValueReference(*this, ExprLoc, Var); 18675 } 18676 return true; 18677 } 18678 18679 // Try to capture variable-length arrays types. 18680 if (Var->getType()->isVariablyModifiedType()) { 18681 // We're going to walk down into the type and look for VLA 18682 // expressions. 18683 QualType QTy = Var->getType(); 18684 if (ParmVarDecl *PVD = dyn_cast_or_null<ParmVarDecl>(Var)) 18685 QTy = PVD->getOriginalType(); 18686 captureVariablyModifiedType(Context, QTy, CSI); 18687 } 18688 18689 if (getLangOpts().OpenMP) { 18690 if (auto *RSI = dyn_cast<CapturedRegionScopeInfo>(CSI)) { 18691 // OpenMP private variables should not be captured in outer scope, so 18692 // just break here. Similarly, global variables that are captured in a 18693 // target region should not be captured outside the scope of the region. 18694 if (RSI->CapRegionKind == CR_OpenMP) { 18695 OpenMPClauseKind IsOpenMPPrivateDecl = isOpenMPPrivateDecl( 18696 Var, RSI->OpenMPLevel, RSI->OpenMPCaptureLevel); 18697 // If the variable is private (i.e. not captured) and has variably 18698 // modified type, we still need to capture the type for correct 18699 // codegen in all regions, associated with the construct. Currently, 18700 // it is captured in the innermost captured region only. 18701 if (IsOpenMPPrivateDecl != OMPC_unknown && 18702 Var->getType()->isVariablyModifiedType()) { 18703 QualType QTy = Var->getType(); 18704 if (ParmVarDecl *PVD = dyn_cast_or_null<ParmVarDecl>(Var)) 18705 QTy = PVD->getOriginalType(); 18706 for (int I = 1, E = getNumberOfConstructScopes(RSI->OpenMPLevel); 18707 I < E; ++I) { 18708 auto *OuterRSI = cast<CapturedRegionScopeInfo>( 18709 FunctionScopes[FunctionScopesIndex - I]); 18710 assert(RSI->OpenMPLevel == OuterRSI->OpenMPLevel && 18711 "Wrong number of captured regions associated with the " 18712 "OpenMP construct."); 18713 captureVariablyModifiedType(Context, QTy, OuterRSI); 18714 } 18715 } 18716 bool IsTargetCap = 18717 IsOpenMPPrivateDecl != OMPC_private && 18718 isOpenMPTargetCapturedDecl(Var, RSI->OpenMPLevel, 18719 RSI->OpenMPCaptureLevel); 18720 // Do not capture global if it is not privatized in outer regions. 18721 bool IsGlobalCap = 18722 IsGlobal && isOpenMPGlobalCapturedDecl(Var, RSI->OpenMPLevel, 18723 RSI->OpenMPCaptureLevel); 18724 18725 // When we detect target captures we are looking from inside the 18726 // target region, therefore we need to propagate the capture from the 18727 // enclosing region. Therefore, the capture is not initially nested. 18728 if (IsTargetCap) 18729 adjustOpenMPTargetScopeIndex(FunctionScopesIndex, RSI->OpenMPLevel); 18730 18731 if (IsTargetCap || IsOpenMPPrivateDecl == OMPC_private || 18732 (IsGlobal && !IsGlobalCap)) { 18733 Nested = !IsTargetCap; 18734 bool HasConst = DeclRefType.isConstQualified(); 18735 DeclRefType = DeclRefType.getUnqualifiedType(); 18736 // Don't lose diagnostics about assignments to const. 18737 if (HasConst) 18738 DeclRefType.addConst(); 18739 CaptureType = Context.getLValueReferenceType(DeclRefType); 18740 break; 18741 } 18742 } 18743 } 18744 } 18745 if (CSI->ImpCaptureStyle == CapturingScopeInfo::ImpCap_None && !Explicit) { 18746 // No capture-default, and this is not an explicit capture 18747 // so cannot capture this variable. 18748 if (BuildAndDiagnose) { 18749 Diag(ExprLoc, diag::err_lambda_impcap) << Var; 18750 Diag(Var->getLocation(), diag::note_previous_decl) << Var; 18751 auto *LSI = cast<LambdaScopeInfo>(CSI); 18752 if (LSI->Lambda) { 18753 Diag(LSI->Lambda->getBeginLoc(), diag::note_lambda_decl); 18754 buildLambdaCaptureFixit(*this, LSI, Var); 18755 } 18756 // FIXME: If we error out because an outer lambda can not implicitly 18757 // capture a variable that an inner lambda explicitly captures, we 18758 // should have the inner lambda do the explicit capture - because 18759 // it makes for cleaner diagnostics later. This would purely be done 18760 // so that the diagnostic does not misleadingly claim that a variable 18761 // can not be captured by a lambda implicitly even though it is captured 18762 // explicitly. Suggestion: 18763 // - create const bool VariableCaptureWasInitiallyExplicit = Explicit 18764 // at the function head 18765 // - cache the StartingDeclContext - this must be a lambda 18766 // - captureInLambda in the innermost lambda the variable. 18767 } 18768 return true; 18769 } 18770 18771 FunctionScopesIndex--; 18772 DC = ParentDC; 18773 Explicit = false; 18774 } while (!VarDC->Equals(DC)); 18775 18776 // Walk back down the scope stack, (e.g. from outer lambda to inner lambda) 18777 // computing the type of the capture at each step, checking type-specific 18778 // requirements, and adding captures if requested. 18779 // If the variable had already been captured previously, we start capturing 18780 // at the lambda nested within that one. 18781 bool Invalid = false; 18782 for (unsigned I = ++FunctionScopesIndex, N = MaxFunctionScopesIndex + 1; I != N; 18783 ++I) { 18784 CapturingScopeInfo *CSI = cast<CapturingScopeInfo>(FunctionScopes[I]); 18785 18786 // Certain capturing entities (lambdas, blocks etc.) are not allowed to capture 18787 // certain types of variables (unnamed, variably modified types etc.) 18788 // so check for eligibility. 18789 if (!Invalid) 18790 Invalid = 18791 !isVariableCapturable(CSI, Var, ExprLoc, BuildAndDiagnose, *this); 18792 18793 // After encountering an error, if we're actually supposed to capture, keep 18794 // capturing in nested contexts to suppress any follow-on diagnostics. 18795 if (Invalid && !BuildAndDiagnose) 18796 return true; 18797 18798 if (BlockScopeInfo *BSI = dyn_cast<BlockScopeInfo>(CSI)) { 18799 Invalid = !captureInBlock(BSI, Var, ExprLoc, BuildAndDiagnose, CaptureType, 18800 DeclRefType, Nested, *this, Invalid); 18801 Nested = true; 18802 } else if (CapturedRegionScopeInfo *RSI = dyn_cast<CapturedRegionScopeInfo>(CSI)) { 18803 Invalid = !captureInCapturedRegion( 18804 RSI, Var, ExprLoc, BuildAndDiagnose, CaptureType, DeclRefType, Nested, 18805 Kind, /*IsTopScope*/ I == N - 1, *this, Invalid); 18806 Nested = true; 18807 } else { 18808 LambdaScopeInfo *LSI = cast<LambdaScopeInfo>(CSI); 18809 Invalid = 18810 !captureInLambda(LSI, Var, ExprLoc, BuildAndDiagnose, CaptureType, 18811 DeclRefType, Nested, Kind, EllipsisLoc, 18812 /*IsTopScope*/ I == N - 1, *this, Invalid); 18813 Nested = true; 18814 } 18815 18816 if (Invalid && !BuildAndDiagnose) 18817 return true; 18818 } 18819 return Invalid; 18820 } 18821 18822 bool Sema::tryCaptureVariable(VarDecl *Var, SourceLocation Loc, 18823 TryCaptureKind Kind, SourceLocation EllipsisLoc) { 18824 QualType CaptureType; 18825 QualType DeclRefType; 18826 return tryCaptureVariable(Var, Loc, Kind, EllipsisLoc, 18827 /*BuildAndDiagnose=*/true, CaptureType, 18828 DeclRefType, nullptr); 18829 } 18830 18831 bool Sema::NeedToCaptureVariable(VarDecl *Var, SourceLocation Loc) { 18832 QualType CaptureType; 18833 QualType DeclRefType; 18834 return !tryCaptureVariable(Var, Loc, TryCapture_Implicit, SourceLocation(), 18835 /*BuildAndDiagnose=*/false, CaptureType, 18836 DeclRefType, nullptr); 18837 } 18838 18839 QualType Sema::getCapturedDeclRefType(VarDecl *Var, SourceLocation Loc) { 18840 QualType CaptureType; 18841 QualType DeclRefType; 18842 18843 // Determine whether we can capture this variable. 18844 if (tryCaptureVariable(Var, Loc, TryCapture_Implicit, SourceLocation(), 18845 /*BuildAndDiagnose=*/false, CaptureType, 18846 DeclRefType, nullptr)) 18847 return QualType(); 18848 18849 return DeclRefType; 18850 } 18851 18852 namespace { 18853 // Helper to copy the template arguments from a DeclRefExpr or MemberExpr. 18854 // The produced TemplateArgumentListInfo* points to data stored within this 18855 // object, so should only be used in contexts where the pointer will not be 18856 // used after the CopiedTemplateArgs object is destroyed. 18857 class CopiedTemplateArgs { 18858 bool HasArgs; 18859 TemplateArgumentListInfo TemplateArgStorage; 18860 public: 18861 template<typename RefExpr> 18862 CopiedTemplateArgs(RefExpr *E) : HasArgs(E->hasExplicitTemplateArgs()) { 18863 if (HasArgs) 18864 E->copyTemplateArgumentsInto(TemplateArgStorage); 18865 } 18866 operator TemplateArgumentListInfo*() 18867 #ifdef __has_cpp_attribute 18868 #if __has_cpp_attribute(clang::lifetimebound) 18869 [[clang::lifetimebound]] 18870 #endif 18871 #endif 18872 { 18873 return HasArgs ? &TemplateArgStorage : nullptr; 18874 } 18875 }; 18876 } 18877 18878 /// Walk the set of potential results of an expression and mark them all as 18879 /// non-odr-uses if they satisfy the side-conditions of the NonOdrUseReason. 18880 /// 18881 /// \return A new expression if we found any potential results, ExprEmpty() if 18882 /// not, and ExprError() if we diagnosed an error. 18883 static ExprResult rebuildPotentialResultsAsNonOdrUsed(Sema &S, Expr *E, 18884 NonOdrUseReason NOUR) { 18885 // Per C++11 [basic.def.odr], a variable is odr-used "unless it is 18886 // an object that satisfies the requirements for appearing in a 18887 // constant expression (5.19) and the lvalue-to-rvalue conversion (4.1) 18888 // is immediately applied." This function handles the lvalue-to-rvalue 18889 // conversion part. 18890 // 18891 // If we encounter a node that claims to be an odr-use but shouldn't be, we 18892 // transform it into the relevant kind of non-odr-use node and rebuild the 18893 // tree of nodes leading to it. 18894 // 18895 // This is a mini-TreeTransform that only transforms a restricted subset of 18896 // nodes (and only certain operands of them). 18897 18898 // Rebuild a subexpression. 18899 auto Rebuild = [&](Expr *Sub) { 18900 return rebuildPotentialResultsAsNonOdrUsed(S, Sub, NOUR); 18901 }; 18902 18903 // Check whether a potential result satisfies the requirements of NOUR. 18904 auto IsPotentialResultOdrUsed = [&](NamedDecl *D) { 18905 // Any entity other than a VarDecl is always odr-used whenever it's named 18906 // in a potentially-evaluated expression. 18907 auto *VD = dyn_cast<VarDecl>(D); 18908 if (!VD) 18909 return true; 18910 18911 // C++2a [basic.def.odr]p4: 18912 // A variable x whose name appears as a potentially-evalauted expression 18913 // e is odr-used by e unless 18914 // -- x is a reference that is usable in constant expressions, or 18915 // -- x is a variable of non-reference type that is usable in constant 18916 // expressions and has no mutable subobjects, and e is an element of 18917 // the set of potential results of an expression of 18918 // non-volatile-qualified non-class type to which the lvalue-to-rvalue 18919 // conversion is applied, or 18920 // -- x is a variable of non-reference type, and e is an element of the 18921 // set of potential results of a discarded-value expression to which 18922 // the lvalue-to-rvalue conversion is not applied 18923 // 18924 // We check the first bullet and the "potentially-evaluated" condition in 18925 // BuildDeclRefExpr. We check the type requirements in the second bullet 18926 // in CheckLValueToRValueConversionOperand below. 18927 switch (NOUR) { 18928 case NOUR_None: 18929 case NOUR_Unevaluated: 18930 llvm_unreachable("unexpected non-odr-use-reason"); 18931 18932 case NOUR_Constant: 18933 // Constant references were handled when they were built. 18934 if (VD->getType()->isReferenceType()) 18935 return true; 18936 if (auto *RD = VD->getType()->getAsCXXRecordDecl()) 18937 if (RD->hasMutableFields()) 18938 return true; 18939 if (!VD->isUsableInConstantExpressions(S.Context)) 18940 return true; 18941 break; 18942 18943 case NOUR_Discarded: 18944 if (VD->getType()->isReferenceType()) 18945 return true; 18946 break; 18947 } 18948 return false; 18949 }; 18950 18951 // Mark that this expression does not constitute an odr-use. 18952 auto MarkNotOdrUsed = [&] { 18953 S.MaybeODRUseExprs.remove(E); 18954 if (LambdaScopeInfo *LSI = S.getCurLambda()) 18955 LSI->markVariableExprAsNonODRUsed(E); 18956 }; 18957 18958 // C++2a [basic.def.odr]p2: 18959 // The set of potential results of an expression e is defined as follows: 18960 switch (E->getStmtClass()) { 18961 // -- If e is an id-expression, ... 18962 case Expr::DeclRefExprClass: { 18963 auto *DRE = cast<DeclRefExpr>(E); 18964 if (DRE->isNonOdrUse() || IsPotentialResultOdrUsed(DRE->getDecl())) 18965 break; 18966 18967 // Rebuild as a non-odr-use DeclRefExpr. 18968 MarkNotOdrUsed(); 18969 return DeclRefExpr::Create( 18970 S.Context, DRE->getQualifierLoc(), DRE->getTemplateKeywordLoc(), 18971 DRE->getDecl(), DRE->refersToEnclosingVariableOrCapture(), 18972 DRE->getNameInfo(), DRE->getType(), DRE->getValueKind(), 18973 DRE->getFoundDecl(), CopiedTemplateArgs(DRE), NOUR); 18974 } 18975 18976 case Expr::FunctionParmPackExprClass: { 18977 auto *FPPE = cast<FunctionParmPackExpr>(E); 18978 // If any of the declarations in the pack is odr-used, then the expression 18979 // as a whole constitutes an odr-use. 18980 for (VarDecl *D : *FPPE) 18981 if (IsPotentialResultOdrUsed(D)) 18982 return ExprEmpty(); 18983 18984 // FIXME: Rebuild as a non-odr-use FunctionParmPackExpr? In practice, 18985 // nothing cares about whether we marked this as an odr-use, but it might 18986 // be useful for non-compiler tools. 18987 MarkNotOdrUsed(); 18988 break; 18989 } 18990 18991 // -- If e is a subscripting operation with an array operand... 18992 case Expr::ArraySubscriptExprClass: { 18993 auto *ASE = cast<ArraySubscriptExpr>(E); 18994 Expr *OldBase = ASE->getBase()->IgnoreImplicit(); 18995 if (!OldBase->getType()->isArrayType()) 18996 break; 18997 ExprResult Base = Rebuild(OldBase); 18998 if (!Base.isUsable()) 18999 return Base; 19000 Expr *LHS = ASE->getBase() == ASE->getLHS() ? Base.get() : ASE->getLHS(); 19001 Expr *RHS = ASE->getBase() == ASE->getRHS() ? Base.get() : ASE->getRHS(); 19002 SourceLocation LBracketLoc = ASE->getBeginLoc(); // FIXME: Not stored. 19003 return S.ActOnArraySubscriptExpr(nullptr, LHS, LBracketLoc, RHS, 19004 ASE->getRBracketLoc()); 19005 } 19006 19007 case Expr::MemberExprClass: { 19008 auto *ME = cast<MemberExpr>(E); 19009 // -- If e is a class member access expression [...] naming a non-static 19010 // data member... 19011 if (isa<FieldDecl>(ME->getMemberDecl())) { 19012 ExprResult Base = Rebuild(ME->getBase()); 19013 if (!Base.isUsable()) 19014 return Base; 19015 return MemberExpr::Create( 19016 S.Context, Base.get(), ME->isArrow(), ME->getOperatorLoc(), 19017 ME->getQualifierLoc(), ME->getTemplateKeywordLoc(), 19018 ME->getMemberDecl(), ME->getFoundDecl(), ME->getMemberNameInfo(), 19019 CopiedTemplateArgs(ME), ME->getType(), ME->getValueKind(), 19020 ME->getObjectKind(), ME->isNonOdrUse()); 19021 } 19022 19023 if (ME->getMemberDecl()->isCXXInstanceMember()) 19024 break; 19025 19026 // -- If e is a class member access expression naming a static data member, 19027 // ... 19028 if (ME->isNonOdrUse() || IsPotentialResultOdrUsed(ME->getMemberDecl())) 19029 break; 19030 19031 // Rebuild as a non-odr-use MemberExpr. 19032 MarkNotOdrUsed(); 19033 return MemberExpr::Create( 19034 S.Context, ME->getBase(), ME->isArrow(), ME->getOperatorLoc(), 19035 ME->getQualifierLoc(), ME->getTemplateKeywordLoc(), ME->getMemberDecl(), 19036 ME->getFoundDecl(), ME->getMemberNameInfo(), CopiedTemplateArgs(ME), 19037 ME->getType(), ME->getValueKind(), ME->getObjectKind(), NOUR); 19038 } 19039 19040 case Expr::BinaryOperatorClass: { 19041 auto *BO = cast<BinaryOperator>(E); 19042 Expr *LHS = BO->getLHS(); 19043 Expr *RHS = BO->getRHS(); 19044 // -- If e is a pointer-to-member expression of the form e1 .* e2 ... 19045 if (BO->getOpcode() == BO_PtrMemD) { 19046 ExprResult Sub = Rebuild(LHS); 19047 if (!Sub.isUsable()) 19048 return Sub; 19049 LHS = Sub.get(); 19050 // -- If e is a comma expression, ... 19051 } else if (BO->getOpcode() == BO_Comma) { 19052 ExprResult Sub = Rebuild(RHS); 19053 if (!Sub.isUsable()) 19054 return Sub; 19055 RHS = Sub.get(); 19056 } else { 19057 break; 19058 } 19059 return S.BuildBinOp(nullptr, BO->getOperatorLoc(), BO->getOpcode(), 19060 LHS, RHS); 19061 } 19062 19063 // -- If e has the form (e1)... 19064 case Expr::ParenExprClass: { 19065 auto *PE = cast<ParenExpr>(E); 19066 ExprResult Sub = Rebuild(PE->getSubExpr()); 19067 if (!Sub.isUsable()) 19068 return Sub; 19069 return S.ActOnParenExpr(PE->getLParen(), PE->getRParen(), Sub.get()); 19070 } 19071 19072 // -- If e is a glvalue conditional expression, ... 19073 // We don't apply this to a binary conditional operator. FIXME: Should we? 19074 case Expr::ConditionalOperatorClass: { 19075 auto *CO = cast<ConditionalOperator>(E); 19076 ExprResult LHS = Rebuild(CO->getLHS()); 19077 if (LHS.isInvalid()) 19078 return ExprError(); 19079 ExprResult RHS = Rebuild(CO->getRHS()); 19080 if (RHS.isInvalid()) 19081 return ExprError(); 19082 if (!LHS.isUsable() && !RHS.isUsable()) 19083 return ExprEmpty(); 19084 if (!LHS.isUsable()) 19085 LHS = CO->getLHS(); 19086 if (!RHS.isUsable()) 19087 RHS = CO->getRHS(); 19088 return S.ActOnConditionalOp(CO->getQuestionLoc(), CO->getColonLoc(), 19089 CO->getCond(), LHS.get(), RHS.get()); 19090 } 19091 19092 // [Clang extension] 19093 // -- If e has the form __extension__ e1... 19094 case Expr::UnaryOperatorClass: { 19095 auto *UO = cast<UnaryOperator>(E); 19096 if (UO->getOpcode() != UO_Extension) 19097 break; 19098 ExprResult Sub = Rebuild(UO->getSubExpr()); 19099 if (!Sub.isUsable()) 19100 return Sub; 19101 return S.BuildUnaryOp(nullptr, UO->getOperatorLoc(), UO_Extension, 19102 Sub.get()); 19103 } 19104 19105 // [Clang extension] 19106 // -- If e has the form _Generic(...), the set of potential results is the 19107 // union of the sets of potential results of the associated expressions. 19108 case Expr::GenericSelectionExprClass: { 19109 auto *GSE = cast<GenericSelectionExpr>(E); 19110 19111 SmallVector<Expr *, 4> AssocExprs; 19112 bool AnyChanged = false; 19113 for (Expr *OrigAssocExpr : GSE->getAssocExprs()) { 19114 ExprResult AssocExpr = Rebuild(OrigAssocExpr); 19115 if (AssocExpr.isInvalid()) 19116 return ExprError(); 19117 if (AssocExpr.isUsable()) { 19118 AssocExprs.push_back(AssocExpr.get()); 19119 AnyChanged = true; 19120 } else { 19121 AssocExprs.push_back(OrigAssocExpr); 19122 } 19123 } 19124 19125 return AnyChanged ? S.CreateGenericSelectionExpr( 19126 GSE->getGenericLoc(), GSE->getDefaultLoc(), 19127 GSE->getRParenLoc(), GSE->getControllingExpr(), 19128 GSE->getAssocTypeSourceInfos(), AssocExprs) 19129 : ExprEmpty(); 19130 } 19131 19132 // [Clang extension] 19133 // -- If e has the form __builtin_choose_expr(...), the set of potential 19134 // results is the union of the sets of potential results of the 19135 // second and third subexpressions. 19136 case Expr::ChooseExprClass: { 19137 auto *CE = cast<ChooseExpr>(E); 19138 19139 ExprResult LHS = Rebuild(CE->getLHS()); 19140 if (LHS.isInvalid()) 19141 return ExprError(); 19142 19143 ExprResult RHS = Rebuild(CE->getLHS()); 19144 if (RHS.isInvalid()) 19145 return ExprError(); 19146 19147 if (!LHS.get() && !RHS.get()) 19148 return ExprEmpty(); 19149 if (!LHS.isUsable()) 19150 LHS = CE->getLHS(); 19151 if (!RHS.isUsable()) 19152 RHS = CE->getRHS(); 19153 19154 return S.ActOnChooseExpr(CE->getBuiltinLoc(), CE->getCond(), LHS.get(), 19155 RHS.get(), CE->getRParenLoc()); 19156 } 19157 19158 // Step through non-syntactic nodes. 19159 case Expr::ConstantExprClass: { 19160 auto *CE = cast<ConstantExpr>(E); 19161 ExprResult Sub = Rebuild(CE->getSubExpr()); 19162 if (!Sub.isUsable()) 19163 return Sub; 19164 return ConstantExpr::Create(S.Context, Sub.get()); 19165 } 19166 19167 // We could mostly rely on the recursive rebuilding to rebuild implicit 19168 // casts, but not at the top level, so rebuild them here. 19169 case Expr::ImplicitCastExprClass: { 19170 auto *ICE = cast<ImplicitCastExpr>(E); 19171 // Only step through the narrow set of cast kinds we expect to encounter. 19172 // Anything else suggests we've left the region in which potential results 19173 // can be found. 19174 switch (ICE->getCastKind()) { 19175 case CK_NoOp: 19176 case CK_DerivedToBase: 19177 case CK_UncheckedDerivedToBase: { 19178 ExprResult Sub = Rebuild(ICE->getSubExpr()); 19179 if (!Sub.isUsable()) 19180 return Sub; 19181 CXXCastPath Path(ICE->path()); 19182 return S.ImpCastExprToType(Sub.get(), ICE->getType(), ICE->getCastKind(), 19183 ICE->getValueKind(), &Path); 19184 } 19185 19186 default: 19187 break; 19188 } 19189 break; 19190 } 19191 19192 default: 19193 break; 19194 } 19195 19196 // Can't traverse through this node. Nothing to do. 19197 return ExprEmpty(); 19198 } 19199 19200 ExprResult Sema::CheckLValueToRValueConversionOperand(Expr *E) { 19201 // Check whether the operand is or contains an object of non-trivial C union 19202 // type. 19203 if (E->getType().isVolatileQualified() && 19204 (E->getType().hasNonTrivialToPrimitiveDestructCUnion() || 19205 E->getType().hasNonTrivialToPrimitiveCopyCUnion())) 19206 checkNonTrivialCUnion(E->getType(), E->getExprLoc(), 19207 Sema::NTCUC_LValueToRValueVolatile, 19208 NTCUK_Destruct|NTCUK_Copy); 19209 19210 // C++2a [basic.def.odr]p4: 19211 // [...] an expression of non-volatile-qualified non-class type to which 19212 // the lvalue-to-rvalue conversion is applied [...] 19213 if (E->getType().isVolatileQualified() || E->getType()->getAs<RecordType>()) 19214 return E; 19215 19216 ExprResult Result = 19217 rebuildPotentialResultsAsNonOdrUsed(*this, E, NOUR_Constant); 19218 if (Result.isInvalid()) 19219 return ExprError(); 19220 return Result.get() ? Result : E; 19221 } 19222 19223 ExprResult Sema::ActOnConstantExpression(ExprResult Res) { 19224 Res = CorrectDelayedTyposInExpr(Res); 19225 19226 if (!Res.isUsable()) 19227 return Res; 19228 19229 // If a constant-expression is a reference to a variable where we delay 19230 // deciding whether it is an odr-use, just assume we will apply the 19231 // lvalue-to-rvalue conversion. In the one case where this doesn't happen 19232 // (a non-type template argument), we have special handling anyway. 19233 return CheckLValueToRValueConversionOperand(Res.get()); 19234 } 19235 19236 void Sema::CleanupVarDeclMarking() { 19237 // Iterate through a local copy in case MarkVarDeclODRUsed makes a recursive 19238 // call. 19239 MaybeODRUseExprSet LocalMaybeODRUseExprs; 19240 std::swap(LocalMaybeODRUseExprs, MaybeODRUseExprs); 19241 19242 for (Expr *E : LocalMaybeODRUseExprs) { 19243 if (auto *DRE = dyn_cast<DeclRefExpr>(E)) { 19244 MarkVarDeclODRUsed(cast<VarDecl>(DRE->getDecl()), 19245 DRE->getLocation(), *this); 19246 } else if (auto *ME = dyn_cast<MemberExpr>(E)) { 19247 MarkVarDeclODRUsed(cast<VarDecl>(ME->getMemberDecl()), ME->getMemberLoc(), 19248 *this); 19249 } else if (auto *FP = dyn_cast<FunctionParmPackExpr>(E)) { 19250 for (VarDecl *VD : *FP) 19251 MarkVarDeclODRUsed(VD, FP->getParameterPackLocation(), *this); 19252 } else { 19253 llvm_unreachable("Unexpected expression"); 19254 } 19255 } 19256 19257 assert(MaybeODRUseExprs.empty() && 19258 "MarkVarDeclODRUsed failed to cleanup MaybeODRUseExprs?"); 19259 } 19260 19261 static void DoMarkVarDeclReferenced( 19262 Sema &SemaRef, SourceLocation Loc, VarDecl *Var, Expr *E, 19263 llvm::DenseMap<const VarDecl *, int> &RefsMinusAssignments) { 19264 assert((!E || isa<DeclRefExpr>(E) || isa<MemberExpr>(E) || 19265 isa<FunctionParmPackExpr>(E)) && 19266 "Invalid Expr argument to DoMarkVarDeclReferenced"); 19267 Var->setReferenced(); 19268 19269 if (Var->isInvalidDecl()) 19270 return; 19271 19272 auto *MSI = Var->getMemberSpecializationInfo(); 19273 TemplateSpecializationKind TSK = MSI ? MSI->getTemplateSpecializationKind() 19274 : Var->getTemplateSpecializationKind(); 19275 19276 OdrUseContext OdrUse = isOdrUseContext(SemaRef); 19277 bool UsableInConstantExpr = 19278 Var->mightBeUsableInConstantExpressions(SemaRef.Context); 19279 19280 if (Var->isLocalVarDeclOrParm() && !Var->hasExternalStorage()) { 19281 RefsMinusAssignments.insert({Var, 0}).first->getSecond()++; 19282 } 19283 19284 // C++20 [expr.const]p12: 19285 // A variable [...] is needed for constant evaluation if it is [...] a 19286 // variable whose name appears as a potentially constant evaluated 19287 // expression that is either a contexpr variable or is of non-volatile 19288 // const-qualified integral type or of reference type 19289 bool NeededForConstantEvaluation = 19290 isPotentiallyConstantEvaluatedContext(SemaRef) && UsableInConstantExpr; 19291 19292 bool NeedDefinition = 19293 OdrUse == OdrUseContext::Used || NeededForConstantEvaluation; 19294 19295 assert(!isa<VarTemplatePartialSpecializationDecl>(Var) && 19296 "Can't instantiate a partial template specialization."); 19297 19298 // If this might be a member specialization of a static data member, check 19299 // the specialization is visible. We already did the checks for variable 19300 // template specializations when we created them. 19301 if (NeedDefinition && TSK != TSK_Undeclared && 19302 !isa<VarTemplateSpecializationDecl>(Var)) 19303 SemaRef.checkSpecializationVisibility(Loc, Var); 19304 19305 // Perform implicit instantiation of static data members, static data member 19306 // templates of class templates, and variable template specializations. Delay 19307 // instantiations of variable templates, except for those that could be used 19308 // in a constant expression. 19309 if (NeedDefinition && isTemplateInstantiation(TSK)) { 19310 // Per C++17 [temp.explicit]p10, we may instantiate despite an explicit 19311 // instantiation declaration if a variable is usable in a constant 19312 // expression (among other cases). 19313 bool TryInstantiating = 19314 TSK == TSK_ImplicitInstantiation || 19315 (TSK == TSK_ExplicitInstantiationDeclaration && UsableInConstantExpr); 19316 19317 if (TryInstantiating) { 19318 SourceLocation PointOfInstantiation = 19319 MSI ? MSI->getPointOfInstantiation() : Var->getPointOfInstantiation(); 19320 bool FirstInstantiation = PointOfInstantiation.isInvalid(); 19321 if (FirstInstantiation) { 19322 PointOfInstantiation = Loc; 19323 if (MSI) 19324 MSI->setPointOfInstantiation(PointOfInstantiation); 19325 // FIXME: Notify listener. 19326 else 19327 Var->setTemplateSpecializationKind(TSK, PointOfInstantiation); 19328 } 19329 19330 if (UsableInConstantExpr) { 19331 // Do not defer instantiations of variables that could be used in a 19332 // constant expression. 19333 SemaRef.runWithSufficientStackSpace(PointOfInstantiation, [&] { 19334 SemaRef.InstantiateVariableDefinition(PointOfInstantiation, Var); 19335 }); 19336 19337 // Re-set the member to trigger a recomputation of the dependence bits 19338 // for the expression. 19339 if (auto *DRE = dyn_cast_or_null<DeclRefExpr>(E)) 19340 DRE->setDecl(DRE->getDecl()); 19341 else if (auto *ME = dyn_cast_or_null<MemberExpr>(E)) 19342 ME->setMemberDecl(ME->getMemberDecl()); 19343 } else if (FirstInstantiation || 19344 isa<VarTemplateSpecializationDecl>(Var)) { 19345 // FIXME: For a specialization of a variable template, we don't 19346 // distinguish between "declaration and type implicitly instantiated" 19347 // and "implicit instantiation of definition requested", so we have 19348 // no direct way to avoid enqueueing the pending instantiation 19349 // multiple times. 19350 SemaRef.PendingInstantiations 19351 .push_back(std::make_pair(Var, PointOfInstantiation)); 19352 } 19353 } 19354 } 19355 19356 // C++2a [basic.def.odr]p4: 19357 // A variable x whose name appears as a potentially-evaluated expression e 19358 // is odr-used by e unless 19359 // -- x is a reference that is usable in constant expressions 19360 // -- x is a variable of non-reference type that is usable in constant 19361 // expressions and has no mutable subobjects [FIXME], and e is an 19362 // element of the set of potential results of an expression of 19363 // non-volatile-qualified non-class type to which the lvalue-to-rvalue 19364 // conversion is applied 19365 // -- x is a variable of non-reference type, and e is an element of the set 19366 // of potential results of a discarded-value expression to which the 19367 // lvalue-to-rvalue conversion is not applied [FIXME] 19368 // 19369 // We check the first part of the second bullet here, and 19370 // Sema::CheckLValueToRValueConversionOperand deals with the second part. 19371 // FIXME: To get the third bullet right, we need to delay this even for 19372 // variables that are not usable in constant expressions. 19373 19374 // If we already know this isn't an odr-use, there's nothing more to do. 19375 if (DeclRefExpr *DRE = dyn_cast_or_null<DeclRefExpr>(E)) 19376 if (DRE->isNonOdrUse()) 19377 return; 19378 if (MemberExpr *ME = dyn_cast_or_null<MemberExpr>(E)) 19379 if (ME->isNonOdrUse()) 19380 return; 19381 19382 switch (OdrUse) { 19383 case OdrUseContext::None: 19384 assert((!E || isa<FunctionParmPackExpr>(E)) && 19385 "missing non-odr-use marking for unevaluated decl ref"); 19386 break; 19387 19388 case OdrUseContext::FormallyOdrUsed: 19389 // FIXME: Ignoring formal odr-uses results in incorrect lambda capture 19390 // behavior. 19391 break; 19392 19393 case OdrUseContext::Used: 19394 // If we might later find that this expression isn't actually an odr-use, 19395 // delay the marking. 19396 if (E && Var->isUsableInConstantExpressions(SemaRef.Context)) 19397 SemaRef.MaybeODRUseExprs.insert(E); 19398 else 19399 MarkVarDeclODRUsed(Var, Loc, SemaRef); 19400 break; 19401 19402 case OdrUseContext::Dependent: 19403 // If this is a dependent context, we don't need to mark variables as 19404 // odr-used, but we may still need to track them for lambda capture. 19405 // FIXME: Do we also need to do this inside dependent typeid expressions 19406 // (which are modeled as unevaluated at this point)? 19407 const bool RefersToEnclosingScope = 19408 (SemaRef.CurContext != Var->getDeclContext() && 19409 Var->getDeclContext()->isFunctionOrMethod() && Var->hasLocalStorage()); 19410 if (RefersToEnclosingScope) { 19411 LambdaScopeInfo *const LSI = 19412 SemaRef.getCurLambda(/*IgnoreNonLambdaCapturingScope=*/true); 19413 if (LSI && (!LSI->CallOperator || 19414 !LSI->CallOperator->Encloses(Var->getDeclContext()))) { 19415 // If a variable could potentially be odr-used, defer marking it so 19416 // until we finish analyzing the full expression for any 19417 // lvalue-to-rvalue 19418 // or discarded value conversions that would obviate odr-use. 19419 // Add it to the list of potential captures that will be analyzed 19420 // later (ActOnFinishFullExpr) for eventual capture and odr-use marking 19421 // unless the variable is a reference that was initialized by a constant 19422 // expression (this will never need to be captured or odr-used). 19423 // 19424 // FIXME: We can simplify this a lot after implementing P0588R1. 19425 assert(E && "Capture variable should be used in an expression."); 19426 if (!Var->getType()->isReferenceType() || 19427 !Var->isUsableInConstantExpressions(SemaRef.Context)) 19428 LSI->addPotentialCapture(E->IgnoreParens()); 19429 } 19430 } 19431 break; 19432 } 19433 } 19434 19435 /// Mark a variable referenced, and check whether it is odr-used 19436 /// (C++ [basic.def.odr]p2, C99 6.9p3). Note that this should not be 19437 /// used directly for normal expressions referring to VarDecl. 19438 void Sema::MarkVariableReferenced(SourceLocation Loc, VarDecl *Var) { 19439 DoMarkVarDeclReferenced(*this, Loc, Var, nullptr, RefsMinusAssignments); 19440 } 19441 19442 static void 19443 MarkExprReferenced(Sema &SemaRef, SourceLocation Loc, Decl *D, Expr *E, 19444 bool MightBeOdrUse, 19445 llvm::DenseMap<const VarDecl *, int> &RefsMinusAssignments) { 19446 if (SemaRef.isInOpenMPDeclareTargetContext()) 19447 SemaRef.checkDeclIsAllowedInOpenMPTarget(E, D); 19448 19449 if (VarDecl *Var = dyn_cast<VarDecl>(D)) { 19450 DoMarkVarDeclReferenced(SemaRef, Loc, Var, E, RefsMinusAssignments); 19451 return; 19452 } 19453 19454 SemaRef.MarkAnyDeclReferenced(Loc, D, MightBeOdrUse); 19455 19456 // If this is a call to a method via a cast, also mark the method in the 19457 // derived class used in case codegen can devirtualize the call. 19458 const MemberExpr *ME = dyn_cast<MemberExpr>(E); 19459 if (!ME) 19460 return; 19461 CXXMethodDecl *MD = dyn_cast<CXXMethodDecl>(ME->getMemberDecl()); 19462 if (!MD) 19463 return; 19464 // Only attempt to devirtualize if this is truly a virtual call. 19465 bool IsVirtualCall = MD->isVirtual() && 19466 ME->performsVirtualDispatch(SemaRef.getLangOpts()); 19467 if (!IsVirtualCall) 19468 return; 19469 19470 // If it's possible to devirtualize the call, mark the called function 19471 // referenced. 19472 CXXMethodDecl *DM = MD->getDevirtualizedMethod( 19473 ME->getBase(), SemaRef.getLangOpts().AppleKext); 19474 if (DM) 19475 SemaRef.MarkAnyDeclReferenced(Loc, DM, MightBeOdrUse); 19476 } 19477 19478 /// Perform reference-marking and odr-use handling for a DeclRefExpr. 19479 /// 19480 /// Note, this may change the dependence of the DeclRefExpr, and so needs to be 19481 /// handled with care if the DeclRefExpr is not newly-created. 19482 void Sema::MarkDeclRefReferenced(DeclRefExpr *E, const Expr *Base) { 19483 // TODO: update this with DR# once a defect report is filed. 19484 // C++11 defect. The address of a pure member should not be an ODR use, even 19485 // if it's a qualified reference. 19486 bool OdrUse = true; 19487 if (const CXXMethodDecl *Method = dyn_cast<CXXMethodDecl>(E->getDecl())) 19488 if (Method->isVirtual() && 19489 !Method->getDevirtualizedMethod(Base, getLangOpts().AppleKext)) 19490 OdrUse = false; 19491 19492 if (auto *FD = dyn_cast<FunctionDecl>(E->getDecl())) 19493 if (!isUnevaluatedContext() && !isConstantEvaluated() && 19494 FD->isConsteval() && !RebuildingImmediateInvocation) 19495 ExprEvalContexts.back().ReferenceToConsteval.insert(E); 19496 MarkExprReferenced(*this, E->getLocation(), E->getDecl(), E, OdrUse, 19497 RefsMinusAssignments); 19498 } 19499 19500 /// Perform reference-marking and odr-use handling for a MemberExpr. 19501 void Sema::MarkMemberReferenced(MemberExpr *E) { 19502 // C++11 [basic.def.odr]p2: 19503 // A non-overloaded function whose name appears as a potentially-evaluated 19504 // expression or a member of a set of candidate functions, if selected by 19505 // overload resolution when referred to from a potentially-evaluated 19506 // expression, is odr-used, unless it is a pure virtual function and its 19507 // name is not explicitly qualified. 19508 bool MightBeOdrUse = true; 19509 if (E->performsVirtualDispatch(getLangOpts())) { 19510 if (CXXMethodDecl *Method = dyn_cast<CXXMethodDecl>(E->getMemberDecl())) 19511 if (Method->isPure()) 19512 MightBeOdrUse = false; 19513 } 19514 SourceLocation Loc = 19515 E->getMemberLoc().isValid() ? E->getMemberLoc() : E->getBeginLoc(); 19516 MarkExprReferenced(*this, Loc, E->getMemberDecl(), E, MightBeOdrUse, 19517 RefsMinusAssignments); 19518 } 19519 19520 /// Perform reference-marking and odr-use handling for a FunctionParmPackExpr. 19521 void Sema::MarkFunctionParmPackReferenced(FunctionParmPackExpr *E) { 19522 for (VarDecl *VD : *E) 19523 MarkExprReferenced(*this, E->getParameterPackLocation(), VD, E, true, 19524 RefsMinusAssignments); 19525 } 19526 19527 /// Perform marking for a reference to an arbitrary declaration. It 19528 /// marks the declaration referenced, and performs odr-use checking for 19529 /// functions and variables. This method should not be used when building a 19530 /// normal expression which refers to a variable. 19531 void Sema::MarkAnyDeclReferenced(SourceLocation Loc, Decl *D, 19532 bool MightBeOdrUse) { 19533 if (MightBeOdrUse) { 19534 if (auto *VD = dyn_cast<VarDecl>(D)) { 19535 MarkVariableReferenced(Loc, VD); 19536 return; 19537 } 19538 } 19539 if (auto *FD = dyn_cast<FunctionDecl>(D)) { 19540 MarkFunctionReferenced(Loc, FD, MightBeOdrUse); 19541 return; 19542 } 19543 D->setReferenced(); 19544 } 19545 19546 namespace { 19547 // Mark all of the declarations used by a type as referenced. 19548 // FIXME: Not fully implemented yet! We need to have a better understanding 19549 // of when we're entering a context we should not recurse into. 19550 // FIXME: This is and EvaluatedExprMarker are more-or-less equivalent to 19551 // TreeTransforms rebuilding the type in a new context. Rather than 19552 // duplicating the TreeTransform logic, we should consider reusing it here. 19553 // Currently that causes problems when rebuilding LambdaExprs. 19554 class MarkReferencedDecls : public RecursiveASTVisitor<MarkReferencedDecls> { 19555 Sema &S; 19556 SourceLocation Loc; 19557 19558 public: 19559 typedef RecursiveASTVisitor<MarkReferencedDecls> Inherited; 19560 19561 MarkReferencedDecls(Sema &S, SourceLocation Loc) : S(S), Loc(Loc) { } 19562 19563 bool TraverseTemplateArgument(const TemplateArgument &Arg); 19564 }; 19565 } 19566 19567 bool MarkReferencedDecls::TraverseTemplateArgument( 19568 const TemplateArgument &Arg) { 19569 { 19570 // A non-type template argument is a constant-evaluated context. 19571 EnterExpressionEvaluationContext Evaluated( 19572 S, Sema::ExpressionEvaluationContext::ConstantEvaluated); 19573 if (Arg.getKind() == TemplateArgument::Declaration) { 19574 if (Decl *D = Arg.getAsDecl()) 19575 S.MarkAnyDeclReferenced(Loc, D, true); 19576 } else if (Arg.getKind() == TemplateArgument::Expression) { 19577 S.MarkDeclarationsReferencedInExpr(Arg.getAsExpr(), false); 19578 } 19579 } 19580 19581 return Inherited::TraverseTemplateArgument(Arg); 19582 } 19583 19584 void Sema::MarkDeclarationsReferencedInType(SourceLocation Loc, QualType T) { 19585 MarkReferencedDecls Marker(*this, Loc); 19586 Marker.TraverseType(T); 19587 } 19588 19589 namespace { 19590 /// Helper class that marks all of the declarations referenced by 19591 /// potentially-evaluated subexpressions as "referenced". 19592 class EvaluatedExprMarker : public UsedDeclVisitor<EvaluatedExprMarker> { 19593 public: 19594 typedef UsedDeclVisitor<EvaluatedExprMarker> Inherited; 19595 bool SkipLocalVariables; 19596 ArrayRef<const Expr *> StopAt; 19597 19598 EvaluatedExprMarker(Sema &S, bool SkipLocalVariables, 19599 ArrayRef<const Expr *> StopAt) 19600 : Inherited(S), SkipLocalVariables(SkipLocalVariables), StopAt(StopAt) {} 19601 19602 void visitUsedDecl(SourceLocation Loc, Decl *D) { 19603 S.MarkFunctionReferenced(Loc, cast<FunctionDecl>(D)); 19604 } 19605 19606 void Visit(Expr *E) { 19607 if (std::find(StopAt.begin(), StopAt.end(), E) != StopAt.end()) 19608 return; 19609 Inherited::Visit(E); 19610 } 19611 19612 void VisitDeclRefExpr(DeclRefExpr *E) { 19613 // If we were asked not to visit local variables, don't. 19614 if (SkipLocalVariables) { 19615 if (VarDecl *VD = dyn_cast<VarDecl>(E->getDecl())) 19616 if (VD->hasLocalStorage()) 19617 return; 19618 } 19619 19620 // FIXME: This can trigger the instantiation of the initializer of a 19621 // variable, which can cause the expression to become value-dependent 19622 // or error-dependent. Do we need to propagate the new dependence bits? 19623 S.MarkDeclRefReferenced(E); 19624 } 19625 19626 void VisitMemberExpr(MemberExpr *E) { 19627 S.MarkMemberReferenced(E); 19628 Visit(E->getBase()); 19629 } 19630 }; 19631 } // namespace 19632 19633 /// Mark any declarations that appear within this expression or any 19634 /// potentially-evaluated subexpressions as "referenced". 19635 /// 19636 /// \param SkipLocalVariables If true, don't mark local variables as 19637 /// 'referenced'. 19638 /// \param StopAt Subexpressions that we shouldn't recurse into. 19639 void Sema::MarkDeclarationsReferencedInExpr(Expr *E, 19640 bool SkipLocalVariables, 19641 ArrayRef<const Expr*> StopAt) { 19642 EvaluatedExprMarker(*this, SkipLocalVariables, StopAt).Visit(E); 19643 } 19644 19645 /// Emit a diagnostic when statements are reachable. 19646 /// FIXME: check for reachability even in expressions for which we don't build a 19647 /// CFG (eg, in the initializer of a global or in a constant expression). 19648 /// For example, 19649 /// namespace { auto *p = new double[3][false ? (1, 2) : 3]; } 19650 bool Sema::DiagIfReachable(SourceLocation Loc, ArrayRef<const Stmt *> Stmts, 19651 const PartialDiagnostic &PD) { 19652 if (!Stmts.empty() && getCurFunctionOrMethodDecl()) { 19653 if (!FunctionScopes.empty()) 19654 FunctionScopes.back()->PossiblyUnreachableDiags.push_back( 19655 sema::PossiblyUnreachableDiag(PD, Loc, Stmts)); 19656 return true; 19657 } 19658 19659 // The initializer of a constexpr variable or of the first declaration of a 19660 // static data member is not syntactically a constant evaluated constant, 19661 // but nonetheless is always required to be a constant expression, so we 19662 // can skip diagnosing. 19663 // FIXME: Using the mangling context here is a hack. 19664 if (auto *VD = dyn_cast_or_null<VarDecl>( 19665 ExprEvalContexts.back().ManglingContextDecl)) { 19666 if (VD->isConstexpr() || 19667 (VD->isStaticDataMember() && VD->isFirstDecl() && !VD->isInline())) 19668 return false; 19669 // FIXME: For any other kind of variable, we should build a CFG for its 19670 // initializer and check whether the context in question is reachable. 19671 } 19672 19673 Diag(Loc, PD); 19674 return true; 19675 } 19676 19677 /// Emit a diagnostic that describes an effect on the run-time behavior 19678 /// of the program being compiled. 19679 /// 19680 /// This routine emits the given diagnostic when the code currently being 19681 /// type-checked is "potentially evaluated", meaning that there is a 19682 /// possibility that the code will actually be executable. Code in sizeof() 19683 /// expressions, code used only during overload resolution, etc., are not 19684 /// potentially evaluated. This routine will suppress such diagnostics or, 19685 /// in the absolutely nutty case of potentially potentially evaluated 19686 /// expressions (C++ typeid), queue the diagnostic to potentially emit it 19687 /// later. 19688 /// 19689 /// This routine should be used for all diagnostics that describe the run-time 19690 /// behavior of a program, such as passing a non-POD value through an ellipsis. 19691 /// Failure to do so will likely result in spurious diagnostics or failures 19692 /// during overload resolution or within sizeof/alignof/typeof/typeid. 19693 bool Sema::DiagRuntimeBehavior(SourceLocation Loc, ArrayRef<const Stmt*> Stmts, 19694 const PartialDiagnostic &PD) { 19695 19696 if (ExprEvalContexts.back().isDiscardedStatementContext()) 19697 return false; 19698 19699 switch (ExprEvalContexts.back().Context) { 19700 case ExpressionEvaluationContext::Unevaluated: 19701 case ExpressionEvaluationContext::UnevaluatedList: 19702 case ExpressionEvaluationContext::UnevaluatedAbstract: 19703 case ExpressionEvaluationContext::DiscardedStatement: 19704 // The argument will never be evaluated, so don't complain. 19705 break; 19706 19707 case ExpressionEvaluationContext::ConstantEvaluated: 19708 case ExpressionEvaluationContext::ImmediateFunctionContext: 19709 // Relevant diagnostics should be produced by constant evaluation. 19710 break; 19711 19712 case ExpressionEvaluationContext::PotentiallyEvaluated: 19713 case ExpressionEvaluationContext::PotentiallyEvaluatedIfUsed: 19714 return DiagIfReachable(Loc, Stmts, PD); 19715 } 19716 19717 return false; 19718 } 19719 19720 bool Sema::DiagRuntimeBehavior(SourceLocation Loc, const Stmt *Statement, 19721 const PartialDiagnostic &PD) { 19722 return DiagRuntimeBehavior( 19723 Loc, Statement ? llvm::makeArrayRef(Statement) : llvm::None, PD); 19724 } 19725 19726 bool Sema::CheckCallReturnType(QualType ReturnType, SourceLocation Loc, 19727 CallExpr *CE, FunctionDecl *FD) { 19728 if (ReturnType->isVoidType() || !ReturnType->isIncompleteType()) 19729 return false; 19730 19731 // If we're inside a decltype's expression, don't check for a valid return 19732 // type or construct temporaries until we know whether this is the last call. 19733 if (ExprEvalContexts.back().ExprContext == 19734 ExpressionEvaluationContextRecord::EK_Decltype) { 19735 ExprEvalContexts.back().DelayedDecltypeCalls.push_back(CE); 19736 return false; 19737 } 19738 19739 class CallReturnIncompleteDiagnoser : public TypeDiagnoser { 19740 FunctionDecl *FD; 19741 CallExpr *CE; 19742 19743 public: 19744 CallReturnIncompleteDiagnoser(FunctionDecl *FD, CallExpr *CE) 19745 : FD(FD), CE(CE) { } 19746 19747 void diagnose(Sema &S, SourceLocation Loc, QualType T) override { 19748 if (!FD) { 19749 S.Diag(Loc, diag::err_call_incomplete_return) 19750 << T << CE->getSourceRange(); 19751 return; 19752 } 19753 19754 S.Diag(Loc, diag::err_call_function_incomplete_return) 19755 << CE->getSourceRange() << FD << T; 19756 S.Diag(FD->getLocation(), diag::note_entity_declared_at) 19757 << FD->getDeclName(); 19758 } 19759 } Diagnoser(FD, CE); 19760 19761 if (RequireCompleteType(Loc, ReturnType, Diagnoser)) 19762 return true; 19763 19764 return false; 19765 } 19766 19767 // Diagnose the s/=/==/ and s/\|=/!=/ typos. Note that adding parentheses 19768 // will prevent this condition from triggering, which is what we want. 19769 void Sema::DiagnoseAssignmentAsCondition(Expr *E) { 19770 SourceLocation Loc; 19771 19772 unsigned diagnostic = diag::warn_condition_is_assignment; 19773 bool IsOrAssign = false; 19774 19775 if (BinaryOperator *Op = dyn_cast<BinaryOperator>(E)) { 19776 if (Op->getOpcode() != BO_Assign && Op->getOpcode() != BO_OrAssign) 19777 return; 19778 19779 IsOrAssign = Op->getOpcode() == BO_OrAssign; 19780 19781 // Greylist some idioms by putting them into a warning subcategory. 19782 if (ObjCMessageExpr *ME 19783 = dyn_cast<ObjCMessageExpr>(Op->getRHS()->IgnoreParenCasts())) { 19784 Selector Sel = ME->getSelector(); 19785 19786 // self = [<foo> init...] 19787 if (isSelfExpr(Op->getLHS()) && ME->getMethodFamily() == OMF_init) 19788 diagnostic = diag::warn_condition_is_idiomatic_assignment; 19789 19790 // <foo> = [<bar> nextObject] 19791 else if (Sel.isUnarySelector() && Sel.getNameForSlot(0) == "nextObject") 19792 diagnostic = diag::warn_condition_is_idiomatic_assignment; 19793 } 19794 19795 Loc = Op->getOperatorLoc(); 19796 } else if (CXXOperatorCallExpr *Op = dyn_cast<CXXOperatorCallExpr>(E)) { 19797 if (Op->getOperator() != OO_Equal && Op->getOperator() != OO_PipeEqual) 19798 return; 19799 19800 IsOrAssign = Op->getOperator() == OO_PipeEqual; 19801 Loc = Op->getOperatorLoc(); 19802 } else if (PseudoObjectExpr *POE = dyn_cast<PseudoObjectExpr>(E)) 19803 return DiagnoseAssignmentAsCondition(POE->getSyntacticForm()); 19804 else { 19805 // Not an assignment. 19806 return; 19807 } 19808 19809 Diag(Loc, diagnostic) << E->getSourceRange(); 19810 19811 SourceLocation Open = E->getBeginLoc(); 19812 SourceLocation Close = getLocForEndOfToken(E->getSourceRange().getEnd()); 19813 Diag(Loc, diag::note_condition_assign_silence) 19814 << FixItHint::CreateInsertion(Open, "(") 19815 << FixItHint::CreateInsertion(Close, ")"); 19816 19817 if (IsOrAssign) 19818 Diag(Loc, diag::note_condition_or_assign_to_comparison) 19819 << FixItHint::CreateReplacement(Loc, "!="); 19820 else 19821 Diag(Loc, diag::note_condition_assign_to_comparison) 19822 << FixItHint::CreateReplacement(Loc, "=="); 19823 } 19824 19825 /// Redundant parentheses over an equality comparison can indicate 19826 /// that the user intended an assignment used as condition. 19827 void Sema::DiagnoseEqualityWithExtraParens(ParenExpr *ParenE) { 19828 // Don't warn if the parens came from a macro. 19829 SourceLocation parenLoc = ParenE->getBeginLoc(); 19830 if (parenLoc.isInvalid() || parenLoc.isMacroID()) 19831 return; 19832 // Don't warn for dependent expressions. 19833 if (ParenE->isTypeDependent()) 19834 return; 19835 19836 Expr *E = ParenE->IgnoreParens(); 19837 19838 if (BinaryOperator *opE = dyn_cast<BinaryOperator>(E)) 19839 if (opE->getOpcode() == BO_EQ && 19840 opE->getLHS()->IgnoreParenImpCasts()->isModifiableLvalue(Context) 19841 == Expr::MLV_Valid) { 19842 SourceLocation Loc = opE->getOperatorLoc(); 19843 19844 Diag(Loc, diag::warn_equality_with_extra_parens) << E->getSourceRange(); 19845 SourceRange ParenERange = ParenE->getSourceRange(); 19846 Diag(Loc, diag::note_equality_comparison_silence) 19847 << FixItHint::CreateRemoval(ParenERange.getBegin()) 19848 << FixItHint::CreateRemoval(ParenERange.getEnd()); 19849 Diag(Loc, diag::note_equality_comparison_to_assign) 19850 << FixItHint::CreateReplacement(Loc, "="); 19851 } 19852 } 19853 19854 ExprResult Sema::CheckBooleanCondition(SourceLocation Loc, Expr *E, 19855 bool IsConstexpr) { 19856 DiagnoseAssignmentAsCondition(E); 19857 if (ParenExpr *parenE = dyn_cast<ParenExpr>(E)) 19858 DiagnoseEqualityWithExtraParens(parenE); 19859 19860 ExprResult result = CheckPlaceholderExpr(E); 19861 if (result.isInvalid()) return ExprError(); 19862 E = result.get(); 19863 19864 if (!E->isTypeDependent()) { 19865 if (getLangOpts().CPlusPlus) 19866 return CheckCXXBooleanCondition(E, IsConstexpr); // C++ 6.4p4 19867 19868 ExprResult ERes = DefaultFunctionArrayLvalueConversion(E); 19869 if (ERes.isInvalid()) 19870 return ExprError(); 19871 E = ERes.get(); 19872 19873 QualType T = E->getType(); 19874 if (!T->isScalarType()) { // C99 6.8.4.1p1 19875 Diag(Loc, diag::err_typecheck_statement_requires_scalar) 19876 << T << E->getSourceRange(); 19877 return ExprError(); 19878 } 19879 CheckBoolLikeConversion(E, Loc); 19880 } 19881 19882 return E; 19883 } 19884 19885 Sema::ConditionResult Sema::ActOnCondition(Scope *S, SourceLocation Loc, 19886 Expr *SubExpr, ConditionKind CK, 19887 bool MissingOK) { 19888 // MissingOK indicates whether having no condition expression is valid 19889 // (for loop) or invalid (e.g. while loop). 19890 if (!SubExpr) 19891 return MissingOK ? ConditionResult() : ConditionError(); 19892 19893 ExprResult Cond; 19894 switch (CK) { 19895 case ConditionKind::Boolean: 19896 Cond = CheckBooleanCondition(Loc, SubExpr); 19897 break; 19898 19899 case ConditionKind::ConstexprIf: 19900 Cond = CheckBooleanCondition(Loc, SubExpr, true); 19901 break; 19902 19903 case ConditionKind::Switch: 19904 Cond = CheckSwitchCondition(Loc, SubExpr); 19905 break; 19906 } 19907 if (Cond.isInvalid()) { 19908 Cond = CreateRecoveryExpr(SubExpr->getBeginLoc(), SubExpr->getEndLoc(), 19909 {SubExpr}, PreferredConditionType(CK)); 19910 if (!Cond.get()) 19911 return ConditionError(); 19912 } 19913 // FIXME: FullExprArg doesn't have an invalid bit, so check nullness instead. 19914 FullExprArg FullExpr = MakeFullExpr(Cond.get(), Loc); 19915 if (!FullExpr.get()) 19916 return ConditionError(); 19917 19918 return ConditionResult(*this, nullptr, FullExpr, 19919 CK == ConditionKind::ConstexprIf); 19920 } 19921 19922 namespace { 19923 /// A visitor for rebuilding a call to an __unknown_any expression 19924 /// to have an appropriate type. 19925 struct RebuildUnknownAnyFunction 19926 : StmtVisitor<RebuildUnknownAnyFunction, ExprResult> { 19927 19928 Sema &S; 19929 19930 RebuildUnknownAnyFunction(Sema &S) : S(S) {} 19931 19932 ExprResult VisitStmt(Stmt *S) { 19933 llvm_unreachable("unexpected statement!"); 19934 } 19935 19936 ExprResult VisitExpr(Expr *E) { 19937 S.Diag(E->getExprLoc(), diag::err_unsupported_unknown_any_call) 19938 << E->getSourceRange(); 19939 return ExprError(); 19940 } 19941 19942 /// Rebuild an expression which simply semantically wraps another 19943 /// expression which it shares the type and value kind of. 19944 template <class T> ExprResult rebuildSugarExpr(T *E) { 19945 ExprResult SubResult = Visit(E->getSubExpr()); 19946 if (SubResult.isInvalid()) return ExprError(); 19947 19948 Expr *SubExpr = SubResult.get(); 19949 E->setSubExpr(SubExpr); 19950 E->setType(SubExpr->getType()); 19951 E->setValueKind(SubExpr->getValueKind()); 19952 assert(E->getObjectKind() == OK_Ordinary); 19953 return E; 19954 } 19955 19956 ExprResult VisitParenExpr(ParenExpr *E) { 19957 return rebuildSugarExpr(E); 19958 } 19959 19960 ExprResult VisitUnaryExtension(UnaryOperator *E) { 19961 return rebuildSugarExpr(E); 19962 } 19963 19964 ExprResult VisitUnaryAddrOf(UnaryOperator *E) { 19965 ExprResult SubResult = Visit(E->getSubExpr()); 19966 if (SubResult.isInvalid()) return ExprError(); 19967 19968 Expr *SubExpr = SubResult.get(); 19969 E->setSubExpr(SubExpr); 19970 E->setType(S.Context.getPointerType(SubExpr->getType())); 19971 assert(E->isPRValue()); 19972 assert(E->getObjectKind() == OK_Ordinary); 19973 return E; 19974 } 19975 19976 ExprResult resolveDecl(Expr *E, ValueDecl *VD) { 19977 if (!isa<FunctionDecl>(VD)) return VisitExpr(E); 19978 19979 E->setType(VD->getType()); 19980 19981 assert(E->isPRValue()); 19982 if (S.getLangOpts().CPlusPlus && 19983 !(isa<CXXMethodDecl>(VD) && 19984 cast<CXXMethodDecl>(VD)->isInstance())) 19985 E->setValueKind(VK_LValue); 19986 19987 return E; 19988 } 19989 19990 ExprResult VisitMemberExpr(MemberExpr *E) { 19991 return resolveDecl(E, E->getMemberDecl()); 19992 } 19993 19994 ExprResult VisitDeclRefExpr(DeclRefExpr *E) { 19995 return resolveDecl(E, E->getDecl()); 19996 } 19997 }; 19998 } 19999 20000 /// Given a function expression of unknown-any type, try to rebuild it 20001 /// to have a function type. 20002 static ExprResult rebuildUnknownAnyFunction(Sema &S, Expr *FunctionExpr) { 20003 ExprResult Result = RebuildUnknownAnyFunction(S).Visit(FunctionExpr); 20004 if (Result.isInvalid()) return ExprError(); 20005 return S.DefaultFunctionArrayConversion(Result.get()); 20006 } 20007 20008 namespace { 20009 /// A visitor for rebuilding an expression of type __unknown_anytype 20010 /// into one which resolves the type directly on the referring 20011 /// expression. Strict preservation of the original source 20012 /// structure is not a goal. 20013 struct RebuildUnknownAnyExpr 20014 : StmtVisitor<RebuildUnknownAnyExpr, ExprResult> { 20015 20016 Sema &S; 20017 20018 /// The current destination type. 20019 QualType DestType; 20020 20021 RebuildUnknownAnyExpr(Sema &S, QualType CastType) 20022 : S(S), DestType(CastType) {} 20023 20024 ExprResult VisitStmt(Stmt *S) { 20025 llvm_unreachable("unexpected statement!"); 20026 } 20027 20028 ExprResult VisitExpr(Expr *E) { 20029 S.Diag(E->getExprLoc(), diag::err_unsupported_unknown_any_expr) 20030 << E->getSourceRange(); 20031 return ExprError(); 20032 } 20033 20034 ExprResult VisitCallExpr(CallExpr *E); 20035 ExprResult VisitObjCMessageExpr(ObjCMessageExpr *E); 20036 20037 /// Rebuild an expression which simply semantically wraps another 20038 /// expression which it shares the type and value kind of. 20039 template <class T> ExprResult rebuildSugarExpr(T *E) { 20040 ExprResult SubResult = Visit(E->getSubExpr()); 20041 if (SubResult.isInvalid()) return ExprError(); 20042 Expr *SubExpr = SubResult.get(); 20043 E->setSubExpr(SubExpr); 20044 E->setType(SubExpr->getType()); 20045 E->setValueKind(SubExpr->getValueKind()); 20046 assert(E->getObjectKind() == OK_Ordinary); 20047 return E; 20048 } 20049 20050 ExprResult VisitParenExpr(ParenExpr *E) { 20051 return rebuildSugarExpr(E); 20052 } 20053 20054 ExprResult VisitUnaryExtension(UnaryOperator *E) { 20055 return rebuildSugarExpr(E); 20056 } 20057 20058 ExprResult VisitUnaryAddrOf(UnaryOperator *E) { 20059 const PointerType *Ptr = DestType->getAs<PointerType>(); 20060 if (!Ptr) { 20061 S.Diag(E->getOperatorLoc(), diag::err_unknown_any_addrof) 20062 << E->getSourceRange(); 20063 return ExprError(); 20064 } 20065 20066 if (isa<CallExpr>(E->getSubExpr())) { 20067 S.Diag(E->getOperatorLoc(), diag::err_unknown_any_addrof_call) 20068 << E->getSourceRange(); 20069 return ExprError(); 20070 } 20071 20072 assert(E->isPRValue()); 20073 assert(E->getObjectKind() == OK_Ordinary); 20074 E->setType(DestType); 20075 20076 // Build the sub-expression as if it were an object of the pointee type. 20077 DestType = Ptr->getPointeeType(); 20078 ExprResult SubResult = Visit(E->getSubExpr()); 20079 if (SubResult.isInvalid()) return ExprError(); 20080 E->setSubExpr(SubResult.get()); 20081 return E; 20082 } 20083 20084 ExprResult VisitImplicitCastExpr(ImplicitCastExpr *E); 20085 20086 ExprResult resolveDecl(Expr *E, ValueDecl *VD); 20087 20088 ExprResult VisitMemberExpr(MemberExpr *E) { 20089 return resolveDecl(E, E->getMemberDecl()); 20090 } 20091 20092 ExprResult VisitDeclRefExpr(DeclRefExpr *E) { 20093 return resolveDecl(E, E->getDecl()); 20094 } 20095 }; 20096 } 20097 20098 /// Rebuilds a call expression which yielded __unknown_anytype. 20099 ExprResult RebuildUnknownAnyExpr::VisitCallExpr(CallExpr *E) { 20100 Expr *CalleeExpr = E->getCallee(); 20101 20102 enum FnKind { 20103 FK_MemberFunction, 20104 FK_FunctionPointer, 20105 FK_BlockPointer 20106 }; 20107 20108 FnKind Kind; 20109 QualType CalleeType = CalleeExpr->getType(); 20110 if (CalleeType == S.Context.BoundMemberTy) { 20111 assert(isa<CXXMemberCallExpr>(E) || isa<CXXOperatorCallExpr>(E)); 20112 Kind = FK_MemberFunction; 20113 CalleeType = Expr::findBoundMemberType(CalleeExpr); 20114 } else if (const PointerType *Ptr = CalleeType->getAs<PointerType>()) { 20115 CalleeType = Ptr->getPointeeType(); 20116 Kind = FK_FunctionPointer; 20117 } else { 20118 CalleeType = CalleeType->castAs<BlockPointerType>()->getPointeeType(); 20119 Kind = FK_BlockPointer; 20120 } 20121 const FunctionType *FnType = CalleeType->castAs<FunctionType>(); 20122 20123 // Verify that this is a legal result type of a function. 20124 if (DestType->isArrayType() || DestType->isFunctionType()) { 20125 unsigned diagID = diag::err_func_returning_array_function; 20126 if (Kind == FK_BlockPointer) 20127 diagID = diag::err_block_returning_array_function; 20128 20129 S.Diag(E->getExprLoc(), diagID) 20130 << DestType->isFunctionType() << DestType; 20131 return ExprError(); 20132 } 20133 20134 // Otherwise, go ahead and set DestType as the call's result. 20135 E->setType(DestType.getNonLValueExprType(S.Context)); 20136 E->setValueKind(Expr::getValueKindForType(DestType)); 20137 assert(E->getObjectKind() == OK_Ordinary); 20138 20139 // Rebuild the function type, replacing the result type with DestType. 20140 const FunctionProtoType *Proto = dyn_cast<FunctionProtoType>(FnType); 20141 if (Proto) { 20142 // __unknown_anytype(...) is a special case used by the debugger when 20143 // it has no idea what a function's signature is. 20144 // 20145 // We want to build this call essentially under the K&R 20146 // unprototyped rules, but making a FunctionNoProtoType in C++ 20147 // would foul up all sorts of assumptions. However, we cannot 20148 // simply pass all arguments as variadic arguments, nor can we 20149 // portably just call the function under a non-variadic type; see 20150 // the comment on IR-gen's TargetInfo::isNoProtoCallVariadic. 20151 // However, it turns out that in practice it is generally safe to 20152 // call a function declared as "A foo(B,C,D);" under the prototype 20153 // "A foo(B,C,D,...);". The only known exception is with the 20154 // Windows ABI, where any variadic function is implicitly cdecl 20155 // regardless of its normal CC. Therefore we change the parameter 20156 // types to match the types of the arguments. 20157 // 20158 // This is a hack, but it is far superior to moving the 20159 // corresponding target-specific code from IR-gen to Sema/AST. 20160 20161 ArrayRef<QualType> ParamTypes = Proto->getParamTypes(); 20162 SmallVector<QualType, 8> ArgTypes; 20163 if (ParamTypes.empty() && Proto->isVariadic()) { // the special case 20164 ArgTypes.reserve(E->getNumArgs()); 20165 for (unsigned i = 0, e = E->getNumArgs(); i != e; ++i) { 20166 ArgTypes.push_back(S.Context.getReferenceQualifiedType(E->getArg(i))); 20167 } 20168 ParamTypes = ArgTypes; 20169 } 20170 DestType = S.Context.getFunctionType(DestType, ParamTypes, 20171 Proto->getExtProtoInfo()); 20172 } else { 20173 DestType = S.Context.getFunctionNoProtoType(DestType, 20174 FnType->getExtInfo()); 20175 } 20176 20177 // Rebuild the appropriate pointer-to-function type. 20178 switch (Kind) { 20179 case FK_MemberFunction: 20180 // Nothing to do. 20181 break; 20182 20183 case FK_FunctionPointer: 20184 DestType = S.Context.getPointerType(DestType); 20185 break; 20186 20187 case FK_BlockPointer: 20188 DestType = S.Context.getBlockPointerType(DestType); 20189 break; 20190 } 20191 20192 // Finally, we can recurse. 20193 ExprResult CalleeResult = Visit(CalleeExpr); 20194 if (!CalleeResult.isUsable()) return ExprError(); 20195 E->setCallee(CalleeResult.get()); 20196 20197 // Bind a temporary if necessary. 20198 return S.MaybeBindToTemporary(E); 20199 } 20200 20201 ExprResult RebuildUnknownAnyExpr::VisitObjCMessageExpr(ObjCMessageExpr *E) { 20202 // Verify that this is a legal result type of a call. 20203 if (DestType->isArrayType() || DestType->isFunctionType()) { 20204 S.Diag(E->getExprLoc(), diag::err_func_returning_array_function) 20205 << DestType->isFunctionType() << DestType; 20206 return ExprError(); 20207 } 20208 20209 // Rewrite the method result type if available. 20210 if (ObjCMethodDecl *Method = E->getMethodDecl()) { 20211 assert(Method->getReturnType() == S.Context.UnknownAnyTy); 20212 Method->setReturnType(DestType); 20213 } 20214 20215 // Change the type of the message. 20216 E->setType(DestType.getNonReferenceType()); 20217 E->setValueKind(Expr::getValueKindForType(DestType)); 20218 20219 return S.MaybeBindToTemporary(E); 20220 } 20221 20222 ExprResult RebuildUnknownAnyExpr::VisitImplicitCastExpr(ImplicitCastExpr *E) { 20223 // The only case we should ever see here is a function-to-pointer decay. 20224 if (E->getCastKind() == CK_FunctionToPointerDecay) { 20225 assert(E->isPRValue()); 20226 assert(E->getObjectKind() == OK_Ordinary); 20227 20228 E->setType(DestType); 20229 20230 // Rebuild the sub-expression as the pointee (function) type. 20231 DestType = DestType->castAs<PointerType>()->getPointeeType(); 20232 20233 ExprResult Result = Visit(E->getSubExpr()); 20234 if (!Result.isUsable()) return ExprError(); 20235 20236 E->setSubExpr(Result.get()); 20237 return E; 20238 } else if (E->getCastKind() == CK_LValueToRValue) { 20239 assert(E->isPRValue()); 20240 assert(E->getObjectKind() == OK_Ordinary); 20241 20242 assert(isa<BlockPointerType>(E->getType())); 20243 20244 E->setType(DestType); 20245 20246 // The sub-expression has to be a lvalue reference, so rebuild it as such. 20247 DestType = S.Context.getLValueReferenceType(DestType); 20248 20249 ExprResult Result = Visit(E->getSubExpr()); 20250 if (!Result.isUsable()) return ExprError(); 20251 20252 E->setSubExpr(Result.get()); 20253 return E; 20254 } else { 20255 llvm_unreachable("Unhandled cast type!"); 20256 } 20257 } 20258 20259 ExprResult RebuildUnknownAnyExpr::resolveDecl(Expr *E, ValueDecl *VD) { 20260 ExprValueKind ValueKind = VK_LValue; 20261 QualType Type = DestType; 20262 20263 // We know how to make this work for certain kinds of decls: 20264 20265 // - functions 20266 if (FunctionDecl *FD = dyn_cast<FunctionDecl>(VD)) { 20267 if (const PointerType *Ptr = Type->getAs<PointerType>()) { 20268 DestType = Ptr->getPointeeType(); 20269 ExprResult Result = resolveDecl(E, VD); 20270 if (Result.isInvalid()) return ExprError(); 20271 return S.ImpCastExprToType(Result.get(), Type, CK_FunctionToPointerDecay, 20272 VK_PRValue); 20273 } 20274 20275 if (!Type->isFunctionType()) { 20276 S.Diag(E->getExprLoc(), diag::err_unknown_any_function) 20277 << VD << E->getSourceRange(); 20278 return ExprError(); 20279 } 20280 if (const FunctionProtoType *FT = Type->getAs<FunctionProtoType>()) { 20281 // We must match the FunctionDecl's type to the hack introduced in 20282 // RebuildUnknownAnyExpr::VisitCallExpr to vararg functions of unknown 20283 // type. See the lengthy commentary in that routine. 20284 QualType FDT = FD->getType(); 20285 const FunctionType *FnType = FDT->castAs<FunctionType>(); 20286 const FunctionProtoType *Proto = dyn_cast_or_null<FunctionProtoType>(FnType); 20287 DeclRefExpr *DRE = dyn_cast<DeclRefExpr>(E); 20288 if (DRE && Proto && Proto->getParamTypes().empty() && Proto->isVariadic()) { 20289 SourceLocation Loc = FD->getLocation(); 20290 FunctionDecl *NewFD = FunctionDecl::Create( 20291 S.Context, FD->getDeclContext(), Loc, Loc, 20292 FD->getNameInfo().getName(), DestType, FD->getTypeSourceInfo(), 20293 SC_None, S.getCurFPFeatures().isFPConstrained(), 20294 false /*isInlineSpecified*/, FD->hasPrototype(), 20295 /*ConstexprKind*/ ConstexprSpecKind::Unspecified); 20296 20297 if (FD->getQualifier()) 20298 NewFD->setQualifierInfo(FD->getQualifierLoc()); 20299 20300 SmallVector<ParmVarDecl*, 16> Params; 20301 for (const auto &AI : FT->param_types()) { 20302 ParmVarDecl *Param = 20303 S.BuildParmVarDeclForTypedef(FD, Loc, AI); 20304 Param->setScopeInfo(0, Params.size()); 20305 Params.push_back(Param); 20306 } 20307 NewFD->setParams(Params); 20308 DRE->setDecl(NewFD); 20309 VD = DRE->getDecl(); 20310 } 20311 } 20312 20313 if (CXXMethodDecl *MD = dyn_cast<CXXMethodDecl>(FD)) 20314 if (MD->isInstance()) { 20315 ValueKind = VK_PRValue; 20316 Type = S.Context.BoundMemberTy; 20317 } 20318 20319 // Function references aren't l-values in C. 20320 if (!S.getLangOpts().CPlusPlus) 20321 ValueKind = VK_PRValue; 20322 20323 // - variables 20324 } else if (isa<VarDecl>(VD)) { 20325 if (const ReferenceType *RefTy = Type->getAs<ReferenceType>()) { 20326 Type = RefTy->getPointeeType(); 20327 } else if (Type->isFunctionType()) { 20328 S.Diag(E->getExprLoc(), diag::err_unknown_any_var_function_type) 20329 << VD << E->getSourceRange(); 20330 return ExprError(); 20331 } 20332 20333 // - nothing else 20334 } else { 20335 S.Diag(E->getExprLoc(), diag::err_unsupported_unknown_any_decl) 20336 << VD << E->getSourceRange(); 20337 return ExprError(); 20338 } 20339 20340 // Modifying the declaration like this is friendly to IR-gen but 20341 // also really dangerous. 20342 VD->setType(DestType); 20343 E->setType(Type); 20344 E->setValueKind(ValueKind); 20345 return E; 20346 } 20347 20348 /// Check a cast of an unknown-any type. We intentionally only 20349 /// trigger this for C-style casts. 20350 ExprResult Sema::checkUnknownAnyCast(SourceRange TypeRange, QualType CastType, 20351 Expr *CastExpr, CastKind &CastKind, 20352 ExprValueKind &VK, CXXCastPath &Path) { 20353 // The type we're casting to must be either void or complete. 20354 if (!CastType->isVoidType() && 20355 RequireCompleteType(TypeRange.getBegin(), CastType, 20356 diag::err_typecheck_cast_to_incomplete)) 20357 return ExprError(); 20358 20359 // Rewrite the casted expression from scratch. 20360 ExprResult result = RebuildUnknownAnyExpr(*this, CastType).Visit(CastExpr); 20361 if (!result.isUsable()) return ExprError(); 20362 20363 CastExpr = result.get(); 20364 VK = CastExpr->getValueKind(); 20365 CastKind = CK_NoOp; 20366 20367 return CastExpr; 20368 } 20369 20370 ExprResult Sema::forceUnknownAnyToType(Expr *E, QualType ToType) { 20371 return RebuildUnknownAnyExpr(*this, ToType).Visit(E); 20372 } 20373 20374 ExprResult Sema::checkUnknownAnyArg(SourceLocation callLoc, 20375 Expr *arg, QualType ¶mType) { 20376 // If the syntactic form of the argument is not an explicit cast of 20377 // any sort, just do default argument promotion. 20378 ExplicitCastExpr *castArg = dyn_cast<ExplicitCastExpr>(arg->IgnoreParens()); 20379 if (!castArg) { 20380 ExprResult result = DefaultArgumentPromotion(arg); 20381 if (result.isInvalid()) return ExprError(); 20382 paramType = result.get()->getType(); 20383 return result; 20384 } 20385 20386 // Otherwise, use the type that was written in the explicit cast. 20387 assert(!arg->hasPlaceholderType()); 20388 paramType = castArg->getTypeAsWritten(); 20389 20390 // Copy-initialize a parameter of that type. 20391 InitializedEntity entity = 20392 InitializedEntity::InitializeParameter(Context, paramType, 20393 /*consumed*/ false); 20394 return PerformCopyInitialization(entity, callLoc, arg); 20395 } 20396 20397 static ExprResult diagnoseUnknownAnyExpr(Sema &S, Expr *E) { 20398 Expr *orig = E; 20399 unsigned diagID = diag::err_uncasted_use_of_unknown_any; 20400 while (true) { 20401 E = E->IgnoreParenImpCasts(); 20402 if (CallExpr *call = dyn_cast<CallExpr>(E)) { 20403 E = call->getCallee(); 20404 diagID = diag::err_uncasted_call_of_unknown_any; 20405 } else { 20406 break; 20407 } 20408 } 20409 20410 SourceLocation loc; 20411 NamedDecl *d; 20412 if (DeclRefExpr *ref = dyn_cast<DeclRefExpr>(E)) { 20413 loc = ref->getLocation(); 20414 d = ref->getDecl(); 20415 } else if (MemberExpr *mem = dyn_cast<MemberExpr>(E)) { 20416 loc = mem->getMemberLoc(); 20417 d = mem->getMemberDecl(); 20418 } else if (ObjCMessageExpr *msg = dyn_cast<ObjCMessageExpr>(E)) { 20419 diagID = diag::err_uncasted_call_of_unknown_any; 20420 loc = msg->getSelectorStartLoc(); 20421 d = msg->getMethodDecl(); 20422 if (!d) { 20423 S.Diag(loc, diag::err_uncasted_send_to_unknown_any_method) 20424 << static_cast<unsigned>(msg->isClassMessage()) << msg->getSelector() 20425 << orig->getSourceRange(); 20426 return ExprError(); 20427 } 20428 } else { 20429 S.Diag(E->getExprLoc(), diag::err_unsupported_unknown_any_expr) 20430 << E->getSourceRange(); 20431 return ExprError(); 20432 } 20433 20434 S.Diag(loc, diagID) << d << orig->getSourceRange(); 20435 20436 // Never recoverable. 20437 return ExprError(); 20438 } 20439 20440 /// Check for operands with placeholder types and complain if found. 20441 /// Returns ExprError() if there was an error and no recovery was possible. 20442 ExprResult Sema::CheckPlaceholderExpr(Expr *E) { 20443 if (!Context.isDependenceAllowed()) { 20444 // C cannot handle TypoExpr nodes on either side of a binop because it 20445 // doesn't handle dependent types properly, so make sure any TypoExprs have 20446 // been dealt with before checking the operands. 20447 ExprResult Result = CorrectDelayedTyposInExpr(E); 20448 if (!Result.isUsable()) return ExprError(); 20449 E = Result.get(); 20450 } 20451 20452 const BuiltinType *placeholderType = E->getType()->getAsPlaceholderType(); 20453 if (!placeholderType) return E; 20454 20455 switch (placeholderType->getKind()) { 20456 20457 // Overloaded expressions. 20458 case BuiltinType::Overload: { 20459 // Try to resolve a single function template specialization. 20460 // This is obligatory. 20461 ExprResult Result = E; 20462 if (ResolveAndFixSingleFunctionTemplateSpecialization(Result, false)) 20463 return Result; 20464 20465 // No guarantees that ResolveAndFixSingleFunctionTemplateSpecialization 20466 // leaves Result unchanged on failure. 20467 Result = E; 20468 if (resolveAndFixAddressOfSingleOverloadCandidate(Result)) 20469 return Result; 20470 20471 // If that failed, try to recover with a call. 20472 tryToRecoverWithCall(Result, PDiag(diag::err_ovl_unresolvable), 20473 /*complain*/ true); 20474 return Result; 20475 } 20476 20477 // Bound member functions. 20478 case BuiltinType::BoundMember: { 20479 ExprResult result = E; 20480 const Expr *BME = E->IgnoreParens(); 20481 PartialDiagnostic PD = PDiag(diag::err_bound_member_function); 20482 // Try to give a nicer diagnostic if it is a bound member that we recognize. 20483 if (isa<CXXPseudoDestructorExpr>(BME)) { 20484 PD = PDiag(diag::err_dtor_expr_without_call) << /*pseudo-destructor*/ 1; 20485 } else if (const auto *ME = dyn_cast<MemberExpr>(BME)) { 20486 if (ME->getMemberNameInfo().getName().getNameKind() == 20487 DeclarationName::CXXDestructorName) 20488 PD = PDiag(diag::err_dtor_expr_without_call) << /*destructor*/ 0; 20489 } 20490 tryToRecoverWithCall(result, PD, 20491 /*complain*/ true); 20492 return result; 20493 } 20494 20495 // ARC unbridged casts. 20496 case BuiltinType::ARCUnbridgedCast: { 20497 Expr *realCast = stripARCUnbridgedCast(E); 20498 diagnoseARCUnbridgedCast(realCast); 20499 return realCast; 20500 } 20501 20502 // Expressions of unknown type. 20503 case BuiltinType::UnknownAny: 20504 return diagnoseUnknownAnyExpr(*this, E); 20505 20506 // Pseudo-objects. 20507 case BuiltinType::PseudoObject: 20508 return checkPseudoObjectRValue(E); 20509 20510 case BuiltinType::BuiltinFn: { 20511 // Accept __noop without parens by implicitly converting it to a call expr. 20512 auto *DRE = dyn_cast<DeclRefExpr>(E->IgnoreParenImpCasts()); 20513 if (DRE) { 20514 auto *FD = cast<FunctionDecl>(DRE->getDecl()); 20515 unsigned BuiltinID = FD->getBuiltinID(); 20516 if (BuiltinID == Builtin::BI__noop) { 20517 E = ImpCastExprToType(E, Context.getPointerType(FD->getType()), 20518 CK_BuiltinFnToFnPtr) 20519 .get(); 20520 return CallExpr::Create(Context, E, /*Args=*/{}, Context.IntTy, 20521 VK_PRValue, SourceLocation(), 20522 FPOptionsOverride()); 20523 } 20524 20525 if (Context.BuiltinInfo.isInStdNamespace(BuiltinID)) { 20526 // Any use of these other than a direct call is ill-formed as of C++20, 20527 // because they are not addressable functions. In earlier language 20528 // modes, warn and force an instantiation of the real body. 20529 Diag(E->getBeginLoc(), 20530 getLangOpts().CPlusPlus20 20531 ? diag::err_use_of_unaddressable_function 20532 : diag::warn_cxx20_compat_use_of_unaddressable_function); 20533 if (FD->isImplicitlyInstantiable()) { 20534 // Require a definition here because a normal attempt at 20535 // instantiation for a builtin will be ignored, and we won't try 20536 // again later. We assume that the definition of the template 20537 // precedes this use. 20538 InstantiateFunctionDefinition(E->getBeginLoc(), FD, 20539 /*Recursive=*/false, 20540 /*DefinitionRequired=*/true, 20541 /*AtEndOfTU=*/false); 20542 } 20543 // Produce a properly-typed reference to the function. 20544 CXXScopeSpec SS; 20545 SS.Adopt(DRE->getQualifierLoc()); 20546 TemplateArgumentListInfo TemplateArgs; 20547 DRE->copyTemplateArgumentsInto(TemplateArgs); 20548 return BuildDeclRefExpr( 20549 FD, FD->getType(), VK_LValue, DRE->getNameInfo(), 20550 DRE->hasQualifier() ? &SS : nullptr, DRE->getFoundDecl(), 20551 DRE->getTemplateKeywordLoc(), 20552 DRE->hasExplicitTemplateArgs() ? &TemplateArgs : nullptr); 20553 } 20554 } 20555 20556 Diag(E->getBeginLoc(), diag::err_builtin_fn_use); 20557 return ExprError(); 20558 } 20559 20560 case BuiltinType::IncompleteMatrixIdx: 20561 Diag(cast<MatrixSubscriptExpr>(E->IgnoreParens()) 20562 ->getRowIdx() 20563 ->getBeginLoc(), 20564 diag::err_matrix_incomplete_index); 20565 return ExprError(); 20566 20567 // Expressions of unknown type. 20568 case BuiltinType::OMPArraySection: 20569 Diag(E->getBeginLoc(), diag::err_omp_array_section_use); 20570 return ExprError(); 20571 20572 // Expressions of unknown type. 20573 case BuiltinType::OMPArrayShaping: 20574 return ExprError(Diag(E->getBeginLoc(), diag::err_omp_array_shaping_use)); 20575 20576 case BuiltinType::OMPIterator: 20577 return ExprError(Diag(E->getBeginLoc(), diag::err_omp_iterator_use)); 20578 20579 // Everything else should be impossible. 20580 #define IMAGE_TYPE(ImgType, Id, SingletonId, Access, Suffix) \ 20581 case BuiltinType::Id: 20582 #include "clang/Basic/OpenCLImageTypes.def" 20583 #define EXT_OPAQUE_TYPE(ExtType, Id, Ext) \ 20584 case BuiltinType::Id: 20585 #include "clang/Basic/OpenCLExtensionTypes.def" 20586 #define SVE_TYPE(Name, Id, SingletonId) \ 20587 case BuiltinType::Id: 20588 #include "clang/Basic/AArch64SVEACLETypes.def" 20589 #define PPC_VECTOR_TYPE(Name, Id, Size) \ 20590 case BuiltinType::Id: 20591 #include "clang/Basic/PPCTypes.def" 20592 #define RVV_TYPE(Name, Id, SingletonId) case BuiltinType::Id: 20593 #include "clang/Basic/RISCVVTypes.def" 20594 #define BUILTIN_TYPE(Id, SingletonId) case BuiltinType::Id: 20595 #define PLACEHOLDER_TYPE(Id, SingletonId) 20596 #include "clang/AST/BuiltinTypes.def" 20597 break; 20598 } 20599 20600 llvm_unreachable("invalid placeholder type!"); 20601 } 20602 20603 bool Sema::CheckCaseExpression(Expr *E) { 20604 if (E->isTypeDependent()) 20605 return true; 20606 if (E->isValueDependent() || E->isIntegerConstantExpr(Context)) 20607 return E->getType()->isIntegralOrEnumerationType(); 20608 return false; 20609 } 20610 20611 /// ActOnObjCBoolLiteral - Parse {__objc_yes,__objc_no} literals. 20612 ExprResult 20613 Sema::ActOnObjCBoolLiteral(SourceLocation OpLoc, tok::TokenKind Kind) { 20614 assert((Kind == tok::kw___objc_yes || Kind == tok::kw___objc_no) && 20615 "Unknown Objective-C Boolean value!"); 20616 QualType BoolT = Context.ObjCBuiltinBoolTy; 20617 if (!Context.getBOOLDecl()) { 20618 LookupResult Result(*this, &Context.Idents.get("BOOL"), OpLoc, 20619 Sema::LookupOrdinaryName); 20620 if (LookupName(Result, getCurScope()) && Result.isSingleResult()) { 20621 NamedDecl *ND = Result.getFoundDecl(); 20622 if (TypedefDecl *TD = dyn_cast<TypedefDecl>(ND)) 20623 Context.setBOOLDecl(TD); 20624 } 20625 } 20626 if (Context.getBOOLDecl()) 20627 BoolT = Context.getBOOLType(); 20628 return new (Context) 20629 ObjCBoolLiteralExpr(Kind == tok::kw___objc_yes, BoolT, OpLoc); 20630 } 20631 20632 ExprResult Sema::ActOnObjCAvailabilityCheckExpr( 20633 llvm::ArrayRef<AvailabilitySpec> AvailSpecs, SourceLocation AtLoc, 20634 SourceLocation RParen) { 20635 auto FindSpecVersion = [&](StringRef Platform) -> Optional<VersionTuple> { 20636 auto Spec = llvm::find_if(AvailSpecs, [&](const AvailabilitySpec &Spec) { 20637 return Spec.getPlatform() == Platform; 20638 }); 20639 // Transcribe the "ios" availability check to "maccatalyst" when compiling 20640 // for "maccatalyst" if "maccatalyst" is not specified. 20641 if (Spec == AvailSpecs.end() && Platform == "maccatalyst") { 20642 Spec = llvm::find_if(AvailSpecs, [&](const AvailabilitySpec &Spec) { 20643 return Spec.getPlatform() == "ios"; 20644 }); 20645 } 20646 if (Spec == AvailSpecs.end()) 20647 return None; 20648 return Spec->getVersion(); 20649 }; 20650 20651 VersionTuple Version; 20652 if (auto MaybeVersion = 20653 FindSpecVersion(Context.getTargetInfo().getPlatformName())) 20654 Version = *MaybeVersion; 20655 20656 // The use of `@available` in the enclosing context should be analyzed to 20657 // warn when it's used inappropriately (i.e. not if(@available)). 20658 if (FunctionScopeInfo *Context = getCurFunctionAvailabilityContext()) 20659 Context->HasPotentialAvailabilityViolations = true; 20660 20661 return new (Context) 20662 ObjCAvailabilityCheckExpr(Version, AtLoc, RParen, Context.BoolTy); 20663 } 20664 20665 ExprResult Sema::CreateRecoveryExpr(SourceLocation Begin, SourceLocation End, 20666 ArrayRef<Expr *> SubExprs, QualType T) { 20667 if (!Context.getLangOpts().RecoveryAST) 20668 return ExprError(); 20669 20670 if (isSFINAEContext()) 20671 return ExprError(); 20672 20673 if (T.isNull() || T->isUndeducedType() || 20674 !Context.getLangOpts().RecoveryASTType) 20675 // We don't know the concrete type, fallback to dependent type. 20676 T = Context.DependentTy; 20677 20678 return RecoveryExpr::Create(Context, T, Begin, End, SubExprs); 20679 } 20680