1 //===--- SemaExpr.cpp - Semantic Analysis for Expressions -----------------===// 2 // 3 // The LLVM Compiler Infrastructure 4 // 5 // This file is distributed under the University of Illinois Open Source 6 // License. See LICENSE.TXT for details. 7 // 8 //===----------------------------------------------------------------------===// 9 // 10 // This file implements semantic analysis for expressions. 11 // 12 //===----------------------------------------------------------------------===// 13 14 #include "clang/Sema/SemaInternal.h" 15 #include "clang/Sema/Initialization.h" 16 #include "clang/Sema/Lookup.h" 17 #include "clang/Sema/AnalysisBasedWarnings.h" 18 #include "clang/AST/ASTContext.h" 19 #include "clang/AST/ASTMutationListener.h" 20 #include "clang/AST/CXXInheritance.h" 21 #include "clang/AST/DeclObjC.h" 22 #include "clang/AST/DeclTemplate.h" 23 #include "clang/AST/EvaluatedExprVisitor.h" 24 #include "clang/AST/Expr.h" 25 #include "clang/AST/ExprCXX.h" 26 #include "clang/AST/ExprObjC.h" 27 #include "clang/AST/RecursiveASTVisitor.h" 28 #include "clang/AST/TypeLoc.h" 29 #include "clang/Basic/PartialDiagnostic.h" 30 #include "clang/Basic/SourceManager.h" 31 #include "clang/Basic/TargetInfo.h" 32 #include "clang/Lex/LiteralSupport.h" 33 #include "clang/Lex/Preprocessor.h" 34 #include "clang/Sema/DeclSpec.h" 35 #include "clang/Sema/Designator.h" 36 #include "clang/Sema/Scope.h" 37 #include "clang/Sema/ScopeInfo.h" 38 #include "clang/Sema/ParsedTemplate.h" 39 #include "clang/Sema/SemaFixItUtils.h" 40 #include "clang/Sema/Template.h" 41 using namespace clang; 42 using namespace sema; 43 44 /// \brief Determine whether the use of this declaration is valid, without 45 /// emitting diagnostics. 46 bool Sema::CanUseDecl(NamedDecl *D) { 47 // See if this is an auto-typed variable whose initializer we are parsing. 48 if (ParsingInitForAutoVars.count(D)) 49 return false; 50 51 // See if this is a deleted function. 52 if (FunctionDecl *FD = dyn_cast<FunctionDecl>(D)) { 53 if (FD->isDeleted()) 54 return false; 55 } 56 57 // See if this function is unavailable. 58 if (D->getAvailability() == AR_Unavailable && 59 cast<Decl>(CurContext)->getAvailability() != AR_Unavailable) 60 return false; 61 62 return true; 63 } 64 65 static AvailabilityResult DiagnoseAvailabilityOfDecl(Sema &S, 66 NamedDecl *D, SourceLocation Loc, 67 const ObjCInterfaceDecl *UnknownObjCClass) { 68 // See if this declaration is unavailable or deprecated. 69 std::string Message; 70 AvailabilityResult Result = D->getAvailability(&Message); 71 switch (Result) { 72 case AR_Available: 73 case AR_NotYetIntroduced: 74 break; 75 76 case AR_Deprecated: 77 S.EmitDeprecationWarning(D, Message, Loc, UnknownObjCClass); 78 break; 79 80 case AR_Unavailable: 81 if (S.getCurContextAvailability() != AR_Unavailable) { 82 if (Message.empty()) { 83 if (!UnknownObjCClass) 84 S.Diag(Loc, diag::err_unavailable) << D->getDeclName(); 85 else 86 S.Diag(Loc, diag::warn_unavailable_fwdclass_message) 87 << D->getDeclName(); 88 } 89 else 90 S.Diag(Loc, diag::err_unavailable_message) 91 << D->getDeclName() << Message; 92 S.Diag(D->getLocation(), diag::note_unavailable_here) 93 << isa<FunctionDecl>(D) << false; 94 } 95 break; 96 } 97 return Result; 98 } 99 100 /// \brief Determine whether the use of this declaration is valid, and 101 /// emit any corresponding diagnostics. 102 /// 103 /// This routine diagnoses various problems with referencing 104 /// declarations that can occur when using a declaration. For example, 105 /// it might warn if a deprecated or unavailable declaration is being 106 /// used, or produce an error (and return true) if a C++0x deleted 107 /// function is being used. 108 /// 109 /// \returns true if there was an error (this declaration cannot be 110 /// referenced), false otherwise. 111 /// 112 bool Sema::DiagnoseUseOfDecl(NamedDecl *D, SourceLocation Loc, 113 const ObjCInterfaceDecl *UnknownObjCClass) { 114 if (getLangOptions().CPlusPlus && isa<FunctionDecl>(D)) { 115 // If there were any diagnostics suppressed by template argument deduction, 116 // emit them now. 117 llvm::DenseMap<Decl *, SmallVector<PartialDiagnosticAt, 1> >::iterator 118 Pos = SuppressedDiagnostics.find(D->getCanonicalDecl()); 119 if (Pos != SuppressedDiagnostics.end()) { 120 SmallVectorImpl<PartialDiagnosticAt> &Suppressed = Pos->second; 121 for (unsigned I = 0, N = Suppressed.size(); I != N; ++I) 122 Diag(Suppressed[I].first, Suppressed[I].second); 123 124 // Clear out the list of suppressed diagnostics, so that we don't emit 125 // them again for this specialization. However, we don't obsolete this 126 // entry from the table, because we want to avoid ever emitting these 127 // diagnostics again. 128 Suppressed.clear(); 129 } 130 } 131 132 // See if this is an auto-typed variable whose initializer we are parsing. 133 if (ParsingInitForAutoVars.count(D)) { 134 Diag(Loc, diag::err_auto_variable_cannot_appear_in_own_initializer) 135 << D->getDeclName(); 136 return true; 137 } 138 139 // See if this is a deleted function. 140 if (FunctionDecl *FD = dyn_cast<FunctionDecl>(D)) { 141 if (FD->isDeleted()) { 142 Diag(Loc, diag::err_deleted_function_use); 143 Diag(D->getLocation(), diag::note_unavailable_here) << 1 << true; 144 return true; 145 } 146 } 147 AvailabilityResult Result = 148 DiagnoseAvailabilityOfDecl(*this, D, Loc, UnknownObjCClass); 149 150 // Warn if this is used but marked unused. 151 if (D->hasAttr<UnusedAttr>()) 152 Diag(Loc, diag::warn_used_but_marked_unused) << D->getDeclName(); 153 // For available enumerator, it will become unavailable/deprecated 154 // if its enum declaration is as such. 155 if (Result == AR_Available) 156 if (const EnumConstantDecl *ECD = dyn_cast<EnumConstantDecl>(D)) { 157 const DeclContext *DC = ECD->getDeclContext(); 158 if (const EnumDecl *TheEnumDecl = dyn_cast<EnumDecl>(DC)) 159 DiagnoseAvailabilityOfDecl(*this, 160 const_cast< EnumDecl *>(TheEnumDecl), 161 Loc, UnknownObjCClass); 162 } 163 return false; 164 } 165 166 /// \brief Retrieve the message suffix that should be added to a 167 /// diagnostic complaining about the given function being deleted or 168 /// unavailable. 169 std::string Sema::getDeletedOrUnavailableSuffix(const FunctionDecl *FD) { 170 // FIXME: C++0x implicitly-deleted special member functions could be 171 // detected here so that we could improve diagnostics to say, e.g., 172 // "base class 'A' had a deleted copy constructor". 173 if (FD->isDeleted()) 174 return std::string(); 175 176 std::string Message; 177 if (FD->getAvailability(&Message)) 178 return ": " + Message; 179 180 return std::string(); 181 } 182 183 /// DiagnoseSentinelCalls - This routine checks whether a call or 184 /// message-send is to a declaration with the sentinel attribute, and 185 /// if so, it checks that the requirements of the sentinel are 186 /// satisfied. 187 void Sema::DiagnoseSentinelCalls(NamedDecl *D, SourceLocation Loc, 188 Expr **args, unsigned numArgs) { 189 const SentinelAttr *attr = D->getAttr<SentinelAttr>(); 190 if (!attr) 191 return; 192 193 // The number of formal parameters of the declaration. 194 unsigned numFormalParams; 195 196 // The kind of declaration. This is also an index into a %select in 197 // the diagnostic. 198 enum CalleeType { CT_Function, CT_Method, CT_Block } calleeType; 199 200 if (ObjCMethodDecl *MD = dyn_cast<ObjCMethodDecl>(D)) { 201 numFormalParams = MD->param_size(); 202 calleeType = CT_Method; 203 } else if (FunctionDecl *FD = dyn_cast<FunctionDecl>(D)) { 204 numFormalParams = FD->param_size(); 205 calleeType = CT_Function; 206 } else if (isa<VarDecl>(D)) { 207 QualType type = cast<ValueDecl>(D)->getType(); 208 const FunctionType *fn = 0; 209 if (const PointerType *ptr = type->getAs<PointerType>()) { 210 fn = ptr->getPointeeType()->getAs<FunctionType>(); 211 if (!fn) return; 212 calleeType = CT_Function; 213 } else if (const BlockPointerType *ptr = type->getAs<BlockPointerType>()) { 214 fn = ptr->getPointeeType()->castAs<FunctionType>(); 215 calleeType = CT_Block; 216 } else { 217 return; 218 } 219 220 if (const FunctionProtoType *proto = dyn_cast<FunctionProtoType>(fn)) { 221 numFormalParams = proto->getNumArgs(); 222 } else { 223 numFormalParams = 0; 224 } 225 } else { 226 return; 227 } 228 229 // "nullPos" is the number of formal parameters at the end which 230 // effectively count as part of the variadic arguments. This is 231 // useful if you would prefer to not have *any* formal parameters, 232 // but the language forces you to have at least one. 233 unsigned nullPos = attr->getNullPos(); 234 assert((nullPos == 0 || nullPos == 1) && "invalid null position on sentinel"); 235 numFormalParams = (nullPos > numFormalParams ? 0 : numFormalParams - nullPos); 236 237 // The number of arguments which should follow the sentinel. 238 unsigned numArgsAfterSentinel = attr->getSentinel(); 239 240 // If there aren't enough arguments for all the formal parameters, 241 // the sentinel, and the args after the sentinel, complain. 242 if (numArgs < numFormalParams + numArgsAfterSentinel + 1) { 243 Diag(Loc, diag::warn_not_enough_argument) << D->getDeclName(); 244 Diag(D->getLocation(), diag::note_sentinel_here) << calleeType; 245 return; 246 } 247 248 // Otherwise, find the sentinel expression. 249 Expr *sentinelExpr = args[numArgs - numArgsAfterSentinel - 1]; 250 if (!sentinelExpr) return; 251 if (sentinelExpr->isValueDependent()) return; 252 253 // nullptr_t is always treated as null. 254 if (sentinelExpr->getType()->isNullPtrType()) return; 255 256 if (sentinelExpr->getType()->isAnyPointerType() && 257 sentinelExpr->IgnoreParenCasts()->isNullPointerConstant(Context, 258 Expr::NPC_ValueDependentIsNull)) 259 return; 260 261 // Unfortunately, __null has type 'int'. 262 if (isa<GNUNullExpr>(sentinelExpr)) return; 263 264 // Pick a reasonable string to insert. Optimistically use 'nil' or 265 // 'NULL' if those are actually defined in the context. Only use 266 // 'nil' for ObjC methods, where it's much more likely that the 267 // variadic arguments form a list of object pointers. 268 SourceLocation MissingNilLoc 269 = PP.getLocForEndOfToken(sentinelExpr->getLocEnd()); 270 std::string NullValue; 271 if (calleeType == CT_Method && 272 PP.getIdentifierInfo("nil")->hasMacroDefinition()) 273 NullValue = "nil"; 274 else if (PP.getIdentifierInfo("NULL")->hasMacroDefinition()) 275 NullValue = "NULL"; 276 else 277 NullValue = "(void*) 0"; 278 279 if (MissingNilLoc.isInvalid()) 280 Diag(Loc, diag::warn_missing_sentinel) << calleeType; 281 else 282 Diag(MissingNilLoc, diag::warn_missing_sentinel) 283 << calleeType 284 << FixItHint::CreateInsertion(MissingNilLoc, ", " + NullValue); 285 Diag(D->getLocation(), diag::note_sentinel_here) << calleeType; 286 } 287 288 SourceRange Sema::getExprRange(Expr *E) const { 289 return E ? E->getSourceRange() : SourceRange(); 290 } 291 292 //===----------------------------------------------------------------------===// 293 // Standard Promotions and Conversions 294 //===----------------------------------------------------------------------===// 295 296 /// DefaultFunctionArrayConversion (C99 6.3.2.1p3, C99 6.3.2.1p4). 297 ExprResult Sema::DefaultFunctionArrayConversion(Expr *E) { 298 // Handle any placeholder expressions which made it here. 299 if (E->getType()->isPlaceholderType()) { 300 ExprResult result = CheckPlaceholderExpr(E); 301 if (result.isInvalid()) return ExprError(); 302 E = result.take(); 303 } 304 305 QualType Ty = E->getType(); 306 assert(!Ty.isNull() && "DefaultFunctionArrayConversion - missing type"); 307 308 if (Ty->isFunctionType()) 309 E = ImpCastExprToType(E, Context.getPointerType(Ty), 310 CK_FunctionToPointerDecay).take(); 311 else if (Ty->isArrayType()) { 312 // In C90 mode, arrays only promote to pointers if the array expression is 313 // an lvalue. The relevant legalese is C90 6.2.2.1p3: "an lvalue that has 314 // type 'array of type' is converted to an expression that has type 'pointer 315 // to type'...". In C99 this was changed to: C99 6.3.2.1p3: "an expression 316 // that has type 'array of type' ...". The relevant change is "an lvalue" 317 // (C90) to "an expression" (C99). 318 // 319 // C++ 4.2p1: 320 // An lvalue or rvalue of type "array of N T" or "array of unknown bound of 321 // T" can be converted to an rvalue of type "pointer to T". 322 // 323 if (getLangOptions().C99 || getLangOptions().CPlusPlus || E->isLValue()) 324 E = ImpCastExprToType(E, Context.getArrayDecayedType(Ty), 325 CK_ArrayToPointerDecay).take(); 326 } 327 return Owned(E); 328 } 329 330 static void CheckForNullPointerDereference(Sema &S, Expr *E) { 331 // Check to see if we are dereferencing a null pointer. If so, 332 // and if not volatile-qualified, this is undefined behavior that the 333 // optimizer will delete, so warn about it. People sometimes try to use this 334 // to get a deterministic trap and are surprised by clang's behavior. This 335 // only handles the pattern "*null", which is a very syntactic check. 336 if (UnaryOperator *UO = dyn_cast<UnaryOperator>(E->IgnoreParenCasts())) 337 if (UO->getOpcode() == UO_Deref && 338 UO->getSubExpr()->IgnoreParenCasts()-> 339 isNullPointerConstant(S.Context, Expr::NPC_ValueDependentIsNotNull) && 340 !UO->getType().isVolatileQualified()) { 341 S.DiagRuntimeBehavior(UO->getOperatorLoc(), UO, 342 S.PDiag(diag::warn_indirection_through_null) 343 << UO->getSubExpr()->getSourceRange()); 344 S.DiagRuntimeBehavior(UO->getOperatorLoc(), UO, 345 S.PDiag(diag::note_indirection_through_null)); 346 } 347 } 348 349 ExprResult Sema::DefaultLvalueConversion(Expr *E) { 350 // Handle any placeholder expressions which made it here. 351 if (E->getType()->isPlaceholderType()) { 352 ExprResult result = CheckPlaceholderExpr(E); 353 if (result.isInvalid()) return ExprError(); 354 E = result.take(); 355 } 356 357 // C++ [conv.lval]p1: 358 // A glvalue of a non-function, non-array type T can be 359 // converted to a prvalue. 360 if (!E->isGLValue()) return Owned(E); 361 362 QualType T = E->getType(); 363 assert(!T.isNull() && "r-value conversion on typeless expression?"); 364 365 // We can't do lvalue-to-rvalue on atomics yet. 366 if (T->isAtomicType()) 367 return Owned(E); 368 369 // We don't want to throw lvalue-to-rvalue casts on top of 370 // expressions of certain types in C++. 371 if (getLangOptions().CPlusPlus && 372 (E->getType() == Context.OverloadTy || 373 T->isDependentType() || 374 T->isRecordType())) 375 return Owned(E); 376 377 // The C standard is actually really unclear on this point, and 378 // DR106 tells us what the result should be but not why. It's 379 // generally best to say that void types just doesn't undergo 380 // lvalue-to-rvalue at all. Note that expressions of unqualified 381 // 'void' type are never l-values, but qualified void can be. 382 if (T->isVoidType()) 383 return Owned(E); 384 385 CheckForNullPointerDereference(*this, E); 386 387 // C++ [conv.lval]p1: 388 // [...] If T is a non-class type, the type of the prvalue is the 389 // cv-unqualified version of T. Otherwise, the type of the 390 // rvalue is T. 391 // 392 // C99 6.3.2.1p2: 393 // If the lvalue has qualified type, the value has the unqualified 394 // version of the type of the lvalue; otherwise, the value has the 395 // type of the lvalue. 396 if (T.hasQualifiers()) 397 T = T.getUnqualifiedType(); 398 399 ExprResult Res = Owned(ImplicitCastExpr::Create(Context, T, CK_LValueToRValue, 400 E, 0, VK_RValue)); 401 402 return Res; 403 } 404 405 ExprResult Sema::DefaultFunctionArrayLvalueConversion(Expr *E) { 406 ExprResult Res = DefaultFunctionArrayConversion(E); 407 if (Res.isInvalid()) 408 return ExprError(); 409 Res = DefaultLvalueConversion(Res.take()); 410 if (Res.isInvalid()) 411 return ExprError(); 412 return move(Res); 413 } 414 415 416 /// UsualUnaryConversions - Performs various conversions that are common to most 417 /// operators (C99 6.3). The conversions of array and function types are 418 /// sometimes suppressed. For example, the array->pointer conversion doesn't 419 /// apply if the array is an argument to the sizeof or address (&) operators. 420 /// In these instances, this routine should *not* be called. 421 ExprResult Sema::UsualUnaryConversions(Expr *E) { 422 // First, convert to an r-value. 423 ExprResult Res = DefaultFunctionArrayLvalueConversion(E); 424 if (Res.isInvalid()) 425 return Owned(E); 426 E = Res.take(); 427 428 QualType Ty = E->getType(); 429 assert(!Ty.isNull() && "UsualUnaryConversions - missing type"); 430 431 // Half FP is a bit different: it's a storage-only type, meaning that any 432 // "use" of it should be promoted to float. 433 if (Ty->isHalfType()) 434 return ImpCastExprToType(Res.take(), Context.FloatTy, CK_FloatingCast); 435 436 // Try to perform integral promotions if the object has a theoretically 437 // promotable type. 438 if (Ty->isIntegralOrUnscopedEnumerationType()) { 439 // C99 6.3.1.1p2: 440 // 441 // The following may be used in an expression wherever an int or 442 // unsigned int may be used: 443 // - an object or expression with an integer type whose integer 444 // conversion rank is less than or equal to the rank of int 445 // and unsigned int. 446 // - A bit-field of type _Bool, int, signed int, or unsigned int. 447 // 448 // If an int can represent all values of the original type, the 449 // value is converted to an int; otherwise, it is converted to an 450 // unsigned int. These are called the integer promotions. All 451 // other types are unchanged by the integer promotions. 452 453 QualType PTy = Context.isPromotableBitField(E); 454 if (!PTy.isNull()) { 455 E = ImpCastExprToType(E, PTy, CK_IntegralCast).take(); 456 return Owned(E); 457 } 458 if (Ty->isPromotableIntegerType()) { 459 QualType PT = Context.getPromotedIntegerType(Ty); 460 E = ImpCastExprToType(E, PT, CK_IntegralCast).take(); 461 return Owned(E); 462 } 463 } 464 return Owned(E); 465 } 466 467 /// DefaultArgumentPromotion (C99 6.5.2.2p6). Used for function calls that 468 /// do not have a prototype. Arguments that have type float are promoted to 469 /// double. All other argument types are converted by UsualUnaryConversions(). 470 ExprResult Sema::DefaultArgumentPromotion(Expr *E) { 471 QualType Ty = E->getType(); 472 assert(!Ty.isNull() && "DefaultArgumentPromotion - missing type"); 473 474 ExprResult Res = UsualUnaryConversions(E); 475 if (Res.isInvalid()) 476 return Owned(E); 477 E = Res.take(); 478 479 // If this is a 'float' (CVR qualified or typedef) promote to double. 480 if (Ty->isSpecificBuiltinType(BuiltinType::Float)) 481 E = ImpCastExprToType(E, Context.DoubleTy, CK_FloatingCast).take(); 482 483 // C++ performs lvalue-to-rvalue conversion as a default argument 484 // promotion, even on class types, but note: 485 // C++11 [conv.lval]p2: 486 // When an lvalue-to-rvalue conversion occurs in an unevaluated 487 // operand or a subexpression thereof the value contained in the 488 // referenced object is not accessed. Otherwise, if the glvalue 489 // has a class type, the conversion copy-initializes a temporary 490 // of type T from the glvalue and the result of the conversion 491 // is a prvalue for the temporary. 492 // FIXME: add some way to gate this entire thing for correctness in 493 // potentially potentially evaluated contexts. 494 if (getLangOptions().CPlusPlus && E->isGLValue() && 495 ExprEvalContexts.back().Context != Unevaluated) { 496 ExprResult Temp = PerformCopyInitialization( 497 InitializedEntity::InitializeTemporary(E->getType()), 498 E->getExprLoc(), 499 Owned(E)); 500 if (Temp.isInvalid()) 501 return ExprError(); 502 E = Temp.get(); 503 } 504 505 return Owned(E); 506 } 507 508 /// DefaultVariadicArgumentPromotion - Like DefaultArgumentPromotion, but 509 /// will warn if the resulting type is not a POD type, and rejects ObjC 510 /// interfaces passed by value. 511 ExprResult Sema::DefaultVariadicArgumentPromotion(Expr *E, VariadicCallType CT, 512 FunctionDecl *FDecl) { 513 if (const BuiltinType *PlaceholderTy = E->getType()->getAsPlaceholderType()) { 514 // Strip the unbridged-cast placeholder expression off, if applicable. 515 if (PlaceholderTy->getKind() == BuiltinType::ARCUnbridgedCast && 516 (CT == VariadicMethod || 517 (FDecl && FDecl->hasAttr<CFAuditedTransferAttr>()))) { 518 E = stripARCUnbridgedCast(E); 519 520 // Otherwise, do normal placeholder checking. 521 } else { 522 ExprResult ExprRes = CheckPlaceholderExpr(E); 523 if (ExprRes.isInvalid()) 524 return ExprError(); 525 E = ExprRes.take(); 526 } 527 } 528 529 ExprResult ExprRes = DefaultArgumentPromotion(E); 530 if (ExprRes.isInvalid()) 531 return ExprError(); 532 E = ExprRes.take(); 533 534 // Don't allow one to pass an Objective-C interface to a vararg. 535 if (E->getType()->isObjCObjectType() && 536 DiagRuntimeBehavior(E->getLocStart(), 0, 537 PDiag(diag::err_cannot_pass_objc_interface_to_vararg) 538 << E->getType() << CT)) 539 return ExprError(); 540 541 // Complain about passing non-POD types through varargs. However, don't 542 // perform this check for incomplete types, which we can get here when we're 543 // in an unevaluated context. 544 if (!E->getType()->isIncompleteType() && !E->getType().isPODType(Context)) { 545 // C++0x [expr.call]p7: 546 // Passing a potentially-evaluated argument of class type (Clause 9) 547 // having a non-trivial copy constructor, a non-trivial move constructor, 548 // or a non-trivial destructor, with no corresponding parameter, 549 // is conditionally-supported with implementation-defined semantics. 550 bool TrivialEnough = false; 551 if (getLangOptions().CPlusPlus0x && !E->getType()->isDependentType()) { 552 if (CXXRecordDecl *Record = E->getType()->getAsCXXRecordDecl()) { 553 if (Record->hasTrivialCopyConstructor() && 554 Record->hasTrivialMoveConstructor() && 555 Record->hasTrivialDestructor()) { 556 DiagRuntimeBehavior(E->getLocStart(), 0, 557 PDiag(diag::warn_cxx98_compat_pass_non_pod_arg_to_vararg) 558 << E->getType() << CT); 559 TrivialEnough = true; 560 } 561 } 562 } 563 564 if (!TrivialEnough && 565 getLangOptions().ObjCAutoRefCount && 566 E->getType()->isObjCLifetimeType()) 567 TrivialEnough = true; 568 569 if (TrivialEnough) { 570 // Nothing to diagnose. This is okay. 571 } else if (DiagRuntimeBehavior(E->getLocStart(), 0, 572 PDiag(diag::warn_cannot_pass_non_pod_arg_to_vararg) 573 << getLangOptions().CPlusPlus0x << E->getType() 574 << CT)) { 575 // Turn this into a trap. 576 CXXScopeSpec SS; 577 UnqualifiedId Name; 578 Name.setIdentifier(PP.getIdentifierInfo("__builtin_trap"), 579 E->getLocStart()); 580 ExprResult TrapFn = ActOnIdExpression(TUScope, SS, Name, true, false); 581 if (TrapFn.isInvalid()) 582 return ExprError(); 583 584 ExprResult Call = ActOnCallExpr(TUScope, TrapFn.get(), E->getLocStart(), 585 MultiExprArg(), E->getLocEnd()); 586 if (Call.isInvalid()) 587 return ExprError(); 588 589 ExprResult Comma = ActOnBinOp(TUScope, E->getLocStart(), tok::comma, 590 Call.get(), E); 591 if (Comma.isInvalid()) 592 return ExprError(); 593 E = Comma.get(); 594 } 595 } 596 597 return Owned(E); 598 } 599 600 /// \brief Converts an integer to complex float type. Helper function of 601 /// UsualArithmeticConversions() 602 /// 603 /// \return false if the integer expression is an integer type and is 604 /// successfully converted to the complex type. 605 static bool handleIntegerToComplexFloatConversion(Sema &S, ExprResult &IntExpr, 606 ExprResult &ComplexExpr, 607 QualType IntTy, 608 QualType ComplexTy, 609 bool SkipCast) { 610 if (IntTy->isComplexType() || IntTy->isRealFloatingType()) return true; 611 if (SkipCast) return false; 612 if (IntTy->isIntegerType()) { 613 QualType fpTy = cast<ComplexType>(ComplexTy)->getElementType(); 614 IntExpr = S.ImpCastExprToType(IntExpr.take(), fpTy, CK_IntegralToFloating); 615 IntExpr = S.ImpCastExprToType(IntExpr.take(), ComplexTy, 616 CK_FloatingRealToComplex); 617 } else { 618 assert(IntTy->isComplexIntegerType()); 619 IntExpr = S.ImpCastExprToType(IntExpr.take(), ComplexTy, 620 CK_IntegralComplexToFloatingComplex); 621 } 622 return false; 623 } 624 625 /// \brief Takes two complex float types and converts them to the same type. 626 /// Helper function of UsualArithmeticConversions() 627 static QualType 628 handleComplexFloatToComplexFloatConverstion(Sema &S, ExprResult &LHS, 629 ExprResult &RHS, QualType LHSType, 630 QualType RHSType, 631 bool IsCompAssign) { 632 int order = S.Context.getFloatingTypeOrder(LHSType, RHSType); 633 634 if (order < 0) { 635 // _Complex float -> _Complex double 636 if (!IsCompAssign) 637 LHS = S.ImpCastExprToType(LHS.take(), RHSType, CK_FloatingComplexCast); 638 return RHSType; 639 } 640 if (order > 0) 641 // _Complex float -> _Complex double 642 RHS = S.ImpCastExprToType(RHS.take(), LHSType, CK_FloatingComplexCast); 643 return LHSType; 644 } 645 646 /// \brief Converts otherExpr to complex float and promotes complexExpr if 647 /// necessary. Helper function of UsualArithmeticConversions() 648 static QualType handleOtherComplexFloatConversion(Sema &S, 649 ExprResult &ComplexExpr, 650 ExprResult &OtherExpr, 651 QualType ComplexTy, 652 QualType OtherTy, 653 bool ConvertComplexExpr, 654 bool ConvertOtherExpr) { 655 int order = S.Context.getFloatingTypeOrder(ComplexTy, OtherTy); 656 657 // If just the complexExpr is complex, the otherExpr needs to be converted, 658 // and the complexExpr might need to be promoted. 659 if (order > 0) { // complexExpr is wider 660 // float -> _Complex double 661 if (ConvertOtherExpr) { 662 QualType fp = cast<ComplexType>(ComplexTy)->getElementType(); 663 OtherExpr = S.ImpCastExprToType(OtherExpr.take(), fp, CK_FloatingCast); 664 OtherExpr = S.ImpCastExprToType(OtherExpr.take(), ComplexTy, 665 CK_FloatingRealToComplex); 666 } 667 return ComplexTy; 668 } 669 670 // otherTy is at least as wide. Find its corresponding complex type. 671 QualType result = (order == 0 ? ComplexTy : 672 S.Context.getComplexType(OtherTy)); 673 674 // double -> _Complex double 675 if (ConvertOtherExpr) 676 OtherExpr = S.ImpCastExprToType(OtherExpr.take(), result, 677 CK_FloatingRealToComplex); 678 679 // _Complex float -> _Complex double 680 if (ConvertComplexExpr && order < 0) 681 ComplexExpr = S.ImpCastExprToType(ComplexExpr.take(), result, 682 CK_FloatingComplexCast); 683 684 return result; 685 } 686 687 /// \brief Handle arithmetic conversion with complex types. Helper function of 688 /// UsualArithmeticConversions() 689 static QualType handleComplexFloatConversion(Sema &S, ExprResult &LHS, 690 ExprResult &RHS, QualType LHSType, 691 QualType RHSType, 692 bool IsCompAssign) { 693 // if we have an integer operand, the result is the complex type. 694 if (!handleIntegerToComplexFloatConversion(S, RHS, LHS, RHSType, LHSType, 695 /*skipCast*/false)) 696 return LHSType; 697 if (!handleIntegerToComplexFloatConversion(S, LHS, RHS, LHSType, RHSType, 698 /*skipCast*/IsCompAssign)) 699 return RHSType; 700 701 // This handles complex/complex, complex/float, or float/complex. 702 // When both operands are complex, the shorter operand is converted to the 703 // type of the longer, and that is the type of the result. This corresponds 704 // to what is done when combining two real floating-point operands. 705 // The fun begins when size promotion occur across type domains. 706 // From H&S 6.3.4: When one operand is complex and the other is a real 707 // floating-point type, the less precise type is converted, within it's 708 // real or complex domain, to the precision of the other type. For example, 709 // when combining a "long double" with a "double _Complex", the 710 // "double _Complex" is promoted to "long double _Complex". 711 712 bool LHSComplexFloat = LHSType->isComplexType(); 713 bool RHSComplexFloat = RHSType->isComplexType(); 714 715 // If both are complex, just cast to the more precise type. 716 if (LHSComplexFloat && RHSComplexFloat) 717 return handleComplexFloatToComplexFloatConverstion(S, LHS, RHS, 718 LHSType, RHSType, 719 IsCompAssign); 720 721 // If only one operand is complex, promote it if necessary and convert the 722 // other operand to complex. 723 if (LHSComplexFloat) 724 return handleOtherComplexFloatConversion( 725 S, LHS, RHS, LHSType, RHSType, /*convertComplexExpr*/!IsCompAssign, 726 /*convertOtherExpr*/ true); 727 728 assert(RHSComplexFloat); 729 return handleOtherComplexFloatConversion( 730 S, RHS, LHS, RHSType, LHSType, /*convertComplexExpr*/true, 731 /*convertOtherExpr*/ !IsCompAssign); 732 } 733 734 /// \brief Hande arithmetic conversion from integer to float. Helper function 735 /// of UsualArithmeticConversions() 736 static QualType handleIntToFloatConversion(Sema &S, ExprResult &FloatExpr, 737 ExprResult &IntExpr, 738 QualType FloatTy, QualType IntTy, 739 bool ConvertFloat, bool ConvertInt) { 740 if (IntTy->isIntegerType()) { 741 if (ConvertInt) 742 // Convert intExpr to the lhs floating point type. 743 IntExpr = S.ImpCastExprToType(IntExpr.take(), FloatTy, 744 CK_IntegralToFloating); 745 return FloatTy; 746 } 747 748 // Convert both sides to the appropriate complex float. 749 assert(IntTy->isComplexIntegerType()); 750 QualType result = S.Context.getComplexType(FloatTy); 751 752 // _Complex int -> _Complex float 753 if (ConvertInt) 754 IntExpr = S.ImpCastExprToType(IntExpr.take(), result, 755 CK_IntegralComplexToFloatingComplex); 756 757 // float -> _Complex float 758 if (ConvertFloat) 759 FloatExpr = S.ImpCastExprToType(FloatExpr.take(), result, 760 CK_FloatingRealToComplex); 761 762 return result; 763 } 764 765 /// \brief Handle arithmethic conversion with floating point types. Helper 766 /// function of UsualArithmeticConversions() 767 static QualType handleFloatConversion(Sema &S, ExprResult &LHS, 768 ExprResult &RHS, QualType LHSType, 769 QualType RHSType, bool IsCompAssign) { 770 bool LHSFloat = LHSType->isRealFloatingType(); 771 bool RHSFloat = RHSType->isRealFloatingType(); 772 773 // If we have two real floating types, convert the smaller operand 774 // to the bigger result. 775 if (LHSFloat && RHSFloat) { 776 int order = S.Context.getFloatingTypeOrder(LHSType, RHSType); 777 if (order > 0) { 778 RHS = S.ImpCastExprToType(RHS.take(), LHSType, CK_FloatingCast); 779 return LHSType; 780 } 781 782 assert(order < 0 && "illegal float comparison"); 783 if (!IsCompAssign) 784 LHS = S.ImpCastExprToType(LHS.take(), RHSType, CK_FloatingCast); 785 return RHSType; 786 } 787 788 if (LHSFloat) 789 return handleIntToFloatConversion(S, LHS, RHS, LHSType, RHSType, 790 /*convertFloat=*/!IsCompAssign, 791 /*convertInt=*/ true); 792 assert(RHSFloat); 793 return handleIntToFloatConversion(S, RHS, LHS, RHSType, LHSType, 794 /*convertInt=*/ true, 795 /*convertFloat=*/!IsCompAssign); 796 } 797 798 /// \brief Handle conversions with GCC complex int extension. Helper function 799 /// of UsualArithmeticConversions() 800 // FIXME: if the operands are (int, _Complex long), we currently 801 // don't promote the complex. Also, signedness? 802 static QualType handleComplexIntConversion(Sema &S, ExprResult &LHS, 803 ExprResult &RHS, QualType LHSType, 804 QualType RHSType, 805 bool IsCompAssign) { 806 const ComplexType *LHSComplexInt = LHSType->getAsComplexIntegerType(); 807 const ComplexType *RHSComplexInt = RHSType->getAsComplexIntegerType(); 808 809 if (LHSComplexInt && RHSComplexInt) { 810 int order = S.Context.getIntegerTypeOrder(LHSComplexInt->getElementType(), 811 RHSComplexInt->getElementType()); 812 assert(order && "inequal types with equal element ordering"); 813 if (order > 0) { 814 // _Complex int -> _Complex long 815 RHS = S.ImpCastExprToType(RHS.take(), LHSType, CK_IntegralComplexCast); 816 return LHSType; 817 } 818 819 if (!IsCompAssign) 820 LHS = S.ImpCastExprToType(LHS.take(), RHSType, CK_IntegralComplexCast); 821 return RHSType; 822 } 823 824 if (LHSComplexInt) { 825 // int -> _Complex int 826 // FIXME: This needs to take integer ranks into account 827 RHS = S.ImpCastExprToType(RHS.take(), LHSComplexInt->getElementType(), 828 CK_IntegralCast); 829 RHS = S.ImpCastExprToType(RHS.take(), LHSType, CK_IntegralRealToComplex); 830 return LHSType; 831 } 832 833 assert(RHSComplexInt); 834 // int -> _Complex int 835 // FIXME: This needs to take integer ranks into account 836 if (!IsCompAssign) { 837 LHS = S.ImpCastExprToType(LHS.take(), RHSComplexInt->getElementType(), 838 CK_IntegralCast); 839 LHS = S.ImpCastExprToType(LHS.take(), RHSType, CK_IntegralRealToComplex); 840 } 841 return RHSType; 842 } 843 844 /// \brief Handle integer arithmetic conversions. Helper function of 845 /// UsualArithmeticConversions() 846 static QualType handleIntegerConversion(Sema &S, ExprResult &LHS, 847 ExprResult &RHS, QualType LHSType, 848 QualType RHSType, bool IsCompAssign) { 849 // The rules for this case are in C99 6.3.1.8 850 int order = S.Context.getIntegerTypeOrder(LHSType, RHSType); 851 bool LHSSigned = LHSType->hasSignedIntegerRepresentation(); 852 bool RHSSigned = RHSType->hasSignedIntegerRepresentation(); 853 if (LHSSigned == RHSSigned) { 854 // Same signedness; use the higher-ranked type 855 if (order >= 0) { 856 RHS = S.ImpCastExprToType(RHS.take(), LHSType, CK_IntegralCast); 857 return LHSType; 858 } else if (!IsCompAssign) 859 LHS = S.ImpCastExprToType(LHS.take(), RHSType, CK_IntegralCast); 860 return RHSType; 861 } else if (order != (LHSSigned ? 1 : -1)) { 862 // The unsigned type has greater than or equal rank to the 863 // signed type, so use the unsigned type 864 if (RHSSigned) { 865 RHS = S.ImpCastExprToType(RHS.take(), LHSType, CK_IntegralCast); 866 return LHSType; 867 } else if (!IsCompAssign) 868 LHS = S.ImpCastExprToType(LHS.take(), RHSType, CK_IntegralCast); 869 return RHSType; 870 } else if (S.Context.getIntWidth(LHSType) != S.Context.getIntWidth(RHSType)) { 871 // The two types are different widths; if we are here, that 872 // means the signed type is larger than the unsigned type, so 873 // use the signed type. 874 if (LHSSigned) { 875 RHS = S.ImpCastExprToType(RHS.take(), LHSType, CK_IntegralCast); 876 return LHSType; 877 } else if (!IsCompAssign) 878 LHS = S.ImpCastExprToType(LHS.take(), RHSType, CK_IntegralCast); 879 return RHSType; 880 } else { 881 // The signed type is higher-ranked than the unsigned type, 882 // but isn't actually any bigger (like unsigned int and long 883 // on most 32-bit systems). Use the unsigned type corresponding 884 // to the signed type. 885 QualType result = 886 S.Context.getCorrespondingUnsignedType(LHSSigned ? LHSType : RHSType); 887 RHS = S.ImpCastExprToType(RHS.take(), result, CK_IntegralCast); 888 if (!IsCompAssign) 889 LHS = S.ImpCastExprToType(LHS.take(), result, CK_IntegralCast); 890 return result; 891 } 892 } 893 894 /// UsualArithmeticConversions - Performs various conversions that are common to 895 /// binary operators (C99 6.3.1.8). If both operands aren't arithmetic, this 896 /// routine returns the first non-arithmetic type found. The client is 897 /// responsible for emitting appropriate error diagnostics. 898 /// FIXME: verify the conversion rules for "complex int" are consistent with 899 /// GCC. 900 QualType Sema::UsualArithmeticConversions(ExprResult &LHS, ExprResult &RHS, 901 bool IsCompAssign) { 902 if (!IsCompAssign) { 903 LHS = UsualUnaryConversions(LHS.take()); 904 if (LHS.isInvalid()) 905 return QualType(); 906 } 907 908 RHS = UsualUnaryConversions(RHS.take()); 909 if (RHS.isInvalid()) 910 return QualType(); 911 912 // For conversion purposes, we ignore any qualifiers. 913 // For example, "const float" and "float" are equivalent. 914 QualType LHSType = 915 Context.getCanonicalType(LHS.get()->getType()).getUnqualifiedType(); 916 QualType RHSType = 917 Context.getCanonicalType(RHS.get()->getType()).getUnqualifiedType(); 918 919 // If both types are identical, no conversion is needed. 920 if (LHSType == RHSType) 921 return LHSType; 922 923 // If either side is a non-arithmetic type (e.g. a pointer), we are done. 924 // The caller can deal with this (e.g. pointer + int). 925 if (!LHSType->isArithmeticType() || !RHSType->isArithmeticType()) 926 return LHSType; 927 928 // Apply unary and bitfield promotions to the LHS's type. 929 QualType LHSUnpromotedType = LHSType; 930 if (LHSType->isPromotableIntegerType()) 931 LHSType = Context.getPromotedIntegerType(LHSType); 932 QualType LHSBitfieldPromoteTy = Context.isPromotableBitField(LHS.get()); 933 if (!LHSBitfieldPromoteTy.isNull()) 934 LHSType = LHSBitfieldPromoteTy; 935 if (LHSType != LHSUnpromotedType && !IsCompAssign) 936 LHS = ImpCastExprToType(LHS.take(), LHSType, CK_IntegralCast); 937 938 // If both types are identical, no conversion is needed. 939 if (LHSType == RHSType) 940 return LHSType; 941 942 // At this point, we have two different arithmetic types. 943 944 // Handle complex types first (C99 6.3.1.8p1). 945 if (LHSType->isComplexType() || RHSType->isComplexType()) 946 return handleComplexFloatConversion(*this, LHS, RHS, LHSType, RHSType, 947 IsCompAssign); 948 949 // Now handle "real" floating types (i.e. float, double, long double). 950 if (LHSType->isRealFloatingType() || RHSType->isRealFloatingType()) 951 return handleFloatConversion(*this, LHS, RHS, LHSType, RHSType, 952 IsCompAssign); 953 954 // Handle GCC complex int extension. 955 if (LHSType->isComplexIntegerType() || RHSType->isComplexIntegerType()) 956 return handleComplexIntConversion(*this, LHS, RHS, LHSType, RHSType, 957 IsCompAssign); 958 959 // Finally, we have two differing integer types. 960 return handleIntegerConversion(*this, LHS, RHS, LHSType, RHSType, 961 IsCompAssign); 962 } 963 964 //===----------------------------------------------------------------------===// 965 // Semantic Analysis for various Expression Types 966 //===----------------------------------------------------------------------===// 967 968 969 ExprResult 970 Sema::ActOnGenericSelectionExpr(SourceLocation KeyLoc, 971 SourceLocation DefaultLoc, 972 SourceLocation RParenLoc, 973 Expr *ControllingExpr, 974 MultiTypeArg ArgTypes, 975 MultiExprArg ArgExprs) { 976 unsigned NumAssocs = ArgTypes.size(); 977 assert(NumAssocs == ArgExprs.size()); 978 979 ParsedType *ParsedTypes = ArgTypes.release(); 980 Expr **Exprs = ArgExprs.release(); 981 982 TypeSourceInfo **Types = new TypeSourceInfo*[NumAssocs]; 983 for (unsigned i = 0; i < NumAssocs; ++i) { 984 if (ParsedTypes[i]) 985 (void) GetTypeFromParser(ParsedTypes[i], &Types[i]); 986 else 987 Types[i] = 0; 988 } 989 990 ExprResult ER = CreateGenericSelectionExpr(KeyLoc, DefaultLoc, RParenLoc, 991 ControllingExpr, Types, Exprs, 992 NumAssocs); 993 delete [] Types; 994 return ER; 995 } 996 997 ExprResult 998 Sema::CreateGenericSelectionExpr(SourceLocation KeyLoc, 999 SourceLocation DefaultLoc, 1000 SourceLocation RParenLoc, 1001 Expr *ControllingExpr, 1002 TypeSourceInfo **Types, 1003 Expr **Exprs, 1004 unsigned NumAssocs) { 1005 bool TypeErrorFound = false, 1006 IsResultDependent = ControllingExpr->isTypeDependent(), 1007 ContainsUnexpandedParameterPack 1008 = ControllingExpr->containsUnexpandedParameterPack(); 1009 1010 for (unsigned i = 0; i < NumAssocs; ++i) { 1011 if (Exprs[i]->containsUnexpandedParameterPack()) 1012 ContainsUnexpandedParameterPack = true; 1013 1014 if (Types[i]) { 1015 if (Types[i]->getType()->containsUnexpandedParameterPack()) 1016 ContainsUnexpandedParameterPack = true; 1017 1018 if (Types[i]->getType()->isDependentType()) { 1019 IsResultDependent = true; 1020 } else { 1021 // C1X 6.5.1.1p2 "The type name in a generic association shall specify a 1022 // complete object type other than a variably modified type." 1023 unsigned D = 0; 1024 if (Types[i]->getType()->isIncompleteType()) 1025 D = diag::err_assoc_type_incomplete; 1026 else if (!Types[i]->getType()->isObjectType()) 1027 D = diag::err_assoc_type_nonobject; 1028 else if (Types[i]->getType()->isVariablyModifiedType()) 1029 D = diag::err_assoc_type_variably_modified; 1030 1031 if (D != 0) { 1032 Diag(Types[i]->getTypeLoc().getBeginLoc(), D) 1033 << Types[i]->getTypeLoc().getSourceRange() 1034 << Types[i]->getType(); 1035 TypeErrorFound = true; 1036 } 1037 1038 // C1X 6.5.1.1p2 "No two generic associations in the same generic 1039 // selection shall specify compatible types." 1040 for (unsigned j = i+1; j < NumAssocs; ++j) 1041 if (Types[j] && !Types[j]->getType()->isDependentType() && 1042 Context.typesAreCompatible(Types[i]->getType(), 1043 Types[j]->getType())) { 1044 Diag(Types[j]->getTypeLoc().getBeginLoc(), 1045 diag::err_assoc_compatible_types) 1046 << Types[j]->getTypeLoc().getSourceRange() 1047 << Types[j]->getType() 1048 << Types[i]->getType(); 1049 Diag(Types[i]->getTypeLoc().getBeginLoc(), 1050 diag::note_compat_assoc) 1051 << Types[i]->getTypeLoc().getSourceRange() 1052 << Types[i]->getType(); 1053 TypeErrorFound = true; 1054 } 1055 } 1056 } 1057 } 1058 if (TypeErrorFound) 1059 return ExprError(); 1060 1061 // If we determined that the generic selection is result-dependent, don't 1062 // try to compute the result expression. 1063 if (IsResultDependent) 1064 return Owned(new (Context) GenericSelectionExpr( 1065 Context, KeyLoc, ControllingExpr, 1066 Types, Exprs, NumAssocs, DefaultLoc, 1067 RParenLoc, ContainsUnexpandedParameterPack)); 1068 1069 SmallVector<unsigned, 1> CompatIndices; 1070 unsigned DefaultIndex = -1U; 1071 for (unsigned i = 0; i < NumAssocs; ++i) { 1072 if (!Types[i]) 1073 DefaultIndex = i; 1074 else if (Context.typesAreCompatible(ControllingExpr->getType(), 1075 Types[i]->getType())) 1076 CompatIndices.push_back(i); 1077 } 1078 1079 // C1X 6.5.1.1p2 "The controlling expression of a generic selection shall have 1080 // type compatible with at most one of the types named in its generic 1081 // association list." 1082 if (CompatIndices.size() > 1) { 1083 // We strip parens here because the controlling expression is typically 1084 // parenthesized in macro definitions. 1085 ControllingExpr = ControllingExpr->IgnoreParens(); 1086 Diag(ControllingExpr->getLocStart(), diag::err_generic_sel_multi_match) 1087 << ControllingExpr->getSourceRange() << ControllingExpr->getType() 1088 << (unsigned) CompatIndices.size(); 1089 for (SmallVector<unsigned, 1>::iterator I = CompatIndices.begin(), 1090 E = CompatIndices.end(); I != E; ++I) { 1091 Diag(Types[*I]->getTypeLoc().getBeginLoc(), 1092 diag::note_compat_assoc) 1093 << Types[*I]->getTypeLoc().getSourceRange() 1094 << Types[*I]->getType(); 1095 } 1096 return ExprError(); 1097 } 1098 1099 // C1X 6.5.1.1p2 "If a generic selection has no default generic association, 1100 // its controlling expression shall have type compatible with exactly one of 1101 // the types named in its generic association list." 1102 if (DefaultIndex == -1U && CompatIndices.size() == 0) { 1103 // We strip parens here because the controlling expression is typically 1104 // parenthesized in macro definitions. 1105 ControllingExpr = ControllingExpr->IgnoreParens(); 1106 Diag(ControllingExpr->getLocStart(), diag::err_generic_sel_no_match) 1107 << ControllingExpr->getSourceRange() << ControllingExpr->getType(); 1108 return ExprError(); 1109 } 1110 1111 // C1X 6.5.1.1p3 "If a generic selection has a generic association with a 1112 // type name that is compatible with the type of the controlling expression, 1113 // then the result expression of the generic selection is the expression 1114 // in that generic association. Otherwise, the result expression of the 1115 // generic selection is the expression in the default generic association." 1116 unsigned ResultIndex = 1117 CompatIndices.size() ? CompatIndices[0] : DefaultIndex; 1118 1119 return Owned(new (Context) GenericSelectionExpr( 1120 Context, KeyLoc, ControllingExpr, 1121 Types, Exprs, NumAssocs, DefaultLoc, 1122 RParenLoc, ContainsUnexpandedParameterPack, 1123 ResultIndex)); 1124 } 1125 1126 /// ActOnStringLiteral - The specified tokens were lexed as pasted string 1127 /// fragments (e.g. "foo" "bar" L"baz"). The result string has to handle string 1128 /// concatenation ([C99 5.1.1.2, translation phase #6]), so it may come from 1129 /// multiple tokens. However, the common case is that StringToks points to one 1130 /// string. 1131 /// 1132 ExprResult 1133 Sema::ActOnStringLiteral(const Token *StringToks, unsigned NumStringToks) { 1134 assert(NumStringToks && "Must have at least one string!"); 1135 1136 StringLiteralParser Literal(StringToks, NumStringToks, PP); 1137 if (Literal.hadError) 1138 return ExprError(); 1139 1140 SmallVector<SourceLocation, 4> StringTokLocs; 1141 for (unsigned i = 0; i != NumStringToks; ++i) 1142 StringTokLocs.push_back(StringToks[i].getLocation()); 1143 1144 QualType StrTy = Context.CharTy; 1145 if (Literal.isWide()) 1146 StrTy = Context.getWCharType(); 1147 else if (Literal.isUTF16()) 1148 StrTy = Context.Char16Ty; 1149 else if (Literal.isUTF32()) 1150 StrTy = Context.Char32Ty; 1151 else if (Literal.isPascal()) 1152 StrTy = Context.UnsignedCharTy; 1153 1154 StringLiteral::StringKind Kind = StringLiteral::Ascii; 1155 if (Literal.isWide()) 1156 Kind = StringLiteral::Wide; 1157 else if (Literal.isUTF8()) 1158 Kind = StringLiteral::UTF8; 1159 else if (Literal.isUTF16()) 1160 Kind = StringLiteral::UTF16; 1161 else if (Literal.isUTF32()) 1162 Kind = StringLiteral::UTF32; 1163 1164 // A C++ string literal has a const-qualified element type (C++ 2.13.4p1). 1165 if (getLangOptions().CPlusPlus || getLangOptions().ConstStrings) 1166 StrTy.addConst(); 1167 1168 // Get an array type for the string, according to C99 6.4.5. This includes 1169 // the nul terminator character as well as the string length for pascal 1170 // strings. 1171 StrTy = Context.getConstantArrayType(StrTy, 1172 llvm::APInt(32, Literal.GetNumStringChars()+1), 1173 ArrayType::Normal, 0); 1174 1175 // Pass &StringTokLocs[0], StringTokLocs.size() to factory! 1176 return Owned(StringLiteral::Create(Context, Literal.GetString(), 1177 Kind, Literal.Pascal, StrTy, 1178 &StringTokLocs[0], 1179 StringTokLocs.size())); 1180 } 1181 1182 enum CaptureResult { 1183 /// No capture is required. 1184 CR_NoCapture, 1185 1186 /// A capture is required. 1187 CR_Capture, 1188 1189 /// A by-ref capture is required. 1190 CR_CaptureByRef, 1191 1192 /// An error occurred when trying to capture the given variable. 1193 CR_Error 1194 }; 1195 1196 /// Diagnose an uncapturable value reference. 1197 /// 1198 /// \param var - the variable referenced 1199 /// \param DC - the context which we couldn't capture through 1200 static CaptureResult 1201 diagnoseUncapturableValueReference(Sema &S, SourceLocation loc, 1202 VarDecl *var, DeclContext *DC) { 1203 switch (S.ExprEvalContexts.back().Context) { 1204 case Sema::Unevaluated: 1205 // The argument will never be evaluated, so don't complain. 1206 return CR_NoCapture; 1207 1208 case Sema::PotentiallyEvaluated: 1209 case Sema::PotentiallyEvaluatedIfUsed: 1210 break; 1211 1212 case Sema::PotentiallyPotentiallyEvaluated: 1213 // FIXME: delay these! 1214 break; 1215 } 1216 1217 // Don't diagnose about capture if we're not actually in code right 1218 // now; in general, there are more appropriate places that will 1219 // diagnose this. 1220 if (!S.CurContext->isFunctionOrMethod()) return CR_NoCapture; 1221 1222 // Certain madnesses can happen with parameter declarations, which 1223 // we want to ignore. 1224 if (isa<ParmVarDecl>(var)) { 1225 // - If the parameter still belongs to the translation unit, then 1226 // we're actually just using one parameter in the declaration of 1227 // the next. This is useful in e.g. VLAs. 1228 if (isa<TranslationUnitDecl>(var->getDeclContext())) 1229 return CR_NoCapture; 1230 1231 // - This particular madness can happen in ill-formed default 1232 // arguments; claim it's okay and let downstream code handle it. 1233 if (S.CurContext == var->getDeclContext()->getParent()) 1234 return CR_NoCapture; 1235 } 1236 1237 DeclarationName functionName; 1238 if (FunctionDecl *fn = dyn_cast<FunctionDecl>(var->getDeclContext())) 1239 functionName = fn->getDeclName(); 1240 // FIXME: variable from enclosing block that we couldn't capture from! 1241 1242 S.Diag(loc, diag::err_reference_to_local_var_in_enclosing_function) 1243 << var->getIdentifier() << functionName; 1244 S.Diag(var->getLocation(), diag::note_local_variable_declared_here) 1245 << var->getIdentifier(); 1246 1247 return CR_Error; 1248 } 1249 1250 /// There is a well-formed capture at a particular scope level; 1251 /// propagate it through all the nested blocks. 1252 static CaptureResult propagateCapture(Sema &S, unsigned ValidScopeIndex, 1253 const BlockDecl::Capture &Capture) { 1254 VarDecl *var = Capture.getVariable(); 1255 1256 // Update all the inner blocks with the capture information. 1257 for (unsigned i = ValidScopeIndex + 1, e = S.FunctionScopes.size(); 1258 i != e; ++i) { 1259 BlockScopeInfo *innerBlock = cast<BlockScopeInfo>(S.FunctionScopes[i]); 1260 innerBlock->Captures.push_back( 1261 BlockDecl::Capture(Capture.getVariable(), Capture.isByRef(), 1262 /*nested*/ true, Capture.getCopyExpr())); 1263 innerBlock->CaptureMap[var] = innerBlock->Captures.size(); // +1 1264 } 1265 1266 return Capture.isByRef() ? CR_CaptureByRef : CR_Capture; 1267 } 1268 1269 /// shouldCaptureValueReference - Determine if a reference to the 1270 /// given value in the current context requires a variable capture. 1271 /// 1272 /// This also keeps the captures set in the BlockScopeInfo records 1273 /// up-to-date. 1274 static CaptureResult shouldCaptureValueReference(Sema &S, SourceLocation loc, 1275 ValueDecl *Value) { 1276 // Only variables ever require capture. 1277 VarDecl *var = dyn_cast<VarDecl>(Value); 1278 if (!var) return CR_NoCapture; 1279 1280 // Fast path: variables from the current context never require capture. 1281 DeclContext *DC = S.CurContext; 1282 if (var->getDeclContext() == DC) return CR_NoCapture; 1283 1284 // Only variables with local storage require capture. 1285 // FIXME: What about 'const' variables in C++? 1286 if (!var->hasLocalStorage()) return CR_NoCapture; 1287 1288 // Otherwise, we need to capture. 1289 1290 unsigned functionScopesIndex = S.FunctionScopes.size() - 1; 1291 do { 1292 // Only blocks (and eventually C++0x closures) can capture; other 1293 // scopes don't work. 1294 if (!isa<BlockDecl>(DC)) 1295 return diagnoseUncapturableValueReference(S, loc, var, DC); 1296 1297 BlockScopeInfo *blockScope = 1298 cast<BlockScopeInfo>(S.FunctionScopes[functionScopesIndex]); 1299 assert(blockScope->TheDecl == static_cast<BlockDecl*>(DC)); 1300 1301 // Check whether we've already captured it in this block. If so, 1302 // we're done. 1303 if (unsigned indexPlus1 = blockScope->CaptureMap[var]) 1304 return propagateCapture(S, functionScopesIndex, 1305 blockScope->Captures[indexPlus1 - 1]); 1306 1307 functionScopesIndex--; 1308 DC = cast<BlockDecl>(DC)->getDeclContext(); 1309 } while (var->getDeclContext() != DC); 1310 1311 // Okay, we descended all the way to the block that defines the variable. 1312 // Actually try to capture it. 1313 QualType type = var->getType(); 1314 1315 // Prohibit variably-modified types. 1316 if (type->isVariablyModifiedType()) { 1317 S.Diag(loc, diag::err_ref_vm_type); 1318 S.Diag(var->getLocation(), diag::note_declared_at); 1319 return CR_Error; 1320 } 1321 1322 // Prohibit arrays, even in __block variables, but not references to 1323 // them. 1324 if (type->isArrayType()) { 1325 S.Diag(loc, diag::err_ref_array_type); 1326 S.Diag(var->getLocation(), diag::note_declared_at); 1327 return CR_Error; 1328 } 1329 1330 S.MarkDeclarationReferenced(loc, var); 1331 1332 // The BlocksAttr indicates the variable is bound by-reference. 1333 bool byRef = var->hasAttr<BlocksAttr>(); 1334 1335 // Build a copy expression. 1336 Expr *copyExpr = 0; 1337 const RecordType *rtype; 1338 if (!byRef && S.getLangOptions().CPlusPlus && !type->isDependentType() && 1339 (rtype = type->getAs<RecordType>())) { 1340 1341 // The capture logic needs the destructor, so make sure we mark it. 1342 // Usually this is unnecessary because most local variables have 1343 // their destructors marked at declaration time, but parameters are 1344 // an exception because it's technically only the call site that 1345 // actually requires the destructor. 1346 if (isa<ParmVarDecl>(var)) 1347 S.FinalizeVarWithDestructor(var, rtype); 1348 1349 // According to the blocks spec, the capture of a variable from 1350 // the stack requires a const copy constructor. This is not true 1351 // of the copy/move done to move a __block variable to the heap. 1352 type.addConst(); 1353 1354 Expr *declRef = new (S.Context) DeclRefExpr(var, type, VK_LValue, loc); 1355 ExprResult result = 1356 S.PerformCopyInitialization( 1357 InitializedEntity::InitializeBlock(var->getLocation(), 1358 type, false), 1359 loc, S.Owned(declRef)); 1360 1361 // Build a full-expression copy expression if initialization 1362 // succeeded and used a non-trivial constructor. Recover from 1363 // errors by pretending that the copy isn't necessary. 1364 if (!result.isInvalid() && 1365 !cast<CXXConstructExpr>(result.get())->getConstructor()->isTrivial()) { 1366 result = S.MaybeCreateExprWithCleanups(result); 1367 copyExpr = result.take(); 1368 } 1369 } 1370 1371 // We're currently at the declarer; go back to the closure. 1372 functionScopesIndex++; 1373 BlockScopeInfo *blockScope = 1374 cast<BlockScopeInfo>(S.FunctionScopes[functionScopesIndex]); 1375 1376 // Build a valid capture in this scope. 1377 blockScope->Captures.push_back( 1378 BlockDecl::Capture(var, byRef, /*nested*/ false, copyExpr)); 1379 blockScope->CaptureMap[var] = blockScope->Captures.size(); // +1 1380 1381 // Propagate that to inner captures if necessary. 1382 return propagateCapture(S, functionScopesIndex, 1383 blockScope->Captures.back()); 1384 } 1385 1386 static ExprResult BuildBlockDeclRefExpr(Sema &S, ValueDecl *VD, 1387 const DeclarationNameInfo &NameInfo, 1388 bool ByRef) { 1389 assert(isa<VarDecl>(VD) && "capturing non-variable"); 1390 1391 VarDecl *var = cast<VarDecl>(VD); 1392 assert(var->hasLocalStorage() && "capturing non-local"); 1393 assert(ByRef == var->hasAttr<BlocksAttr>() && "byref set wrong"); 1394 1395 QualType exprType = var->getType().getNonReferenceType(); 1396 1397 BlockDeclRefExpr *BDRE; 1398 if (!ByRef) { 1399 // The variable will be bound by copy; make it const within the 1400 // closure, but record that this was done in the expression. 1401 bool constAdded = !exprType.isConstQualified(); 1402 exprType.addConst(); 1403 1404 BDRE = new (S.Context) BlockDeclRefExpr(var, exprType, VK_LValue, 1405 NameInfo.getLoc(), false, 1406 constAdded); 1407 } else { 1408 BDRE = new (S.Context) BlockDeclRefExpr(var, exprType, VK_LValue, 1409 NameInfo.getLoc(), true); 1410 } 1411 1412 return S.Owned(BDRE); 1413 } 1414 1415 ExprResult 1416 Sema::BuildDeclRefExpr(ValueDecl *D, QualType Ty, ExprValueKind VK, 1417 SourceLocation Loc, 1418 const CXXScopeSpec *SS) { 1419 DeclarationNameInfo NameInfo(D->getDeclName(), Loc); 1420 return BuildDeclRefExpr(D, Ty, VK, NameInfo, SS); 1421 } 1422 1423 /// BuildDeclRefExpr - Build an expression that references a 1424 /// declaration that does not require a closure capture. 1425 ExprResult 1426 Sema::BuildDeclRefExpr(ValueDecl *D, QualType Ty, ExprValueKind VK, 1427 const DeclarationNameInfo &NameInfo, 1428 const CXXScopeSpec *SS) { 1429 if (getLangOptions().CUDA) 1430 if (const FunctionDecl *Caller = dyn_cast<FunctionDecl>(CurContext)) 1431 if (const FunctionDecl *Callee = dyn_cast<FunctionDecl>(D)) { 1432 CUDAFunctionTarget CallerTarget = IdentifyCUDATarget(Caller), 1433 CalleeTarget = IdentifyCUDATarget(Callee); 1434 if (CheckCUDATarget(CallerTarget, CalleeTarget)) { 1435 Diag(NameInfo.getLoc(), diag::err_ref_bad_target) 1436 << CalleeTarget << D->getIdentifier() << CallerTarget; 1437 Diag(D->getLocation(), diag::note_previous_decl) 1438 << D->getIdentifier(); 1439 return ExprError(); 1440 } 1441 } 1442 1443 MarkDeclarationReferenced(NameInfo.getLoc(), D); 1444 1445 Expr *E = DeclRefExpr::Create(Context, 1446 SS? SS->getWithLocInContext(Context) 1447 : NestedNameSpecifierLoc(), 1448 D, NameInfo, Ty, VK); 1449 1450 // Just in case we're building an illegal pointer-to-member. 1451 FieldDecl *FD = dyn_cast<FieldDecl>(D); 1452 if (FD && FD->isBitField()) 1453 E->setObjectKind(OK_BitField); 1454 1455 return Owned(E); 1456 } 1457 1458 /// Decomposes the given name into a DeclarationNameInfo, its location, and 1459 /// possibly a list of template arguments. 1460 /// 1461 /// If this produces template arguments, it is permitted to call 1462 /// DecomposeTemplateName. 1463 /// 1464 /// This actually loses a lot of source location information for 1465 /// non-standard name kinds; we should consider preserving that in 1466 /// some way. 1467 void 1468 Sema::DecomposeUnqualifiedId(const UnqualifiedId &Id, 1469 TemplateArgumentListInfo &Buffer, 1470 DeclarationNameInfo &NameInfo, 1471 const TemplateArgumentListInfo *&TemplateArgs) { 1472 if (Id.getKind() == UnqualifiedId::IK_TemplateId) { 1473 Buffer.setLAngleLoc(Id.TemplateId->LAngleLoc); 1474 Buffer.setRAngleLoc(Id.TemplateId->RAngleLoc); 1475 1476 ASTTemplateArgsPtr TemplateArgsPtr(*this, 1477 Id.TemplateId->getTemplateArgs(), 1478 Id.TemplateId->NumArgs); 1479 translateTemplateArguments(TemplateArgsPtr, Buffer); 1480 TemplateArgsPtr.release(); 1481 1482 TemplateName TName = Id.TemplateId->Template.get(); 1483 SourceLocation TNameLoc = Id.TemplateId->TemplateNameLoc; 1484 NameInfo = Context.getNameForTemplate(TName, TNameLoc); 1485 TemplateArgs = &Buffer; 1486 } else { 1487 NameInfo = GetNameFromUnqualifiedId(Id); 1488 TemplateArgs = 0; 1489 } 1490 } 1491 1492 /// Diagnose an empty lookup. 1493 /// 1494 /// \return false if new lookup candidates were found 1495 bool Sema::DiagnoseEmptyLookup(Scope *S, CXXScopeSpec &SS, LookupResult &R, 1496 CorrectTypoContext CTC, 1497 TemplateArgumentListInfo *ExplicitTemplateArgs, 1498 Expr **Args, unsigned NumArgs) { 1499 DeclarationName Name = R.getLookupName(); 1500 1501 unsigned diagnostic = diag::err_undeclared_var_use; 1502 unsigned diagnostic_suggest = diag::err_undeclared_var_use_suggest; 1503 if (Name.getNameKind() == DeclarationName::CXXOperatorName || 1504 Name.getNameKind() == DeclarationName::CXXLiteralOperatorName || 1505 Name.getNameKind() == DeclarationName::CXXConversionFunctionName) { 1506 diagnostic = diag::err_undeclared_use; 1507 diagnostic_suggest = diag::err_undeclared_use_suggest; 1508 } 1509 1510 // If the original lookup was an unqualified lookup, fake an 1511 // unqualified lookup. This is useful when (for example) the 1512 // original lookup would not have found something because it was a 1513 // dependent name. 1514 for (DeclContext *DC = SS.isEmpty() ? CurContext : 0; 1515 DC; DC = DC->getParent()) { 1516 if (isa<CXXRecordDecl>(DC)) { 1517 LookupQualifiedName(R, DC); 1518 1519 if (!R.empty()) { 1520 // Don't give errors about ambiguities in this lookup. 1521 R.suppressDiagnostics(); 1522 1523 CXXMethodDecl *CurMethod = dyn_cast<CXXMethodDecl>(CurContext); 1524 bool isInstance = CurMethod && 1525 CurMethod->isInstance() && 1526 DC == CurMethod->getParent(); 1527 1528 // Give a code modification hint to insert 'this->'. 1529 // TODO: fixit for inserting 'Base<T>::' in the other cases. 1530 // Actually quite difficult! 1531 if (isInstance) { 1532 UnresolvedLookupExpr *ULE = cast<UnresolvedLookupExpr>( 1533 CallsUndergoingInstantiation.back()->getCallee()); 1534 CXXMethodDecl *DepMethod = cast_or_null<CXXMethodDecl>( 1535 CurMethod->getInstantiatedFromMemberFunction()); 1536 if (DepMethod) { 1537 if (getLangOptions().MicrosoftMode) 1538 diagnostic = diag::warn_found_via_dependent_bases_lookup; 1539 Diag(R.getNameLoc(), diagnostic) << Name 1540 << FixItHint::CreateInsertion(R.getNameLoc(), "this->"); 1541 QualType DepThisType = DepMethod->getThisType(Context); 1542 CXXThisExpr *DepThis = new (Context) CXXThisExpr( 1543 R.getNameLoc(), DepThisType, false); 1544 TemplateArgumentListInfo TList; 1545 if (ULE->hasExplicitTemplateArgs()) 1546 ULE->copyTemplateArgumentsInto(TList); 1547 1548 CXXScopeSpec SS; 1549 SS.Adopt(ULE->getQualifierLoc()); 1550 CXXDependentScopeMemberExpr *DepExpr = 1551 CXXDependentScopeMemberExpr::Create( 1552 Context, DepThis, DepThisType, true, SourceLocation(), 1553 SS.getWithLocInContext(Context), NULL, 1554 R.getLookupNameInfo(), 1555 ULE->hasExplicitTemplateArgs() ? &TList : 0); 1556 CallsUndergoingInstantiation.back()->setCallee(DepExpr); 1557 } else { 1558 // FIXME: we should be able to handle this case too. It is correct 1559 // to add this-> here. This is a workaround for PR7947. 1560 Diag(R.getNameLoc(), diagnostic) << Name; 1561 } 1562 } else { 1563 if (getLangOptions().MicrosoftMode) 1564 diagnostic = diag::warn_found_via_dependent_bases_lookup; 1565 Diag(R.getNameLoc(), diagnostic) << Name; 1566 } 1567 1568 // Do we really want to note all of these? 1569 for (LookupResult::iterator I = R.begin(), E = R.end(); I != E; ++I) 1570 Diag((*I)->getLocation(), diag::note_dependent_var_use); 1571 1572 // Tell the callee to try to recover. 1573 return false; 1574 } 1575 1576 R.clear(); 1577 } 1578 } 1579 1580 // We didn't find anything, so try to correct for a typo. 1581 TypoCorrection Corrected; 1582 if (S && (Corrected = CorrectTypo(R.getLookupNameInfo(), R.getLookupKind(), 1583 S, &SS, NULL, false, CTC))) { 1584 std::string CorrectedStr(Corrected.getAsString(getLangOptions())); 1585 std::string CorrectedQuotedStr(Corrected.getQuoted(getLangOptions())); 1586 R.setLookupName(Corrected.getCorrection()); 1587 1588 if (NamedDecl *ND = Corrected.getCorrectionDecl()) { 1589 if (Corrected.isOverloaded()) { 1590 OverloadCandidateSet OCS(R.getNameLoc()); 1591 OverloadCandidateSet::iterator Best; 1592 for (TypoCorrection::decl_iterator CD = Corrected.begin(), 1593 CDEnd = Corrected.end(); 1594 CD != CDEnd; ++CD) { 1595 if (FunctionTemplateDecl *FTD = 1596 dyn_cast<FunctionTemplateDecl>(*CD)) 1597 AddTemplateOverloadCandidate( 1598 FTD, DeclAccessPair::make(FTD, AS_none), ExplicitTemplateArgs, 1599 Args, NumArgs, OCS); 1600 else if (FunctionDecl *FD = dyn_cast<FunctionDecl>(*CD)) 1601 if (!ExplicitTemplateArgs || ExplicitTemplateArgs->size() == 0) 1602 AddOverloadCandidate(FD, DeclAccessPair::make(FD, AS_none), 1603 Args, NumArgs, OCS); 1604 } 1605 switch (OCS.BestViableFunction(*this, R.getNameLoc(), Best)) { 1606 case OR_Success: 1607 ND = Best->Function; 1608 break; 1609 default: 1610 break; 1611 } 1612 } 1613 R.addDecl(ND); 1614 if (isa<ValueDecl>(ND) || isa<FunctionTemplateDecl>(ND)) { 1615 if (SS.isEmpty()) 1616 Diag(R.getNameLoc(), diagnostic_suggest) << Name << CorrectedQuotedStr 1617 << FixItHint::CreateReplacement(R.getNameLoc(), CorrectedStr); 1618 else 1619 Diag(R.getNameLoc(), diag::err_no_member_suggest) 1620 << Name << computeDeclContext(SS, false) << CorrectedQuotedStr 1621 << SS.getRange() 1622 << FixItHint::CreateReplacement(R.getNameLoc(), CorrectedStr); 1623 if (ND) 1624 Diag(ND->getLocation(), diag::note_previous_decl) 1625 << CorrectedQuotedStr; 1626 1627 // Tell the callee to try to recover. 1628 return false; 1629 } 1630 1631 if (isa<TypeDecl>(ND) || isa<ObjCInterfaceDecl>(ND)) { 1632 // FIXME: If we ended up with a typo for a type name or 1633 // Objective-C class name, we're in trouble because the parser 1634 // is in the wrong place to recover. Suggest the typo 1635 // correction, but don't make it a fix-it since we're not going 1636 // to recover well anyway. 1637 if (SS.isEmpty()) 1638 Diag(R.getNameLoc(), diagnostic_suggest) 1639 << Name << CorrectedQuotedStr; 1640 else 1641 Diag(R.getNameLoc(), diag::err_no_member_suggest) 1642 << Name << computeDeclContext(SS, false) << CorrectedQuotedStr 1643 << SS.getRange(); 1644 1645 // Don't try to recover; it won't work. 1646 return true; 1647 } 1648 } else { 1649 // FIXME: We found a keyword. Suggest it, but don't provide a fix-it 1650 // because we aren't able to recover. 1651 if (SS.isEmpty()) 1652 Diag(R.getNameLoc(), diagnostic_suggest) << Name << CorrectedQuotedStr; 1653 else 1654 Diag(R.getNameLoc(), diag::err_no_member_suggest) 1655 << Name << computeDeclContext(SS, false) << CorrectedQuotedStr 1656 << SS.getRange(); 1657 return true; 1658 } 1659 } 1660 R.clear(); 1661 1662 // Emit a special diagnostic for failed member lookups. 1663 // FIXME: computing the declaration context might fail here (?) 1664 if (!SS.isEmpty()) { 1665 Diag(R.getNameLoc(), diag::err_no_member) 1666 << Name << computeDeclContext(SS, false) 1667 << SS.getRange(); 1668 return true; 1669 } 1670 1671 // Give up, we can't recover. 1672 Diag(R.getNameLoc(), diagnostic) << Name; 1673 return true; 1674 } 1675 1676 ExprResult Sema::ActOnIdExpression(Scope *S, 1677 CXXScopeSpec &SS, 1678 UnqualifiedId &Id, 1679 bool HasTrailingLParen, 1680 bool IsAddressOfOperand) { 1681 assert(!(IsAddressOfOperand && HasTrailingLParen) && 1682 "cannot be direct & operand and have a trailing lparen"); 1683 1684 if (SS.isInvalid()) 1685 return ExprError(); 1686 1687 TemplateArgumentListInfo TemplateArgsBuffer; 1688 1689 // Decompose the UnqualifiedId into the following data. 1690 DeclarationNameInfo NameInfo; 1691 const TemplateArgumentListInfo *TemplateArgs; 1692 DecomposeUnqualifiedId(Id, TemplateArgsBuffer, NameInfo, TemplateArgs); 1693 1694 DeclarationName Name = NameInfo.getName(); 1695 IdentifierInfo *II = Name.getAsIdentifierInfo(); 1696 SourceLocation NameLoc = NameInfo.getLoc(); 1697 1698 // C++ [temp.dep.expr]p3: 1699 // An id-expression is type-dependent if it contains: 1700 // -- an identifier that was declared with a dependent type, 1701 // (note: handled after lookup) 1702 // -- a template-id that is dependent, 1703 // (note: handled in BuildTemplateIdExpr) 1704 // -- a conversion-function-id that specifies a dependent type, 1705 // -- a nested-name-specifier that contains a class-name that 1706 // names a dependent type. 1707 // Determine whether this is a member of an unknown specialization; 1708 // we need to handle these differently. 1709 bool DependentID = false; 1710 if (Name.getNameKind() == DeclarationName::CXXConversionFunctionName && 1711 Name.getCXXNameType()->isDependentType()) { 1712 DependentID = true; 1713 } else if (SS.isSet()) { 1714 if (DeclContext *DC = computeDeclContext(SS, false)) { 1715 if (RequireCompleteDeclContext(SS, DC)) 1716 return ExprError(); 1717 } else { 1718 DependentID = true; 1719 } 1720 } 1721 1722 if (DependentID) 1723 return ActOnDependentIdExpression(SS, NameInfo, IsAddressOfOperand, 1724 TemplateArgs); 1725 1726 bool IvarLookupFollowUp = false; 1727 // Perform the required lookup. 1728 LookupResult R(*this, NameInfo, 1729 (Id.getKind() == UnqualifiedId::IK_ImplicitSelfParam) 1730 ? LookupObjCImplicitSelfParam : LookupOrdinaryName); 1731 if (TemplateArgs) { 1732 // Lookup the template name again to correctly establish the context in 1733 // which it was found. This is really unfortunate as we already did the 1734 // lookup to determine that it was a template name in the first place. If 1735 // this becomes a performance hit, we can work harder to preserve those 1736 // results until we get here but it's likely not worth it. 1737 bool MemberOfUnknownSpecialization; 1738 LookupTemplateName(R, S, SS, QualType(), /*EnteringContext=*/false, 1739 MemberOfUnknownSpecialization); 1740 1741 if (MemberOfUnknownSpecialization || 1742 (R.getResultKind() == LookupResult::NotFoundInCurrentInstantiation)) 1743 return ActOnDependentIdExpression(SS, NameInfo, IsAddressOfOperand, 1744 TemplateArgs); 1745 } else { 1746 IvarLookupFollowUp = (!SS.isSet() && II && getCurMethodDecl()); 1747 LookupParsedName(R, S, &SS, !IvarLookupFollowUp); 1748 1749 // If the result might be in a dependent base class, this is a dependent 1750 // id-expression. 1751 if (R.getResultKind() == LookupResult::NotFoundInCurrentInstantiation) 1752 return ActOnDependentIdExpression(SS, NameInfo, IsAddressOfOperand, 1753 TemplateArgs); 1754 1755 // If this reference is in an Objective-C method, then we need to do 1756 // some special Objective-C lookup, too. 1757 if (IvarLookupFollowUp) { 1758 ExprResult E(LookupInObjCMethod(R, S, II, true)); 1759 if (E.isInvalid()) 1760 return ExprError(); 1761 1762 if (Expr *Ex = E.takeAs<Expr>()) 1763 return Owned(Ex); 1764 1765 // for further use, this must be set to false if in class method. 1766 IvarLookupFollowUp = getCurMethodDecl()->isInstanceMethod(); 1767 } 1768 } 1769 1770 if (R.isAmbiguous()) 1771 return ExprError(); 1772 1773 // Determine whether this name might be a candidate for 1774 // argument-dependent lookup. 1775 bool ADL = UseArgumentDependentLookup(SS, R, HasTrailingLParen); 1776 1777 if (R.empty() && !ADL) { 1778 // Otherwise, this could be an implicitly declared function reference (legal 1779 // in C90, extension in C99, forbidden in C++). 1780 if (HasTrailingLParen && II && !getLangOptions().CPlusPlus) { 1781 NamedDecl *D = ImplicitlyDefineFunction(NameLoc, *II, S); 1782 if (D) R.addDecl(D); 1783 } 1784 1785 // If this name wasn't predeclared and if this is not a function 1786 // call, diagnose the problem. 1787 if (R.empty()) { 1788 1789 // In Microsoft mode, if we are inside a template class member function 1790 // and we can't resolve an identifier then assume the identifier is type 1791 // dependent. The goal is to postpone name lookup to instantiation time 1792 // to be able to search into type dependent base classes. 1793 if (getLangOptions().MicrosoftMode && CurContext->isDependentContext() && 1794 isa<CXXMethodDecl>(CurContext)) 1795 return ActOnDependentIdExpression(SS, NameInfo, IsAddressOfOperand, 1796 TemplateArgs); 1797 1798 if (DiagnoseEmptyLookup(S, SS, R, CTC_Unknown)) 1799 return ExprError(); 1800 1801 assert(!R.empty() && 1802 "DiagnoseEmptyLookup returned false but added no results"); 1803 1804 // If we found an Objective-C instance variable, let 1805 // LookupInObjCMethod build the appropriate expression to 1806 // reference the ivar. 1807 if (ObjCIvarDecl *Ivar = R.getAsSingle<ObjCIvarDecl>()) { 1808 R.clear(); 1809 ExprResult E(LookupInObjCMethod(R, S, Ivar->getIdentifier())); 1810 // In a hopelessly buggy code, Objective-C instance variable 1811 // lookup fails and no expression will be built to reference it. 1812 if (!E.isInvalid() && !E.get()) 1813 return ExprError(); 1814 return move(E); 1815 } 1816 } 1817 } 1818 1819 // This is guaranteed from this point on. 1820 assert(!R.empty() || ADL); 1821 1822 // Check whether this might be a C++ implicit instance member access. 1823 // C++ [class.mfct.non-static]p3: 1824 // When an id-expression that is not part of a class member access 1825 // syntax and not used to form a pointer to member is used in the 1826 // body of a non-static member function of class X, if name lookup 1827 // resolves the name in the id-expression to a non-static non-type 1828 // member of some class C, the id-expression is transformed into a 1829 // class member access expression using (*this) as the 1830 // postfix-expression to the left of the . operator. 1831 // 1832 // But we don't actually need to do this for '&' operands if R 1833 // resolved to a function or overloaded function set, because the 1834 // expression is ill-formed if it actually works out to be a 1835 // non-static member function: 1836 // 1837 // C++ [expr.ref]p4: 1838 // Otherwise, if E1.E2 refers to a non-static member function. . . 1839 // [t]he expression can be used only as the left-hand operand of a 1840 // member function call. 1841 // 1842 // There are other safeguards against such uses, but it's important 1843 // to get this right here so that we don't end up making a 1844 // spuriously dependent expression if we're inside a dependent 1845 // instance method. 1846 if (!R.empty() && (*R.begin())->isCXXClassMember()) { 1847 bool MightBeImplicitMember; 1848 if (!IsAddressOfOperand) 1849 MightBeImplicitMember = true; 1850 else if (!SS.isEmpty()) 1851 MightBeImplicitMember = false; 1852 else if (R.isOverloadedResult()) 1853 MightBeImplicitMember = false; 1854 else if (R.isUnresolvableResult()) 1855 MightBeImplicitMember = true; 1856 else 1857 MightBeImplicitMember = isa<FieldDecl>(R.getFoundDecl()) || 1858 isa<IndirectFieldDecl>(R.getFoundDecl()); 1859 1860 if (MightBeImplicitMember) 1861 return BuildPossibleImplicitMemberExpr(SS, R, TemplateArgs); 1862 } 1863 1864 if (TemplateArgs) 1865 return BuildTemplateIdExpr(SS, R, ADL, *TemplateArgs); 1866 1867 return BuildDeclarationNameExpr(SS, R, ADL); 1868 } 1869 1870 /// BuildQualifiedDeclarationNameExpr - Build a C++ qualified 1871 /// declaration name, generally during template instantiation. 1872 /// There's a large number of things which don't need to be done along 1873 /// this path. 1874 ExprResult 1875 Sema::BuildQualifiedDeclarationNameExpr(CXXScopeSpec &SS, 1876 const DeclarationNameInfo &NameInfo) { 1877 DeclContext *DC; 1878 if (!(DC = computeDeclContext(SS, false)) || DC->isDependentContext()) 1879 return BuildDependentDeclRefExpr(SS, NameInfo, 0); 1880 1881 if (RequireCompleteDeclContext(SS, DC)) 1882 return ExprError(); 1883 1884 LookupResult R(*this, NameInfo, LookupOrdinaryName); 1885 LookupQualifiedName(R, DC); 1886 1887 if (R.isAmbiguous()) 1888 return ExprError(); 1889 1890 if (R.empty()) { 1891 Diag(NameInfo.getLoc(), diag::err_no_member) 1892 << NameInfo.getName() << DC << SS.getRange(); 1893 return ExprError(); 1894 } 1895 1896 return BuildDeclarationNameExpr(SS, R, /*ADL*/ false); 1897 } 1898 1899 /// LookupInObjCMethod - The parser has read a name in, and Sema has 1900 /// detected that we're currently inside an ObjC method. Perform some 1901 /// additional lookup. 1902 /// 1903 /// Ideally, most of this would be done by lookup, but there's 1904 /// actually quite a lot of extra work involved. 1905 /// 1906 /// Returns a null sentinel to indicate trivial success. 1907 ExprResult 1908 Sema::LookupInObjCMethod(LookupResult &Lookup, Scope *S, 1909 IdentifierInfo *II, bool AllowBuiltinCreation) { 1910 SourceLocation Loc = Lookup.getNameLoc(); 1911 ObjCMethodDecl *CurMethod = getCurMethodDecl(); 1912 1913 // There are two cases to handle here. 1) scoped lookup could have failed, 1914 // in which case we should look for an ivar. 2) scoped lookup could have 1915 // found a decl, but that decl is outside the current instance method (i.e. 1916 // a global variable). In these two cases, we do a lookup for an ivar with 1917 // this name, if the lookup sucedes, we replace it our current decl. 1918 1919 // If we're in a class method, we don't normally want to look for 1920 // ivars. But if we don't find anything else, and there's an 1921 // ivar, that's an error. 1922 bool IsClassMethod = CurMethod->isClassMethod(); 1923 1924 bool LookForIvars; 1925 if (Lookup.empty()) 1926 LookForIvars = true; 1927 else if (IsClassMethod) 1928 LookForIvars = false; 1929 else 1930 LookForIvars = (Lookup.isSingleResult() && 1931 Lookup.getFoundDecl()->isDefinedOutsideFunctionOrMethod()); 1932 ObjCInterfaceDecl *IFace = 0; 1933 if (LookForIvars) { 1934 IFace = CurMethod->getClassInterface(); 1935 ObjCInterfaceDecl *ClassDeclared; 1936 ObjCIvarDecl *IV = 0; 1937 if (IFace && (IV = IFace->lookupInstanceVariable(II, ClassDeclared))) { 1938 // Diagnose using an ivar in a class method. 1939 if (IsClassMethod) 1940 return ExprError(Diag(Loc, diag::error_ivar_use_in_class_method) 1941 << IV->getDeclName()); 1942 1943 // If we're referencing an invalid decl, just return this as a silent 1944 // error node. The error diagnostic was already emitted on the decl. 1945 if (IV->isInvalidDecl()) 1946 return ExprError(); 1947 1948 // Check if referencing a field with __attribute__((deprecated)). 1949 if (DiagnoseUseOfDecl(IV, Loc)) 1950 return ExprError(); 1951 1952 // Diagnose the use of an ivar outside of the declaring class. 1953 if (IV->getAccessControl() == ObjCIvarDecl::Private && 1954 ClassDeclared != IFace) 1955 Diag(Loc, diag::error_private_ivar_access) << IV->getDeclName(); 1956 1957 // FIXME: This should use a new expr for a direct reference, don't 1958 // turn this into Self->ivar, just return a BareIVarExpr or something. 1959 IdentifierInfo &II = Context.Idents.get("self"); 1960 UnqualifiedId SelfName; 1961 SelfName.setIdentifier(&II, SourceLocation()); 1962 SelfName.setKind(UnqualifiedId::IK_ImplicitSelfParam); 1963 CXXScopeSpec SelfScopeSpec; 1964 ExprResult SelfExpr = ActOnIdExpression(S, SelfScopeSpec, 1965 SelfName, false, false); 1966 if (SelfExpr.isInvalid()) 1967 return ExprError(); 1968 1969 SelfExpr = DefaultLvalueConversion(SelfExpr.take()); 1970 if (SelfExpr.isInvalid()) 1971 return ExprError(); 1972 1973 MarkDeclarationReferenced(Loc, IV); 1974 return Owned(new (Context) 1975 ObjCIvarRefExpr(IV, IV->getType(), Loc, 1976 SelfExpr.take(), true, true)); 1977 } 1978 } else if (CurMethod->isInstanceMethod()) { 1979 // We should warn if a local variable hides an ivar. 1980 if (ObjCInterfaceDecl *IFace = CurMethod->getClassInterface()) { 1981 ObjCInterfaceDecl *ClassDeclared; 1982 if (ObjCIvarDecl *IV = IFace->lookupInstanceVariable(II, ClassDeclared)) { 1983 if (IV->getAccessControl() != ObjCIvarDecl::Private || 1984 IFace == ClassDeclared) 1985 Diag(Loc, diag::warn_ivar_use_hidden) << IV->getDeclName(); 1986 } 1987 } 1988 } 1989 1990 if (Lookup.empty() && II && AllowBuiltinCreation) { 1991 // FIXME. Consolidate this with similar code in LookupName. 1992 if (unsigned BuiltinID = II->getBuiltinID()) { 1993 if (!(getLangOptions().CPlusPlus && 1994 Context.BuiltinInfo.isPredefinedLibFunction(BuiltinID))) { 1995 NamedDecl *D = LazilyCreateBuiltin((IdentifierInfo *)II, BuiltinID, 1996 S, Lookup.isForRedeclaration(), 1997 Lookup.getNameLoc()); 1998 if (D) Lookup.addDecl(D); 1999 } 2000 } 2001 } 2002 // Sentinel value saying that we didn't do anything special. 2003 return Owned((Expr*) 0); 2004 } 2005 2006 /// \brief Cast a base object to a member's actual type. 2007 /// 2008 /// Logically this happens in three phases: 2009 /// 2010 /// * First we cast from the base type to the naming class. 2011 /// The naming class is the class into which we were looking 2012 /// when we found the member; it's the qualifier type if a 2013 /// qualifier was provided, and otherwise it's the base type. 2014 /// 2015 /// * Next we cast from the naming class to the declaring class. 2016 /// If the member we found was brought into a class's scope by 2017 /// a using declaration, this is that class; otherwise it's 2018 /// the class declaring the member. 2019 /// 2020 /// * Finally we cast from the declaring class to the "true" 2021 /// declaring class of the member. This conversion does not 2022 /// obey access control. 2023 ExprResult 2024 Sema::PerformObjectMemberConversion(Expr *From, 2025 NestedNameSpecifier *Qualifier, 2026 NamedDecl *FoundDecl, 2027 NamedDecl *Member) { 2028 CXXRecordDecl *RD = dyn_cast<CXXRecordDecl>(Member->getDeclContext()); 2029 if (!RD) 2030 return Owned(From); 2031 2032 QualType DestRecordType; 2033 QualType DestType; 2034 QualType FromRecordType; 2035 QualType FromType = From->getType(); 2036 bool PointerConversions = false; 2037 if (isa<FieldDecl>(Member)) { 2038 DestRecordType = Context.getCanonicalType(Context.getTypeDeclType(RD)); 2039 2040 if (FromType->getAs<PointerType>()) { 2041 DestType = Context.getPointerType(DestRecordType); 2042 FromRecordType = FromType->getPointeeType(); 2043 PointerConversions = true; 2044 } else { 2045 DestType = DestRecordType; 2046 FromRecordType = FromType; 2047 } 2048 } else if (CXXMethodDecl *Method = dyn_cast<CXXMethodDecl>(Member)) { 2049 if (Method->isStatic()) 2050 return Owned(From); 2051 2052 DestType = Method->getThisType(Context); 2053 DestRecordType = DestType->getPointeeType(); 2054 2055 if (FromType->getAs<PointerType>()) { 2056 FromRecordType = FromType->getPointeeType(); 2057 PointerConversions = true; 2058 } else { 2059 FromRecordType = FromType; 2060 DestType = DestRecordType; 2061 } 2062 } else { 2063 // No conversion necessary. 2064 return Owned(From); 2065 } 2066 2067 if (DestType->isDependentType() || FromType->isDependentType()) 2068 return Owned(From); 2069 2070 // If the unqualified types are the same, no conversion is necessary. 2071 if (Context.hasSameUnqualifiedType(FromRecordType, DestRecordType)) 2072 return Owned(From); 2073 2074 SourceRange FromRange = From->getSourceRange(); 2075 SourceLocation FromLoc = FromRange.getBegin(); 2076 2077 ExprValueKind VK = From->getValueKind(); 2078 2079 // C++ [class.member.lookup]p8: 2080 // [...] Ambiguities can often be resolved by qualifying a name with its 2081 // class name. 2082 // 2083 // If the member was a qualified name and the qualified referred to a 2084 // specific base subobject type, we'll cast to that intermediate type 2085 // first and then to the object in which the member is declared. That allows 2086 // one to resolve ambiguities in, e.g., a diamond-shaped hierarchy such as: 2087 // 2088 // class Base { public: int x; }; 2089 // class Derived1 : public Base { }; 2090 // class Derived2 : public Base { }; 2091 // class VeryDerived : public Derived1, public Derived2 { void f(); }; 2092 // 2093 // void VeryDerived::f() { 2094 // x = 17; // error: ambiguous base subobjects 2095 // Derived1::x = 17; // okay, pick the Base subobject of Derived1 2096 // } 2097 if (Qualifier) { 2098 QualType QType = QualType(Qualifier->getAsType(), 0); 2099 assert(!QType.isNull() && "lookup done with dependent qualifier?"); 2100 assert(QType->isRecordType() && "lookup done with non-record type"); 2101 2102 QualType QRecordType = QualType(QType->getAs<RecordType>(), 0); 2103 2104 // In C++98, the qualifier type doesn't actually have to be a base 2105 // type of the object type, in which case we just ignore it. 2106 // Otherwise build the appropriate casts. 2107 if (IsDerivedFrom(FromRecordType, QRecordType)) { 2108 CXXCastPath BasePath; 2109 if (CheckDerivedToBaseConversion(FromRecordType, QRecordType, 2110 FromLoc, FromRange, &BasePath)) 2111 return ExprError(); 2112 2113 if (PointerConversions) 2114 QType = Context.getPointerType(QType); 2115 From = ImpCastExprToType(From, QType, CK_UncheckedDerivedToBase, 2116 VK, &BasePath).take(); 2117 2118 FromType = QType; 2119 FromRecordType = QRecordType; 2120 2121 // If the qualifier type was the same as the destination type, 2122 // we're done. 2123 if (Context.hasSameUnqualifiedType(FromRecordType, DestRecordType)) 2124 return Owned(From); 2125 } 2126 } 2127 2128 bool IgnoreAccess = false; 2129 2130 // If we actually found the member through a using declaration, cast 2131 // down to the using declaration's type. 2132 // 2133 // Pointer equality is fine here because only one declaration of a 2134 // class ever has member declarations. 2135 if (FoundDecl->getDeclContext() != Member->getDeclContext()) { 2136 assert(isa<UsingShadowDecl>(FoundDecl)); 2137 QualType URecordType = Context.getTypeDeclType( 2138 cast<CXXRecordDecl>(FoundDecl->getDeclContext())); 2139 2140 // We only need to do this if the naming-class to declaring-class 2141 // conversion is non-trivial. 2142 if (!Context.hasSameUnqualifiedType(FromRecordType, URecordType)) { 2143 assert(IsDerivedFrom(FromRecordType, URecordType)); 2144 CXXCastPath BasePath; 2145 if (CheckDerivedToBaseConversion(FromRecordType, URecordType, 2146 FromLoc, FromRange, &BasePath)) 2147 return ExprError(); 2148 2149 QualType UType = URecordType; 2150 if (PointerConversions) 2151 UType = Context.getPointerType(UType); 2152 From = ImpCastExprToType(From, UType, CK_UncheckedDerivedToBase, 2153 VK, &BasePath).take(); 2154 FromType = UType; 2155 FromRecordType = URecordType; 2156 } 2157 2158 // We don't do access control for the conversion from the 2159 // declaring class to the true declaring class. 2160 IgnoreAccess = true; 2161 } 2162 2163 CXXCastPath BasePath; 2164 if (CheckDerivedToBaseConversion(FromRecordType, DestRecordType, 2165 FromLoc, FromRange, &BasePath, 2166 IgnoreAccess)) 2167 return ExprError(); 2168 2169 return ImpCastExprToType(From, DestType, CK_UncheckedDerivedToBase, 2170 VK, &BasePath); 2171 } 2172 2173 bool Sema::UseArgumentDependentLookup(const CXXScopeSpec &SS, 2174 const LookupResult &R, 2175 bool HasTrailingLParen) { 2176 // Only when used directly as the postfix-expression of a call. 2177 if (!HasTrailingLParen) 2178 return false; 2179 2180 // Never if a scope specifier was provided. 2181 if (SS.isSet()) 2182 return false; 2183 2184 // Only in C++ or ObjC++. 2185 if (!getLangOptions().CPlusPlus) 2186 return false; 2187 2188 // Turn off ADL when we find certain kinds of declarations during 2189 // normal lookup: 2190 for (LookupResult::iterator I = R.begin(), E = R.end(); I != E; ++I) { 2191 NamedDecl *D = *I; 2192 2193 // C++0x [basic.lookup.argdep]p3: 2194 // -- a declaration of a class member 2195 // Since using decls preserve this property, we check this on the 2196 // original decl. 2197 if (D->isCXXClassMember()) 2198 return false; 2199 2200 // C++0x [basic.lookup.argdep]p3: 2201 // -- a block-scope function declaration that is not a 2202 // using-declaration 2203 // NOTE: we also trigger this for function templates (in fact, we 2204 // don't check the decl type at all, since all other decl types 2205 // turn off ADL anyway). 2206 if (isa<UsingShadowDecl>(D)) 2207 D = cast<UsingShadowDecl>(D)->getTargetDecl(); 2208 else if (D->getDeclContext()->isFunctionOrMethod()) 2209 return false; 2210 2211 // C++0x [basic.lookup.argdep]p3: 2212 // -- a declaration that is neither a function or a function 2213 // template 2214 // And also for builtin functions. 2215 if (isa<FunctionDecl>(D)) { 2216 FunctionDecl *FDecl = cast<FunctionDecl>(D); 2217 2218 // But also builtin functions. 2219 if (FDecl->getBuiltinID() && FDecl->isImplicit()) 2220 return false; 2221 } else if (!isa<FunctionTemplateDecl>(D)) 2222 return false; 2223 } 2224 2225 return true; 2226 } 2227 2228 2229 /// Diagnoses obvious problems with the use of the given declaration 2230 /// as an expression. This is only actually called for lookups that 2231 /// were not overloaded, and it doesn't promise that the declaration 2232 /// will in fact be used. 2233 static bool CheckDeclInExpr(Sema &S, SourceLocation Loc, NamedDecl *D) { 2234 if (isa<TypedefNameDecl>(D)) { 2235 S.Diag(Loc, diag::err_unexpected_typedef) << D->getDeclName(); 2236 return true; 2237 } 2238 2239 if (isa<ObjCInterfaceDecl>(D)) { 2240 S.Diag(Loc, diag::err_unexpected_interface) << D->getDeclName(); 2241 return true; 2242 } 2243 2244 if (isa<NamespaceDecl>(D)) { 2245 S.Diag(Loc, diag::err_unexpected_namespace) << D->getDeclName(); 2246 return true; 2247 } 2248 2249 return false; 2250 } 2251 2252 ExprResult 2253 Sema::BuildDeclarationNameExpr(const CXXScopeSpec &SS, 2254 LookupResult &R, 2255 bool NeedsADL) { 2256 // If this is a single, fully-resolved result and we don't need ADL, 2257 // just build an ordinary singleton decl ref. 2258 if (!NeedsADL && R.isSingleResult() && !R.getAsSingle<FunctionTemplateDecl>()) 2259 return BuildDeclarationNameExpr(SS, R.getLookupNameInfo(), 2260 R.getFoundDecl()); 2261 2262 // We only need to check the declaration if there's exactly one 2263 // result, because in the overloaded case the results can only be 2264 // functions and function templates. 2265 if (R.isSingleResult() && 2266 CheckDeclInExpr(*this, R.getNameLoc(), R.getFoundDecl())) 2267 return ExprError(); 2268 2269 // Otherwise, just build an unresolved lookup expression. Suppress 2270 // any lookup-related diagnostics; we'll hash these out later, when 2271 // we've picked a target. 2272 R.suppressDiagnostics(); 2273 2274 UnresolvedLookupExpr *ULE 2275 = UnresolvedLookupExpr::Create(Context, R.getNamingClass(), 2276 SS.getWithLocInContext(Context), 2277 R.getLookupNameInfo(), 2278 NeedsADL, R.isOverloadedResult(), 2279 R.begin(), R.end()); 2280 2281 return Owned(ULE); 2282 } 2283 2284 /// \brief Complete semantic analysis for a reference to the given declaration. 2285 ExprResult 2286 Sema::BuildDeclarationNameExpr(const CXXScopeSpec &SS, 2287 const DeclarationNameInfo &NameInfo, 2288 NamedDecl *D) { 2289 assert(D && "Cannot refer to a NULL declaration"); 2290 assert(!isa<FunctionTemplateDecl>(D) && 2291 "Cannot refer unambiguously to a function template"); 2292 2293 SourceLocation Loc = NameInfo.getLoc(); 2294 if (CheckDeclInExpr(*this, Loc, D)) 2295 return ExprError(); 2296 2297 if (TemplateDecl *Template = dyn_cast<TemplateDecl>(D)) { 2298 // Specifically diagnose references to class templates that are missing 2299 // a template argument list. 2300 Diag(Loc, diag::err_template_decl_ref) 2301 << Template << SS.getRange(); 2302 Diag(Template->getLocation(), diag::note_template_decl_here); 2303 return ExprError(); 2304 } 2305 2306 // Make sure that we're referring to a value. 2307 ValueDecl *VD = dyn_cast<ValueDecl>(D); 2308 if (!VD) { 2309 Diag(Loc, diag::err_ref_non_value) 2310 << D << SS.getRange(); 2311 Diag(D->getLocation(), diag::note_declared_at); 2312 return ExprError(); 2313 } 2314 2315 // Check whether this declaration can be used. Note that we suppress 2316 // this check when we're going to perform argument-dependent lookup 2317 // on this function name, because this might not be the function 2318 // that overload resolution actually selects. 2319 if (DiagnoseUseOfDecl(VD, Loc)) 2320 return ExprError(); 2321 2322 // Only create DeclRefExpr's for valid Decl's. 2323 if (VD->isInvalidDecl()) 2324 return ExprError(); 2325 2326 // Handle members of anonymous structs and unions. If we got here, 2327 // and the reference is to a class member indirect field, then this 2328 // must be the subject of a pointer-to-member expression. 2329 if (IndirectFieldDecl *indirectField = dyn_cast<IndirectFieldDecl>(VD)) 2330 if (!indirectField->isCXXClassMember()) 2331 return BuildAnonymousStructUnionMemberReference(SS, NameInfo.getLoc(), 2332 indirectField); 2333 2334 // If the identifier reference is inside a block, and it refers to a value 2335 // that is outside the block, create a BlockDeclRefExpr instead of a 2336 // DeclRefExpr. This ensures the value is treated as a copy-in snapshot when 2337 // the block is formed. 2338 // 2339 // We do not do this for things like enum constants, global variables, etc, 2340 // as they do not get snapshotted. 2341 // 2342 switch (shouldCaptureValueReference(*this, NameInfo.getLoc(), VD)) { 2343 case CR_Error: 2344 return ExprError(); 2345 2346 case CR_Capture: 2347 assert(!SS.isSet() && "referenced local variable with scope specifier?"); 2348 return BuildBlockDeclRefExpr(*this, VD, NameInfo, /*byref*/ false); 2349 2350 case CR_CaptureByRef: 2351 assert(!SS.isSet() && "referenced local variable with scope specifier?"); 2352 return BuildBlockDeclRefExpr(*this, VD, NameInfo, /*byref*/ true); 2353 2354 case CR_NoCapture: { 2355 // If this reference is not in a block or if the referenced 2356 // variable is within the block, create a normal DeclRefExpr. 2357 2358 QualType type = VD->getType(); 2359 ExprValueKind valueKind = VK_RValue; 2360 2361 switch (D->getKind()) { 2362 // Ignore all the non-ValueDecl kinds. 2363 #define ABSTRACT_DECL(kind) 2364 #define VALUE(type, base) 2365 #define DECL(type, base) \ 2366 case Decl::type: 2367 #include "clang/AST/DeclNodes.inc" 2368 llvm_unreachable("invalid value decl kind"); 2369 return ExprError(); 2370 2371 // These shouldn't make it here. 2372 case Decl::ObjCAtDefsField: 2373 case Decl::ObjCIvar: 2374 llvm_unreachable("forming non-member reference to ivar?"); 2375 return ExprError(); 2376 2377 // Enum constants are always r-values and never references. 2378 // Unresolved using declarations are dependent. 2379 case Decl::EnumConstant: 2380 case Decl::UnresolvedUsingValue: 2381 valueKind = VK_RValue; 2382 break; 2383 2384 // Fields and indirect fields that got here must be for 2385 // pointer-to-member expressions; we just call them l-values for 2386 // internal consistency, because this subexpression doesn't really 2387 // exist in the high-level semantics. 2388 case Decl::Field: 2389 case Decl::IndirectField: 2390 assert(getLangOptions().CPlusPlus && 2391 "building reference to field in C?"); 2392 2393 // These can't have reference type in well-formed programs, but 2394 // for internal consistency we do this anyway. 2395 type = type.getNonReferenceType(); 2396 valueKind = VK_LValue; 2397 break; 2398 2399 // Non-type template parameters are either l-values or r-values 2400 // depending on the type. 2401 case Decl::NonTypeTemplateParm: { 2402 if (const ReferenceType *reftype = type->getAs<ReferenceType>()) { 2403 type = reftype->getPointeeType(); 2404 valueKind = VK_LValue; // even if the parameter is an r-value reference 2405 break; 2406 } 2407 2408 // For non-references, we need to strip qualifiers just in case 2409 // the template parameter was declared as 'const int' or whatever. 2410 valueKind = VK_RValue; 2411 type = type.getUnqualifiedType(); 2412 break; 2413 } 2414 2415 case Decl::Var: 2416 // In C, "extern void blah;" is valid and is an r-value. 2417 if (!getLangOptions().CPlusPlus && 2418 !type.hasQualifiers() && 2419 type->isVoidType()) { 2420 valueKind = VK_RValue; 2421 break; 2422 } 2423 // fallthrough 2424 2425 case Decl::ImplicitParam: 2426 case Decl::ParmVar: 2427 // These are always l-values. 2428 valueKind = VK_LValue; 2429 type = type.getNonReferenceType(); 2430 break; 2431 2432 case Decl::Function: { 2433 const FunctionType *fty = type->castAs<FunctionType>(); 2434 2435 // If we're referring to a function with an __unknown_anytype 2436 // result type, make the entire expression __unknown_anytype. 2437 if (fty->getResultType() == Context.UnknownAnyTy) { 2438 type = Context.UnknownAnyTy; 2439 valueKind = VK_RValue; 2440 break; 2441 } 2442 2443 // Functions are l-values in C++. 2444 if (getLangOptions().CPlusPlus) { 2445 valueKind = VK_LValue; 2446 break; 2447 } 2448 2449 // C99 DR 316 says that, if a function type comes from a 2450 // function definition (without a prototype), that type is only 2451 // used for checking compatibility. Therefore, when referencing 2452 // the function, we pretend that we don't have the full function 2453 // type. 2454 if (!cast<FunctionDecl>(VD)->hasPrototype() && 2455 isa<FunctionProtoType>(fty)) 2456 type = Context.getFunctionNoProtoType(fty->getResultType(), 2457 fty->getExtInfo()); 2458 2459 // Functions are r-values in C. 2460 valueKind = VK_RValue; 2461 break; 2462 } 2463 2464 case Decl::CXXMethod: 2465 // If we're referring to a method with an __unknown_anytype 2466 // result type, make the entire expression __unknown_anytype. 2467 // This should only be possible with a type written directly. 2468 if (const FunctionProtoType *proto 2469 = dyn_cast<FunctionProtoType>(VD->getType())) 2470 if (proto->getResultType() == Context.UnknownAnyTy) { 2471 type = Context.UnknownAnyTy; 2472 valueKind = VK_RValue; 2473 break; 2474 } 2475 2476 // C++ methods are l-values if static, r-values if non-static. 2477 if (cast<CXXMethodDecl>(VD)->isStatic()) { 2478 valueKind = VK_LValue; 2479 break; 2480 } 2481 // fallthrough 2482 2483 case Decl::CXXConversion: 2484 case Decl::CXXDestructor: 2485 case Decl::CXXConstructor: 2486 valueKind = VK_RValue; 2487 break; 2488 } 2489 2490 return BuildDeclRefExpr(VD, type, valueKind, NameInfo, &SS); 2491 } 2492 2493 } 2494 2495 llvm_unreachable("unknown capture result"); 2496 return ExprError(); 2497 } 2498 2499 ExprResult Sema::ActOnPredefinedExpr(SourceLocation Loc, tok::TokenKind Kind) { 2500 PredefinedExpr::IdentType IT; 2501 2502 switch (Kind) { 2503 default: llvm_unreachable("Unknown simple primary expr!"); 2504 case tok::kw___func__: IT = PredefinedExpr::Func; break; // [C99 6.4.2.2] 2505 case tok::kw___FUNCTION__: IT = PredefinedExpr::Function; break; 2506 case tok::kw___PRETTY_FUNCTION__: IT = PredefinedExpr::PrettyFunction; break; 2507 } 2508 2509 // Pre-defined identifiers are of type char[x], where x is the length of the 2510 // string. 2511 2512 Decl *currentDecl = getCurFunctionOrMethodDecl(); 2513 if (!currentDecl && getCurBlock()) 2514 currentDecl = getCurBlock()->TheDecl; 2515 if (!currentDecl) { 2516 Diag(Loc, diag::ext_predef_outside_function); 2517 currentDecl = Context.getTranslationUnitDecl(); 2518 } 2519 2520 QualType ResTy; 2521 if (cast<DeclContext>(currentDecl)->isDependentContext()) { 2522 ResTy = Context.DependentTy; 2523 } else { 2524 unsigned Length = PredefinedExpr::ComputeName(IT, currentDecl).length(); 2525 2526 llvm::APInt LengthI(32, Length + 1); 2527 ResTy = Context.CharTy.withConst(); 2528 ResTy = Context.getConstantArrayType(ResTy, LengthI, ArrayType::Normal, 0); 2529 } 2530 return Owned(new (Context) PredefinedExpr(Loc, ResTy, IT)); 2531 } 2532 2533 ExprResult Sema::ActOnCharacterConstant(const Token &Tok) { 2534 llvm::SmallString<16> CharBuffer; 2535 bool Invalid = false; 2536 StringRef ThisTok = PP.getSpelling(Tok, CharBuffer, &Invalid); 2537 if (Invalid) 2538 return ExprError(); 2539 2540 CharLiteralParser Literal(ThisTok.begin(), ThisTok.end(), Tok.getLocation(), 2541 PP, Tok.getKind()); 2542 if (Literal.hadError()) 2543 return ExprError(); 2544 2545 QualType Ty; 2546 if (!getLangOptions().CPlusPlus) 2547 Ty = Context.IntTy; // 'x' and L'x' -> int in C. 2548 else if (Literal.isWide()) 2549 Ty = Context.WCharTy; // L'x' -> wchar_t in C++. 2550 else if (Literal.isUTF16()) 2551 Ty = Context.Char16Ty; // u'x' -> char16_t in C++0x. 2552 else if (Literal.isUTF32()) 2553 Ty = Context.Char32Ty; // U'x' -> char32_t in C++0x. 2554 else if (Literal.isMultiChar()) 2555 Ty = Context.IntTy; // 'wxyz' -> int in C++. 2556 else 2557 Ty = Context.CharTy; // 'x' -> char in C++ 2558 2559 CharacterLiteral::CharacterKind Kind = CharacterLiteral::Ascii; 2560 if (Literal.isWide()) 2561 Kind = CharacterLiteral::Wide; 2562 else if (Literal.isUTF16()) 2563 Kind = CharacterLiteral::UTF16; 2564 else if (Literal.isUTF32()) 2565 Kind = CharacterLiteral::UTF32; 2566 2567 return Owned(new (Context) CharacterLiteral(Literal.getValue(), Kind, Ty, 2568 Tok.getLocation())); 2569 } 2570 2571 ExprResult Sema::ActOnNumericConstant(const Token &Tok) { 2572 // Fast path for a single digit (which is quite common). A single digit 2573 // cannot have a trigraph, escaped newline, radix prefix, or type suffix. 2574 if (Tok.getLength() == 1) { 2575 const char Val = PP.getSpellingOfSingleCharacterNumericConstant(Tok); 2576 unsigned IntSize = Context.getTargetInfo().getIntWidth(); 2577 return Owned(IntegerLiteral::Create(Context, llvm::APInt(IntSize, Val-'0'), 2578 Context.IntTy, Tok.getLocation())); 2579 } 2580 2581 llvm::SmallString<512> IntegerBuffer; 2582 // Add padding so that NumericLiteralParser can overread by one character. 2583 IntegerBuffer.resize(Tok.getLength()+1); 2584 const char *ThisTokBegin = &IntegerBuffer[0]; 2585 2586 // Get the spelling of the token, which eliminates trigraphs, etc. 2587 bool Invalid = false; 2588 unsigned ActualLength = PP.getSpelling(Tok, ThisTokBegin, &Invalid); 2589 if (Invalid) 2590 return ExprError(); 2591 2592 NumericLiteralParser Literal(ThisTokBegin, ThisTokBegin+ActualLength, 2593 Tok.getLocation(), PP); 2594 if (Literal.hadError) 2595 return ExprError(); 2596 2597 Expr *Res; 2598 2599 if (Literal.isFloatingLiteral()) { 2600 QualType Ty; 2601 if (Literal.isFloat) 2602 Ty = Context.FloatTy; 2603 else if (!Literal.isLong) 2604 Ty = Context.DoubleTy; 2605 else 2606 Ty = Context.LongDoubleTy; 2607 2608 const llvm::fltSemantics &Format = Context.getFloatTypeSemantics(Ty); 2609 2610 using llvm::APFloat; 2611 APFloat Val(Format); 2612 2613 APFloat::opStatus result = Literal.GetFloatValue(Val); 2614 2615 // Overflow is always an error, but underflow is only an error if 2616 // we underflowed to zero (APFloat reports denormals as underflow). 2617 if ((result & APFloat::opOverflow) || 2618 ((result & APFloat::opUnderflow) && Val.isZero())) { 2619 unsigned diagnostic; 2620 llvm::SmallString<20> buffer; 2621 if (result & APFloat::opOverflow) { 2622 diagnostic = diag::warn_float_overflow; 2623 APFloat::getLargest(Format).toString(buffer); 2624 } else { 2625 diagnostic = diag::warn_float_underflow; 2626 APFloat::getSmallest(Format).toString(buffer); 2627 } 2628 2629 Diag(Tok.getLocation(), diagnostic) 2630 << Ty 2631 << StringRef(buffer.data(), buffer.size()); 2632 } 2633 2634 bool isExact = (result == APFloat::opOK); 2635 Res = FloatingLiteral::Create(Context, Val, isExact, Ty, Tok.getLocation()); 2636 2637 if (Ty == Context.DoubleTy) { 2638 if (getLangOptions().SinglePrecisionConstants) { 2639 Res = ImpCastExprToType(Res, Context.FloatTy, CK_FloatingCast).take(); 2640 } else if (getLangOptions().OpenCL && !getOpenCLOptions().cl_khr_fp64) { 2641 Diag(Tok.getLocation(), diag::warn_double_const_requires_fp64); 2642 Res = ImpCastExprToType(Res, Context.FloatTy, CK_FloatingCast).take(); 2643 } 2644 } 2645 } else if (!Literal.isIntegerLiteral()) { 2646 return ExprError(); 2647 } else { 2648 QualType Ty; 2649 2650 // long long is a C99 feature. 2651 if (!getLangOptions().C99 && Literal.isLongLong) 2652 Diag(Tok.getLocation(), 2653 getLangOptions().CPlusPlus0x ? 2654 diag::warn_cxx98_compat_longlong : diag::ext_longlong); 2655 2656 // Get the value in the widest-possible width. 2657 llvm::APInt ResultVal(Context.getTargetInfo().getIntMaxTWidth(), 0); 2658 2659 if (Literal.GetIntegerValue(ResultVal)) { 2660 // If this value didn't fit into uintmax_t, warn and force to ull. 2661 Diag(Tok.getLocation(), diag::warn_integer_too_large); 2662 Ty = Context.UnsignedLongLongTy; 2663 assert(Context.getTypeSize(Ty) == ResultVal.getBitWidth() && 2664 "long long is not intmax_t?"); 2665 } else { 2666 // If this value fits into a ULL, try to figure out what else it fits into 2667 // according to the rules of C99 6.4.4.1p5. 2668 2669 // Octal, Hexadecimal, and integers with a U suffix are allowed to 2670 // be an unsigned int. 2671 bool AllowUnsigned = Literal.isUnsigned || Literal.getRadix() != 10; 2672 2673 // Check from smallest to largest, picking the smallest type we can. 2674 unsigned Width = 0; 2675 if (!Literal.isLong && !Literal.isLongLong) { 2676 // Are int/unsigned possibilities? 2677 unsigned IntSize = Context.getTargetInfo().getIntWidth(); 2678 2679 // Does it fit in a unsigned int? 2680 if (ResultVal.isIntN(IntSize)) { 2681 // Does it fit in a signed int? 2682 if (!Literal.isUnsigned && ResultVal[IntSize-1] == 0) 2683 Ty = Context.IntTy; 2684 else if (AllowUnsigned) 2685 Ty = Context.UnsignedIntTy; 2686 Width = IntSize; 2687 } 2688 } 2689 2690 // Are long/unsigned long possibilities? 2691 if (Ty.isNull() && !Literal.isLongLong) { 2692 unsigned LongSize = Context.getTargetInfo().getLongWidth(); 2693 2694 // Does it fit in a unsigned long? 2695 if (ResultVal.isIntN(LongSize)) { 2696 // Does it fit in a signed long? 2697 if (!Literal.isUnsigned && ResultVal[LongSize-1] == 0) 2698 Ty = Context.LongTy; 2699 else if (AllowUnsigned) 2700 Ty = Context.UnsignedLongTy; 2701 Width = LongSize; 2702 } 2703 } 2704 2705 // Finally, check long long if needed. 2706 if (Ty.isNull()) { 2707 unsigned LongLongSize = Context.getTargetInfo().getLongLongWidth(); 2708 2709 // Does it fit in a unsigned long long? 2710 if (ResultVal.isIntN(LongLongSize)) { 2711 // Does it fit in a signed long long? 2712 // To be compatible with MSVC, hex integer literals ending with the 2713 // LL or i64 suffix are always signed in Microsoft mode. 2714 if (!Literal.isUnsigned && (ResultVal[LongLongSize-1] == 0 || 2715 (getLangOptions().MicrosoftExt && Literal.isLongLong))) 2716 Ty = Context.LongLongTy; 2717 else if (AllowUnsigned) 2718 Ty = Context.UnsignedLongLongTy; 2719 Width = LongLongSize; 2720 } 2721 } 2722 2723 // If we still couldn't decide a type, we probably have something that 2724 // does not fit in a signed long long, but has no U suffix. 2725 if (Ty.isNull()) { 2726 Diag(Tok.getLocation(), diag::warn_integer_too_large_for_signed); 2727 Ty = Context.UnsignedLongLongTy; 2728 Width = Context.getTargetInfo().getLongLongWidth(); 2729 } 2730 2731 if (ResultVal.getBitWidth() != Width) 2732 ResultVal = ResultVal.trunc(Width); 2733 } 2734 Res = IntegerLiteral::Create(Context, ResultVal, Ty, Tok.getLocation()); 2735 } 2736 2737 // If this is an imaginary literal, create the ImaginaryLiteral wrapper. 2738 if (Literal.isImaginary) 2739 Res = new (Context) ImaginaryLiteral(Res, 2740 Context.getComplexType(Res->getType())); 2741 2742 return Owned(Res); 2743 } 2744 2745 ExprResult Sema::ActOnParenExpr(SourceLocation L, SourceLocation R, Expr *E) { 2746 assert((E != 0) && "ActOnParenExpr() missing expr"); 2747 return Owned(new (Context) ParenExpr(L, R, E)); 2748 } 2749 2750 static bool CheckVecStepTraitOperandType(Sema &S, QualType T, 2751 SourceLocation Loc, 2752 SourceRange ArgRange) { 2753 // [OpenCL 1.1 6.11.12] "The vec_step built-in function takes a built-in 2754 // scalar or vector data type argument..." 2755 // Every built-in scalar type (OpenCL 1.1 6.1.1) is either an arithmetic 2756 // type (C99 6.2.5p18) or void. 2757 if (!(T->isArithmeticType() || T->isVoidType() || T->isVectorType())) { 2758 S.Diag(Loc, diag::err_vecstep_non_scalar_vector_type) 2759 << T << ArgRange; 2760 return true; 2761 } 2762 2763 assert((T->isVoidType() || !T->isIncompleteType()) && 2764 "Scalar types should always be complete"); 2765 return false; 2766 } 2767 2768 static bool CheckExtensionTraitOperandType(Sema &S, QualType T, 2769 SourceLocation Loc, 2770 SourceRange ArgRange, 2771 UnaryExprOrTypeTrait TraitKind) { 2772 // C99 6.5.3.4p1: 2773 if (T->isFunctionType()) { 2774 // alignof(function) is allowed as an extension. 2775 if (TraitKind == UETT_SizeOf) 2776 S.Diag(Loc, diag::ext_sizeof_function_type) << ArgRange; 2777 return false; 2778 } 2779 2780 // Allow sizeof(void)/alignof(void) as an extension. 2781 if (T->isVoidType()) { 2782 S.Diag(Loc, diag::ext_sizeof_void_type) << TraitKind << ArgRange; 2783 return false; 2784 } 2785 2786 return true; 2787 } 2788 2789 static bool CheckObjCTraitOperandConstraints(Sema &S, QualType T, 2790 SourceLocation Loc, 2791 SourceRange ArgRange, 2792 UnaryExprOrTypeTrait TraitKind) { 2793 // Reject sizeof(interface) and sizeof(interface<proto>) in 64-bit mode. 2794 if (S.LangOpts.ObjCNonFragileABI && T->isObjCObjectType()) { 2795 S.Diag(Loc, diag::err_sizeof_nonfragile_interface) 2796 << T << (TraitKind == UETT_SizeOf) 2797 << ArgRange; 2798 return true; 2799 } 2800 2801 return false; 2802 } 2803 2804 /// \brief Check the constrains on expression operands to unary type expression 2805 /// and type traits. 2806 /// 2807 /// Completes any types necessary and validates the constraints on the operand 2808 /// expression. The logic mostly mirrors the type-based overload, but may modify 2809 /// the expression as it completes the type for that expression through template 2810 /// instantiation, etc. 2811 bool Sema::CheckUnaryExprOrTypeTraitOperand(Expr *E, 2812 UnaryExprOrTypeTrait ExprKind) { 2813 QualType ExprTy = E->getType(); 2814 2815 // C++ [expr.sizeof]p2: "When applied to a reference or a reference type, 2816 // the result is the size of the referenced type." 2817 // C++ [expr.alignof]p3: "When alignof is applied to a reference type, the 2818 // result shall be the alignment of the referenced type." 2819 if (const ReferenceType *Ref = ExprTy->getAs<ReferenceType>()) 2820 ExprTy = Ref->getPointeeType(); 2821 2822 if (ExprKind == UETT_VecStep) 2823 return CheckVecStepTraitOperandType(*this, ExprTy, E->getExprLoc(), 2824 E->getSourceRange()); 2825 2826 // Whitelist some types as extensions 2827 if (!CheckExtensionTraitOperandType(*this, ExprTy, E->getExprLoc(), 2828 E->getSourceRange(), ExprKind)) 2829 return false; 2830 2831 if (RequireCompleteExprType(E, 2832 PDiag(diag::err_sizeof_alignof_incomplete_type) 2833 << ExprKind << E->getSourceRange(), 2834 std::make_pair(SourceLocation(), PDiag(0)))) 2835 return true; 2836 2837 // Completeing the expression's type may have changed it. 2838 ExprTy = E->getType(); 2839 if (const ReferenceType *Ref = ExprTy->getAs<ReferenceType>()) 2840 ExprTy = Ref->getPointeeType(); 2841 2842 if (CheckObjCTraitOperandConstraints(*this, ExprTy, E->getExprLoc(), 2843 E->getSourceRange(), ExprKind)) 2844 return true; 2845 2846 if (ExprKind == UETT_SizeOf) { 2847 if (DeclRefExpr *DeclRef = dyn_cast<DeclRefExpr>(E->IgnoreParens())) { 2848 if (ParmVarDecl *PVD = dyn_cast<ParmVarDecl>(DeclRef->getFoundDecl())) { 2849 QualType OType = PVD->getOriginalType(); 2850 QualType Type = PVD->getType(); 2851 if (Type->isPointerType() && OType->isArrayType()) { 2852 Diag(E->getExprLoc(), diag::warn_sizeof_array_param) 2853 << Type << OType; 2854 Diag(PVD->getLocation(), diag::note_declared_at); 2855 } 2856 } 2857 } 2858 } 2859 2860 return false; 2861 } 2862 2863 /// \brief Check the constraints on operands to unary expression and type 2864 /// traits. 2865 /// 2866 /// This will complete any types necessary, and validate the various constraints 2867 /// on those operands. 2868 /// 2869 /// The UsualUnaryConversions() function is *not* called by this routine. 2870 /// C99 6.3.2.1p[2-4] all state: 2871 /// Except when it is the operand of the sizeof operator ... 2872 /// 2873 /// C++ [expr.sizeof]p4 2874 /// The lvalue-to-rvalue, array-to-pointer, and function-to-pointer 2875 /// standard conversions are not applied to the operand of sizeof. 2876 /// 2877 /// This policy is followed for all of the unary trait expressions. 2878 bool Sema::CheckUnaryExprOrTypeTraitOperand(QualType ExprType, 2879 SourceLocation OpLoc, 2880 SourceRange ExprRange, 2881 UnaryExprOrTypeTrait ExprKind) { 2882 if (ExprType->isDependentType()) 2883 return false; 2884 2885 // C++ [expr.sizeof]p2: "When applied to a reference or a reference type, 2886 // the result is the size of the referenced type." 2887 // C++ [expr.alignof]p3: "When alignof is applied to a reference type, the 2888 // result shall be the alignment of the referenced type." 2889 if (const ReferenceType *Ref = ExprType->getAs<ReferenceType>()) 2890 ExprType = Ref->getPointeeType(); 2891 2892 if (ExprKind == UETT_VecStep) 2893 return CheckVecStepTraitOperandType(*this, ExprType, OpLoc, ExprRange); 2894 2895 // Whitelist some types as extensions 2896 if (!CheckExtensionTraitOperandType(*this, ExprType, OpLoc, ExprRange, 2897 ExprKind)) 2898 return false; 2899 2900 if (RequireCompleteType(OpLoc, ExprType, 2901 PDiag(diag::err_sizeof_alignof_incomplete_type) 2902 << ExprKind << ExprRange)) 2903 return true; 2904 2905 if (CheckObjCTraitOperandConstraints(*this, ExprType, OpLoc, ExprRange, 2906 ExprKind)) 2907 return true; 2908 2909 return false; 2910 } 2911 2912 static bool CheckAlignOfExpr(Sema &S, Expr *E) { 2913 E = E->IgnoreParens(); 2914 2915 // alignof decl is always ok. 2916 if (isa<DeclRefExpr>(E)) 2917 return false; 2918 2919 // Cannot know anything else if the expression is dependent. 2920 if (E->isTypeDependent()) 2921 return false; 2922 2923 if (E->getBitField()) { 2924 S.Diag(E->getExprLoc(), diag::err_sizeof_alignof_bitfield) 2925 << 1 << E->getSourceRange(); 2926 return true; 2927 } 2928 2929 // Alignment of a field access is always okay, so long as it isn't a 2930 // bit-field. 2931 if (MemberExpr *ME = dyn_cast<MemberExpr>(E)) 2932 if (isa<FieldDecl>(ME->getMemberDecl())) 2933 return false; 2934 2935 return S.CheckUnaryExprOrTypeTraitOperand(E, UETT_AlignOf); 2936 } 2937 2938 bool Sema::CheckVecStepExpr(Expr *E) { 2939 E = E->IgnoreParens(); 2940 2941 // Cannot know anything else if the expression is dependent. 2942 if (E->isTypeDependent()) 2943 return false; 2944 2945 return CheckUnaryExprOrTypeTraitOperand(E, UETT_VecStep); 2946 } 2947 2948 /// \brief Build a sizeof or alignof expression given a type operand. 2949 ExprResult 2950 Sema::CreateUnaryExprOrTypeTraitExpr(TypeSourceInfo *TInfo, 2951 SourceLocation OpLoc, 2952 UnaryExprOrTypeTrait ExprKind, 2953 SourceRange R) { 2954 if (!TInfo) 2955 return ExprError(); 2956 2957 QualType T = TInfo->getType(); 2958 2959 if (!T->isDependentType() && 2960 CheckUnaryExprOrTypeTraitOperand(T, OpLoc, R, ExprKind)) 2961 return ExprError(); 2962 2963 // C99 6.5.3.4p4: the type (an unsigned integer type) is size_t. 2964 return Owned(new (Context) UnaryExprOrTypeTraitExpr(ExprKind, TInfo, 2965 Context.getSizeType(), 2966 OpLoc, R.getEnd())); 2967 } 2968 2969 /// \brief Build a sizeof or alignof expression given an expression 2970 /// operand. 2971 ExprResult 2972 Sema::CreateUnaryExprOrTypeTraitExpr(Expr *E, SourceLocation OpLoc, 2973 UnaryExprOrTypeTrait ExprKind) { 2974 ExprResult PE = CheckPlaceholderExpr(E); 2975 if (PE.isInvalid()) 2976 return ExprError(); 2977 2978 E = PE.get(); 2979 2980 // Verify that the operand is valid. 2981 bool isInvalid = false; 2982 if (E->isTypeDependent()) { 2983 // Delay type-checking for type-dependent expressions. 2984 } else if (ExprKind == UETT_AlignOf) { 2985 isInvalid = CheckAlignOfExpr(*this, E); 2986 } else if (ExprKind == UETT_VecStep) { 2987 isInvalid = CheckVecStepExpr(E); 2988 } else if (E->getBitField()) { // C99 6.5.3.4p1. 2989 Diag(E->getExprLoc(), diag::err_sizeof_alignof_bitfield) << 0; 2990 isInvalid = true; 2991 } else { 2992 isInvalid = CheckUnaryExprOrTypeTraitOperand(E, UETT_SizeOf); 2993 } 2994 2995 if (isInvalid) 2996 return ExprError(); 2997 2998 // C99 6.5.3.4p4: the type (an unsigned integer type) is size_t. 2999 return Owned(new (Context) UnaryExprOrTypeTraitExpr( 3000 ExprKind, E, Context.getSizeType(), OpLoc, 3001 E->getSourceRange().getEnd())); 3002 } 3003 3004 /// ActOnUnaryExprOrTypeTraitExpr - Handle @c sizeof(type) and @c sizeof @c 3005 /// expr and the same for @c alignof and @c __alignof 3006 /// Note that the ArgRange is invalid if isType is false. 3007 ExprResult 3008 Sema::ActOnUnaryExprOrTypeTraitExpr(SourceLocation OpLoc, 3009 UnaryExprOrTypeTrait ExprKind, bool IsType, 3010 void *TyOrEx, const SourceRange &ArgRange) { 3011 // If error parsing type, ignore. 3012 if (TyOrEx == 0) return ExprError(); 3013 3014 if (IsType) { 3015 TypeSourceInfo *TInfo; 3016 (void) GetTypeFromParser(ParsedType::getFromOpaquePtr(TyOrEx), &TInfo); 3017 return CreateUnaryExprOrTypeTraitExpr(TInfo, OpLoc, ExprKind, ArgRange); 3018 } 3019 3020 Expr *ArgEx = (Expr *)TyOrEx; 3021 ExprResult Result = CreateUnaryExprOrTypeTraitExpr(ArgEx, OpLoc, ExprKind); 3022 return move(Result); 3023 } 3024 3025 static QualType CheckRealImagOperand(Sema &S, ExprResult &V, SourceLocation Loc, 3026 bool IsReal) { 3027 if (V.get()->isTypeDependent()) 3028 return S.Context.DependentTy; 3029 3030 // _Real and _Imag are only l-values for normal l-values. 3031 if (V.get()->getObjectKind() != OK_Ordinary) { 3032 V = S.DefaultLvalueConversion(V.take()); 3033 if (V.isInvalid()) 3034 return QualType(); 3035 } 3036 3037 // These operators return the element type of a complex type. 3038 if (const ComplexType *CT = V.get()->getType()->getAs<ComplexType>()) 3039 return CT->getElementType(); 3040 3041 // Otherwise they pass through real integer and floating point types here. 3042 if (V.get()->getType()->isArithmeticType()) 3043 return V.get()->getType(); 3044 3045 // Test for placeholders. 3046 ExprResult PR = S.CheckPlaceholderExpr(V.get()); 3047 if (PR.isInvalid()) return QualType(); 3048 if (PR.get() != V.get()) { 3049 V = move(PR); 3050 return CheckRealImagOperand(S, V, Loc, IsReal); 3051 } 3052 3053 // Reject anything else. 3054 S.Diag(Loc, diag::err_realimag_invalid_type) << V.get()->getType() 3055 << (IsReal ? "__real" : "__imag"); 3056 return QualType(); 3057 } 3058 3059 3060 3061 ExprResult 3062 Sema::ActOnPostfixUnaryOp(Scope *S, SourceLocation OpLoc, 3063 tok::TokenKind Kind, Expr *Input) { 3064 UnaryOperatorKind Opc; 3065 switch (Kind) { 3066 default: llvm_unreachable("Unknown unary op!"); 3067 case tok::plusplus: Opc = UO_PostInc; break; 3068 case tok::minusminus: Opc = UO_PostDec; break; 3069 } 3070 3071 return BuildUnaryOp(S, OpLoc, Opc, Input); 3072 } 3073 3074 ExprResult 3075 Sema::ActOnArraySubscriptExpr(Scope *S, Expr *Base, SourceLocation LLoc, 3076 Expr *Idx, SourceLocation RLoc) { 3077 // Since this might be a postfix expression, get rid of ParenListExprs. 3078 ExprResult Result = MaybeConvertParenListExprToParenExpr(S, Base); 3079 if (Result.isInvalid()) return ExprError(); 3080 Base = Result.take(); 3081 3082 Expr *LHSExp = Base, *RHSExp = Idx; 3083 3084 if (getLangOptions().CPlusPlus && 3085 (LHSExp->isTypeDependent() || RHSExp->isTypeDependent())) { 3086 return Owned(new (Context) ArraySubscriptExpr(LHSExp, RHSExp, 3087 Context.DependentTy, 3088 VK_LValue, OK_Ordinary, 3089 RLoc)); 3090 } 3091 3092 if (getLangOptions().CPlusPlus && 3093 (LHSExp->getType()->isRecordType() || 3094 LHSExp->getType()->isEnumeralType() || 3095 RHSExp->getType()->isRecordType() || 3096 RHSExp->getType()->isEnumeralType())) { 3097 return CreateOverloadedArraySubscriptExpr(LLoc, RLoc, Base, Idx); 3098 } 3099 3100 return CreateBuiltinArraySubscriptExpr(Base, LLoc, Idx, RLoc); 3101 } 3102 3103 3104 ExprResult 3105 Sema::CreateBuiltinArraySubscriptExpr(Expr *Base, SourceLocation LLoc, 3106 Expr *Idx, SourceLocation RLoc) { 3107 Expr *LHSExp = Base; 3108 Expr *RHSExp = Idx; 3109 3110 // Perform default conversions. 3111 if (!LHSExp->getType()->getAs<VectorType>()) { 3112 ExprResult Result = DefaultFunctionArrayLvalueConversion(LHSExp); 3113 if (Result.isInvalid()) 3114 return ExprError(); 3115 LHSExp = Result.take(); 3116 } 3117 ExprResult Result = DefaultFunctionArrayLvalueConversion(RHSExp); 3118 if (Result.isInvalid()) 3119 return ExprError(); 3120 RHSExp = Result.take(); 3121 3122 QualType LHSTy = LHSExp->getType(), RHSTy = RHSExp->getType(); 3123 ExprValueKind VK = VK_LValue; 3124 ExprObjectKind OK = OK_Ordinary; 3125 3126 // C99 6.5.2.1p2: the expression e1[e2] is by definition precisely equivalent 3127 // to the expression *((e1)+(e2)). This means the array "Base" may actually be 3128 // in the subscript position. As a result, we need to derive the array base 3129 // and index from the expression types. 3130 Expr *BaseExpr, *IndexExpr; 3131 QualType ResultType; 3132 if (LHSTy->isDependentType() || RHSTy->isDependentType()) { 3133 BaseExpr = LHSExp; 3134 IndexExpr = RHSExp; 3135 ResultType = Context.DependentTy; 3136 } else if (const PointerType *PTy = LHSTy->getAs<PointerType>()) { 3137 BaseExpr = LHSExp; 3138 IndexExpr = RHSExp; 3139 ResultType = PTy->getPointeeType(); 3140 } else if (const PointerType *PTy = RHSTy->getAs<PointerType>()) { 3141 // Handle the uncommon case of "123[Ptr]". 3142 BaseExpr = RHSExp; 3143 IndexExpr = LHSExp; 3144 ResultType = PTy->getPointeeType(); 3145 } else if (const ObjCObjectPointerType *PTy = 3146 LHSTy->getAs<ObjCObjectPointerType>()) { 3147 BaseExpr = LHSExp; 3148 IndexExpr = RHSExp; 3149 ResultType = PTy->getPointeeType(); 3150 } else if (const ObjCObjectPointerType *PTy = 3151 RHSTy->getAs<ObjCObjectPointerType>()) { 3152 // Handle the uncommon case of "123[Ptr]". 3153 BaseExpr = RHSExp; 3154 IndexExpr = LHSExp; 3155 ResultType = PTy->getPointeeType(); 3156 } else if (const VectorType *VTy = LHSTy->getAs<VectorType>()) { 3157 BaseExpr = LHSExp; // vectors: V[123] 3158 IndexExpr = RHSExp; 3159 VK = LHSExp->getValueKind(); 3160 if (VK != VK_RValue) 3161 OK = OK_VectorComponent; 3162 3163 // FIXME: need to deal with const... 3164 ResultType = VTy->getElementType(); 3165 } else if (LHSTy->isArrayType()) { 3166 // If we see an array that wasn't promoted by 3167 // DefaultFunctionArrayLvalueConversion, it must be an array that 3168 // wasn't promoted because of the C90 rule that doesn't 3169 // allow promoting non-lvalue arrays. Warn, then 3170 // force the promotion here. 3171 Diag(LHSExp->getLocStart(), diag::ext_subscript_non_lvalue) << 3172 LHSExp->getSourceRange(); 3173 LHSExp = ImpCastExprToType(LHSExp, Context.getArrayDecayedType(LHSTy), 3174 CK_ArrayToPointerDecay).take(); 3175 LHSTy = LHSExp->getType(); 3176 3177 BaseExpr = LHSExp; 3178 IndexExpr = RHSExp; 3179 ResultType = LHSTy->getAs<PointerType>()->getPointeeType(); 3180 } else if (RHSTy->isArrayType()) { 3181 // Same as previous, except for 123[f().a] case 3182 Diag(RHSExp->getLocStart(), diag::ext_subscript_non_lvalue) << 3183 RHSExp->getSourceRange(); 3184 RHSExp = ImpCastExprToType(RHSExp, Context.getArrayDecayedType(RHSTy), 3185 CK_ArrayToPointerDecay).take(); 3186 RHSTy = RHSExp->getType(); 3187 3188 BaseExpr = RHSExp; 3189 IndexExpr = LHSExp; 3190 ResultType = RHSTy->getAs<PointerType>()->getPointeeType(); 3191 } else { 3192 return ExprError(Diag(LLoc, diag::err_typecheck_subscript_value) 3193 << LHSExp->getSourceRange() << RHSExp->getSourceRange()); 3194 } 3195 // C99 6.5.2.1p1 3196 if (!IndexExpr->getType()->isIntegerType() && !IndexExpr->isTypeDependent()) 3197 return ExprError(Diag(LLoc, diag::err_typecheck_subscript_not_integer) 3198 << IndexExpr->getSourceRange()); 3199 3200 if ((IndexExpr->getType()->isSpecificBuiltinType(BuiltinType::Char_S) || 3201 IndexExpr->getType()->isSpecificBuiltinType(BuiltinType::Char_U)) 3202 && !IndexExpr->isTypeDependent()) 3203 Diag(LLoc, diag::warn_subscript_is_char) << IndexExpr->getSourceRange(); 3204 3205 // C99 6.5.2.1p1: "shall have type "pointer to *object* type". Similarly, 3206 // C++ [expr.sub]p1: The type "T" shall be a completely-defined object 3207 // type. Note that Functions are not objects, and that (in C99 parlance) 3208 // incomplete types are not object types. 3209 if (ResultType->isFunctionType()) { 3210 Diag(BaseExpr->getLocStart(), diag::err_subscript_function_type) 3211 << ResultType << BaseExpr->getSourceRange(); 3212 return ExprError(); 3213 } 3214 3215 if (ResultType->isVoidType() && !getLangOptions().CPlusPlus) { 3216 // GNU extension: subscripting on pointer to void 3217 Diag(LLoc, diag::ext_gnu_subscript_void_type) 3218 << BaseExpr->getSourceRange(); 3219 3220 // C forbids expressions of unqualified void type from being l-values. 3221 // See IsCForbiddenLValueType. 3222 if (!ResultType.hasQualifiers()) VK = VK_RValue; 3223 } else if (!ResultType->isDependentType() && 3224 RequireCompleteType(LLoc, ResultType, 3225 PDiag(diag::err_subscript_incomplete_type) 3226 << BaseExpr->getSourceRange())) 3227 return ExprError(); 3228 3229 // Diagnose bad cases where we step over interface counts. 3230 if (ResultType->isObjCObjectType() && LangOpts.ObjCNonFragileABI) { 3231 Diag(LLoc, diag::err_subscript_nonfragile_interface) 3232 << ResultType << BaseExpr->getSourceRange(); 3233 return ExprError(); 3234 } 3235 3236 assert(VK == VK_RValue || LangOpts.CPlusPlus || 3237 !ResultType.isCForbiddenLValueType()); 3238 3239 return Owned(new (Context) ArraySubscriptExpr(LHSExp, RHSExp, 3240 ResultType, VK, OK, RLoc)); 3241 } 3242 3243 ExprResult Sema::BuildCXXDefaultArgExpr(SourceLocation CallLoc, 3244 FunctionDecl *FD, 3245 ParmVarDecl *Param) { 3246 if (Param->hasUnparsedDefaultArg()) { 3247 Diag(CallLoc, 3248 diag::err_use_of_default_argument_to_function_declared_later) << 3249 FD << cast<CXXRecordDecl>(FD->getDeclContext())->getDeclName(); 3250 Diag(UnparsedDefaultArgLocs[Param], 3251 diag::note_default_argument_declared_here); 3252 return ExprError(); 3253 } 3254 3255 if (Param->hasUninstantiatedDefaultArg()) { 3256 Expr *UninstExpr = Param->getUninstantiatedDefaultArg(); 3257 3258 // Instantiate the expression. 3259 MultiLevelTemplateArgumentList ArgList 3260 = getTemplateInstantiationArgs(FD, 0, /*RelativeToPrimary=*/true); 3261 3262 std::pair<const TemplateArgument *, unsigned> Innermost 3263 = ArgList.getInnermost(); 3264 InstantiatingTemplate Inst(*this, CallLoc, Param, Innermost.first, 3265 Innermost.second); 3266 3267 ExprResult Result; 3268 { 3269 // C++ [dcl.fct.default]p5: 3270 // The names in the [default argument] expression are bound, and 3271 // the semantic constraints are checked, at the point where the 3272 // default argument expression appears. 3273 ContextRAII SavedContext(*this, FD); 3274 Result = SubstExpr(UninstExpr, ArgList); 3275 } 3276 if (Result.isInvalid()) 3277 return ExprError(); 3278 3279 // Check the expression as an initializer for the parameter. 3280 InitializedEntity Entity 3281 = InitializedEntity::InitializeParameter(Context, Param); 3282 InitializationKind Kind 3283 = InitializationKind::CreateCopy(Param->getLocation(), 3284 /*FIXME:EqualLoc*/UninstExpr->getSourceRange().getBegin()); 3285 Expr *ResultE = Result.takeAs<Expr>(); 3286 3287 InitializationSequence InitSeq(*this, Entity, Kind, &ResultE, 1); 3288 Result = InitSeq.Perform(*this, Entity, Kind, 3289 MultiExprArg(*this, &ResultE, 1)); 3290 if (Result.isInvalid()) 3291 return ExprError(); 3292 3293 // Build the default argument expression. 3294 return Owned(CXXDefaultArgExpr::Create(Context, CallLoc, Param, 3295 Result.takeAs<Expr>())); 3296 } 3297 3298 // If the default expression creates temporaries, we need to 3299 // push them to the current stack of expression temporaries so they'll 3300 // be properly destroyed. 3301 // FIXME: We should really be rebuilding the default argument with new 3302 // bound temporaries; see the comment in PR5810. 3303 // We don't need to do that with block decls, though, because 3304 // blocks in default argument expression can never capture anything. 3305 if (isa<ExprWithCleanups>(Param->getInit())) { 3306 // Set the "needs cleanups" bit regardless of whether there are 3307 // any explicit objects. 3308 ExprNeedsCleanups = true; 3309 3310 // Append all the objects to the cleanup list. Right now, this 3311 // should always be a no-op, because blocks in default argument 3312 // expressions should never be able to capture anything. 3313 assert(!cast<ExprWithCleanups>(Param->getInit())->getNumObjects() && 3314 "default argument expression has capturing blocks?"); 3315 } 3316 3317 // We already type-checked the argument, so we know it works. 3318 // Just mark all of the declarations in this potentially-evaluated expression 3319 // as being "referenced". 3320 MarkDeclarationsReferencedInExpr(Param->getDefaultArg()); 3321 return Owned(CXXDefaultArgExpr::Create(Context, CallLoc, Param)); 3322 } 3323 3324 /// ConvertArgumentsForCall - Converts the arguments specified in 3325 /// Args/NumArgs to the parameter types of the function FDecl with 3326 /// function prototype Proto. Call is the call expression itself, and 3327 /// Fn is the function expression. For a C++ member function, this 3328 /// routine does not attempt to convert the object argument. Returns 3329 /// true if the call is ill-formed. 3330 bool 3331 Sema::ConvertArgumentsForCall(CallExpr *Call, Expr *Fn, 3332 FunctionDecl *FDecl, 3333 const FunctionProtoType *Proto, 3334 Expr **Args, unsigned NumArgs, 3335 SourceLocation RParenLoc, 3336 bool IsExecConfig) { 3337 // Bail out early if calling a builtin with custom typechecking. 3338 // We don't need to do this in the 3339 if (FDecl) 3340 if (unsigned ID = FDecl->getBuiltinID()) 3341 if (Context.BuiltinInfo.hasCustomTypechecking(ID)) 3342 return false; 3343 3344 // C99 6.5.2.2p7 - the arguments are implicitly converted, as if by 3345 // assignment, to the types of the corresponding parameter, ... 3346 unsigned NumArgsInProto = Proto->getNumArgs(); 3347 bool Invalid = false; 3348 unsigned MinArgs = FDecl ? FDecl->getMinRequiredArguments() : NumArgsInProto; 3349 unsigned FnKind = Fn->getType()->isBlockPointerType() 3350 ? 1 /* block */ 3351 : (IsExecConfig ? 3 /* kernel function (exec config) */ 3352 : 0 /* function */); 3353 3354 // If too few arguments are available (and we don't have default 3355 // arguments for the remaining parameters), don't make the call. 3356 if (NumArgs < NumArgsInProto) { 3357 if (NumArgs < MinArgs) { 3358 Diag(RParenLoc, MinArgs == NumArgsInProto 3359 ? diag::err_typecheck_call_too_few_args 3360 : diag::err_typecheck_call_too_few_args_at_least) 3361 << FnKind 3362 << MinArgs << NumArgs << Fn->getSourceRange(); 3363 3364 // Emit the location of the prototype. 3365 if (FDecl && !FDecl->getBuiltinID() && !IsExecConfig) 3366 Diag(FDecl->getLocStart(), diag::note_callee_decl) 3367 << FDecl; 3368 3369 return true; 3370 } 3371 Call->setNumArgs(Context, NumArgsInProto); 3372 } 3373 3374 // If too many are passed and not variadic, error on the extras and drop 3375 // them. 3376 if (NumArgs > NumArgsInProto) { 3377 if (!Proto->isVariadic()) { 3378 Diag(Args[NumArgsInProto]->getLocStart(), 3379 MinArgs == NumArgsInProto 3380 ? diag::err_typecheck_call_too_many_args 3381 : diag::err_typecheck_call_too_many_args_at_most) 3382 << FnKind 3383 << NumArgsInProto << NumArgs << Fn->getSourceRange() 3384 << SourceRange(Args[NumArgsInProto]->getLocStart(), 3385 Args[NumArgs-1]->getLocEnd()); 3386 3387 // Emit the location of the prototype. 3388 if (FDecl && !FDecl->getBuiltinID() && !IsExecConfig) 3389 Diag(FDecl->getLocStart(), diag::note_callee_decl) 3390 << FDecl; 3391 3392 // This deletes the extra arguments. 3393 Call->setNumArgs(Context, NumArgsInProto); 3394 return true; 3395 } 3396 } 3397 SmallVector<Expr *, 8> AllArgs; 3398 VariadicCallType CallType = 3399 Proto->isVariadic() ? VariadicFunction : VariadicDoesNotApply; 3400 if (Fn->getType()->isBlockPointerType()) 3401 CallType = VariadicBlock; // Block 3402 else if (isa<MemberExpr>(Fn)) 3403 CallType = VariadicMethod; 3404 Invalid = GatherArgumentsForCall(Call->getSourceRange().getBegin(), FDecl, 3405 Proto, 0, Args, NumArgs, AllArgs, CallType); 3406 if (Invalid) 3407 return true; 3408 unsigned TotalNumArgs = AllArgs.size(); 3409 for (unsigned i = 0; i < TotalNumArgs; ++i) 3410 Call->setArg(i, AllArgs[i]); 3411 3412 return false; 3413 } 3414 3415 bool Sema::GatherArgumentsForCall(SourceLocation CallLoc, 3416 FunctionDecl *FDecl, 3417 const FunctionProtoType *Proto, 3418 unsigned FirstProtoArg, 3419 Expr **Args, unsigned NumArgs, 3420 SmallVector<Expr *, 8> &AllArgs, 3421 VariadicCallType CallType) { 3422 unsigned NumArgsInProto = Proto->getNumArgs(); 3423 unsigned NumArgsToCheck = NumArgs; 3424 bool Invalid = false; 3425 if (NumArgs != NumArgsInProto) 3426 // Use default arguments for missing arguments 3427 NumArgsToCheck = NumArgsInProto; 3428 unsigned ArgIx = 0; 3429 // Continue to check argument types (even if we have too few/many args). 3430 for (unsigned i = FirstProtoArg; i != NumArgsToCheck; i++) { 3431 QualType ProtoArgType = Proto->getArgType(i); 3432 3433 Expr *Arg; 3434 ParmVarDecl *Param; 3435 if (ArgIx < NumArgs) { 3436 Arg = Args[ArgIx++]; 3437 3438 if (RequireCompleteType(Arg->getSourceRange().getBegin(), 3439 ProtoArgType, 3440 PDiag(diag::err_call_incomplete_argument) 3441 << Arg->getSourceRange())) 3442 return true; 3443 3444 // Pass the argument 3445 Param = 0; 3446 if (FDecl && i < FDecl->getNumParams()) 3447 Param = FDecl->getParamDecl(i); 3448 3449 // Strip the unbridged-cast placeholder expression off, if applicable. 3450 if (Arg->getType() == Context.ARCUnbridgedCastTy && 3451 FDecl && FDecl->hasAttr<CFAuditedTransferAttr>() && 3452 (!Param || !Param->hasAttr<CFConsumedAttr>())) 3453 Arg = stripARCUnbridgedCast(Arg); 3454 3455 InitializedEntity Entity = 3456 Param? InitializedEntity::InitializeParameter(Context, Param) 3457 : InitializedEntity::InitializeParameter(Context, ProtoArgType, 3458 Proto->isArgConsumed(i)); 3459 ExprResult ArgE = PerformCopyInitialization(Entity, 3460 SourceLocation(), 3461 Owned(Arg)); 3462 if (ArgE.isInvalid()) 3463 return true; 3464 3465 Arg = ArgE.takeAs<Expr>(); 3466 } else { 3467 Param = FDecl->getParamDecl(i); 3468 3469 ExprResult ArgExpr = 3470 BuildCXXDefaultArgExpr(CallLoc, FDecl, Param); 3471 if (ArgExpr.isInvalid()) 3472 return true; 3473 3474 Arg = ArgExpr.takeAs<Expr>(); 3475 } 3476 3477 // Check for array bounds violations for each argument to the call. This 3478 // check only triggers warnings when the argument isn't a more complex Expr 3479 // with its own checking, such as a BinaryOperator. 3480 CheckArrayAccess(Arg); 3481 3482 // Check for violations of C99 static array rules (C99 6.7.5.3p7). 3483 CheckStaticArrayArgument(CallLoc, Param, Arg); 3484 3485 AllArgs.push_back(Arg); 3486 } 3487 3488 // If this is a variadic call, handle args passed through "...". 3489 if (CallType != VariadicDoesNotApply) { 3490 3491 // Assume that extern "C" functions with variadic arguments that 3492 // return __unknown_anytype aren't *really* variadic. 3493 if (Proto->getResultType() == Context.UnknownAnyTy && 3494 FDecl && FDecl->isExternC()) { 3495 for (unsigned i = ArgIx; i != NumArgs; ++i) { 3496 ExprResult arg; 3497 if (isa<ExplicitCastExpr>(Args[i]->IgnoreParens())) 3498 arg = DefaultFunctionArrayLvalueConversion(Args[i]); 3499 else 3500 arg = DefaultVariadicArgumentPromotion(Args[i], CallType, FDecl); 3501 Invalid |= arg.isInvalid(); 3502 AllArgs.push_back(arg.take()); 3503 } 3504 3505 // Otherwise do argument promotion, (C99 6.5.2.2p7). 3506 } else { 3507 for (unsigned i = ArgIx; i != NumArgs; ++i) { 3508 ExprResult Arg = DefaultVariadicArgumentPromotion(Args[i], CallType, 3509 FDecl); 3510 Invalid |= Arg.isInvalid(); 3511 AllArgs.push_back(Arg.take()); 3512 } 3513 } 3514 3515 // Check for array bounds violations. 3516 for (unsigned i = ArgIx; i != NumArgs; ++i) 3517 CheckArrayAccess(Args[i]); 3518 } 3519 return Invalid; 3520 } 3521 3522 static void DiagnoseCalleeStaticArrayParam(Sema &S, ParmVarDecl *PVD) { 3523 TypeLoc TL = PVD->getTypeSourceInfo()->getTypeLoc(); 3524 if (ArrayTypeLoc *ATL = dyn_cast<ArrayTypeLoc>(&TL)) 3525 S.Diag(PVD->getLocation(), diag::note_callee_static_array) 3526 << ATL->getLocalSourceRange(); 3527 } 3528 3529 /// CheckStaticArrayArgument - If the given argument corresponds to a static 3530 /// array parameter, check that it is non-null, and that if it is formed by 3531 /// array-to-pointer decay, the underlying array is sufficiently large. 3532 /// 3533 /// C99 6.7.5.3p7: If the keyword static also appears within the [ and ] of the 3534 /// array type derivation, then for each call to the function, the value of the 3535 /// corresponding actual argument shall provide access to the first element of 3536 /// an array with at least as many elements as specified by the size expression. 3537 void 3538 Sema::CheckStaticArrayArgument(SourceLocation CallLoc, 3539 ParmVarDecl *Param, 3540 const Expr *ArgExpr) { 3541 // Static array parameters are not supported in C++. 3542 if (!Param || getLangOptions().CPlusPlus) 3543 return; 3544 3545 QualType OrigTy = Param->getOriginalType(); 3546 3547 const ArrayType *AT = Context.getAsArrayType(OrigTy); 3548 if (!AT || AT->getSizeModifier() != ArrayType::Static) 3549 return; 3550 3551 if (ArgExpr->isNullPointerConstant(Context, 3552 Expr::NPC_NeverValueDependent)) { 3553 Diag(CallLoc, diag::warn_null_arg) << ArgExpr->getSourceRange(); 3554 DiagnoseCalleeStaticArrayParam(*this, Param); 3555 return; 3556 } 3557 3558 const ConstantArrayType *CAT = dyn_cast<ConstantArrayType>(AT); 3559 if (!CAT) 3560 return; 3561 3562 const ConstantArrayType *ArgCAT = 3563 Context.getAsConstantArrayType(ArgExpr->IgnoreParenImpCasts()->getType()); 3564 if (!ArgCAT) 3565 return; 3566 3567 if (ArgCAT->getSize().ult(CAT->getSize())) { 3568 Diag(CallLoc, diag::warn_static_array_too_small) 3569 << ArgExpr->getSourceRange() 3570 << (unsigned) ArgCAT->getSize().getZExtValue() 3571 << (unsigned) CAT->getSize().getZExtValue(); 3572 DiagnoseCalleeStaticArrayParam(*this, Param); 3573 } 3574 } 3575 3576 /// Given a function expression of unknown-any type, try to rebuild it 3577 /// to have a function type. 3578 static ExprResult rebuildUnknownAnyFunction(Sema &S, Expr *fn); 3579 3580 /// ActOnCallExpr - Handle a call to Fn with the specified array of arguments. 3581 /// This provides the location of the left/right parens and a list of comma 3582 /// locations. 3583 ExprResult 3584 Sema::ActOnCallExpr(Scope *S, Expr *Fn, SourceLocation LParenLoc, 3585 MultiExprArg ArgExprs, SourceLocation RParenLoc, 3586 Expr *ExecConfig, bool IsExecConfig) { 3587 unsigned NumArgs = ArgExprs.size(); 3588 3589 // Since this might be a postfix expression, get rid of ParenListExprs. 3590 ExprResult Result = MaybeConvertParenListExprToParenExpr(S, Fn); 3591 if (Result.isInvalid()) return ExprError(); 3592 Fn = Result.take(); 3593 3594 Expr **Args = ArgExprs.release(); 3595 3596 if (getLangOptions().CPlusPlus) { 3597 // If this is a pseudo-destructor expression, build the call immediately. 3598 if (isa<CXXPseudoDestructorExpr>(Fn)) { 3599 if (NumArgs > 0) { 3600 // Pseudo-destructor calls should not have any arguments. 3601 Diag(Fn->getLocStart(), diag::err_pseudo_dtor_call_with_args) 3602 << FixItHint::CreateRemoval( 3603 SourceRange(Args[0]->getLocStart(), 3604 Args[NumArgs-1]->getLocEnd())); 3605 3606 NumArgs = 0; 3607 } 3608 3609 return Owned(new (Context) CallExpr(Context, Fn, 0, 0, Context.VoidTy, 3610 VK_RValue, RParenLoc)); 3611 } 3612 3613 // Determine whether this is a dependent call inside a C++ template, 3614 // in which case we won't do any semantic analysis now. 3615 // FIXME: Will need to cache the results of name lookup (including ADL) in 3616 // Fn. 3617 bool Dependent = false; 3618 if (Fn->isTypeDependent()) 3619 Dependent = true; 3620 else if (Expr::hasAnyTypeDependentArguments(Args, NumArgs)) 3621 Dependent = true; 3622 3623 if (Dependent) { 3624 if (ExecConfig) { 3625 return Owned(new (Context) CUDAKernelCallExpr( 3626 Context, Fn, cast<CallExpr>(ExecConfig), Args, NumArgs, 3627 Context.DependentTy, VK_RValue, RParenLoc)); 3628 } else { 3629 return Owned(new (Context) CallExpr(Context, Fn, Args, NumArgs, 3630 Context.DependentTy, VK_RValue, 3631 RParenLoc)); 3632 } 3633 } 3634 3635 // Determine whether this is a call to an object (C++ [over.call.object]). 3636 if (Fn->getType()->isRecordType()) 3637 return Owned(BuildCallToObjectOfClassType(S, Fn, LParenLoc, Args, NumArgs, 3638 RParenLoc)); 3639 3640 if (Fn->getType() == Context.UnknownAnyTy) { 3641 ExprResult result = rebuildUnknownAnyFunction(*this, Fn); 3642 if (result.isInvalid()) return ExprError(); 3643 Fn = result.take(); 3644 } 3645 3646 if (Fn->getType() == Context.BoundMemberTy) { 3647 return BuildCallToMemberFunction(S, Fn, LParenLoc, Args, NumArgs, 3648 RParenLoc); 3649 } 3650 } 3651 3652 // Check for overloaded calls. This can happen even in C due to extensions. 3653 if (Fn->getType() == Context.OverloadTy) { 3654 OverloadExpr::FindResult find = OverloadExpr::find(Fn); 3655 3656 // We aren't supposed to apply this logic for if there's an '&' involved. 3657 if (!find.HasFormOfMemberPointer) { 3658 OverloadExpr *ovl = find.Expression; 3659 if (isa<UnresolvedLookupExpr>(ovl)) { 3660 UnresolvedLookupExpr *ULE = cast<UnresolvedLookupExpr>(ovl); 3661 return BuildOverloadedCallExpr(S, Fn, ULE, LParenLoc, Args, NumArgs, 3662 RParenLoc, ExecConfig); 3663 } else { 3664 return BuildCallToMemberFunction(S, Fn, LParenLoc, Args, NumArgs, 3665 RParenLoc); 3666 } 3667 } 3668 } 3669 3670 // If we're directly calling a function, get the appropriate declaration. 3671 3672 Expr *NakedFn = Fn->IgnoreParens(); 3673 3674 NamedDecl *NDecl = 0; 3675 if (UnaryOperator *UnOp = dyn_cast<UnaryOperator>(NakedFn)) 3676 if (UnOp->getOpcode() == UO_AddrOf) 3677 NakedFn = UnOp->getSubExpr()->IgnoreParens(); 3678 3679 if (isa<DeclRefExpr>(NakedFn)) 3680 NDecl = cast<DeclRefExpr>(NakedFn)->getDecl(); 3681 else if (isa<MemberExpr>(NakedFn)) 3682 NDecl = cast<MemberExpr>(NakedFn)->getMemberDecl(); 3683 3684 return BuildResolvedCallExpr(Fn, NDecl, LParenLoc, Args, NumArgs, RParenLoc, 3685 ExecConfig, IsExecConfig); 3686 } 3687 3688 ExprResult 3689 Sema::ActOnCUDAExecConfigExpr(Scope *S, SourceLocation LLLLoc, 3690 MultiExprArg ExecConfig, SourceLocation GGGLoc) { 3691 FunctionDecl *ConfigDecl = Context.getcudaConfigureCallDecl(); 3692 if (!ConfigDecl) 3693 return ExprError(Diag(LLLLoc, diag::err_undeclared_var_use) 3694 << "cudaConfigureCall"); 3695 QualType ConfigQTy = ConfigDecl->getType(); 3696 3697 DeclRefExpr *ConfigDR = new (Context) DeclRefExpr( 3698 ConfigDecl, ConfigQTy, VK_LValue, LLLLoc); 3699 3700 return ActOnCallExpr(S, ConfigDR, LLLLoc, ExecConfig, GGGLoc, 0, 3701 /*IsExecConfig=*/true); 3702 } 3703 3704 /// ActOnAsTypeExpr - create a new asType (bitcast) from the arguments. 3705 /// 3706 /// __builtin_astype( value, dst type ) 3707 /// 3708 ExprResult Sema::ActOnAsTypeExpr(Expr *E, ParsedType ParsedDestTy, 3709 SourceLocation BuiltinLoc, 3710 SourceLocation RParenLoc) { 3711 ExprValueKind VK = VK_RValue; 3712 ExprObjectKind OK = OK_Ordinary; 3713 QualType DstTy = GetTypeFromParser(ParsedDestTy); 3714 QualType SrcTy = E->getType(); 3715 if (Context.getTypeSize(DstTy) != Context.getTypeSize(SrcTy)) 3716 return ExprError(Diag(BuiltinLoc, 3717 diag::err_invalid_astype_of_different_size) 3718 << DstTy 3719 << SrcTy 3720 << E->getSourceRange()); 3721 return Owned(new (Context) AsTypeExpr(E, DstTy, VK, OK, BuiltinLoc, 3722 RParenLoc)); 3723 } 3724 3725 /// BuildResolvedCallExpr - Build a call to a resolved expression, 3726 /// i.e. an expression not of \p OverloadTy. The expression should 3727 /// unary-convert to an expression of function-pointer or 3728 /// block-pointer type. 3729 /// 3730 /// \param NDecl the declaration being called, if available 3731 ExprResult 3732 Sema::BuildResolvedCallExpr(Expr *Fn, NamedDecl *NDecl, 3733 SourceLocation LParenLoc, 3734 Expr **Args, unsigned NumArgs, 3735 SourceLocation RParenLoc, 3736 Expr *Config, bool IsExecConfig) { 3737 FunctionDecl *FDecl = dyn_cast_or_null<FunctionDecl>(NDecl); 3738 3739 // Promote the function operand. 3740 ExprResult Result = UsualUnaryConversions(Fn); 3741 if (Result.isInvalid()) 3742 return ExprError(); 3743 Fn = Result.take(); 3744 3745 // Make the call expr early, before semantic checks. This guarantees cleanup 3746 // of arguments and function on error. 3747 CallExpr *TheCall; 3748 if (Config) { 3749 TheCall = new (Context) CUDAKernelCallExpr(Context, Fn, 3750 cast<CallExpr>(Config), 3751 Args, NumArgs, 3752 Context.BoolTy, 3753 VK_RValue, 3754 RParenLoc); 3755 } else { 3756 TheCall = new (Context) CallExpr(Context, Fn, 3757 Args, NumArgs, 3758 Context.BoolTy, 3759 VK_RValue, 3760 RParenLoc); 3761 } 3762 3763 unsigned BuiltinID = (FDecl ? FDecl->getBuiltinID() : 0); 3764 3765 // Bail out early if calling a builtin with custom typechecking. 3766 if (BuiltinID && Context.BuiltinInfo.hasCustomTypechecking(BuiltinID)) 3767 return CheckBuiltinFunctionCall(BuiltinID, TheCall); 3768 3769 retry: 3770 const FunctionType *FuncT; 3771 if (const PointerType *PT = Fn->getType()->getAs<PointerType>()) { 3772 // C99 6.5.2.2p1 - "The expression that denotes the called function shall 3773 // have type pointer to function". 3774 FuncT = PT->getPointeeType()->getAs<FunctionType>(); 3775 if (FuncT == 0) 3776 return ExprError(Diag(LParenLoc, diag::err_typecheck_call_not_function) 3777 << Fn->getType() << Fn->getSourceRange()); 3778 } else if (const BlockPointerType *BPT = 3779 Fn->getType()->getAs<BlockPointerType>()) { 3780 FuncT = BPT->getPointeeType()->castAs<FunctionType>(); 3781 } else { 3782 // Handle calls to expressions of unknown-any type. 3783 if (Fn->getType() == Context.UnknownAnyTy) { 3784 ExprResult rewrite = rebuildUnknownAnyFunction(*this, Fn); 3785 if (rewrite.isInvalid()) return ExprError(); 3786 Fn = rewrite.take(); 3787 TheCall->setCallee(Fn); 3788 goto retry; 3789 } 3790 3791 return ExprError(Diag(LParenLoc, diag::err_typecheck_call_not_function) 3792 << Fn->getType() << Fn->getSourceRange()); 3793 } 3794 3795 if (getLangOptions().CUDA) { 3796 if (Config) { 3797 // CUDA: Kernel calls must be to global functions 3798 if (FDecl && !FDecl->hasAttr<CUDAGlobalAttr>()) 3799 return ExprError(Diag(LParenLoc,diag::err_kern_call_not_global_function) 3800 << FDecl->getName() << Fn->getSourceRange()); 3801 3802 // CUDA: Kernel function must have 'void' return type 3803 if (!FuncT->getResultType()->isVoidType()) 3804 return ExprError(Diag(LParenLoc, diag::err_kern_type_not_void_return) 3805 << Fn->getType() << Fn->getSourceRange()); 3806 } else { 3807 // CUDA: Calls to global functions must be configured 3808 if (FDecl && FDecl->hasAttr<CUDAGlobalAttr>()) 3809 return ExprError(Diag(LParenLoc, diag::err_global_call_not_config) 3810 << FDecl->getName() << Fn->getSourceRange()); 3811 } 3812 } 3813 3814 // Check for a valid return type 3815 if (CheckCallReturnType(FuncT->getResultType(), 3816 Fn->getSourceRange().getBegin(), TheCall, 3817 FDecl)) 3818 return ExprError(); 3819 3820 // We know the result type of the call, set it. 3821 TheCall->setType(FuncT->getCallResultType(Context)); 3822 TheCall->setValueKind(Expr::getValueKindForType(FuncT->getResultType())); 3823 3824 if (const FunctionProtoType *Proto = dyn_cast<FunctionProtoType>(FuncT)) { 3825 if (ConvertArgumentsForCall(TheCall, Fn, FDecl, Proto, Args, NumArgs, 3826 RParenLoc, IsExecConfig)) 3827 return ExprError(); 3828 } else { 3829 assert(isa<FunctionNoProtoType>(FuncT) && "Unknown FunctionType!"); 3830 3831 if (FDecl) { 3832 // Check if we have too few/too many template arguments, based 3833 // on our knowledge of the function definition. 3834 const FunctionDecl *Def = 0; 3835 if (FDecl->hasBody(Def) && NumArgs != Def->param_size()) { 3836 const FunctionProtoType *Proto 3837 = Def->getType()->getAs<FunctionProtoType>(); 3838 if (!Proto || !(Proto->isVariadic() && NumArgs >= Def->param_size())) 3839 Diag(RParenLoc, diag::warn_call_wrong_number_of_arguments) 3840 << (NumArgs > Def->param_size()) << FDecl << Fn->getSourceRange(); 3841 } 3842 3843 // If the function we're calling isn't a function prototype, but we have 3844 // a function prototype from a prior declaratiom, use that prototype. 3845 if (!FDecl->hasPrototype()) 3846 Proto = FDecl->getType()->getAs<FunctionProtoType>(); 3847 } 3848 3849 // Promote the arguments (C99 6.5.2.2p6). 3850 for (unsigned i = 0; i != NumArgs; i++) { 3851 Expr *Arg = Args[i]; 3852 3853 if (Proto && i < Proto->getNumArgs()) { 3854 InitializedEntity Entity 3855 = InitializedEntity::InitializeParameter(Context, 3856 Proto->getArgType(i), 3857 Proto->isArgConsumed(i)); 3858 ExprResult ArgE = PerformCopyInitialization(Entity, 3859 SourceLocation(), 3860 Owned(Arg)); 3861 if (ArgE.isInvalid()) 3862 return true; 3863 3864 Arg = ArgE.takeAs<Expr>(); 3865 3866 } else { 3867 ExprResult ArgE = DefaultArgumentPromotion(Arg); 3868 3869 if (ArgE.isInvalid()) 3870 return true; 3871 3872 Arg = ArgE.takeAs<Expr>(); 3873 } 3874 3875 if (RequireCompleteType(Arg->getSourceRange().getBegin(), 3876 Arg->getType(), 3877 PDiag(diag::err_call_incomplete_argument) 3878 << Arg->getSourceRange())) 3879 return ExprError(); 3880 3881 TheCall->setArg(i, Arg); 3882 } 3883 } 3884 3885 if (CXXMethodDecl *Method = dyn_cast_or_null<CXXMethodDecl>(FDecl)) 3886 if (!Method->isStatic()) 3887 return ExprError(Diag(LParenLoc, diag::err_member_call_without_object) 3888 << Fn->getSourceRange()); 3889 3890 // Check for sentinels 3891 if (NDecl) 3892 DiagnoseSentinelCalls(NDecl, LParenLoc, Args, NumArgs); 3893 3894 // Do special checking on direct calls to functions. 3895 if (FDecl) { 3896 if (CheckFunctionCall(FDecl, TheCall)) 3897 return ExprError(); 3898 3899 if (BuiltinID) 3900 return CheckBuiltinFunctionCall(BuiltinID, TheCall); 3901 } else if (NDecl) { 3902 if (CheckBlockCall(NDecl, TheCall)) 3903 return ExprError(); 3904 } 3905 3906 return MaybeBindToTemporary(TheCall); 3907 } 3908 3909 ExprResult 3910 Sema::ActOnCompoundLiteral(SourceLocation LParenLoc, ParsedType Ty, 3911 SourceLocation RParenLoc, Expr *InitExpr) { 3912 assert((Ty != 0) && "ActOnCompoundLiteral(): missing type"); 3913 // FIXME: put back this assert when initializers are worked out. 3914 //assert((InitExpr != 0) && "ActOnCompoundLiteral(): missing expression"); 3915 3916 TypeSourceInfo *TInfo; 3917 QualType literalType = GetTypeFromParser(Ty, &TInfo); 3918 if (!TInfo) 3919 TInfo = Context.getTrivialTypeSourceInfo(literalType); 3920 3921 return BuildCompoundLiteralExpr(LParenLoc, TInfo, RParenLoc, InitExpr); 3922 } 3923 3924 ExprResult 3925 Sema::BuildCompoundLiteralExpr(SourceLocation LParenLoc, TypeSourceInfo *TInfo, 3926 SourceLocation RParenLoc, Expr *LiteralExpr) { 3927 QualType literalType = TInfo->getType(); 3928 3929 if (literalType->isArrayType()) { 3930 if (RequireCompleteType(LParenLoc, Context.getBaseElementType(literalType), 3931 PDiag(diag::err_illegal_decl_array_incomplete_type) 3932 << SourceRange(LParenLoc, 3933 LiteralExpr->getSourceRange().getEnd()))) 3934 return ExprError(); 3935 if (literalType->isVariableArrayType()) 3936 return ExprError(Diag(LParenLoc, diag::err_variable_object_no_init) 3937 << SourceRange(LParenLoc, LiteralExpr->getSourceRange().getEnd())); 3938 } else if (!literalType->isDependentType() && 3939 RequireCompleteType(LParenLoc, literalType, 3940 PDiag(diag::err_typecheck_decl_incomplete_type) 3941 << SourceRange(LParenLoc, 3942 LiteralExpr->getSourceRange().getEnd()))) 3943 return ExprError(); 3944 3945 InitializedEntity Entity 3946 = InitializedEntity::InitializeTemporary(literalType); 3947 InitializationKind Kind 3948 = InitializationKind::CreateCStyleCast(LParenLoc, 3949 SourceRange(LParenLoc, RParenLoc)); 3950 InitializationSequence InitSeq(*this, Entity, Kind, &LiteralExpr, 1); 3951 ExprResult Result = InitSeq.Perform(*this, Entity, Kind, 3952 MultiExprArg(*this, &LiteralExpr, 1), 3953 &literalType); 3954 if (Result.isInvalid()) 3955 return ExprError(); 3956 LiteralExpr = Result.get(); 3957 3958 bool isFileScope = getCurFunctionOrMethodDecl() == 0; 3959 if (isFileScope) { // 6.5.2.5p3 3960 if (CheckForConstantInitializer(LiteralExpr, literalType)) 3961 return ExprError(); 3962 } 3963 3964 // In C, compound literals are l-values for some reason. 3965 ExprValueKind VK = getLangOptions().CPlusPlus ? VK_RValue : VK_LValue; 3966 3967 return MaybeBindToTemporary( 3968 new (Context) CompoundLiteralExpr(LParenLoc, TInfo, literalType, 3969 VK, LiteralExpr, isFileScope)); 3970 } 3971 3972 ExprResult 3973 Sema::ActOnInitList(SourceLocation LBraceLoc, MultiExprArg InitArgList, 3974 SourceLocation RBraceLoc) { 3975 unsigned NumInit = InitArgList.size(); 3976 Expr **InitList = InitArgList.release(); 3977 3978 // Immediately handle non-overload placeholders. Overloads can be 3979 // resolved contextually, but everything else here can't. 3980 for (unsigned I = 0; I != NumInit; ++I) { 3981 if (InitList[I]->getType()->isNonOverloadPlaceholderType()) { 3982 ExprResult result = CheckPlaceholderExpr(InitList[I]); 3983 3984 // Ignore failures; dropping the entire initializer list because 3985 // of one failure would be terrible for indexing/etc. 3986 if (result.isInvalid()) continue; 3987 3988 InitList[I] = result.take(); 3989 } 3990 } 3991 3992 // Semantic analysis for initializers is done by ActOnDeclarator() and 3993 // CheckInitializer() - it requires knowledge of the object being intialized. 3994 3995 InitListExpr *E = new (Context) InitListExpr(Context, LBraceLoc, InitList, 3996 NumInit, RBraceLoc); 3997 E->setType(Context.VoidTy); // FIXME: just a place holder for now. 3998 return Owned(E); 3999 } 4000 4001 /// Do an explicit extend of the given block pointer if we're in ARC. 4002 static void maybeExtendBlockObject(Sema &S, ExprResult &E) { 4003 assert(E.get()->getType()->isBlockPointerType()); 4004 assert(E.get()->isRValue()); 4005 4006 // Only do this in an r-value context. 4007 if (!S.getLangOptions().ObjCAutoRefCount) return; 4008 4009 E = ImplicitCastExpr::Create(S.Context, E.get()->getType(), 4010 CK_ARCExtendBlockObject, E.get(), 4011 /*base path*/ 0, VK_RValue); 4012 S.ExprNeedsCleanups = true; 4013 } 4014 4015 /// Prepare a conversion of the given expression to an ObjC object 4016 /// pointer type. 4017 CastKind Sema::PrepareCastToObjCObjectPointer(ExprResult &E) { 4018 QualType type = E.get()->getType(); 4019 if (type->isObjCObjectPointerType()) { 4020 return CK_BitCast; 4021 } else if (type->isBlockPointerType()) { 4022 maybeExtendBlockObject(*this, E); 4023 return CK_BlockPointerToObjCPointerCast; 4024 } else { 4025 assert(type->isPointerType()); 4026 return CK_CPointerToObjCPointerCast; 4027 } 4028 } 4029 4030 /// Prepares for a scalar cast, performing all the necessary stages 4031 /// except the final cast and returning the kind required. 4032 CastKind Sema::PrepareScalarCast(ExprResult &Src, QualType DestTy) { 4033 // Both Src and Dest are scalar types, i.e. arithmetic or pointer. 4034 // Also, callers should have filtered out the invalid cases with 4035 // pointers. Everything else should be possible. 4036 4037 QualType SrcTy = Src.get()->getType(); 4038 if (Context.hasSameUnqualifiedType(SrcTy, DestTy)) 4039 return CK_NoOp; 4040 4041 switch (Type::ScalarTypeKind SrcKind = SrcTy->getScalarTypeKind()) { 4042 case Type::STK_MemberPointer: 4043 llvm_unreachable("member pointer type in C"); 4044 4045 case Type::STK_CPointer: 4046 case Type::STK_BlockPointer: 4047 case Type::STK_ObjCObjectPointer: 4048 switch (DestTy->getScalarTypeKind()) { 4049 case Type::STK_CPointer: 4050 return CK_BitCast; 4051 case Type::STK_BlockPointer: 4052 return (SrcKind == Type::STK_BlockPointer 4053 ? CK_BitCast : CK_AnyPointerToBlockPointerCast); 4054 case Type::STK_ObjCObjectPointer: 4055 if (SrcKind == Type::STK_ObjCObjectPointer) 4056 return CK_BitCast; 4057 else if (SrcKind == Type::STK_CPointer) 4058 return CK_CPointerToObjCPointerCast; 4059 else { 4060 maybeExtendBlockObject(*this, Src); 4061 return CK_BlockPointerToObjCPointerCast; 4062 } 4063 case Type::STK_Bool: 4064 return CK_PointerToBoolean; 4065 case Type::STK_Integral: 4066 return CK_PointerToIntegral; 4067 case Type::STK_Floating: 4068 case Type::STK_FloatingComplex: 4069 case Type::STK_IntegralComplex: 4070 case Type::STK_MemberPointer: 4071 llvm_unreachable("illegal cast from pointer"); 4072 } 4073 break; 4074 4075 case Type::STK_Bool: // casting from bool is like casting from an integer 4076 case Type::STK_Integral: 4077 switch (DestTy->getScalarTypeKind()) { 4078 case Type::STK_CPointer: 4079 case Type::STK_ObjCObjectPointer: 4080 case Type::STK_BlockPointer: 4081 if (Src.get()->isNullPointerConstant(Context, 4082 Expr::NPC_ValueDependentIsNull)) 4083 return CK_NullToPointer; 4084 return CK_IntegralToPointer; 4085 case Type::STK_Bool: 4086 return CK_IntegralToBoolean; 4087 case Type::STK_Integral: 4088 return CK_IntegralCast; 4089 case Type::STK_Floating: 4090 return CK_IntegralToFloating; 4091 case Type::STK_IntegralComplex: 4092 Src = ImpCastExprToType(Src.take(), 4093 DestTy->castAs<ComplexType>()->getElementType(), 4094 CK_IntegralCast); 4095 return CK_IntegralRealToComplex; 4096 case Type::STK_FloatingComplex: 4097 Src = ImpCastExprToType(Src.take(), 4098 DestTy->castAs<ComplexType>()->getElementType(), 4099 CK_IntegralToFloating); 4100 return CK_FloatingRealToComplex; 4101 case Type::STK_MemberPointer: 4102 llvm_unreachable("member pointer type in C"); 4103 } 4104 break; 4105 4106 case Type::STK_Floating: 4107 switch (DestTy->getScalarTypeKind()) { 4108 case Type::STK_Floating: 4109 return CK_FloatingCast; 4110 case Type::STK_Bool: 4111 return CK_FloatingToBoolean; 4112 case Type::STK_Integral: 4113 return CK_FloatingToIntegral; 4114 case Type::STK_FloatingComplex: 4115 Src = ImpCastExprToType(Src.take(), 4116 DestTy->castAs<ComplexType>()->getElementType(), 4117 CK_FloatingCast); 4118 return CK_FloatingRealToComplex; 4119 case Type::STK_IntegralComplex: 4120 Src = ImpCastExprToType(Src.take(), 4121 DestTy->castAs<ComplexType>()->getElementType(), 4122 CK_FloatingToIntegral); 4123 return CK_IntegralRealToComplex; 4124 case Type::STK_CPointer: 4125 case Type::STK_ObjCObjectPointer: 4126 case Type::STK_BlockPointer: 4127 llvm_unreachable("valid float->pointer cast?"); 4128 case Type::STK_MemberPointer: 4129 llvm_unreachable("member pointer type in C"); 4130 } 4131 break; 4132 4133 case Type::STK_FloatingComplex: 4134 switch (DestTy->getScalarTypeKind()) { 4135 case Type::STK_FloatingComplex: 4136 return CK_FloatingComplexCast; 4137 case Type::STK_IntegralComplex: 4138 return CK_FloatingComplexToIntegralComplex; 4139 case Type::STK_Floating: { 4140 QualType ET = SrcTy->castAs<ComplexType>()->getElementType(); 4141 if (Context.hasSameType(ET, DestTy)) 4142 return CK_FloatingComplexToReal; 4143 Src = ImpCastExprToType(Src.take(), ET, CK_FloatingComplexToReal); 4144 return CK_FloatingCast; 4145 } 4146 case Type::STK_Bool: 4147 return CK_FloatingComplexToBoolean; 4148 case Type::STK_Integral: 4149 Src = ImpCastExprToType(Src.take(), 4150 SrcTy->castAs<ComplexType>()->getElementType(), 4151 CK_FloatingComplexToReal); 4152 return CK_FloatingToIntegral; 4153 case Type::STK_CPointer: 4154 case Type::STK_ObjCObjectPointer: 4155 case Type::STK_BlockPointer: 4156 llvm_unreachable("valid complex float->pointer cast?"); 4157 case Type::STK_MemberPointer: 4158 llvm_unreachable("member pointer type in C"); 4159 } 4160 break; 4161 4162 case Type::STK_IntegralComplex: 4163 switch (DestTy->getScalarTypeKind()) { 4164 case Type::STK_FloatingComplex: 4165 return CK_IntegralComplexToFloatingComplex; 4166 case Type::STK_IntegralComplex: 4167 return CK_IntegralComplexCast; 4168 case Type::STK_Integral: { 4169 QualType ET = SrcTy->castAs<ComplexType>()->getElementType(); 4170 if (Context.hasSameType(ET, DestTy)) 4171 return CK_IntegralComplexToReal; 4172 Src = ImpCastExprToType(Src.take(), ET, CK_IntegralComplexToReal); 4173 return CK_IntegralCast; 4174 } 4175 case Type::STK_Bool: 4176 return CK_IntegralComplexToBoolean; 4177 case Type::STK_Floating: 4178 Src = ImpCastExprToType(Src.take(), 4179 SrcTy->castAs<ComplexType>()->getElementType(), 4180 CK_IntegralComplexToReal); 4181 return CK_IntegralToFloating; 4182 case Type::STK_CPointer: 4183 case Type::STK_ObjCObjectPointer: 4184 case Type::STK_BlockPointer: 4185 llvm_unreachable("valid complex int->pointer cast?"); 4186 case Type::STK_MemberPointer: 4187 llvm_unreachable("member pointer type in C"); 4188 } 4189 break; 4190 } 4191 4192 llvm_unreachable("Unhandled scalar cast"); 4193 } 4194 4195 bool Sema::CheckVectorCast(SourceRange R, QualType VectorTy, QualType Ty, 4196 CastKind &Kind) { 4197 assert(VectorTy->isVectorType() && "Not a vector type!"); 4198 4199 if (Ty->isVectorType() || Ty->isIntegerType()) { 4200 if (Context.getTypeSize(VectorTy) != Context.getTypeSize(Ty)) 4201 return Diag(R.getBegin(), 4202 Ty->isVectorType() ? 4203 diag::err_invalid_conversion_between_vectors : 4204 diag::err_invalid_conversion_between_vector_and_integer) 4205 << VectorTy << Ty << R; 4206 } else 4207 return Diag(R.getBegin(), 4208 diag::err_invalid_conversion_between_vector_and_scalar) 4209 << VectorTy << Ty << R; 4210 4211 Kind = CK_BitCast; 4212 return false; 4213 } 4214 4215 ExprResult Sema::CheckExtVectorCast(SourceRange R, QualType DestTy, 4216 Expr *CastExpr, CastKind &Kind) { 4217 assert(DestTy->isExtVectorType() && "Not an extended vector type!"); 4218 4219 QualType SrcTy = CastExpr->getType(); 4220 4221 // If SrcTy is a VectorType, the total size must match to explicitly cast to 4222 // an ExtVectorType. 4223 // In OpenCL, casts between vectors of different types are not allowed. 4224 // (See OpenCL 6.2). 4225 if (SrcTy->isVectorType()) { 4226 if (Context.getTypeSize(DestTy) != Context.getTypeSize(SrcTy) 4227 || (getLangOptions().OpenCL && 4228 (DestTy.getCanonicalType() != SrcTy.getCanonicalType()))) { 4229 Diag(R.getBegin(),diag::err_invalid_conversion_between_ext_vectors) 4230 << DestTy << SrcTy << R; 4231 return ExprError(); 4232 } 4233 Kind = CK_BitCast; 4234 return Owned(CastExpr); 4235 } 4236 4237 // All non-pointer scalars can be cast to ExtVector type. The appropriate 4238 // conversion will take place first from scalar to elt type, and then 4239 // splat from elt type to vector. 4240 if (SrcTy->isPointerType()) 4241 return Diag(R.getBegin(), 4242 diag::err_invalid_conversion_between_vector_and_scalar) 4243 << DestTy << SrcTy << R; 4244 4245 QualType DestElemTy = DestTy->getAs<ExtVectorType>()->getElementType(); 4246 ExprResult CastExprRes = Owned(CastExpr); 4247 CastKind CK = PrepareScalarCast(CastExprRes, DestElemTy); 4248 if (CastExprRes.isInvalid()) 4249 return ExprError(); 4250 CastExpr = ImpCastExprToType(CastExprRes.take(), DestElemTy, CK).take(); 4251 4252 Kind = CK_VectorSplat; 4253 return Owned(CastExpr); 4254 } 4255 4256 ExprResult 4257 Sema::ActOnCastExpr(Scope *S, SourceLocation LParenLoc, 4258 Declarator &D, ParsedType &Ty, 4259 SourceLocation RParenLoc, Expr *CastExpr) { 4260 assert(!D.isInvalidType() && (CastExpr != 0) && 4261 "ActOnCastExpr(): missing type or expr"); 4262 4263 TypeSourceInfo *castTInfo = GetTypeForDeclaratorCast(D, CastExpr->getType()); 4264 if (D.isInvalidType()) 4265 return ExprError(); 4266 4267 if (getLangOptions().CPlusPlus) { 4268 // Check that there are no default arguments (C++ only). 4269 CheckExtraCXXDefaultArguments(D); 4270 } 4271 4272 checkUnusedDeclAttributes(D); 4273 4274 QualType castType = castTInfo->getType(); 4275 Ty = CreateParsedType(castType, castTInfo); 4276 4277 bool isVectorLiteral = false; 4278 4279 // Check for an altivec or OpenCL literal, 4280 // i.e. all the elements are integer constants. 4281 ParenExpr *PE = dyn_cast<ParenExpr>(CastExpr); 4282 ParenListExpr *PLE = dyn_cast<ParenListExpr>(CastExpr); 4283 if ((getLangOptions().AltiVec || getLangOptions().OpenCL) 4284 && castType->isVectorType() && (PE || PLE)) { 4285 if (PLE && PLE->getNumExprs() == 0) { 4286 Diag(PLE->getExprLoc(), diag::err_altivec_empty_initializer); 4287 return ExprError(); 4288 } 4289 if (PE || PLE->getNumExprs() == 1) { 4290 Expr *E = (PE ? PE->getSubExpr() : PLE->getExpr(0)); 4291 if (!E->getType()->isVectorType()) 4292 isVectorLiteral = true; 4293 } 4294 else 4295 isVectorLiteral = true; 4296 } 4297 4298 // If this is a vector initializer, '(' type ')' '(' init, ..., init ')' 4299 // then handle it as such. 4300 if (isVectorLiteral) 4301 return BuildVectorLiteral(LParenLoc, RParenLoc, CastExpr, castTInfo); 4302 4303 // If the Expr being casted is a ParenListExpr, handle it specially. 4304 // This is not an AltiVec-style cast, so turn the ParenListExpr into a 4305 // sequence of BinOp comma operators. 4306 if (isa<ParenListExpr>(CastExpr)) { 4307 ExprResult Result = MaybeConvertParenListExprToParenExpr(S, CastExpr); 4308 if (Result.isInvalid()) return ExprError(); 4309 CastExpr = Result.take(); 4310 } 4311 4312 return BuildCStyleCastExpr(LParenLoc, castTInfo, RParenLoc, CastExpr); 4313 } 4314 4315 ExprResult Sema::BuildVectorLiteral(SourceLocation LParenLoc, 4316 SourceLocation RParenLoc, Expr *E, 4317 TypeSourceInfo *TInfo) { 4318 assert((isa<ParenListExpr>(E) || isa<ParenExpr>(E)) && 4319 "Expected paren or paren list expression"); 4320 4321 Expr **exprs; 4322 unsigned numExprs; 4323 Expr *subExpr; 4324 if (ParenListExpr *PE = dyn_cast<ParenListExpr>(E)) { 4325 exprs = PE->getExprs(); 4326 numExprs = PE->getNumExprs(); 4327 } else { 4328 subExpr = cast<ParenExpr>(E)->getSubExpr(); 4329 exprs = &subExpr; 4330 numExprs = 1; 4331 } 4332 4333 QualType Ty = TInfo->getType(); 4334 assert(Ty->isVectorType() && "Expected vector type"); 4335 4336 SmallVector<Expr *, 8> initExprs; 4337 const VectorType *VTy = Ty->getAs<VectorType>(); 4338 unsigned numElems = Ty->getAs<VectorType>()->getNumElements(); 4339 4340 // '(...)' form of vector initialization in AltiVec: the number of 4341 // initializers must be one or must match the size of the vector. 4342 // If a single value is specified in the initializer then it will be 4343 // replicated to all the components of the vector 4344 if (VTy->getVectorKind() == VectorType::AltiVecVector) { 4345 // The number of initializers must be one or must match the size of the 4346 // vector. If a single value is specified in the initializer then it will 4347 // be replicated to all the components of the vector 4348 if (numExprs == 1) { 4349 QualType ElemTy = Ty->getAs<VectorType>()->getElementType(); 4350 ExprResult Literal = DefaultLvalueConversion(exprs[0]); 4351 if (Literal.isInvalid()) 4352 return ExprError(); 4353 Literal = ImpCastExprToType(Literal.take(), ElemTy, 4354 PrepareScalarCast(Literal, ElemTy)); 4355 return BuildCStyleCastExpr(LParenLoc, TInfo, RParenLoc, Literal.take()); 4356 } 4357 else if (numExprs < numElems) { 4358 Diag(E->getExprLoc(), 4359 diag::err_incorrect_number_of_vector_initializers); 4360 return ExprError(); 4361 } 4362 else 4363 for (unsigned i = 0, e = numExprs; i != e; ++i) 4364 initExprs.push_back(exprs[i]); 4365 } 4366 else { 4367 // For OpenCL, when the number of initializers is a single value, 4368 // it will be replicated to all components of the vector. 4369 if (getLangOptions().OpenCL && 4370 VTy->getVectorKind() == VectorType::GenericVector && 4371 numExprs == 1) { 4372 QualType ElemTy = Ty->getAs<VectorType>()->getElementType(); 4373 ExprResult Literal = DefaultLvalueConversion(exprs[0]); 4374 if (Literal.isInvalid()) 4375 return ExprError(); 4376 Literal = ImpCastExprToType(Literal.take(), ElemTy, 4377 PrepareScalarCast(Literal, ElemTy)); 4378 return BuildCStyleCastExpr(LParenLoc, TInfo, RParenLoc, Literal.take()); 4379 } 4380 4381 for (unsigned i = 0, e = numExprs; i != e; ++i) 4382 initExprs.push_back(exprs[i]); 4383 } 4384 // FIXME: This means that pretty-printing the final AST will produce curly 4385 // braces instead of the original commas. 4386 InitListExpr *initE = new (Context) InitListExpr(Context, LParenLoc, 4387 &initExprs[0], 4388 initExprs.size(), RParenLoc); 4389 initE->setType(Ty); 4390 return BuildCompoundLiteralExpr(LParenLoc, TInfo, RParenLoc, initE); 4391 } 4392 4393 /// This is not an AltiVec-style cast, so turn the ParenListExpr into a sequence 4394 /// of comma binary operators. 4395 ExprResult 4396 Sema::MaybeConvertParenListExprToParenExpr(Scope *S, Expr *OrigExpr) { 4397 ParenListExpr *E = dyn_cast<ParenListExpr>(OrigExpr); 4398 if (!E) 4399 return Owned(OrigExpr); 4400 4401 ExprResult Result(E->getExpr(0)); 4402 4403 for (unsigned i = 1, e = E->getNumExprs(); i != e && !Result.isInvalid(); ++i) 4404 Result = ActOnBinOp(S, E->getExprLoc(), tok::comma, Result.get(), 4405 E->getExpr(i)); 4406 4407 if (Result.isInvalid()) return ExprError(); 4408 4409 return ActOnParenExpr(E->getLParenLoc(), E->getRParenLoc(), Result.get()); 4410 } 4411 4412 ExprResult Sema::ActOnParenOrParenListExpr(SourceLocation L, 4413 SourceLocation R, 4414 MultiExprArg Val) { 4415 unsigned nexprs = Val.size(); 4416 Expr **exprs = reinterpret_cast<Expr**>(Val.release()); 4417 assert((exprs != 0) && "ActOnParenOrParenListExpr() missing expr list"); 4418 Expr *expr; 4419 if (nexprs == 1) 4420 expr = new (Context) ParenExpr(L, R, exprs[0]); 4421 else 4422 expr = new (Context) ParenListExpr(Context, L, exprs, nexprs, R, 4423 exprs[nexprs-1]->getType()); 4424 return Owned(expr); 4425 } 4426 4427 /// \brief Emit a specialized diagnostic when one expression is a null pointer 4428 /// constant and the other is not a pointer. Returns true if a diagnostic is 4429 /// emitted. 4430 bool Sema::DiagnoseConditionalForNull(Expr *LHSExpr, Expr *RHSExpr, 4431 SourceLocation QuestionLoc) { 4432 Expr *NullExpr = LHSExpr; 4433 Expr *NonPointerExpr = RHSExpr; 4434 Expr::NullPointerConstantKind NullKind = 4435 NullExpr->isNullPointerConstant(Context, 4436 Expr::NPC_ValueDependentIsNotNull); 4437 4438 if (NullKind == Expr::NPCK_NotNull) { 4439 NullExpr = RHSExpr; 4440 NonPointerExpr = LHSExpr; 4441 NullKind = 4442 NullExpr->isNullPointerConstant(Context, 4443 Expr::NPC_ValueDependentIsNotNull); 4444 } 4445 4446 if (NullKind == Expr::NPCK_NotNull) 4447 return false; 4448 4449 if (NullKind == Expr::NPCK_ZeroInteger) { 4450 // In this case, check to make sure that we got here from a "NULL" 4451 // string in the source code. 4452 NullExpr = NullExpr->IgnoreParenImpCasts(); 4453 SourceLocation loc = NullExpr->getExprLoc(); 4454 if (!findMacroSpelling(loc, "NULL")) 4455 return false; 4456 } 4457 4458 int DiagType = (NullKind == Expr::NPCK_CXX0X_nullptr); 4459 Diag(QuestionLoc, diag::err_typecheck_cond_incompatible_operands_null) 4460 << NonPointerExpr->getType() << DiagType 4461 << NonPointerExpr->getSourceRange(); 4462 return true; 4463 } 4464 4465 /// \brief Return false if the condition expression is valid, true otherwise. 4466 static bool checkCondition(Sema &S, Expr *Cond) { 4467 QualType CondTy = Cond->getType(); 4468 4469 // C99 6.5.15p2 4470 if (CondTy->isScalarType()) return false; 4471 4472 // OpenCL: Sec 6.3.i says the condition is allowed to be a vector or scalar. 4473 if (S.getLangOptions().OpenCL && CondTy->isVectorType()) 4474 return false; 4475 4476 // Emit the proper error message. 4477 S.Diag(Cond->getLocStart(), S.getLangOptions().OpenCL ? 4478 diag::err_typecheck_cond_expect_scalar : 4479 diag::err_typecheck_cond_expect_scalar_or_vector) 4480 << CondTy; 4481 return true; 4482 } 4483 4484 /// \brief Return false if the two expressions can be converted to a vector, 4485 /// true otherwise 4486 static bool checkConditionalConvertScalarsToVectors(Sema &S, ExprResult &LHS, 4487 ExprResult &RHS, 4488 QualType CondTy) { 4489 // Both operands should be of scalar type. 4490 if (!LHS.get()->getType()->isScalarType()) { 4491 S.Diag(LHS.get()->getLocStart(), diag::err_typecheck_cond_expect_scalar) 4492 << CondTy; 4493 return true; 4494 } 4495 if (!RHS.get()->getType()->isScalarType()) { 4496 S.Diag(RHS.get()->getLocStart(), diag::err_typecheck_cond_expect_scalar) 4497 << CondTy; 4498 return true; 4499 } 4500 4501 // Implicity convert these scalars to the type of the condition. 4502 LHS = S.ImpCastExprToType(LHS.take(), CondTy, CK_IntegralCast); 4503 RHS = S.ImpCastExprToType(RHS.take(), CondTy, CK_IntegralCast); 4504 return false; 4505 } 4506 4507 /// \brief Handle when one or both operands are void type. 4508 static QualType checkConditionalVoidType(Sema &S, ExprResult &LHS, 4509 ExprResult &RHS) { 4510 Expr *LHSExpr = LHS.get(); 4511 Expr *RHSExpr = RHS.get(); 4512 4513 if (!LHSExpr->getType()->isVoidType()) 4514 S.Diag(RHSExpr->getLocStart(), diag::ext_typecheck_cond_one_void) 4515 << RHSExpr->getSourceRange(); 4516 if (!RHSExpr->getType()->isVoidType()) 4517 S.Diag(LHSExpr->getLocStart(), diag::ext_typecheck_cond_one_void) 4518 << LHSExpr->getSourceRange(); 4519 LHS = S.ImpCastExprToType(LHS.take(), S.Context.VoidTy, CK_ToVoid); 4520 RHS = S.ImpCastExprToType(RHS.take(), S.Context.VoidTy, CK_ToVoid); 4521 return S.Context.VoidTy; 4522 } 4523 4524 /// \brief Return false if the NullExpr can be promoted to PointerTy, 4525 /// true otherwise. 4526 static bool checkConditionalNullPointer(Sema &S, ExprResult &NullExpr, 4527 QualType PointerTy) { 4528 if ((!PointerTy->isAnyPointerType() && !PointerTy->isBlockPointerType()) || 4529 !NullExpr.get()->isNullPointerConstant(S.Context, 4530 Expr::NPC_ValueDependentIsNull)) 4531 return true; 4532 4533 NullExpr = S.ImpCastExprToType(NullExpr.take(), PointerTy, CK_NullToPointer); 4534 return false; 4535 } 4536 4537 /// \brief Checks compatibility between two pointers and return the resulting 4538 /// type. 4539 static QualType checkConditionalPointerCompatibility(Sema &S, ExprResult &LHS, 4540 ExprResult &RHS, 4541 SourceLocation Loc) { 4542 QualType LHSTy = LHS.get()->getType(); 4543 QualType RHSTy = RHS.get()->getType(); 4544 4545 if (S.Context.hasSameType(LHSTy, RHSTy)) { 4546 // Two identical pointers types are always compatible. 4547 return LHSTy; 4548 } 4549 4550 QualType lhptee, rhptee; 4551 4552 // Get the pointee types. 4553 if (const BlockPointerType *LHSBTy = LHSTy->getAs<BlockPointerType>()) { 4554 lhptee = LHSBTy->getPointeeType(); 4555 rhptee = RHSTy->castAs<BlockPointerType>()->getPointeeType(); 4556 } else { 4557 lhptee = LHSTy->castAs<PointerType>()->getPointeeType(); 4558 rhptee = RHSTy->castAs<PointerType>()->getPointeeType(); 4559 } 4560 4561 if (!S.Context.typesAreCompatible(lhptee.getUnqualifiedType(), 4562 rhptee.getUnqualifiedType())) { 4563 S.Diag(Loc, diag::warn_typecheck_cond_incompatible_pointers) 4564 << LHSTy << RHSTy << LHS.get()->getSourceRange() 4565 << RHS.get()->getSourceRange(); 4566 // In this situation, we assume void* type. No especially good 4567 // reason, but this is what gcc does, and we do have to pick 4568 // to get a consistent AST. 4569 QualType incompatTy = S.Context.getPointerType(S.Context.VoidTy); 4570 LHS = S.ImpCastExprToType(LHS.take(), incompatTy, CK_BitCast); 4571 RHS = S.ImpCastExprToType(RHS.take(), incompatTy, CK_BitCast); 4572 return incompatTy; 4573 } 4574 4575 // The pointer types are compatible. 4576 // C99 6.5.15p6: If both operands are pointers to compatible types *or* to 4577 // differently qualified versions of compatible types, the result type is 4578 // a pointer to an appropriately qualified version of the *composite* 4579 // type. 4580 // FIXME: Need to calculate the composite type. 4581 // FIXME: Need to add qualifiers 4582 4583 LHS = S.ImpCastExprToType(LHS.take(), LHSTy, CK_BitCast); 4584 RHS = S.ImpCastExprToType(RHS.take(), LHSTy, CK_BitCast); 4585 return LHSTy; 4586 } 4587 4588 /// \brief Return the resulting type when the operands are both block pointers. 4589 static QualType checkConditionalBlockPointerCompatibility(Sema &S, 4590 ExprResult &LHS, 4591 ExprResult &RHS, 4592 SourceLocation Loc) { 4593 QualType LHSTy = LHS.get()->getType(); 4594 QualType RHSTy = RHS.get()->getType(); 4595 4596 if (!LHSTy->isBlockPointerType() || !RHSTy->isBlockPointerType()) { 4597 if (LHSTy->isVoidPointerType() || RHSTy->isVoidPointerType()) { 4598 QualType destType = S.Context.getPointerType(S.Context.VoidTy); 4599 LHS = S.ImpCastExprToType(LHS.take(), destType, CK_BitCast); 4600 RHS = S.ImpCastExprToType(RHS.take(), destType, CK_BitCast); 4601 return destType; 4602 } 4603 S.Diag(Loc, diag::err_typecheck_cond_incompatible_operands) 4604 << LHSTy << RHSTy << LHS.get()->getSourceRange() 4605 << RHS.get()->getSourceRange(); 4606 return QualType(); 4607 } 4608 4609 // We have 2 block pointer types. 4610 return checkConditionalPointerCompatibility(S, LHS, RHS, Loc); 4611 } 4612 4613 /// \brief Return the resulting type when the operands are both pointers. 4614 static QualType 4615 checkConditionalObjectPointersCompatibility(Sema &S, ExprResult &LHS, 4616 ExprResult &RHS, 4617 SourceLocation Loc) { 4618 // get the pointer types 4619 QualType LHSTy = LHS.get()->getType(); 4620 QualType RHSTy = RHS.get()->getType(); 4621 4622 // get the "pointed to" types 4623 QualType lhptee = LHSTy->getAs<PointerType>()->getPointeeType(); 4624 QualType rhptee = RHSTy->getAs<PointerType>()->getPointeeType(); 4625 4626 // ignore qualifiers on void (C99 6.5.15p3, clause 6) 4627 if (lhptee->isVoidType() && rhptee->isIncompleteOrObjectType()) { 4628 // Figure out necessary qualifiers (C99 6.5.15p6) 4629 QualType destPointee 4630 = S.Context.getQualifiedType(lhptee, rhptee.getQualifiers()); 4631 QualType destType = S.Context.getPointerType(destPointee); 4632 // Add qualifiers if necessary. 4633 LHS = S.ImpCastExprToType(LHS.take(), destType, CK_NoOp); 4634 // Promote to void*. 4635 RHS = S.ImpCastExprToType(RHS.take(), destType, CK_BitCast); 4636 return destType; 4637 } 4638 if (rhptee->isVoidType() && lhptee->isIncompleteOrObjectType()) { 4639 QualType destPointee 4640 = S.Context.getQualifiedType(rhptee, lhptee.getQualifiers()); 4641 QualType destType = S.Context.getPointerType(destPointee); 4642 // Add qualifiers if necessary. 4643 RHS = S.ImpCastExprToType(RHS.take(), destType, CK_NoOp); 4644 // Promote to void*. 4645 LHS = S.ImpCastExprToType(LHS.take(), destType, CK_BitCast); 4646 return destType; 4647 } 4648 4649 return checkConditionalPointerCompatibility(S, LHS, RHS, Loc); 4650 } 4651 4652 /// \brief Return false if the first expression is not an integer and the second 4653 /// expression is not a pointer, true otherwise. 4654 static bool checkPointerIntegerMismatch(Sema &S, ExprResult &Int, 4655 Expr* PointerExpr, SourceLocation Loc, 4656 bool IsIntFirstExpr) { 4657 if (!PointerExpr->getType()->isPointerType() || 4658 !Int.get()->getType()->isIntegerType()) 4659 return false; 4660 4661 Expr *Expr1 = IsIntFirstExpr ? Int.get() : PointerExpr; 4662 Expr *Expr2 = IsIntFirstExpr ? PointerExpr : Int.get(); 4663 4664 S.Diag(Loc, diag::warn_typecheck_cond_pointer_integer_mismatch) 4665 << Expr1->getType() << Expr2->getType() 4666 << Expr1->getSourceRange() << Expr2->getSourceRange(); 4667 Int = S.ImpCastExprToType(Int.take(), PointerExpr->getType(), 4668 CK_IntegralToPointer); 4669 return true; 4670 } 4671 4672 /// Note that LHS is not null here, even if this is the gnu "x ?: y" extension. 4673 /// In that case, LHS = cond. 4674 /// C99 6.5.15 4675 QualType Sema::CheckConditionalOperands(ExprResult &Cond, ExprResult &LHS, 4676 ExprResult &RHS, ExprValueKind &VK, 4677 ExprObjectKind &OK, 4678 SourceLocation QuestionLoc) { 4679 4680 ExprResult LHSResult = CheckPlaceholderExpr(LHS.get()); 4681 if (!LHSResult.isUsable()) return QualType(); 4682 LHS = move(LHSResult); 4683 4684 ExprResult RHSResult = CheckPlaceholderExpr(RHS.get()); 4685 if (!RHSResult.isUsable()) return QualType(); 4686 RHS = move(RHSResult); 4687 4688 // C++ is sufficiently different to merit its own checker. 4689 if (getLangOptions().CPlusPlus) 4690 return CXXCheckConditionalOperands(Cond, LHS, RHS, VK, OK, QuestionLoc); 4691 4692 VK = VK_RValue; 4693 OK = OK_Ordinary; 4694 4695 Cond = UsualUnaryConversions(Cond.take()); 4696 if (Cond.isInvalid()) 4697 return QualType(); 4698 LHS = UsualUnaryConversions(LHS.take()); 4699 if (LHS.isInvalid()) 4700 return QualType(); 4701 RHS = UsualUnaryConversions(RHS.take()); 4702 if (RHS.isInvalid()) 4703 return QualType(); 4704 4705 QualType CondTy = Cond.get()->getType(); 4706 QualType LHSTy = LHS.get()->getType(); 4707 QualType RHSTy = RHS.get()->getType(); 4708 4709 // first, check the condition. 4710 if (checkCondition(*this, Cond.get())) 4711 return QualType(); 4712 4713 // Now check the two expressions. 4714 if (LHSTy->isVectorType() || RHSTy->isVectorType()) 4715 return CheckVectorOperands(LHS, RHS, QuestionLoc, /*isCompAssign*/false); 4716 4717 // OpenCL: If the condition is a vector, and both operands are scalar, 4718 // attempt to implicity convert them to the vector type to act like the 4719 // built in select. 4720 if (getLangOptions().OpenCL && CondTy->isVectorType()) 4721 if (checkConditionalConvertScalarsToVectors(*this, LHS, RHS, CondTy)) 4722 return QualType(); 4723 4724 // If both operands have arithmetic type, do the usual arithmetic conversions 4725 // to find a common type: C99 6.5.15p3,5. 4726 if (LHSTy->isArithmeticType() && RHSTy->isArithmeticType()) { 4727 UsualArithmeticConversions(LHS, RHS); 4728 if (LHS.isInvalid() || RHS.isInvalid()) 4729 return QualType(); 4730 return LHS.get()->getType(); 4731 } 4732 4733 // If both operands are the same structure or union type, the result is that 4734 // type. 4735 if (const RecordType *LHSRT = LHSTy->getAs<RecordType>()) { // C99 6.5.15p3 4736 if (const RecordType *RHSRT = RHSTy->getAs<RecordType>()) 4737 if (LHSRT->getDecl() == RHSRT->getDecl()) 4738 // "If both the operands have structure or union type, the result has 4739 // that type." This implies that CV qualifiers are dropped. 4740 return LHSTy.getUnqualifiedType(); 4741 // FIXME: Type of conditional expression must be complete in C mode. 4742 } 4743 4744 // C99 6.5.15p5: "If both operands have void type, the result has void type." 4745 // The following || allows only one side to be void (a GCC-ism). 4746 if (LHSTy->isVoidType() || RHSTy->isVoidType()) { 4747 return checkConditionalVoidType(*this, LHS, RHS); 4748 } 4749 4750 // C99 6.5.15p6 - "if one operand is a null pointer constant, the result has 4751 // the type of the other operand." 4752 if (!checkConditionalNullPointer(*this, RHS, LHSTy)) return LHSTy; 4753 if (!checkConditionalNullPointer(*this, LHS, RHSTy)) return RHSTy; 4754 4755 // All objective-c pointer type analysis is done here. 4756 QualType compositeType = FindCompositeObjCPointerType(LHS, RHS, 4757 QuestionLoc); 4758 if (LHS.isInvalid() || RHS.isInvalid()) 4759 return QualType(); 4760 if (!compositeType.isNull()) 4761 return compositeType; 4762 4763 4764 // Handle block pointer types. 4765 if (LHSTy->isBlockPointerType() || RHSTy->isBlockPointerType()) 4766 return checkConditionalBlockPointerCompatibility(*this, LHS, RHS, 4767 QuestionLoc); 4768 4769 // Check constraints for C object pointers types (C99 6.5.15p3,6). 4770 if (LHSTy->isPointerType() && RHSTy->isPointerType()) 4771 return checkConditionalObjectPointersCompatibility(*this, LHS, RHS, 4772 QuestionLoc); 4773 4774 // GCC compatibility: soften pointer/integer mismatch. Note that 4775 // null pointers have been filtered out by this point. 4776 if (checkPointerIntegerMismatch(*this, LHS, RHS.get(), QuestionLoc, 4777 /*isIntFirstExpr=*/true)) 4778 return RHSTy; 4779 if (checkPointerIntegerMismatch(*this, RHS, LHS.get(), QuestionLoc, 4780 /*isIntFirstExpr=*/false)) 4781 return LHSTy; 4782 4783 // Emit a better diagnostic if one of the expressions is a null pointer 4784 // constant and the other is not a pointer type. In this case, the user most 4785 // likely forgot to take the address of the other expression. 4786 if (DiagnoseConditionalForNull(LHS.get(), RHS.get(), QuestionLoc)) 4787 return QualType(); 4788 4789 // Otherwise, the operands are not compatible. 4790 Diag(QuestionLoc, diag::err_typecheck_cond_incompatible_operands) 4791 << LHSTy << RHSTy << LHS.get()->getSourceRange() 4792 << RHS.get()->getSourceRange(); 4793 return QualType(); 4794 } 4795 4796 /// FindCompositeObjCPointerType - Helper method to find composite type of 4797 /// two objective-c pointer types of the two input expressions. 4798 QualType Sema::FindCompositeObjCPointerType(ExprResult &LHS, ExprResult &RHS, 4799 SourceLocation QuestionLoc) { 4800 QualType LHSTy = LHS.get()->getType(); 4801 QualType RHSTy = RHS.get()->getType(); 4802 4803 // Handle things like Class and struct objc_class*. Here we case the result 4804 // to the pseudo-builtin, because that will be implicitly cast back to the 4805 // redefinition type if an attempt is made to access its fields. 4806 if (LHSTy->isObjCClassType() && 4807 (Context.hasSameType(RHSTy, Context.getObjCClassRedefinitionType()))) { 4808 RHS = ImpCastExprToType(RHS.take(), LHSTy, CK_CPointerToObjCPointerCast); 4809 return LHSTy; 4810 } 4811 if (RHSTy->isObjCClassType() && 4812 (Context.hasSameType(LHSTy, Context.getObjCClassRedefinitionType()))) { 4813 LHS = ImpCastExprToType(LHS.take(), RHSTy, CK_CPointerToObjCPointerCast); 4814 return RHSTy; 4815 } 4816 // And the same for struct objc_object* / id 4817 if (LHSTy->isObjCIdType() && 4818 (Context.hasSameType(RHSTy, Context.getObjCIdRedefinitionType()))) { 4819 RHS = ImpCastExprToType(RHS.take(), LHSTy, CK_CPointerToObjCPointerCast); 4820 return LHSTy; 4821 } 4822 if (RHSTy->isObjCIdType() && 4823 (Context.hasSameType(LHSTy, Context.getObjCIdRedefinitionType()))) { 4824 LHS = ImpCastExprToType(LHS.take(), RHSTy, CK_CPointerToObjCPointerCast); 4825 return RHSTy; 4826 } 4827 // And the same for struct objc_selector* / SEL 4828 if (Context.isObjCSelType(LHSTy) && 4829 (Context.hasSameType(RHSTy, Context.getObjCSelRedefinitionType()))) { 4830 RHS = ImpCastExprToType(RHS.take(), LHSTy, CK_BitCast); 4831 return LHSTy; 4832 } 4833 if (Context.isObjCSelType(RHSTy) && 4834 (Context.hasSameType(LHSTy, Context.getObjCSelRedefinitionType()))) { 4835 LHS = ImpCastExprToType(LHS.take(), RHSTy, CK_BitCast); 4836 return RHSTy; 4837 } 4838 // Check constraints for Objective-C object pointers types. 4839 if (LHSTy->isObjCObjectPointerType() && RHSTy->isObjCObjectPointerType()) { 4840 4841 if (Context.getCanonicalType(LHSTy) == Context.getCanonicalType(RHSTy)) { 4842 // Two identical object pointer types are always compatible. 4843 return LHSTy; 4844 } 4845 const ObjCObjectPointerType *LHSOPT = LHSTy->castAs<ObjCObjectPointerType>(); 4846 const ObjCObjectPointerType *RHSOPT = RHSTy->castAs<ObjCObjectPointerType>(); 4847 QualType compositeType = LHSTy; 4848 4849 // If both operands are interfaces and either operand can be 4850 // assigned to the other, use that type as the composite 4851 // type. This allows 4852 // xxx ? (A*) a : (B*) b 4853 // where B is a subclass of A. 4854 // 4855 // Additionally, as for assignment, if either type is 'id' 4856 // allow silent coercion. Finally, if the types are 4857 // incompatible then make sure to use 'id' as the composite 4858 // type so the result is acceptable for sending messages to. 4859 4860 // FIXME: Consider unifying with 'areComparableObjCPointerTypes'. 4861 // It could return the composite type. 4862 if (Context.canAssignObjCInterfaces(LHSOPT, RHSOPT)) { 4863 compositeType = RHSOPT->isObjCBuiltinType() ? RHSTy : LHSTy; 4864 } else if (Context.canAssignObjCInterfaces(RHSOPT, LHSOPT)) { 4865 compositeType = LHSOPT->isObjCBuiltinType() ? LHSTy : RHSTy; 4866 } else if ((LHSTy->isObjCQualifiedIdType() || 4867 RHSTy->isObjCQualifiedIdType()) && 4868 Context.ObjCQualifiedIdTypesAreCompatible(LHSTy, RHSTy, true)) { 4869 // Need to handle "id<xx>" explicitly. 4870 // GCC allows qualified id and any Objective-C type to devolve to 4871 // id. Currently localizing to here until clear this should be 4872 // part of ObjCQualifiedIdTypesAreCompatible. 4873 compositeType = Context.getObjCIdType(); 4874 } else if (LHSTy->isObjCIdType() || RHSTy->isObjCIdType()) { 4875 compositeType = Context.getObjCIdType(); 4876 } else if (!(compositeType = 4877 Context.areCommonBaseCompatible(LHSOPT, RHSOPT)).isNull()) 4878 ; 4879 else { 4880 Diag(QuestionLoc, diag::ext_typecheck_cond_incompatible_operands) 4881 << LHSTy << RHSTy 4882 << LHS.get()->getSourceRange() << RHS.get()->getSourceRange(); 4883 QualType incompatTy = Context.getObjCIdType(); 4884 LHS = ImpCastExprToType(LHS.take(), incompatTy, CK_BitCast); 4885 RHS = ImpCastExprToType(RHS.take(), incompatTy, CK_BitCast); 4886 return incompatTy; 4887 } 4888 // The object pointer types are compatible. 4889 LHS = ImpCastExprToType(LHS.take(), compositeType, CK_BitCast); 4890 RHS = ImpCastExprToType(RHS.take(), compositeType, CK_BitCast); 4891 return compositeType; 4892 } 4893 // Check Objective-C object pointer types and 'void *' 4894 if (LHSTy->isVoidPointerType() && RHSTy->isObjCObjectPointerType()) { 4895 QualType lhptee = LHSTy->getAs<PointerType>()->getPointeeType(); 4896 QualType rhptee = RHSTy->getAs<ObjCObjectPointerType>()->getPointeeType(); 4897 QualType destPointee 4898 = Context.getQualifiedType(lhptee, rhptee.getQualifiers()); 4899 QualType destType = Context.getPointerType(destPointee); 4900 // Add qualifiers if necessary. 4901 LHS = ImpCastExprToType(LHS.take(), destType, CK_NoOp); 4902 // Promote to void*. 4903 RHS = ImpCastExprToType(RHS.take(), destType, CK_BitCast); 4904 return destType; 4905 } 4906 if (LHSTy->isObjCObjectPointerType() && RHSTy->isVoidPointerType()) { 4907 QualType lhptee = LHSTy->getAs<ObjCObjectPointerType>()->getPointeeType(); 4908 QualType rhptee = RHSTy->getAs<PointerType>()->getPointeeType(); 4909 QualType destPointee 4910 = Context.getQualifiedType(rhptee, lhptee.getQualifiers()); 4911 QualType destType = Context.getPointerType(destPointee); 4912 // Add qualifiers if necessary. 4913 RHS = ImpCastExprToType(RHS.take(), destType, CK_NoOp); 4914 // Promote to void*. 4915 LHS = ImpCastExprToType(LHS.take(), destType, CK_BitCast); 4916 return destType; 4917 } 4918 return QualType(); 4919 } 4920 4921 /// SuggestParentheses - Emit a note with a fixit hint that wraps 4922 /// ParenRange in parentheses. 4923 static void SuggestParentheses(Sema &Self, SourceLocation Loc, 4924 const PartialDiagnostic &Note, 4925 SourceRange ParenRange) { 4926 SourceLocation EndLoc = Self.PP.getLocForEndOfToken(ParenRange.getEnd()); 4927 if (ParenRange.getBegin().isFileID() && ParenRange.getEnd().isFileID() && 4928 EndLoc.isValid()) { 4929 Self.Diag(Loc, Note) 4930 << FixItHint::CreateInsertion(ParenRange.getBegin(), "(") 4931 << FixItHint::CreateInsertion(EndLoc, ")"); 4932 } else { 4933 // We can't display the parentheses, so just show the bare note. 4934 Self.Diag(Loc, Note) << ParenRange; 4935 } 4936 } 4937 4938 static bool IsArithmeticOp(BinaryOperatorKind Opc) { 4939 return Opc >= BO_Mul && Opc <= BO_Shr; 4940 } 4941 4942 /// IsArithmeticBinaryExpr - Returns true if E is an arithmetic binary 4943 /// expression, either using a built-in or overloaded operator, 4944 /// and sets *OpCode to the opcode and *RHSExprs to the right-hand side 4945 /// expression. 4946 static bool IsArithmeticBinaryExpr(Expr *E, BinaryOperatorKind *Opcode, 4947 Expr **RHSExprs) { 4948 // Don't strip parenthesis: we should not warn if E is in parenthesis. 4949 E = E->IgnoreImpCasts(); 4950 E = E->IgnoreConversionOperator(); 4951 E = E->IgnoreImpCasts(); 4952 4953 // Built-in binary operator. 4954 if (BinaryOperator *OP = dyn_cast<BinaryOperator>(E)) { 4955 if (IsArithmeticOp(OP->getOpcode())) { 4956 *Opcode = OP->getOpcode(); 4957 *RHSExprs = OP->getRHS(); 4958 return true; 4959 } 4960 } 4961 4962 // Overloaded operator. 4963 if (CXXOperatorCallExpr *Call = dyn_cast<CXXOperatorCallExpr>(E)) { 4964 if (Call->getNumArgs() != 2) 4965 return false; 4966 4967 // Make sure this is really a binary operator that is safe to pass into 4968 // BinaryOperator::getOverloadedOpcode(), e.g. it's not a subscript op. 4969 OverloadedOperatorKind OO = Call->getOperator(); 4970 if (OO < OO_Plus || OO > OO_Arrow) 4971 return false; 4972 4973 BinaryOperatorKind OpKind = BinaryOperator::getOverloadedOpcode(OO); 4974 if (IsArithmeticOp(OpKind)) { 4975 *Opcode = OpKind; 4976 *RHSExprs = Call->getArg(1); 4977 return true; 4978 } 4979 } 4980 4981 return false; 4982 } 4983 4984 static bool IsLogicOp(BinaryOperatorKind Opc) { 4985 return (Opc >= BO_LT && Opc <= BO_NE) || (Opc >= BO_LAnd && Opc <= BO_LOr); 4986 } 4987 4988 /// ExprLooksBoolean - Returns true if E looks boolean, i.e. it has boolean type 4989 /// or is a logical expression such as (x==y) which has int type, but is 4990 /// commonly interpreted as boolean. 4991 static bool ExprLooksBoolean(Expr *E) { 4992 E = E->IgnoreParenImpCasts(); 4993 4994 if (E->getType()->isBooleanType()) 4995 return true; 4996 if (BinaryOperator *OP = dyn_cast<BinaryOperator>(E)) 4997 return IsLogicOp(OP->getOpcode()); 4998 if (UnaryOperator *OP = dyn_cast<UnaryOperator>(E)) 4999 return OP->getOpcode() == UO_LNot; 5000 5001 return false; 5002 } 5003 5004 /// DiagnoseConditionalPrecedence - Emit a warning when a conditional operator 5005 /// and binary operator are mixed in a way that suggests the programmer assumed 5006 /// the conditional operator has higher precedence, for example: 5007 /// "int x = a + someBinaryCondition ? 1 : 2". 5008 static void DiagnoseConditionalPrecedence(Sema &Self, 5009 SourceLocation OpLoc, 5010 Expr *Condition, 5011 Expr *LHSExpr, 5012 Expr *RHSExpr) { 5013 BinaryOperatorKind CondOpcode; 5014 Expr *CondRHS; 5015 5016 if (!IsArithmeticBinaryExpr(Condition, &CondOpcode, &CondRHS)) 5017 return; 5018 if (!ExprLooksBoolean(CondRHS)) 5019 return; 5020 5021 // The condition is an arithmetic binary expression, with a right- 5022 // hand side that looks boolean, so warn. 5023 5024 Self.Diag(OpLoc, diag::warn_precedence_conditional) 5025 << Condition->getSourceRange() 5026 << BinaryOperator::getOpcodeStr(CondOpcode); 5027 5028 SuggestParentheses(Self, OpLoc, 5029 Self.PDiag(diag::note_precedence_conditional_silence) 5030 << BinaryOperator::getOpcodeStr(CondOpcode), 5031 SourceRange(Condition->getLocStart(), Condition->getLocEnd())); 5032 5033 SuggestParentheses(Self, OpLoc, 5034 Self.PDiag(diag::note_precedence_conditional_first), 5035 SourceRange(CondRHS->getLocStart(), RHSExpr->getLocEnd())); 5036 } 5037 5038 /// ActOnConditionalOp - Parse a ?: operation. Note that 'LHS' may be null 5039 /// in the case of a the GNU conditional expr extension. 5040 ExprResult Sema::ActOnConditionalOp(SourceLocation QuestionLoc, 5041 SourceLocation ColonLoc, 5042 Expr *CondExpr, Expr *LHSExpr, 5043 Expr *RHSExpr) { 5044 // If this is the gnu "x ?: y" extension, analyze the types as though the LHS 5045 // was the condition. 5046 OpaqueValueExpr *opaqueValue = 0; 5047 Expr *commonExpr = 0; 5048 if (LHSExpr == 0) { 5049 commonExpr = CondExpr; 5050 5051 // We usually want to apply unary conversions *before* saving, except 5052 // in the special case of a C++ l-value conditional. 5053 if (!(getLangOptions().CPlusPlus 5054 && !commonExpr->isTypeDependent() 5055 && commonExpr->getValueKind() == RHSExpr->getValueKind() 5056 && commonExpr->isGLValue() 5057 && commonExpr->isOrdinaryOrBitFieldObject() 5058 && RHSExpr->isOrdinaryOrBitFieldObject() 5059 && Context.hasSameType(commonExpr->getType(), RHSExpr->getType()))) { 5060 ExprResult commonRes = UsualUnaryConversions(commonExpr); 5061 if (commonRes.isInvalid()) 5062 return ExprError(); 5063 commonExpr = commonRes.take(); 5064 } 5065 5066 opaqueValue = new (Context) OpaqueValueExpr(commonExpr->getExprLoc(), 5067 commonExpr->getType(), 5068 commonExpr->getValueKind(), 5069 commonExpr->getObjectKind()); 5070 LHSExpr = CondExpr = opaqueValue; 5071 } 5072 5073 ExprValueKind VK = VK_RValue; 5074 ExprObjectKind OK = OK_Ordinary; 5075 ExprResult Cond = Owned(CondExpr), LHS = Owned(LHSExpr), RHS = Owned(RHSExpr); 5076 QualType result = CheckConditionalOperands(Cond, LHS, RHS, 5077 VK, OK, QuestionLoc); 5078 if (result.isNull() || Cond.isInvalid() || LHS.isInvalid() || 5079 RHS.isInvalid()) 5080 return ExprError(); 5081 5082 DiagnoseConditionalPrecedence(*this, QuestionLoc, Cond.get(), LHS.get(), 5083 RHS.get()); 5084 5085 if (!commonExpr) 5086 return Owned(new (Context) ConditionalOperator(Cond.take(), QuestionLoc, 5087 LHS.take(), ColonLoc, 5088 RHS.take(), result, VK, OK)); 5089 5090 return Owned(new (Context) 5091 BinaryConditionalOperator(commonExpr, opaqueValue, Cond.take(), LHS.take(), 5092 RHS.take(), QuestionLoc, ColonLoc, result, VK, 5093 OK)); 5094 } 5095 5096 // checkPointerTypesForAssignment - This is a very tricky routine (despite 5097 // being closely modeled after the C99 spec:-). The odd characteristic of this 5098 // routine is it effectively iqnores the qualifiers on the top level pointee. 5099 // This circumvents the usual type rules specified in 6.2.7p1 & 6.7.5.[1-3]. 5100 // FIXME: add a couple examples in this comment. 5101 static Sema::AssignConvertType 5102 checkPointerTypesForAssignment(Sema &S, QualType LHSType, QualType RHSType) { 5103 assert(LHSType.isCanonical() && "LHS not canonicalized!"); 5104 assert(RHSType.isCanonical() && "RHS not canonicalized!"); 5105 5106 // get the "pointed to" type (ignoring qualifiers at the top level) 5107 const Type *lhptee, *rhptee; 5108 Qualifiers lhq, rhq; 5109 llvm::tie(lhptee, lhq) = cast<PointerType>(LHSType)->getPointeeType().split(); 5110 llvm::tie(rhptee, rhq) = cast<PointerType>(RHSType)->getPointeeType().split(); 5111 5112 Sema::AssignConvertType ConvTy = Sema::Compatible; 5113 5114 // C99 6.5.16.1p1: This following citation is common to constraints 5115 // 3 & 4 (below). ...and the type *pointed to* by the left has all the 5116 // qualifiers of the type *pointed to* by the right; 5117 Qualifiers lq; 5118 5119 // As a special case, 'non-__weak A *' -> 'non-__weak const *' is okay. 5120 if (lhq.getObjCLifetime() != rhq.getObjCLifetime() && 5121 lhq.compatiblyIncludesObjCLifetime(rhq)) { 5122 // Ignore lifetime for further calculation. 5123 lhq.removeObjCLifetime(); 5124 rhq.removeObjCLifetime(); 5125 } 5126 5127 if (!lhq.compatiblyIncludes(rhq)) { 5128 // Treat address-space mismatches as fatal. TODO: address subspaces 5129 if (lhq.getAddressSpace() != rhq.getAddressSpace()) 5130 ConvTy = Sema::IncompatiblePointerDiscardsQualifiers; 5131 5132 // It's okay to add or remove GC or lifetime qualifiers when converting to 5133 // and from void*. 5134 else if (lhq.withoutObjCGCAttr().withoutObjCGLifetime() 5135 .compatiblyIncludes( 5136 rhq.withoutObjCGCAttr().withoutObjCGLifetime()) 5137 && (lhptee->isVoidType() || rhptee->isVoidType())) 5138 ; // keep old 5139 5140 // Treat lifetime mismatches as fatal. 5141 else if (lhq.getObjCLifetime() != rhq.getObjCLifetime()) 5142 ConvTy = Sema::IncompatiblePointerDiscardsQualifiers; 5143 5144 // For GCC compatibility, other qualifier mismatches are treated 5145 // as still compatible in C. 5146 else ConvTy = Sema::CompatiblePointerDiscardsQualifiers; 5147 } 5148 5149 // C99 6.5.16.1p1 (constraint 4): If one operand is a pointer to an object or 5150 // incomplete type and the other is a pointer to a qualified or unqualified 5151 // version of void... 5152 if (lhptee->isVoidType()) { 5153 if (rhptee->isIncompleteOrObjectType()) 5154 return ConvTy; 5155 5156 // As an extension, we allow cast to/from void* to function pointer. 5157 assert(rhptee->isFunctionType()); 5158 return Sema::FunctionVoidPointer; 5159 } 5160 5161 if (rhptee->isVoidType()) { 5162 if (lhptee->isIncompleteOrObjectType()) 5163 return ConvTy; 5164 5165 // As an extension, we allow cast to/from void* to function pointer. 5166 assert(lhptee->isFunctionType()); 5167 return Sema::FunctionVoidPointer; 5168 } 5169 5170 // C99 6.5.16.1p1 (constraint 3): both operands are pointers to qualified or 5171 // unqualified versions of compatible types, ... 5172 QualType ltrans = QualType(lhptee, 0), rtrans = QualType(rhptee, 0); 5173 if (!S.Context.typesAreCompatible(ltrans, rtrans)) { 5174 // Check if the pointee types are compatible ignoring the sign. 5175 // We explicitly check for char so that we catch "char" vs 5176 // "unsigned char" on systems where "char" is unsigned. 5177 if (lhptee->isCharType()) 5178 ltrans = S.Context.UnsignedCharTy; 5179 else if (lhptee->hasSignedIntegerRepresentation()) 5180 ltrans = S.Context.getCorrespondingUnsignedType(ltrans); 5181 5182 if (rhptee->isCharType()) 5183 rtrans = S.Context.UnsignedCharTy; 5184 else if (rhptee->hasSignedIntegerRepresentation()) 5185 rtrans = S.Context.getCorrespondingUnsignedType(rtrans); 5186 5187 if (ltrans == rtrans) { 5188 // Types are compatible ignoring the sign. Qualifier incompatibility 5189 // takes priority over sign incompatibility because the sign 5190 // warning can be disabled. 5191 if (ConvTy != Sema::Compatible) 5192 return ConvTy; 5193 5194 return Sema::IncompatiblePointerSign; 5195 } 5196 5197 // If we are a multi-level pointer, it's possible that our issue is simply 5198 // one of qualification - e.g. char ** -> const char ** is not allowed. If 5199 // the eventual target type is the same and the pointers have the same 5200 // level of indirection, this must be the issue. 5201 if (isa<PointerType>(lhptee) && isa<PointerType>(rhptee)) { 5202 do { 5203 lhptee = cast<PointerType>(lhptee)->getPointeeType().getTypePtr(); 5204 rhptee = cast<PointerType>(rhptee)->getPointeeType().getTypePtr(); 5205 } while (isa<PointerType>(lhptee) && isa<PointerType>(rhptee)); 5206 5207 if (lhptee == rhptee) 5208 return Sema::IncompatibleNestedPointerQualifiers; 5209 } 5210 5211 // General pointer incompatibility takes priority over qualifiers. 5212 return Sema::IncompatiblePointer; 5213 } 5214 if (!S.getLangOptions().CPlusPlus && 5215 S.IsNoReturnConversion(ltrans, rtrans, ltrans)) 5216 return Sema::IncompatiblePointer; 5217 return ConvTy; 5218 } 5219 5220 /// checkBlockPointerTypesForAssignment - This routine determines whether two 5221 /// block pointer types are compatible or whether a block and normal pointer 5222 /// are compatible. It is more restrict than comparing two function pointer 5223 // types. 5224 static Sema::AssignConvertType 5225 checkBlockPointerTypesForAssignment(Sema &S, QualType LHSType, 5226 QualType RHSType) { 5227 assert(LHSType.isCanonical() && "LHS not canonicalized!"); 5228 assert(RHSType.isCanonical() && "RHS not canonicalized!"); 5229 5230 QualType lhptee, rhptee; 5231 5232 // get the "pointed to" type (ignoring qualifiers at the top level) 5233 lhptee = cast<BlockPointerType>(LHSType)->getPointeeType(); 5234 rhptee = cast<BlockPointerType>(RHSType)->getPointeeType(); 5235 5236 // In C++, the types have to match exactly. 5237 if (S.getLangOptions().CPlusPlus) 5238 return Sema::IncompatibleBlockPointer; 5239 5240 Sema::AssignConvertType ConvTy = Sema::Compatible; 5241 5242 // For blocks we enforce that qualifiers are identical. 5243 if (lhptee.getLocalQualifiers() != rhptee.getLocalQualifiers()) 5244 ConvTy = Sema::CompatiblePointerDiscardsQualifiers; 5245 5246 if (!S.Context.typesAreBlockPointerCompatible(LHSType, RHSType)) 5247 return Sema::IncompatibleBlockPointer; 5248 5249 return ConvTy; 5250 } 5251 5252 /// checkObjCPointerTypesForAssignment - Compares two objective-c pointer types 5253 /// for assignment compatibility. 5254 static Sema::AssignConvertType 5255 checkObjCPointerTypesForAssignment(Sema &S, QualType LHSType, 5256 QualType RHSType) { 5257 assert(LHSType.isCanonical() && "LHS was not canonicalized!"); 5258 assert(RHSType.isCanonical() && "RHS was not canonicalized!"); 5259 5260 if (LHSType->isObjCBuiltinType()) { 5261 // Class is not compatible with ObjC object pointers. 5262 if (LHSType->isObjCClassType() && !RHSType->isObjCBuiltinType() && 5263 !RHSType->isObjCQualifiedClassType()) 5264 return Sema::IncompatiblePointer; 5265 return Sema::Compatible; 5266 } 5267 if (RHSType->isObjCBuiltinType()) { 5268 if (RHSType->isObjCClassType() && !LHSType->isObjCBuiltinType() && 5269 !LHSType->isObjCQualifiedClassType()) 5270 return Sema::IncompatiblePointer; 5271 return Sema::Compatible; 5272 } 5273 QualType lhptee = LHSType->getAs<ObjCObjectPointerType>()->getPointeeType(); 5274 QualType rhptee = RHSType->getAs<ObjCObjectPointerType>()->getPointeeType(); 5275 5276 if (!lhptee.isAtLeastAsQualifiedAs(rhptee)) 5277 return Sema::CompatiblePointerDiscardsQualifiers; 5278 5279 if (S.Context.typesAreCompatible(LHSType, RHSType)) 5280 return Sema::Compatible; 5281 if (LHSType->isObjCQualifiedIdType() || RHSType->isObjCQualifiedIdType()) 5282 return Sema::IncompatibleObjCQualifiedId; 5283 return Sema::IncompatiblePointer; 5284 } 5285 5286 Sema::AssignConvertType 5287 Sema::CheckAssignmentConstraints(SourceLocation Loc, 5288 QualType LHSType, QualType RHSType) { 5289 // Fake up an opaque expression. We don't actually care about what 5290 // cast operations are required, so if CheckAssignmentConstraints 5291 // adds casts to this they'll be wasted, but fortunately that doesn't 5292 // usually happen on valid code. 5293 OpaqueValueExpr RHSExpr(Loc, RHSType, VK_RValue); 5294 ExprResult RHSPtr = &RHSExpr; 5295 CastKind K = CK_Invalid; 5296 5297 return CheckAssignmentConstraints(LHSType, RHSPtr, K); 5298 } 5299 5300 /// CheckAssignmentConstraints (C99 6.5.16) - This routine currently 5301 /// has code to accommodate several GCC extensions when type checking 5302 /// pointers. Here are some objectionable examples that GCC considers warnings: 5303 /// 5304 /// int a, *pint; 5305 /// short *pshort; 5306 /// struct foo *pfoo; 5307 /// 5308 /// pint = pshort; // warning: assignment from incompatible pointer type 5309 /// a = pint; // warning: assignment makes integer from pointer without a cast 5310 /// pint = a; // warning: assignment makes pointer from integer without a cast 5311 /// pint = pfoo; // warning: assignment from incompatible pointer type 5312 /// 5313 /// As a result, the code for dealing with pointers is more complex than the 5314 /// C99 spec dictates. 5315 /// 5316 /// Sets 'Kind' for any result kind except Incompatible. 5317 Sema::AssignConvertType 5318 Sema::CheckAssignmentConstraints(QualType LHSType, ExprResult &RHS, 5319 CastKind &Kind) { 5320 QualType RHSType = RHS.get()->getType(); 5321 QualType OrigLHSType = LHSType; 5322 5323 // Get canonical types. We're not formatting these types, just comparing 5324 // them. 5325 LHSType = Context.getCanonicalType(LHSType).getUnqualifiedType(); 5326 RHSType = Context.getCanonicalType(RHSType).getUnqualifiedType(); 5327 5328 // We can't do assignment from/to atomics yet. 5329 if (LHSType->isAtomicType()) 5330 return Incompatible; 5331 5332 // Common case: no conversion required. 5333 if (LHSType == RHSType) { 5334 Kind = CK_NoOp; 5335 return Compatible; 5336 } 5337 5338 // If the left-hand side is a reference type, then we are in a 5339 // (rare!) case where we've allowed the use of references in C, 5340 // e.g., as a parameter type in a built-in function. In this case, 5341 // just make sure that the type referenced is compatible with the 5342 // right-hand side type. The caller is responsible for adjusting 5343 // LHSType so that the resulting expression does not have reference 5344 // type. 5345 if (const ReferenceType *LHSTypeRef = LHSType->getAs<ReferenceType>()) { 5346 if (Context.typesAreCompatible(LHSTypeRef->getPointeeType(), RHSType)) { 5347 Kind = CK_LValueBitCast; 5348 return Compatible; 5349 } 5350 return Incompatible; 5351 } 5352 5353 // Allow scalar to ExtVector assignments, and assignments of an ExtVector type 5354 // to the same ExtVector type. 5355 if (LHSType->isExtVectorType()) { 5356 if (RHSType->isExtVectorType()) 5357 return Incompatible; 5358 if (RHSType->isArithmeticType()) { 5359 // CK_VectorSplat does T -> vector T, so first cast to the 5360 // element type. 5361 QualType elType = cast<ExtVectorType>(LHSType)->getElementType(); 5362 if (elType != RHSType) { 5363 Kind = PrepareScalarCast(RHS, elType); 5364 RHS = ImpCastExprToType(RHS.take(), elType, Kind); 5365 } 5366 Kind = CK_VectorSplat; 5367 return Compatible; 5368 } 5369 } 5370 5371 // Conversions to or from vector type. 5372 if (LHSType->isVectorType() || RHSType->isVectorType()) { 5373 if (LHSType->isVectorType() && RHSType->isVectorType()) { 5374 // Allow assignments of an AltiVec vector type to an equivalent GCC 5375 // vector type and vice versa 5376 if (Context.areCompatibleVectorTypes(LHSType, RHSType)) { 5377 Kind = CK_BitCast; 5378 return Compatible; 5379 } 5380 5381 // If we are allowing lax vector conversions, and LHS and RHS are both 5382 // vectors, the total size only needs to be the same. This is a bitcast; 5383 // no bits are changed but the result type is different. 5384 if (getLangOptions().LaxVectorConversions && 5385 (Context.getTypeSize(LHSType) == Context.getTypeSize(RHSType))) { 5386 Kind = CK_BitCast; 5387 return IncompatibleVectors; 5388 } 5389 } 5390 return Incompatible; 5391 } 5392 5393 // Arithmetic conversions. 5394 if (LHSType->isArithmeticType() && RHSType->isArithmeticType() && 5395 !(getLangOptions().CPlusPlus && LHSType->isEnumeralType())) { 5396 Kind = PrepareScalarCast(RHS, LHSType); 5397 return Compatible; 5398 } 5399 5400 // Conversions to normal pointers. 5401 if (const PointerType *LHSPointer = dyn_cast<PointerType>(LHSType)) { 5402 // U* -> T* 5403 if (isa<PointerType>(RHSType)) { 5404 Kind = CK_BitCast; 5405 return checkPointerTypesForAssignment(*this, LHSType, RHSType); 5406 } 5407 5408 // int -> T* 5409 if (RHSType->isIntegerType()) { 5410 Kind = CK_IntegralToPointer; // FIXME: null? 5411 return IntToPointer; 5412 } 5413 5414 // C pointers are not compatible with ObjC object pointers, 5415 // with two exceptions: 5416 if (isa<ObjCObjectPointerType>(RHSType)) { 5417 // - conversions to void* 5418 if (LHSPointer->getPointeeType()->isVoidType()) { 5419 Kind = CK_BitCast; 5420 return Compatible; 5421 } 5422 5423 // - conversions from 'Class' to the redefinition type 5424 if (RHSType->isObjCClassType() && 5425 Context.hasSameType(LHSType, 5426 Context.getObjCClassRedefinitionType())) { 5427 Kind = CK_BitCast; 5428 return Compatible; 5429 } 5430 5431 Kind = CK_BitCast; 5432 return IncompatiblePointer; 5433 } 5434 5435 // U^ -> void* 5436 if (RHSType->getAs<BlockPointerType>()) { 5437 if (LHSPointer->getPointeeType()->isVoidType()) { 5438 Kind = CK_BitCast; 5439 return Compatible; 5440 } 5441 } 5442 5443 return Incompatible; 5444 } 5445 5446 // Conversions to block pointers. 5447 if (isa<BlockPointerType>(LHSType)) { 5448 // U^ -> T^ 5449 if (RHSType->isBlockPointerType()) { 5450 Kind = CK_BitCast; 5451 return checkBlockPointerTypesForAssignment(*this, LHSType, RHSType); 5452 } 5453 5454 // int or null -> T^ 5455 if (RHSType->isIntegerType()) { 5456 Kind = CK_IntegralToPointer; // FIXME: null 5457 return IntToBlockPointer; 5458 } 5459 5460 // id -> T^ 5461 if (getLangOptions().ObjC1 && RHSType->isObjCIdType()) { 5462 Kind = CK_AnyPointerToBlockPointerCast; 5463 return Compatible; 5464 } 5465 5466 // void* -> T^ 5467 if (const PointerType *RHSPT = RHSType->getAs<PointerType>()) 5468 if (RHSPT->getPointeeType()->isVoidType()) { 5469 Kind = CK_AnyPointerToBlockPointerCast; 5470 return Compatible; 5471 } 5472 5473 return Incompatible; 5474 } 5475 5476 // Conversions to Objective-C pointers. 5477 if (isa<ObjCObjectPointerType>(LHSType)) { 5478 // A* -> B* 5479 if (RHSType->isObjCObjectPointerType()) { 5480 Kind = CK_BitCast; 5481 Sema::AssignConvertType result = 5482 checkObjCPointerTypesForAssignment(*this, LHSType, RHSType); 5483 if (getLangOptions().ObjCAutoRefCount && 5484 result == Compatible && 5485 !CheckObjCARCUnavailableWeakConversion(OrigLHSType, RHSType)) 5486 result = IncompatibleObjCWeakRef; 5487 return result; 5488 } 5489 5490 // int or null -> A* 5491 if (RHSType->isIntegerType()) { 5492 Kind = CK_IntegralToPointer; // FIXME: null 5493 return IntToPointer; 5494 } 5495 5496 // In general, C pointers are not compatible with ObjC object pointers, 5497 // with two exceptions: 5498 if (isa<PointerType>(RHSType)) { 5499 Kind = CK_CPointerToObjCPointerCast; 5500 5501 // - conversions from 'void*' 5502 if (RHSType->isVoidPointerType()) { 5503 return Compatible; 5504 } 5505 5506 // - conversions to 'Class' from its redefinition type 5507 if (LHSType->isObjCClassType() && 5508 Context.hasSameType(RHSType, 5509 Context.getObjCClassRedefinitionType())) { 5510 return Compatible; 5511 } 5512 5513 return IncompatiblePointer; 5514 } 5515 5516 // T^ -> A* 5517 if (RHSType->isBlockPointerType()) { 5518 maybeExtendBlockObject(*this, RHS); 5519 Kind = CK_BlockPointerToObjCPointerCast; 5520 return Compatible; 5521 } 5522 5523 return Incompatible; 5524 } 5525 5526 // Conversions from pointers that are not covered by the above. 5527 if (isa<PointerType>(RHSType)) { 5528 // T* -> _Bool 5529 if (LHSType == Context.BoolTy) { 5530 Kind = CK_PointerToBoolean; 5531 return Compatible; 5532 } 5533 5534 // T* -> int 5535 if (LHSType->isIntegerType()) { 5536 Kind = CK_PointerToIntegral; 5537 return PointerToInt; 5538 } 5539 5540 return Incompatible; 5541 } 5542 5543 // Conversions from Objective-C pointers that are not covered by the above. 5544 if (isa<ObjCObjectPointerType>(RHSType)) { 5545 // T* -> _Bool 5546 if (LHSType == Context.BoolTy) { 5547 Kind = CK_PointerToBoolean; 5548 return Compatible; 5549 } 5550 5551 // T* -> int 5552 if (LHSType->isIntegerType()) { 5553 Kind = CK_PointerToIntegral; 5554 return PointerToInt; 5555 } 5556 5557 return Incompatible; 5558 } 5559 5560 // struct A -> struct B 5561 if (isa<TagType>(LHSType) && isa<TagType>(RHSType)) { 5562 if (Context.typesAreCompatible(LHSType, RHSType)) { 5563 Kind = CK_NoOp; 5564 return Compatible; 5565 } 5566 } 5567 5568 return Incompatible; 5569 } 5570 5571 /// \brief Constructs a transparent union from an expression that is 5572 /// used to initialize the transparent union. 5573 static void ConstructTransparentUnion(Sema &S, ASTContext &C, 5574 ExprResult &EResult, QualType UnionType, 5575 FieldDecl *Field) { 5576 // Build an initializer list that designates the appropriate member 5577 // of the transparent union. 5578 Expr *E = EResult.take(); 5579 InitListExpr *Initializer = new (C) InitListExpr(C, SourceLocation(), 5580 &E, 1, 5581 SourceLocation()); 5582 Initializer->setType(UnionType); 5583 Initializer->setInitializedFieldInUnion(Field); 5584 5585 // Build a compound literal constructing a value of the transparent 5586 // union type from this initializer list. 5587 TypeSourceInfo *unionTInfo = C.getTrivialTypeSourceInfo(UnionType); 5588 EResult = S.Owned( 5589 new (C) CompoundLiteralExpr(SourceLocation(), unionTInfo, UnionType, 5590 VK_RValue, Initializer, false)); 5591 } 5592 5593 Sema::AssignConvertType 5594 Sema::CheckTransparentUnionArgumentConstraints(QualType ArgType, 5595 ExprResult &RHS) { 5596 QualType RHSType = RHS.get()->getType(); 5597 5598 // If the ArgType is a Union type, we want to handle a potential 5599 // transparent_union GCC extension. 5600 const RecordType *UT = ArgType->getAsUnionType(); 5601 if (!UT || !UT->getDecl()->hasAttr<TransparentUnionAttr>()) 5602 return Incompatible; 5603 5604 // The field to initialize within the transparent union. 5605 RecordDecl *UD = UT->getDecl(); 5606 FieldDecl *InitField = 0; 5607 // It's compatible if the expression matches any of the fields. 5608 for (RecordDecl::field_iterator it = UD->field_begin(), 5609 itend = UD->field_end(); 5610 it != itend; ++it) { 5611 if (it->getType()->isPointerType()) { 5612 // If the transparent union contains a pointer type, we allow: 5613 // 1) void pointer 5614 // 2) null pointer constant 5615 if (RHSType->isPointerType()) 5616 if (RHSType->castAs<PointerType>()->getPointeeType()->isVoidType()) { 5617 RHS = ImpCastExprToType(RHS.take(), it->getType(), CK_BitCast); 5618 InitField = *it; 5619 break; 5620 } 5621 5622 if (RHS.get()->isNullPointerConstant(Context, 5623 Expr::NPC_ValueDependentIsNull)) { 5624 RHS = ImpCastExprToType(RHS.take(), it->getType(), 5625 CK_NullToPointer); 5626 InitField = *it; 5627 break; 5628 } 5629 } 5630 5631 CastKind Kind = CK_Invalid; 5632 if (CheckAssignmentConstraints(it->getType(), RHS, Kind) 5633 == Compatible) { 5634 RHS = ImpCastExprToType(RHS.take(), it->getType(), Kind); 5635 InitField = *it; 5636 break; 5637 } 5638 } 5639 5640 if (!InitField) 5641 return Incompatible; 5642 5643 ConstructTransparentUnion(*this, Context, RHS, ArgType, InitField); 5644 return Compatible; 5645 } 5646 5647 Sema::AssignConvertType 5648 Sema::CheckSingleAssignmentConstraints(QualType LHSType, ExprResult &RHS, 5649 bool Diagnose) { 5650 if (getLangOptions().CPlusPlus) { 5651 if (!LHSType->isRecordType() && !LHSType->isAtomicType()) { 5652 // C++ 5.17p3: If the left operand is not of class type, the 5653 // expression is implicitly converted (C++ 4) to the 5654 // cv-unqualified type of the left operand. 5655 ExprResult Res; 5656 if (Diagnose) { 5657 Res = PerformImplicitConversion(RHS.get(), LHSType.getUnqualifiedType(), 5658 AA_Assigning); 5659 } else { 5660 ImplicitConversionSequence ICS = 5661 TryImplicitConversion(RHS.get(), LHSType.getUnqualifiedType(), 5662 /*SuppressUserConversions=*/false, 5663 /*AllowExplicit=*/false, 5664 /*InOverloadResolution=*/false, 5665 /*CStyle=*/false, 5666 /*AllowObjCWritebackConversion=*/false); 5667 if (ICS.isFailure()) 5668 return Incompatible; 5669 Res = PerformImplicitConversion(RHS.get(), LHSType.getUnqualifiedType(), 5670 ICS, AA_Assigning); 5671 } 5672 if (Res.isInvalid()) 5673 return Incompatible; 5674 Sema::AssignConvertType result = Compatible; 5675 if (getLangOptions().ObjCAutoRefCount && 5676 !CheckObjCARCUnavailableWeakConversion(LHSType, 5677 RHS.get()->getType())) 5678 result = IncompatibleObjCWeakRef; 5679 RHS = move(Res); 5680 return result; 5681 } 5682 5683 // FIXME: Currently, we fall through and treat C++ classes like C 5684 // structures. 5685 // FIXME: We also fall through for atomics; not sure what should 5686 // happen there, though. 5687 } 5688 5689 // C99 6.5.16.1p1: the left operand is a pointer and the right is 5690 // a null pointer constant. 5691 if ((LHSType->isPointerType() || 5692 LHSType->isObjCObjectPointerType() || 5693 LHSType->isBlockPointerType()) 5694 && RHS.get()->isNullPointerConstant(Context, 5695 Expr::NPC_ValueDependentIsNull)) { 5696 RHS = ImpCastExprToType(RHS.take(), LHSType, CK_NullToPointer); 5697 return Compatible; 5698 } 5699 5700 // This check seems unnatural, however it is necessary to ensure the proper 5701 // conversion of functions/arrays. If the conversion were done for all 5702 // DeclExpr's (created by ActOnIdExpression), it would mess up the unary 5703 // expressions that suppress this implicit conversion (&, sizeof). 5704 // 5705 // Suppress this for references: C++ 8.5.3p5. 5706 if (!LHSType->isReferenceType()) { 5707 RHS = DefaultFunctionArrayLvalueConversion(RHS.take()); 5708 if (RHS.isInvalid()) 5709 return Incompatible; 5710 } 5711 5712 CastKind Kind = CK_Invalid; 5713 Sema::AssignConvertType result = 5714 CheckAssignmentConstraints(LHSType, RHS, Kind); 5715 5716 // C99 6.5.16.1p2: The value of the right operand is converted to the 5717 // type of the assignment expression. 5718 // CheckAssignmentConstraints allows the left-hand side to be a reference, 5719 // so that we can use references in built-in functions even in C. 5720 // The getNonReferenceType() call makes sure that the resulting expression 5721 // does not have reference type. 5722 if (result != Incompatible && RHS.get()->getType() != LHSType) 5723 RHS = ImpCastExprToType(RHS.take(), 5724 LHSType.getNonLValueExprType(Context), Kind); 5725 return result; 5726 } 5727 5728 QualType Sema::InvalidOperands(SourceLocation Loc, ExprResult &LHS, 5729 ExprResult &RHS) { 5730 Diag(Loc, diag::err_typecheck_invalid_operands) 5731 << LHS.get()->getType() << RHS.get()->getType() 5732 << LHS.get()->getSourceRange() << RHS.get()->getSourceRange(); 5733 return QualType(); 5734 } 5735 5736 QualType Sema::CheckVectorOperands(ExprResult &LHS, ExprResult &RHS, 5737 SourceLocation Loc, bool IsCompAssign) { 5738 if (!IsCompAssign) { 5739 LHS = DefaultFunctionArrayLvalueConversion(LHS.take()); 5740 if (LHS.isInvalid()) 5741 return QualType(); 5742 } 5743 RHS = DefaultFunctionArrayLvalueConversion(RHS.take()); 5744 if (RHS.isInvalid()) 5745 return QualType(); 5746 5747 // For conversion purposes, we ignore any qualifiers. 5748 // For example, "const float" and "float" are equivalent. 5749 QualType LHSType = 5750 Context.getCanonicalType(LHS.get()->getType()).getUnqualifiedType(); 5751 QualType RHSType = 5752 Context.getCanonicalType(RHS.get()->getType()).getUnqualifiedType(); 5753 5754 // If the vector types are identical, return. 5755 if (LHSType == RHSType) 5756 return LHSType; 5757 5758 // Handle the case of equivalent AltiVec and GCC vector types 5759 if (LHSType->isVectorType() && RHSType->isVectorType() && 5760 Context.areCompatibleVectorTypes(LHSType, RHSType)) { 5761 if (LHSType->isExtVectorType()) { 5762 RHS = ImpCastExprToType(RHS.take(), LHSType, CK_BitCast); 5763 return LHSType; 5764 } 5765 5766 if (!IsCompAssign) 5767 LHS = ImpCastExprToType(LHS.take(), RHSType, CK_BitCast); 5768 return RHSType; 5769 } 5770 5771 if (getLangOptions().LaxVectorConversions && 5772 Context.getTypeSize(LHSType) == Context.getTypeSize(RHSType)) { 5773 // If we are allowing lax vector conversions, and LHS and RHS are both 5774 // vectors, the total size only needs to be the same. This is a 5775 // bitcast; no bits are changed but the result type is different. 5776 // FIXME: Should we really be allowing this? 5777 RHS = ImpCastExprToType(RHS.take(), LHSType, CK_BitCast); 5778 return LHSType; 5779 } 5780 5781 // Canonicalize the ExtVector to the LHS, remember if we swapped so we can 5782 // swap back (so that we don't reverse the inputs to a subtract, for instance. 5783 bool swapped = false; 5784 if (RHSType->isExtVectorType() && !IsCompAssign) { 5785 swapped = true; 5786 std::swap(RHS, LHS); 5787 std::swap(RHSType, LHSType); 5788 } 5789 5790 // Handle the case of an ext vector and scalar. 5791 if (const ExtVectorType *LV = LHSType->getAs<ExtVectorType>()) { 5792 QualType EltTy = LV->getElementType(); 5793 if (EltTy->isIntegralType(Context) && RHSType->isIntegralType(Context)) { 5794 int order = Context.getIntegerTypeOrder(EltTy, RHSType); 5795 if (order > 0) 5796 RHS = ImpCastExprToType(RHS.take(), EltTy, CK_IntegralCast); 5797 if (order >= 0) { 5798 RHS = ImpCastExprToType(RHS.take(), LHSType, CK_VectorSplat); 5799 if (swapped) std::swap(RHS, LHS); 5800 return LHSType; 5801 } 5802 } 5803 if (EltTy->isRealFloatingType() && RHSType->isScalarType() && 5804 RHSType->isRealFloatingType()) { 5805 int order = Context.getFloatingTypeOrder(EltTy, RHSType); 5806 if (order > 0) 5807 RHS = ImpCastExprToType(RHS.take(), EltTy, CK_FloatingCast); 5808 if (order >= 0) { 5809 RHS = ImpCastExprToType(RHS.take(), LHSType, CK_VectorSplat); 5810 if (swapped) std::swap(RHS, LHS); 5811 return LHSType; 5812 } 5813 } 5814 } 5815 5816 // Vectors of different size or scalar and non-ext-vector are errors. 5817 if (swapped) std::swap(RHS, LHS); 5818 Diag(Loc, diag::err_typecheck_vector_not_convertable) 5819 << LHS.get()->getType() << RHS.get()->getType() 5820 << LHS.get()->getSourceRange() << RHS.get()->getSourceRange(); 5821 return QualType(); 5822 } 5823 5824 // checkArithmeticNull - Detect when a NULL constant is used improperly in an 5825 // expression. These are mainly cases where the null pointer is used as an 5826 // integer instead of a pointer. 5827 static void checkArithmeticNull(Sema &S, ExprResult &LHS, ExprResult &RHS, 5828 SourceLocation Loc, bool IsCompare) { 5829 // The canonical way to check for a GNU null is with isNullPointerConstant, 5830 // but we use a bit of a hack here for speed; this is a relatively 5831 // hot path, and isNullPointerConstant is slow. 5832 bool LHSNull = isa<GNUNullExpr>(LHS.get()->IgnoreParenImpCasts()); 5833 bool RHSNull = isa<GNUNullExpr>(RHS.get()->IgnoreParenImpCasts()); 5834 5835 QualType NonNullType = LHSNull ? RHS.get()->getType() : LHS.get()->getType(); 5836 5837 // Avoid analyzing cases where the result will either be invalid (and 5838 // diagnosed as such) or entirely valid and not something to warn about. 5839 if ((!LHSNull && !RHSNull) || NonNullType->isBlockPointerType() || 5840 NonNullType->isMemberPointerType() || NonNullType->isFunctionType()) 5841 return; 5842 5843 // Comparison operations would not make sense with a null pointer no matter 5844 // what the other expression is. 5845 if (!IsCompare) { 5846 S.Diag(Loc, diag::warn_null_in_arithmetic_operation) 5847 << (LHSNull ? LHS.get()->getSourceRange() : SourceRange()) 5848 << (RHSNull ? RHS.get()->getSourceRange() : SourceRange()); 5849 return; 5850 } 5851 5852 // The rest of the operations only make sense with a null pointer 5853 // if the other expression is a pointer. 5854 if (LHSNull == RHSNull || NonNullType->isAnyPointerType() || 5855 NonNullType->canDecayToPointerType()) 5856 return; 5857 5858 S.Diag(Loc, diag::warn_null_in_comparison_operation) 5859 << LHSNull /* LHS is NULL */ << NonNullType 5860 << LHS.get()->getSourceRange() << RHS.get()->getSourceRange(); 5861 } 5862 5863 QualType Sema::CheckMultiplyDivideOperands(ExprResult &LHS, ExprResult &RHS, 5864 SourceLocation Loc, 5865 bool IsCompAssign, bool IsDiv) { 5866 checkArithmeticNull(*this, LHS, RHS, Loc, /*isCompare=*/false); 5867 5868 if (LHS.get()->getType()->isVectorType() || 5869 RHS.get()->getType()->isVectorType()) 5870 return CheckVectorOperands(LHS, RHS, Loc, IsCompAssign); 5871 5872 QualType compType = UsualArithmeticConversions(LHS, RHS, IsCompAssign); 5873 if (LHS.isInvalid() || RHS.isInvalid()) 5874 return QualType(); 5875 5876 if (!LHS.get()->getType()->isArithmeticType() || 5877 !RHS.get()->getType()->isArithmeticType()) 5878 return InvalidOperands(Loc, LHS, RHS); 5879 5880 // Check for division by zero. 5881 if (IsDiv && 5882 RHS.get()->isNullPointerConstant(Context, 5883 Expr::NPC_ValueDependentIsNotNull)) 5884 DiagRuntimeBehavior(Loc, RHS.get(), PDiag(diag::warn_division_by_zero) 5885 << RHS.get()->getSourceRange()); 5886 5887 return compType; 5888 } 5889 5890 QualType Sema::CheckRemainderOperands( 5891 ExprResult &LHS, ExprResult &RHS, SourceLocation Loc, bool IsCompAssign) { 5892 checkArithmeticNull(*this, LHS, RHS, Loc, /*isCompare=*/false); 5893 5894 if (LHS.get()->getType()->isVectorType() || 5895 RHS.get()->getType()->isVectorType()) { 5896 if (LHS.get()->getType()->hasIntegerRepresentation() && 5897 RHS.get()->getType()->hasIntegerRepresentation()) 5898 return CheckVectorOperands(LHS, RHS, Loc, IsCompAssign); 5899 return InvalidOperands(Loc, LHS, RHS); 5900 } 5901 5902 QualType compType = UsualArithmeticConversions(LHS, RHS, IsCompAssign); 5903 if (LHS.isInvalid() || RHS.isInvalid()) 5904 return QualType(); 5905 5906 if (!LHS.get()->getType()->isIntegerType() || 5907 !RHS.get()->getType()->isIntegerType()) 5908 return InvalidOperands(Loc, LHS, RHS); 5909 5910 // Check for remainder by zero. 5911 if (RHS.get()->isNullPointerConstant(Context, 5912 Expr::NPC_ValueDependentIsNotNull)) 5913 DiagRuntimeBehavior(Loc, RHS.get(), PDiag(diag::warn_remainder_by_zero) 5914 << RHS.get()->getSourceRange()); 5915 5916 return compType; 5917 } 5918 5919 /// \brief Diagnose invalid arithmetic on two void pointers. 5920 static void diagnoseArithmeticOnTwoVoidPointers(Sema &S, SourceLocation Loc, 5921 Expr *LHSExpr, Expr *RHSExpr) { 5922 S.Diag(Loc, S.getLangOptions().CPlusPlus 5923 ? diag::err_typecheck_pointer_arith_void_type 5924 : diag::ext_gnu_void_ptr) 5925 << 1 /* two pointers */ << LHSExpr->getSourceRange() 5926 << RHSExpr->getSourceRange(); 5927 } 5928 5929 /// \brief Diagnose invalid arithmetic on a void pointer. 5930 static void diagnoseArithmeticOnVoidPointer(Sema &S, SourceLocation Loc, 5931 Expr *Pointer) { 5932 S.Diag(Loc, S.getLangOptions().CPlusPlus 5933 ? diag::err_typecheck_pointer_arith_void_type 5934 : diag::ext_gnu_void_ptr) 5935 << 0 /* one pointer */ << Pointer->getSourceRange(); 5936 } 5937 5938 /// \brief Diagnose invalid arithmetic on two function pointers. 5939 static void diagnoseArithmeticOnTwoFunctionPointers(Sema &S, SourceLocation Loc, 5940 Expr *LHS, Expr *RHS) { 5941 assert(LHS->getType()->isAnyPointerType()); 5942 assert(RHS->getType()->isAnyPointerType()); 5943 S.Diag(Loc, S.getLangOptions().CPlusPlus 5944 ? diag::err_typecheck_pointer_arith_function_type 5945 : diag::ext_gnu_ptr_func_arith) 5946 << 1 /* two pointers */ << LHS->getType()->getPointeeType() 5947 // We only show the second type if it differs from the first. 5948 << (unsigned)!S.Context.hasSameUnqualifiedType(LHS->getType(), 5949 RHS->getType()) 5950 << RHS->getType()->getPointeeType() 5951 << LHS->getSourceRange() << RHS->getSourceRange(); 5952 } 5953 5954 /// \brief Diagnose invalid arithmetic on a function pointer. 5955 static void diagnoseArithmeticOnFunctionPointer(Sema &S, SourceLocation Loc, 5956 Expr *Pointer) { 5957 assert(Pointer->getType()->isAnyPointerType()); 5958 S.Diag(Loc, S.getLangOptions().CPlusPlus 5959 ? diag::err_typecheck_pointer_arith_function_type 5960 : diag::ext_gnu_ptr_func_arith) 5961 << 0 /* one pointer */ << Pointer->getType()->getPointeeType() 5962 << 0 /* one pointer, so only one type */ 5963 << Pointer->getSourceRange(); 5964 } 5965 5966 /// \brief Emit error if Operand is incomplete pointer type 5967 /// 5968 /// \returns True if pointer has incomplete type 5969 static bool checkArithmeticIncompletePointerType(Sema &S, SourceLocation Loc, 5970 Expr *Operand) { 5971 if ((Operand->getType()->isPointerType() && 5972 !Operand->getType()->isDependentType()) || 5973 Operand->getType()->isObjCObjectPointerType()) { 5974 QualType PointeeTy = Operand->getType()->getPointeeType(); 5975 if (S.RequireCompleteType( 5976 Loc, PointeeTy, 5977 S.PDiag(diag::err_typecheck_arithmetic_incomplete_type) 5978 << PointeeTy << Operand->getSourceRange())) 5979 return true; 5980 } 5981 return false; 5982 } 5983 5984 /// \brief Check the validity of an arithmetic pointer operand. 5985 /// 5986 /// If the operand has pointer type, this code will check for pointer types 5987 /// which are invalid in arithmetic operations. These will be diagnosed 5988 /// appropriately, including whether or not the use is supported as an 5989 /// extension. 5990 /// 5991 /// \returns True when the operand is valid to use (even if as an extension). 5992 static bool checkArithmeticOpPointerOperand(Sema &S, SourceLocation Loc, 5993 Expr *Operand) { 5994 if (!Operand->getType()->isAnyPointerType()) return true; 5995 5996 QualType PointeeTy = Operand->getType()->getPointeeType(); 5997 if (PointeeTy->isVoidType()) { 5998 diagnoseArithmeticOnVoidPointer(S, Loc, Operand); 5999 return !S.getLangOptions().CPlusPlus; 6000 } 6001 if (PointeeTy->isFunctionType()) { 6002 diagnoseArithmeticOnFunctionPointer(S, Loc, Operand); 6003 return !S.getLangOptions().CPlusPlus; 6004 } 6005 6006 if (checkArithmeticIncompletePointerType(S, Loc, Operand)) return false; 6007 6008 return true; 6009 } 6010 6011 /// \brief Check the validity of a binary arithmetic operation w.r.t. pointer 6012 /// operands. 6013 /// 6014 /// This routine will diagnose any invalid arithmetic on pointer operands much 6015 /// like \see checkArithmeticOpPointerOperand. However, it has special logic 6016 /// for emitting a single diagnostic even for operations where both LHS and RHS 6017 /// are (potentially problematic) pointers. 6018 /// 6019 /// \returns True when the operand is valid to use (even if as an extension). 6020 static bool checkArithmeticBinOpPointerOperands(Sema &S, SourceLocation Loc, 6021 Expr *LHSExpr, Expr *RHSExpr) { 6022 bool isLHSPointer = LHSExpr->getType()->isAnyPointerType(); 6023 bool isRHSPointer = RHSExpr->getType()->isAnyPointerType(); 6024 if (!isLHSPointer && !isRHSPointer) return true; 6025 6026 QualType LHSPointeeTy, RHSPointeeTy; 6027 if (isLHSPointer) LHSPointeeTy = LHSExpr->getType()->getPointeeType(); 6028 if (isRHSPointer) RHSPointeeTy = RHSExpr->getType()->getPointeeType(); 6029 6030 // Check for arithmetic on pointers to incomplete types. 6031 bool isLHSVoidPtr = isLHSPointer && LHSPointeeTy->isVoidType(); 6032 bool isRHSVoidPtr = isRHSPointer && RHSPointeeTy->isVoidType(); 6033 if (isLHSVoidPtr || isRHSVoidPtr) { 6034 if (!isRHSVoidPtr) diagnoseArithmeticOnVoidPointer(S, Loc, LHSExpr); 6035 else if (!isLHSVoidPtr) diagnoseArithmeticOnVoidPointer(S, Loc, RHSExpr); 6036 else diagnoseArithmeticOnTwoVoidPointers(S, Loc, LHSExpr, RHSExpr); 6037 6038 return !S.getLangOptions().CPlusPlus; 6039 } 6040 6041 bool isLHSFuncPtr = isLHSPointer && LHSPointeeTy->isFunctionType(); 6042 bool isRHSFuncPtr = isRHSPointer && RHSPointeeTy->isFunctionType(); 6043 if (isLHSFuncPtr || isRHSFuncPtr) { 6044 if (!isRHSFuncPtr) diagnoseArithmeticOnFunctionPointer(S, Loc, LHSExpr); 6045 else if (!isLHSFuncPtr) diagnoseArithmeticOnFunctionPointer(S, Loc, 6046 RHSExpr); 6047 else diagnoseArithmeticOnTwoFunctionPointers(S, Loc, LHSExpr, RHSExpr); 6048 6049 return !S.getLangOptions().CPlusPlus; 6050 } 6051 6052 if (checkArithmeticIncompletePointerType(S, Loc, LHSExpr)) return false; 6053 if (checkArithmeticIncompletePointerType(S, Loc, RHSExpr)) return false; 6054 6055 return true; 6056 } 6057 6058 /// \brief Check bad cases where we step over interface counts. 6059 static bool checkArithmethicPointerOnNonFragileABI(Sema &S, 6060 SourceLocation OpLoc, 6061 Expr *Op) { 6062 assert(Op->getType()->isAnyPointerType()); 6063 QualType PointeeTy = Op->getType()->getPointeeType(); 6064 if (!PointeeTy->isObjCObjectType() || !S.LangOpts.ObjCNonFragileABI) 6065 return true; 6066 6067 S.Diag(OpLoc, diag::err_arithmetic_nonfragile_interface) 6068 << PointeeTy << Op->getSourceRange(); 6069 return false; 6070 } 6071 6072 /// \brief Emit error when two pointers are incompatible. 6073 static void diagnosePointerIncompatibility(Sema &S, SourceLocation Loc, 6074 Expr *LHSExpr, Expr *RHSExpr) { 6075 assert(LHSExpr->getType()->isAnyPointerType()); 6076 assert(RHSExpr->getType()->isAnyPointerType()); 6077 S.Diag(Loc, diag::err_typecheck_sub_ptr_compatible) 6078 << LHSExpr->getType() << RHSExpr->getType() << LHSExpr->getSourceRange() 6079 << RHSExpr->getSourceRange(); 6080 } 6081 6082 QualType Sema::CheckAdditionOperands( // C99 6.5.6 6083 ExprResult &LHS, ExprResult &RHS, SourceLocation Loc, QualType* CompLHSTy) { 6084 checkArithmeticNull(*this, LHS, RHS, Loc, /*isCompare=*/false); 6085 6086 if (LHS.get()->getType()->isVectorType() || 6087 RHS.get()->getType()->isVectorType()) { 6088 QualType compType = CheckVectorOperands(LHS, RHS, Loc, CompLHSTy); 6089 if (CompLHSTy) *CompLHSTy = compType; 6090 return compType; 6091 } 6092 6093 QualType compType = UsualArithmeticConversions(LHS, RHS, CompLHSTy); 6094 if (LHS.isInvalid() || RHS.isInvalid()) 6095 return QualType(); 6096 6097 // handle the common case first (both operands are arithmetic). 6098 if (LHS.get()->getType()->isArithmeticType() && 6099 RHS.get()->getType()->isArithmeticType()) { 6100 if (CompLHSTy) *CompLHSTy = compType; 6101 return compType; 6102 } 6103 6104 // Put any potential pointer into PExp 6105 Expr* PExp = LHS.get(), *IExp = RHS.get(); 6106 if (IExp->getType()->isAnyPointerType()) 6107 std::swap(PExp, IExp); 6108 6109 if (!PExp->getType()->isAnyPointerType()) 6110 return InvalidOperands(Loc, LHS, RHS); 6111 6112 if (!IExp->getType()->isIntegerType()) 6113 return InvalidOperands(Loc, LHS, RHS); 6114 6115 if (!checkArithmeticOpPointerOperand(*this, Loc, PExp)) 6116 return QualType(); 6117 6118 // Diagnose bad cases where we step over interface counts. 6119 if (!checkArithmethicPointerOnNonFragileABI(*this, Loc, PExp)) 6120 return QualType(); 6121 6122 // Check array bounds for pointer arithemtic 6123 CheckArrayAccess(PExp, IExp); 6124 6125 if (CompLHSTy) { 6126 QualType LHSTy = Context.isPromotableBitField(LHS.get()); 6127 if (LHSTy.isNull()) { 6128 LHSTy = LHS.get()->getType(); 6129 if (LHSTy->isPromotableIntegerType()) 6130 LHSTy = Context.getPromotedIntegerType(LHSTy); 6131 } 6132 *CompLHSTy = LHSTy; 6133 } 6134 6135 return PExp->getType(); 6136 } 6137 6138 // C99 6.5.6 6139 QualType Sema::CheckSubtractionOperands(ExprResult &LHS, ExprResult &RHS, 6140 SourceLocation Loc, 6141 QualType* CompLHSTy) { 6142 checkArithmeticNull(*this, LHS, RHS, Loc, /*isCompare=*/false); 6143 6144 if (LHS.get()->getType()->isVectorType() || 6145 RHS.get()->getType()->isVectorType()) { 6146 QualType compType = CheckVectorOperands(LHS, RHS, Loc, CompLHSTy); 6147 if (CompLHSTy) *CompLHSTy = compType; 6148 return compType; 6149 } 6150 6151 QualType compType = UsualArithmeticConversions(LHS, RHS, CompLHSTy); 6152 if (LHS.isInvalid() || RHS.isInvalid()) 6153 return QualType(); 6154 6155 // Enforce type constraints: C99 6.5.6p3. 6156 6157 // Handle the common case first (both operands are arithmetic). 6158 if (LHS.get()->getType()->isArithmeticType() && 6159 RHS.get()->getType()->isArithmeticType()) { 6160 if (CompLHSTy) *CompLHSTy = compType; 6161 return compType; 6162 } 6163 6164 // Either ptr - int or ptr - ptr. 6165 if (LHS.get()->getType()->isAnyPointerType()) { 6166 QualType lpointee = LHS.get()->getType()->getPointeeType(); 6167 6168 // Diagnose bad cases where we step over interface counts. 6169 if (!checkArithmethicPointerOnNonFragileABI(*this, Loc, LHS.get())) 6170 return QualType(); 6171 6172 // The result type of a pointer-int computation is the pointer type. 6173 if (RHS.get()->getType()->isIntegerType()) { 6174 if (!checkArithmeticOpPointerOperand(*this, Loc, LHS.get())) 6175 return QualType(); 6176 6177 Expr *IExpr = RHS.get()->IgnoreParenCasts(); 6178 UnaryOperator negRex(IExpr, UO_Minus, IExpr->getType(), VK_RValue, 6179 OK_Ordinary, IExpr->getExprLoc()); 6180 // Check array bounds for pointer arithemtic 6181 CheckArrayAccess(LHS.get()->IgnoreParenCasts(), &negRex); 6182 6183 if (CompLHSTy) *CompLHSTy = LHS.get()->getType(); 6184 return LHS.get()->getType(); 6185 } 6186 6187 // Handle pointer-pointer subtractions. 6188 if (const PointerType *RHSPTy 6189 = RHS.get()->getType()->getAs<PointerType>()) { 6190 QualType rpointee = RHSPTy->getPointeeType(); 6191 6192 if (getLangOptions().CPlusPlus) { 6193 // Pointee types must be the same: C++ [expr.add] 6194 if (!Context.hasSameUnqualifiedType(lpointee, rpointee)) { 6195 diagnosePointerIncompatibility(*this, Loc, LHS.get(), RHS.get()); 6196 } 6197 } else { 6198 // Pointee types must be compatible C99 6.5.6p3 6199 if (!Context.typesAreCompatible( 6200 Context.getCanonicalType(lpointee).getUnqualifiedType(), 6201 Context.getCanonicalType(rpointee).getUnqualifiedType())) { 6202 diagnosePointerIncompatibility(*this, Loc, LHS.get(), RHS.get()); 6203 return QualType(); 6204 } 6205 } 6206 6207 if (!checkArithmeticBinOpPointerOperands(*this, Loc, 6208 LHS.get(), RHS.get())) 6209 return QualType(); 6210 6211 if (CompLHSTy) *CompLHSTy = LHS.get()->getType(); 6212 return Context.getPointerDiffType(); 6213 } 6214 } 6215 6216 return InvalidOperands(Loc, LHS, RHS); 6217 } 6218 6219 static bool isScopedEnumerationType(QualType T) { 6220 if (const EnumType *ET = dyn_cast<EnumType>(T)) 6221 return ET->getDecl()->isScoped(); 6222 return false; 6223 } 6224 6225 static void DiagnoseBadShiftValues(Sema& S, ExprResult &LHS, ExprResult &RHS, 6226 SourceLocation Loc, unsigned Opc, 6227 QualType LHSType) { 6228 llvm::APSInt Right; 6229 // Check right/shifter operand 6230 if (RHS.get()->isValueDependent() || 6231 !RHS.get()->isIntegerConstantExpr(Right, S.Context)) 6232 return; 6233 6234 if (Right.isNegative()) { 6235 S.DiagRuntimeBehavior(Loc, RHS.get(), 6236 S.PDiag(diag::warn_shift_negative) 6237 << RHS.get()->getSourceRange()); 6238 return; 6239 } 6240 llvm::APInt LeftBits(Right.getBitWidth(), 6241 S.Context.getTypeSize(LHS.get()->getType())); 6242 if (Right.uge(LeftBits)) { 6243 S.DiagRuntimeBehavior(Loc, RHS.get(), 6244 S.PDiag(diag::warn_shift_gt_typewidth) 6245 << RHS.get()->getSourceRange()); 6246 return; 6247 } 6248 if (Opc != BO_Shl) 6249 return; 6250 6251 // When left shifting an ICE which is signed, we can check for overflow which 6252 // according to C++ has undefined behavior ([expr.shift] 5.8/2). Unsigned 6253 // integers have defined behavior modulo one more than the maximum value 6254 // representable in the result type, so never warn for those. 6255 llvm::APSInt Left; 6256 if (LHS.get()->isValueDependent() || 6257 !LHS.get()->isIntegerConstantExpr(Left, S.Context) || 6258 LHSType->hasUnsignedIntegerRepresentation()) 6259 return; 6260 llvm::APInt ResultBits = 6261 static_cast<llvm::APInt&>(Right) + Left.getMinSignedBits(); 6262 if (LeftBits.uge(ResultBits)) 6263 return; 6264 llvm::APSInt Result = Left.extend(ResultBits.getLimitedValue()); 6265 Result = Result.shl(Right); 6266 6267 // Print the bit representation of the signed integer as an unsigned 6268 // hexadecimal number. 6269 llvm::SmallString<40> HexResult; 6270 Result.toString(HexResult, 16, /*Signed =*/false, /*Literal =*/true); 6271 6272 // If we are only missing a sign bit, this is less likely to result in actual 6273 // bugs -- if the result is cast back to an unsigned type, it will have the 6274 // expected value. Thus we place this behind a different warning that can be 6275 // turned off separately if needed. 6276 if (LeftBits == ResultBits - 1) { 6277 S.Diag(Loc, diag::warn_shift_result_sets_sign_bit) 6278 << HexResult.str() << LHSType 6279 << LHS.get()->getSourceRange() << RHS.get()->getSourceRange(); 6280 return; 6281 } 6282 6283 S.Diag(Loc, diag::warn_shift_result_gt_typewidth) 6284 << HexResult.str() << Result.getMinSignedBits() << LHSType 6285 << Left.getBitWidth() << LHS.get()->getSourceRange() 6286 << RHS.get()->getSourceRange(); 6287 } 6288 6289 // C99 6.5.7 6290 QualType Sema::CheckShiftOperands(ExprResult &LHS, ExprResult &RHS, 6291 SourceLocation Loc, unsigned Opc, 6292 bool IsCompAssign) { 6293 checkArithmeticNull(*this, LHS, RHS, Loc, /*isCompare=*/false); 6294 6295 // C99 6.5.7p2: Each of the operands shall have integer type. 6296 if (!LHS.get()->getType()->hasIntegerRepresentation() || 6297 !RHS.get()->getType()->hasIntegerRepresentation()) 6298 return InvalidOperands(Loc, LHS, RHS); 6299 6300 // C++0x: Don't allow scoped enums. FIXME: Use something better than 6301 // hasIntegerRepresentation() above instead of this. 6302 if (isScopedEnumerationType(LHS.get()->getType()) || 6303 isScopedEnumerationType(RHS.get()->getType())) { 6304 return InvalidOperands(Loc, LHS, RHS); 6305 } 6306 6307 // Vector shifts promote their scalar inputs to vector type. 6308 if (LHS.get()->getType()->isVectorType() || 6309 RHS.get()->getType()->isVectorType()) 6310 return CheckVectorOperands(LHS, RHS, Loc, IsCompAssign); 6311 6312 // Shifts don't perform usual arithmetic conversions, they just do integer 6313 // promotions on each operand. C99 6.5.7p3 6314 6315 // For the LHS, do usual unary conversions, but then reset them away 6316 // if this is a compound assignment. 6317 ExprResult OldLHS = LHS; 6318 LHS = UsualUnaryConversions(LHS.take()); 6319 if (LHS.isInvalid()) 6320 return QualType(); 6321 QualType LHSType = LHS.get()->getType(); 6322 if (IsCompAssign) LHS = OldLHS; 6323 6324 // The RHS is simpler. 6325 RHS = UsualUnaryConversions(RHS.take()); 6326 if (RHS.isInvalid()) 6327 return QualType(); 6328 6329 // Sanity-check shift operands 6330 DiagnoseBadShiftValues(*this, LHS, RHS, Loc, Opc, LHSType); 6331 6332 // "The type of the result is that of the promoted left operand." 6333 return LHSType; 6334 } 6335 6336 static bool IsWithinTemplateSpecialization(Decl *D) { 6337 if (DeclContext *DC = D->getDeclContext()) { 6338 if (isa<ClassTemplateSpecializationDecl>(DC)) 6339 return true; 6340 if (FunctionDecl *FD = dyn_cast<FunctionDecl>(DC)) 6341 return FD->isFunctionTemplateSpecialization(); 6342 } 6343 return false; 6344 } 6345 6346 /// If two different enums are compared, raise a warning. 6347 static void checkEnumComparison(Sema &S, SourceLocation Loc, ExprResult &LHS, 6348 ExprResult &RHS) { 6349 QualType LHSStrippedType = LHS.get()->IgnoreParenImpCasts()->getType(); 6350 QualType RHSStrippedType = RHS.get()->IgnoreParenImpCasts()->getType(); 6351 6352 const EnumType *LHSEnumType = LHSStrippedType->getAs<EnumType>(); 6353 if (!LHSEnumType) 6354 return; 6355 const EnumType *RHSEnumType = RHSStrippedType->getAs<EnumType>(); 6356 if (!RHSEnumType) 6357 return; 6358 6359 // Ignore anonymous enums. 6360 if (!LHSEnumType->getDecl()->getIdentifier()) 6361 return; 6362 if (!RHSEnumType->getDecl()->getIdentifier()) 6363 return; 6364 6365 if (S.Context.hasSameUnqualifiedType(LHSStrippedType, RHSStrippedType)) 6366 return; 6367 6368 S.Diag(Loc, diag::warn_comparison_of_mixed_enum_types) 6369 << LHSStrippedType << RHSStrippedType 6370 << LHS.get()->getSourceRange() << RHS.get()->getSourceRange(); 6371 } 6372 6373 /// \brief Diagnose bad pointer comparisons. 6374 static void diagnoseDistinctPointerComparison(Sema &S, SourceLocation Loc, 6375 ExprResult &LHS, ExprResult &RHS, 6376 bool IsError) { 6377 S.Diag(Loc, IsError ? diag::err_typecheck_comparison_of_distinct_pointers 6378 : diag::ext_typecheck_comparison_of_distinct_pointers) 6379 << LHS.get()->getType() << RHS.get()->getType() 6380 << LHS.get()->getSourceRange() << RHS.get()->getSourceRange(); 6381 } 6382 6383 /// \brief Returns false if the pointers are converted to a composite type, 6384 /// true otherwise. 6385 static bool convertPointersToCompositeType(Sema &S, SourceLocation Loc, 6386 ExprResult &LHS, ExprResult &RHS) { 6387 // C++ [expr.rel]p2: 6388 // [...] Pointer conversions (4.10) and qualification 6389 // conversions (4.4) are performed on pointer operands (or on 6390 // a pointer operand and a null pointer constant) to bring 6391 // them to their composite pointer type. [...] 6392 // 6393 // C++ [expr.eq]p1 uses the same notion for (in)equality 6394 // comparisons of pointers. 6395 6396 // C++ [expr.eq]p2: 6397 // In addition, pointers to members can be compared, or a pointer to 6398 // member and a null pointer constant. Pointer to member conversions 6399 // (4.11) and qualification conversions (4.4) are performed to bring 6400 // them to a common type. If one operand is a null pointer constant, 6401 // the common type is the type of the other operand. Otherwise, the 6402 // common type is a pointer to member type similar (4.4) to the type 6403 // of one of the operands, with a cv-qualification signature (4.4) 6404 // that is the union of the cv-qualification signatures of the operand 6405 // types. 6406 6407 QualType LHSType = LHS.get()->getType(); 6408 QualType RHSType = RHS.get()->getType(); 6409 assert((LHSType->isPointerType() && RHSType->isPointerType()) || 6410 (LHSType->isMemberPointerType() && RHSType->isMemberPointerType())); 6411 6412 bool NonStandardCompositeType = false; 6413 bool *BoolPtr = S.isSFINAEContext() ? 0 : &NonStandardCompositeType; 6414 QualType T = S.FindCompositePointerType(Loc, LHS, RHS, BoolPtr); 6415 if (T.isNull()) { 6416 diagnoseDistinctPointerComparison(S, Loc, LHS, RHS, /*isError*/true); 6417 return true; 6418 } 6419 6420 if (NonStandardCompositeType) 6421 S.Diag(Loc, diag::ext_typecheck_comparison_of_distinct_pointers_nonstandard) 6422 << LHSType << RHSType << T << LHS.get()->getSourceRange() 6423 << RHS.get()->getSourceRange(); 6424 6425 LHS = S.ImpCastExprToType(LHS.take(), T, CK_BitCast); 6426 RHS = S.ImpCastExprToType(RHS.take(), T, CK_BitCast); 6427 return false; 6428 } 6429 6430 static void diagnoseFunctionPointerToVoidComparison(Sema &S, SourceLocation Loc, 6431 ExprResult &LHS, 6432 ExprResult &RHS, 6433 bool IsError) { 6434 S.Diag(Loc, IsError ? diag::err_typecheck_comparison_of_fptr_to_void 6435 : diag::ext_typecheck_comparison_of_fptr_to_void) 6436 << LHS.get()->getType() << RHS.get()->getType() 6437 << LHS.get()->getSourceRange() << RHS.get()->getSourceRange(); 6438 } 6439 6440 // C99 6.5.8, C++ [expr.rel] 6441 QualType Sema::CheckCompareOperands(ExprResult &LHS, ExprResult &RHS, 6442 SourceLocation Loc, unsigned OpaqueOpc, 6443 bool IsRelational) { 6444 checkArithmeticNull(*this, LHS, RHS, Loc, /*isCompare=*/true); 6445 6446 BinaryOperatorKind Opc = (BinaryOperatorKind) OpaqueOpc; 6447 6448 // Handle vector comparisons separately. 6449 if (LHS.get()->getType()->isVectorType() || 6450 RHS.get()->getType()->isVectorType()) 6451 return CheckVectorCompareOperands(LHS, RHS, Loc, IsRelational); 6452 6453 QualType LHSType = LHS.get()->getType(); 6454 QualType RHSType = RHS.get()->getType(); 6455 6456 Expr *LHSStripped = LHS.get()->IgnoreParenImpCasts(); 6457 Expr *RHSStripped = RHS.get()->IgnoreParenImpCasts(); 6458 6459 checkEnumComparison(*this, Loc, LHS, RHS); 6460 6461 if (!LHSType->hasFloatingRepresentation() && 6462 !(LHSType->isBlockPointerType() && IsRelational) && 6463 !LHS.get()->getLocStart().isMacroID() && 6464 !RHS.get()->getLocStart().isMacroID()) { 6465 // For non-floating point types, check for self-comparisons of the form 6466 // x == x, x != x, x < x, etc. These always evaluate to a constant, and 6467 // often indicate logic errors in the program. 6468 // 6469 // NOTE: Don't warn about comparison expressions resulting from macro 6470 // expansion. Also don't warn about comparisons which are only self 6471 // comparisons within a template specialization. The warnings should catch 6472 // obvious cases in the definition of the template anyways. The idea is to 6473 // warn when the typed comparison operator will always evaluate to the same 6474 // result. 6475 if (DeclRefExpr* DRL = dyn_cast<DeclRefExpr>(LHSStripped)) { 6476 if (DeclRefExpr* DRR = dyn_cast<DeclRefExpr>(RHSStripped)) { 6477 if (DRL->getDecl() == DRR->getDecl() && 6478 !IsWithinTemplateSpecialization(DRL->getDecl())) { 6479 DiagRuntimeBehavior(Loc, 0, PDiag(diag::warn_comparison_always) 6480 << 0 // self- 6481 << (Opc == BO_EQ 6482 || Opc == BO_LE 6483 || Opc == BO_GE)); 6484 } else if (LHSType->isArrayType() && RHSType->isArrayType() && 6485 !DRL->getDecl()->getType()->isReferenceType() && 6486 !DRR->getDecl()->getType()->isReferenceType()) { 6487 // what is it always going to eval to? 6488 char always_evals_to; 6489 switch(Opc) { 6490 case BO_EQ: // e.g. array1 == array2 6491 always_evals_to = 0; // false 6492 break; 6493 case BO_NE: // e.g. array1 != array2 6494 always_evals_to = 1; // true 6495 break; 6496 default: 6497 // best we can say is 'a constant' 6498 always_evals_to = 2; // e.g. array1 <= array2 6499 break; 6500 } 6501 DiagRuntimeBehavior(Loc, 0, PDiag(diag::warn_comparison_always) 6502 << 1 // array 6503 << always_evals_to); 6504 } 6505 } 6506 } 6507 6508 if (isa<CastExpr>(LHSStripped)) 6509 LHSStripped = LHSStripped->IgnoreParenCasts(); 6510 if (isa<CastExpr>(RHSStripped)) 6511 RHSStripped = RHSStripped->IgnoreParenCasts(); 6512 6513 // Warn about comparisons against a string constant (unless the other 6514 // operand is null), the user probably wants strcmp. 6515 Expr *literalString = 0; 6516 Expr *literalStringStripped = 0; 6517 if ((isa<StringLiteral>(LHSStripped) || isa<ObjCEncodeExpr>(LHSStripped)) && 6518 !RHSStripped->isNullPointerConstant(Context, 6519 Expr::NPC_ValueDependentIsNull)) { 6520 literalString = LHS.get(); 6521 literalStringStripped = LHSStripped; 6522 } else if ((isa<StringLiteral>(RHSStripped) || 6523 isa<ObjCEncodeExpr>(RHSStripped)) && 6524 !LHSStripped->isNullPointerConstant(Context, 6525 Expr::NPC_ValueDependentIsNull)) { 6526 literalString = RHS.get(); 6527 literalStringStripped = RHSStripped; 6528 } 6529 6530 if (literalString) { 6531 std::string resultComparison; 6532 switch (Opc) { 6533 case BO_LT: resultComparison = ") < 0"; break; 6534 case BO_GT: resultComparison = ") > 0"; break; 6535 case BO_LE: resultComparison = ") <= 0"; break; 6536 case BO_GE: resultComparison = ") >= 0"; break; 6537 case BO_EQ: resultComparison = ") == 0"; break; 6538 case BO_NE: resultComparison = ") != 0"; break; 6539 default: llvm_unreachable("Invalid comparison operator"); 6540 } 6541 6542 DiagRuntimeBehavior(Loc, 0, 6543 PDiag(diag::warn_stringcompare) 6544 << isa<ObjCEncodeExpr>(literalStringStripped) 6545 << literalString->getSourceRange()); 6546 } 6547 } 6548 6549 // C99 6.5.8p3 / C99 6.5.9p4 6550 if (LHS.get()->getType()->isArithmeticType() && 6551 RHS.get()->getType()->isArithmeticType()) { 6552 UsualArithmeticConversions(LHS, RHS); 6553 if (LHS.isInvalid() || RHS.isInvalid()) 6554 return QualType(); 6555 } 6556 else { 6557 LHS = UsualUnaryConversions(LHS.take()); 6558 if (LHS.isInvalid()) 6559 return QualType(); 6560 6561 RHS = UsualUnaryConversions(RHS.take()); 6562 if (RHS.isInvalid()) 6563 return QualType(); 6564 } 6565 6566 LHSType = LHS.get()->getType(); 6567 RHSType = RHS.get()->getType(); 6568 6569 // The result of comparisons is 'bool' in C++, 'int' in C. 6570 QualType ResultTy = Context.getLogicalOperationType(); 6571 6572 if (IsRelational) { 6573 if (LHSType->isRealType() && RHSType->isRealType()) 6574 return ResultTy; 6575 } else { 6576 // Check for comparisons of floating point operands using != and ==. 6577 if (LHSType->hasFloatingRepresentation()) 6578 CheckFloatComparison(Loc, LHS.get(), RHS.get()); 6579 6580 if (LHSType->isArithmeticType() && RHSType->isArithmeticType()) 6581 return ResultTy; 6582 } 6583 6584 bool LHSIsNull = LHS.get()->isNullPointerConstant(Context, 6585 Expr::NPC_ValueDependentIsNull); 6586 bool RHSIsNull = RHS.get()->isNullPointerConstant(Context, 6587 Expr::NPC_ValueDependentIsNull); 6588 6589 // All of the following pointer-related warnings are GCC extensions, except 6590 // when handling null pointer constants. 6591 if (LHSType->isPointerType() && RHSType->isPointerType()) { // C99 6.5.8p2 6592 QualType LCanPointeeTy = 6593 LHSType->castAs<PointerType>()->getPointeeType().getCanonicalType(); 6594 QualType RCanPointeeTy = 6595 RHSType->castAs<PointerType>()->getPointeeType().getCanonicalType(); 6596 6597 if (getLangOptions().CPlusPlus) { 6598 if (LCanPointeeTy == RCanPointeeTy) 6599 return ResultTy; 6600 if (!IsRelational && 6601 (LCanPointeeTy->isVoidType() || RCanPointeeTy->isVoidType())) { 6602 // Valid unless comparison between non-null pointer and function pointer 6603 // This is a gcc extension compatibility comparison. 6604 // In a SFINAE context, we treat this as a hard error to maintain 6605 // conformance with the C++ standard. 6606 if ((LCanPointeeTy->isFunctionType() || RCanPointeeTy->isFunctionType()) 6607 && !LHSIsNull && !RHSIsNull) { 6608 diagnoseFunctionPointerToVoidComparison( 6609 *this, Loc, LHS, RHS, /*isError*/ isSFINAEContext()); 6610 6611 if (isSFINAEContext()) 6612 return QualType(); 6613 6614 RHS = ImpCastExprToType(RHS.take(), LHSType, CK_BitCast); 6615 return ResultTy; 6616 } 6617 } 6618 6619 if (convertPointersToCompositeType(*this, Loc, LHS, RHS)) 6620 return QualType(); 6621 else 6622 return ResultTy; 6623 } 6624 // C99 6.5.9p2 and C99 6.5.8p2 6625 if (Context.typesAreCompatible(LCanPointeeTy.getUnqualifiedType(), 6626 RCanPointeeTy.getUnqualifiedType())) { 6627 // Valid unless a relational comparison of function pointers 6628 if (IsRelational && LCanPointeeTy->isFunctionType()) { 6629 Diag(Loc, diag::ext_typecheck_ordered_comparison_of_function_pointers) 6630 << LHSType << RHSType << LHS.get()->getSourceRange() 6631 << RHS.get()->getSourceRange(); 6632 } 6633 } else if (!IsRelational && 6634 (LCanPointeeTy->isVoidType() || RCanPointeeTy->isVoidType())) { 6635 // Valid unless comparison between non-null pointer and function pointer 6636 if ((LCanPointeeTy->isFunctionType() || RCanPointeeTy->isFunctionType()) 6637 && !LHSIsNull && !RHSIsNull) 6638 diagnoseFunctionPointerToVoidComparison(*this, Loc, LHS, RHS, 6639 /*isError*/false); 6640 } else { 6641 // Invalid 6642 diagnoseDistinctPointerComparison(*this, Loc, LHS, RHS, /*isError*/false); 6643 } 6644 if (LCanPointeeTy != RCanPointeeTy) { 6645 if (LHSIsNull && !RHSIsNull) 6646 LHS = ImpCastExprToType(LHS.take(), RHSType, CK_BitCast); 6647 else 6648 RHS = ImpCastExprToType(RHS.take(), LHSType, CK_BitCast); 6649 } 6650 return ResultTy; 6651 } 6652 6653 if (getLangOptions().CPlusPlus) { 6654 // Comparison of nullptr_t with itself. 6655 if (LHSType->isNullPtrType() && RHSType->isNullPtrType()) 6656 return ResultTy; 6657 6658 // Comparison of pointers with null pointer constants and equality 6659 // comparisons of member pointers to null pointer constants. 6660 if (RHSIsNull && 6661 ((LHSType->isAnyPointerType() || LHSType->isNullPtrType()) || 6662 (!IsRelational && 6663 (LHSType->isMemberPointerType() || LHSType->isBlockPointerType())))) { 6664 RHS = ImpCastExprToType(RHS.take(), LHSType, 6665 LHSType->isMemberPointerType() 6666 ? CK_NullToMemberPointer 6667 : CK_NullToPointer); 6668 return ResultTy; 6669 } 6670 if (LHSIsNull && 6671 ((RHSType->isAnyPointerType() || RHSType->isNullPtrType()) || 6672 (!IsRelational && 6673 (RHSType->isMemberPointerType() || RHSType->isBlockPointerType())))) { 6674 LHS = ImpCastExprToType(LHS.take(), RHSType, 6675 RHSType->isMemberPointerType() 6676 ? CK_NullToMemberPointer 6677 : CK_NullToPointer); 6678 return ResultTy; 6679 } 6680 6681 // Comparison of member pointers. 6682 if (!IsRelational && 6683 LHSType->isMemberPointerType() && RHSType->isMemberPointerType()) { 6684 if (convertPointersToCompositeType(*this, Loc, LHS, RHS)) 6685 return QualType(); 6686 else 6687 return ResultTy; 6688 } 6689 6690 // Handle scoped enumeration types specifically, since they don't promote 6691 // to integers. 6692 if (LHS.get()->getType()->isEnumeralType() && 6693 Context.hasSameUnqualifiedType(LHS.get()->getType(), 6694 RHS.get()->getType())) 6695 return ResultTy; 6696 } 6697 6698 // Handle block pointer types. 6699 if (!IsRelational && LHSType->isBlockPointerType() && 6700 RHSType->isBlockPointerType()) { 6701 QualType lpointee = LHSType->castAs<BlockPointerType>()->getPointeeType(); 6702 QualType rpointee = RHSType->castAs<BlockPointerType>()->getPointeeType(); 6703 6704 if (!LHSIsNull && !RHSIsNull && 6705 !Context.typesAreCompatible(lpointee, rpointee)) { 6706 Diag(Loc, diag::err_typecheck_comparison_of_distinct_blocks) 6707 << LHSType << RHSType << LHS.get()->getSourceRange() 6708 << RHS.get()->getSourceRange(); 6709 } 6710 RHS = ImpCastExprToType(RHS.take(), LHSType, CK_BitCast); 6711 return ResultTy; 6712 } 6713 6714 // Allow block pointers to be compared with null pointer constants. 6715 if (!IsRelational 6716 && ((LHSType->isBlockPointerType() && RHSType->isPointerType()) 6717 || (LHSType->isPointerType() && RHSType->isBlockPointerType()))) { 6718 if (!LHSIsNull && !RHSIsNull) { 6719 if (!((RHSType->isPointerType() && RHSType->castAs<PointerType>() 6720 ->getPointeeType()->isVoidType()) 6721 || (LHSType->isPointerType() && LHSType->castAs<PointerType>() 6722 ->getPointeeType()->isVoidType()))) 6723 Diag(Loc, diag::err_typecheck_comparison_of_distinct_blocks) 6724 << LHSType << RHSType << LHS.get()->getSourceRange() 6725 << RHS.get()->getSourceRange(); 6726 } 6727 if (LHSIsNull && !RHSIsNull) 6728 LHS = ImpCastExprToType(LHS.take(), RHSType, 6729 RHSType->isPointerType() ? CK_BitCast 6730 : CK_AnyPointerToBlockPointerCast); 6731 else 6732 RHS = ImpCastExprToType(RHS.take(), LHSType, 6733 LHSType->isPointerType() ? CK_BitCast 6734 : CK_AnyPointerToBlockPointerCast); 6735 return ResultTy; 6736 } 6737 6738 if (LHSType->isObjCObjectPointerType() || 6739 RHSType->isObjCObjectPointerType()) { 6740 const PointerType *LPT = LHSType->getAs<PointerType>(); 6741 const PointerType *RPT = RHSType->getAs<PointerType>(); 6742 if (LPT || RPT) { 6743 bool LPtrToVoid = LPT ? LPT->getPointeeType()->isVoidType() : false; 6744 bool RPtrToVoid = RPT ? RPT->getPointeeType()->isVoidType() : false; 6745 6746 if (!LPtrToVoid && !RPtrToVoid && 6747 !Context.typesAreCompatible(LHSType, RHSType)) { 6748 diagnoseDistinctPointerComparison(*this, Loc, LHS, RHS, 6749 /*isError*/false); 6750 } 6751 if (LHSIsNull && !RHSIsNull) 6752 LHS = ImpCastExprToType(LHS.take(), RHSType, 6753 RPT ? CK_BitCast :CK_CPointerToObjCPointerCast); 6754 else 6755 RHS = ImpCastExprToType(RHS.take(), LHSType, 6756 LPT ? CK_BitCast :CK_CPointerToObjCPointerCast); 6757 return ResultTy; 6758 } 6759 if (LHSType->isObjCObjectPointerType() && 6760 RHSType->isObjCObjectPointerType()) { 6761 if (!Context.areComparableObjCPointerTypes(LHSType, RHSType)) 6762 diagnoseDistinctPointerComparison(*this, Loc, LHS, RHS, 6763 /*isError*/false); 6764 if (LHSIsNull && !RHSIsNull) 6765 LHS = ImpCastExprToType(LHS.take(), RHSType, CK_BitCast); 6766 else 6767 RHS = ImpCastExprToType(RHS.take(), LHSType, CK_BitCast); 6768 return ResultTy; 6769 } 6770 } 6771 if ((LHSType->isAnyPointerType() && RHSType->isIntegerType()) || 6772 (LHSType->isIntegerType() && RHSType->isAnyPointerType())) { 6773 unsigned DiagID = 0; 6774 bool isError = false; 6775 if ((LHSIsNull && LHSType->isIntegerType()) || 6776 (RHSIsNull && RHSType->isIntegerType())) { 6777 if (IsRelational && !getLangOptions().CPlusPlus) 6778 DiagID = diag::ext_typecheck_ordered_comparison_of_pointer_and_zero; 6779 } else if (IsRelational && !getLangOptions().CPlusPlus) 6780 DiagID = diag::ext_typecheck_ordered_comparison_of_pointer_integer; 6781 else if (getLangOptions().CPlusPlus) { 6782 DiagID = diag::err_typecheck_comparison_of_pointer_integer; 6783 isError = true; 6784 } else 6785 DiagID = diag::ext_typecheck_comparison_of_pointer_integer; 6786 6787 if (DiagID) { 6788 Diag(Loc, DiagID) 6789 << LHSType << RHSType << LHS.get()->getSourceRange() 6790 << RHS.get()->getSourceRange(); 6791 if (isError) 6792 return QualType(); 6793 } 6794 6795 if (LHSType->isIntegerType()) 6796 LHS = ImpCastExprToType(LHS.take(), RHSType, 6797 LHSIsNull ? CK_NullToPointer : CK_IntegralToPointer); 6798 else 6799 RHS = ImpCastExprToType(RHS.take(), LHSType, 6800 RHSIsNull ? CK_NullToPointer : CK_IntegralToPointer); 6801 return ResultTy; 6802 } 6803 6804 // Handle block pointers. 6805 if (!IsRelational && RHSIsNull 6806 && LHSType->isBlockPointerType() && RHSType->isIntegerType()) { 6807 RHS = ImpCastExprToType(RHS.take(), LHSType, CK_NullToPointer); 6808 return ResultTy; 6809 } 6810 if (!IsRelational && LHSIsNull 6811 && LHSType->isIntegerType() && RHSType->isBlockPointerType()) { 6812 LHS = ImpCastExprToType(LHS.take(), RHSType, CK_NullToPointer); 6813 return ResultTy; 6814 } 6815 6816 return InvalidOperands(Loc, LHS, RHS); 6817 } 6818 6819 /// CheckVectorCompareOperands - vector comparisons are a clang extension that 6820 /// operates on extended vector types. Instead of producing an IntTy result, 6821 /// like a scalar comparison, a vector comparison produces a vector of integer 6822 /// types. 6823 QualType Sema::CheckVectorCompareOperands(ExprResult &LHS, ExprResult &RHS, 6824 SourceLocation Loc, 6825 bool IsRelational) { 6826 // Check to make sure we're operating on vectors of the same type and width, 6827 // Allowing one side to be a scalar of element type. 6828 QualType vType = CheckVectorOperands(LHS, RHS, Loc, /*isCompAssign*/false); 6829 if (vType.isNull()) 6830 return vType; 6831 6832 QualType LHSType = LHS.get()->getType(); 6833 QualType RHSType = RHS.get()->getType(); 6834 6835 // If AltiVec, the comparison results in a numeric type, i.e. 6836 // bool for C++, int for C 6837 if (vType->getAs<VectorType>()->getVectorKind() == VectorType::AltiVecVector) 6838 return Context.getLogicalOperationType(); 6839 6840 // For non-floating point types, check for self-comparisons of the form 6841 // x == x, x != x, x < x, etc. These always evaluate to a constant, and 6842 // often indicate logic errors in the program. 6843 if (!LHSType->hasFloatingRepresentation()) { 6844 if (DeclRefExpr* DRL 6845 = dyn_cast<DeclRefExpr>(LHS.get()->IgnoreParenImpCasts())) 6846 if (DeclRefExpr* DRR 6847 = dyn_cast<DeclRefExpr>(RHS.get()->IgnoreParenImpCasts())) 6848 if (DRL->getDecl() == DRR->getDecl()) 6849 DiagRuntimeBehavior(Loc, 0, 6850 PDiag(diag::warn_comparison_always) 6851 << 0 // self- 6852 << 2 // "a constant" 6853 ); 6854 } 6855 6856 // Check for comparisons of floating point operands using != and ==. 6857 if (!IsRelational && LHSType->hasFloatingRepresentation()) { 6858 assert (RHSType->hasFloatingRepresentation()); 6859 CheckFloatComparison(Loc, LHS.get(), RHS.get()); 6860 } 6861 6862 // Return a signed type that is of identical size and number of elements. 6863 // For floating point vectors, return an integer type of identical size 6864 // and number of elements. 6865 const VectorType *VTy = LHSType->getAs<VectorType>(); 6866 unsigned TypeSize = Context.getTypeSize(VTy->getElementType()); 6867 if (TypeSize == Context.getTypeSize(Context.CharTy)) 6868 return Context.getExtVectorType(Context.CharTy, VTy->getNumElements()); 6869 else if (TypeSize == Context.getTypeSize(Context.ShortTy)) 6870 return Context.getExtVectorType(Context.ShortTy, VTy->getNumElements()); 6871 else if (TypeSize == Context.getTypeSize(Context.IntTy)) 6872 return Context.getExtVectorType(Context.IntTy, VTy->getNumElements()); 6873 else if (TypeSize == Context.getTypeSize(Context.LongTy)) 6874 return Context.getExtVectorType(Context.LongTy, VTy->getNumElements()); 6875 assert(TypeSize == Context.getTypeSize(Context.LongLongTy) && 6876 "Unhandled vector element size in vector compare"); 6877 return Context.getExtVectorType(Context.LongLongTy, VTy->getNumElements()); 6878 } 6879 6880 inline QualType Sema::CheckBitwiseOperands( 6881 ExprResult &LHS, ExprResult &RHS, SourceLocation Loc, bool IsCompAssign) { 6882 checkArithmeticNull(*this, LHS, RHS, Loc, /*isCompare=*/false); 6883 6884 if (LHS.get()->getType()->isVectorType() || 6885 RHS.get()->getType()->isVectorType()) { 6886 if (LHS.get()->getType()->hasIntegerRepresentation() && 6887 RHS.get()->getType()->hasIntegerRepresentation()) 6888 return CheckVectorOperands(LHS, RHS, Loc, IsCompAssign); 6889 6890 return InvalidOperands(Loc, LHS, RHS); 6891 } 6892 6893 ExprResult LHSResult = Owned(LHS), RHSResult = Owned(RHS); 6894 QualType compType = UsualArithmeticConversions(LHSResult, RHSResult, 6895 IsCompAssign); 6896 if (LHSResult.isInvalid() || RHSResult.isInvalid()) 6897 return QualType(); 6898 LHS = LHSResult.take(); 6899 RHS = RHSResult.take(); 6900 6901 if (LHS.get()->getType()->isIntegralOrUnscopedEnumerationType() && 6902 RHS.get()->getType()->isIntegralOrUnscopedEnumerationType()) 6903 return compType; 6904 return InvalidOperands(Loc, LHS, RHS); 6905 } 6906 6907 inline QualType Sema::CheckLogicalOperands( // C99 6.5.[13,14] 6908 ExprResult &LHS, ExprResult &RHS, SourceLocation Loc, unsigned Opc) { 6909 6910 // Diagnose cases where the user write a logical and/or but probably meant a 6911 // bitwise one. We do this when the LHS is a non-bool integer and the RHS 6912 // is a constant. 6913 if (LHS.get()->getType()->isIntegerType() && 6914 !LHS.get()->getType()->isBooleanType() && 6915 RHS.get()->getType()->isIntegerType() && !RHS.get()->isValueDependent() && 6916 // Don't warn in macros or template instantiations. 6917 !Loc.isMacroID() && ActiveTemplateInstantiations.empty()) { 6918 // If the RHS can be constant folded, and if it constant folds to something 6919 // that isn't 0 or 1 (which indicate a potential logical operation that 6920 // happened to fold to true/false) then warn. 6921 // Parens on the RHS are ignored. 6922 llvm::APSInt Result; 6923 if (RHS.get()->EvaluateAsInt(Result, Context)) 6924 if ((getLangOptions().Bool && !RHS.get()->getType()->isBooleanType()) || 6925 (Result != 0 && Result != 1)) { 6926 Diag(Loc, diag::warn_logical_instead_of_bitwise) 6927 << RHS.get()->getSourceRange() 6928 << (Opc == BO_LAnd ? "&&" : "||"); 6929 // Suggest replacing the logical operator with the bitwise version 6930 Diag(Loc, diag::note_logical_instead_of_bitwise_change_operator) 6931 << (Opc == BO_LAnd ? "&" : "|") 6932 << FixItHint::CreateReplacement(SourceRange( 6933 Loc, Lexer::getLocForEndOfToken(Loc, 0, getSourceManager(), 6934 getLangOptions())), 6935 Opc == BO_LAnd ? "&" : "|"); 6936 if (Opc == BO_LAnd) 6937 // Suggest replacing "Foo() && kNonZero" with "Foo()" 6938 Diag(Loc, diag::note_logical_instead_of_bitwise_remove_constant) 6939 << FixItHint::CreateRemoval( 6940 SourceRange( 6941 Lexer::getLocForEndOfToken(LHS.get()->getLocEnd(), 6942 0, getSourceManager(), 6943 getLangOptions()), 6944 RHS.get()->getLocEnd())); 6945 } 6946 } 6947 6948 if (!Context.getLangOptions().CPlusPlus) { 6949 LHS = UsualUnaryConversions(LHS.take()); 6950 if (LHS.isInvalid()) 6951 return QualType(); 6952 6953 RHS = UsualUnaryConversions(RHS.take()); 6954 if (RHS.isInvalid()) 6955 return QualType(); 6956 6957 if (!LHS.get()->getType()->isScalarType() || 6958 !RHS.get()->getType()->isScalarType()) 6959 return InvalidOperands(Loc, LHS, RHS); 6960 6961 return Context.IntTy; 6962 } 6963 6964 // The following is safe because we only use this method for 6965 // non-overloadable operands. 6966 6967 // C++ [expr.log.and]p1 6968 // C++ [expr.log.or]p1 6969 // The operands are both contextually converted to type bool. 6970 ExprResult LHSRes = PerformContextuallyConvertToBool(LHS.get()); 6971 if (LHSRes.isInvalid()) 6972 return InvalidOperands(Loc, LHS, RHS); 6973 LHS = move(LHSRes); 6974 6975 ExprResult RHSRes = PerformContextuallyConvertToBool(RHS.get()); 6976 if (RHSRes.isInvalid()) 6977 return InvalidOperands(Loc, LHS, RHS); 6978 RHS = move(RHSRes); 6979 6980 // C++ [expr.log.and]p2 6981 // C++ [expr.log.or]p2 6982 // The result is a bool. 6983 return Context.BoolTy; 6984 } 6985 6986 /// IsReadonlyProperty - Verify that otherwise a valid l-value expression 6987 /// is a read-only property; return true if so. A readonly property expression 6988 /// depends on various declarations and thus must be treated specially. 6989 /// 6990 static bool IsReadonlyProperty(Expr *E, Sema &S) { 6991 const ObjCPropertyRefExpr *PropExpr = dyn_cast<ObjCPropertyRefExpr>(E); 6992 if (!PropExpr) return false; 6993 if (PropExpr->isImplicitProperty()) return false; 6994 6995 ObjCPropertyDecl *PDecl = PropExpr->getExplicitProperty(); 6996 QualType BaseType = PropExpr->isSuperReceiver() ? 6997 PropExpr->getSuperReceiverType() : 6998 PropExpr->getBase()->getType(); 6999 7000 if (const ObjCObjectPointerType *OPT = 7001 BaseType->getAsObjCInterfacePointerType()) 7002 if (ObjCInterfaceDecl *IFace = OPT->getInterfaceDecl()) 7003 if (S.isPropertyReadonly(PDecl, IFace)) 7004 return true; 7005 return false; 7006 } 7007 7008 static bool IsConstProperty(Expr *E, Sema &S) { 7009 const ObjCPropertyRefExpr *PropExpr = dyn_cast<ObjCPropertyRefExpr>(E); 7010 if (!PropExpr) return false; 7011 if (PropExpr->isImplicitProperty()) return false; 7012 7013 ObjCPropertyDecl *PDecl = PropExpr->getExplicitProperty(); 7014 QualType T = PDecl->getType().getNonReferenceType(); 7015 return T.isConstQualified(); 7016 } 7017 7018 static bool IsReadonlyMessage(Expr *E, Sema &S) { 7019 const MemberExpr *ME = dyn_cast<MemberExpr>(E); 7020 if (!ME) return false; 7021 if (!isa<FieldDecl>(ME->getMemberDecl())) return false; 7022 ObjCMessageExpr *Base = 7023 dyn_cast<ObjCMessageExpr>(ME->getBase()->IgnoreParenImpCasts()); 7024 if (!Base) return false; 7025 return Base->getMethodDecl() != 0; 7026 } 7027 7028 /// CheckForModifiableLvalue - Verify that E is a modifiable lvalue. If not, 7029 /// emit an error and return true. If so, return false. 7030 static bool CheckForModifiableLvalue(Expr *E, SourceLocation Loc, Sema &S) { 7031 SourceLocation OrigLoc = Loc; 7032 Expr::isModifiableLvalueResult IsLV = E->isModifiableLvalue(S.Context, 7033 &Loc); 7034 if (IsLV == Expr::MLV_Valid && IsReadonlyProperty(E, S)) 7035 IsLV = Expr::MLV_ReadonlyProperty; 7036 else if (Expr::MLV_ConstQualified && IsConstProperty(E, S)) 7037 IsLV = Expr::MLV_Valid; 7038 else if (IsLV == Expr::MLV_ClassTemporary && IsReadonlyMessage(E, S)) 7039 IsLV = Expr::MLV_InvalidMessageExpression; 7040 if (IsLV == Expr::MLV_Valid) 7041 return false; 7042 7043 unsigned Diag = 0; 7044 bool NeedType = false; 7045 switch (IsLV) { // C99 6.5.16p2 7046 case Expr::MLV_ConstQualified: 7047 Diag = diag::err_typecheck_assign_const; 7048 7049 // In ARC, use some specialized diagnostics for occasions where we 7050 // infer 'const'. These are always pseudo-strong variables. 7051 if (S.getLangOptions().ObjCAutoRefCount) { 7052 DeclRefExpr *declRef = dyn_cast<DeclRefExpr>(E->IgnoreParenCasts()); 7053 if (declRef && isa<VarDecl>(declRef->getDecl())) { 7054 VarDecl *var = cast<VarDecl>(declRef->getDecl()); 7055 7056 // Use the normal diagnostic if it's pseudo-__strong but the 7057 // user actually wrote 'const'. 7058 if (var->isARCPseudoStrong() && 7059 (!var->getTypeSourceInfo() || 7060 !var->getTypeSourceInfo()->getType().isConstQualified())) { 7061 // There are two pseudo-strong cases: 7062 // - self 7063 ObjCMethodDecl *method = S.getCurMethodDecl(); 7064 if (method && var == method->getSelfDecl()) 7065 Diag = method->isClassMethod() 7066 ? diag::err_typecheck_arc_assign_self_class_method 7067 : diag::err_typecheck_arc_assign_self; 7068 7069 // - fast enumeration variables 7070 else 7071 Diag = diag::err_typecheck_arr_assign_enumeration; 7072 7073 SourceRange Assign; 7074 if (Loc != OrigLoc) 7075 Assign = SourceRange(OrigLoc, OrigLoc); 7076 S.Diag(Loc, Diag) << E->getSourceRange() << Assign; 7077 // We need to preserve the AST regardless, so migration tool 7078 // can do its job. 7079 return false; 7080 } 7081 } 7082 } 7083 7084 break; 7085 case Expr::MLV_ArrayType: 7086 Diag = diag::err_typecheck_array_not_modifiable_lvalue; 7087 NeedType = true; 7088 break; 7089 case Expr::MLV_NotObjectType: 7090 Diag = diag::err_typecheck_non_object_not_modifiable_lvalue; 7091 NeedType = true; 7092 break; 7093 case Expr::MLV_LValueCast: 7094 Diag = diag::err_typecheck_lvalue_casts_not_supported; 7095 break; 7096 case Expr::MLV_Valid: 7097 llvm_unreachable("did not take early return for MLV_Valid"); 7098 case Expr::MLV_InvalidExpression: 7099 case Expr::MLV_MemberFunction: 7100 case Expr::MLV_ClassTemporary: 7101 Diag = diag::err_typecheck_expression_not_modifiable_lvalue; 7102 break; 7103 case Expr::MLV_IncompleteType: 7104 case Expr::MLV_IncompleteVoidType: 7105 return S.RequireCompleteType(Loc, E->getType(), 7106 S.PDiag(diag::err_typecheck_incomplete_type_not_modifiable_lvalue) 7107 << E->getSourceRange()); 7108 case Expr::MLV_DuplicateVectorComponents: 7109 Diag = diag::err_typecheck_duplicate_vector_components_not_mlvalue; 7110 break; 7111 case Expr::MLV_NotBlockQualified: 7112 Diag = diag::err_block_decl_ref_not_modifiable_lvalue; 7113 break; 7114 case Expr::MLV_ReadonlyProperty: 7115 case Expr::MLV_NoSetterProperty: 7116 llvm_unreachable("readonly properties should be processed differently"); 7117 break; 7118 case Expr::MLV_InvalidMessageExpression: 7119 Diag = diag::error_readonly_message_assignment; 7120 break; 7121 case Expr::MLV_SubObjCPropertySetting: 7122 Diag = diag::error_no_subobject_property_setting; 7123 break; 7124 } 7125 7126 SourceRange Assign; 7127 if (Loc != OrigLoc) 7128 Assign = SourceRange(OrigLoc, OrigLoc); 7129 if (NeedType) 7130 S.Diag(Loc, Diag) << E->getType() << E->getSourceRange() << Assign; 7131 else 7132 S.Diag(Loc, Diag) << E->getSourceRange() << Assign; 7133 return true; 7134 } 7135 7136 7137 7138 // C99 6.5.16.1 7139 QualType Sema::CheckAssignmentOperands(Expr *LHSExpr, ExprResult &RHS, 7140 SourceLocation Loc, 7141 QualType CompoundType) { 7142 assert(!LHSExpr->hasPlaceholderType(BuiltinType::PseudoObject)); 7143 7144 // Verify that LHS is a modifiable lvalue, and emit error if not. 7145 if (CheckForModifiableLvalue(LHSExpr, Loc, *this)) 7146 return QualType(); 7147 7148 QualType LHSType = LHSExpr->getType(); 7149 QualType RHSType = CompoundType.isNull() ? RHS.get()->getType() : 7150 CompoundType; 7151 AssignConvertType ConvTy; 7152 if (CompoundType.isNull()) { 7153 QualType LHSTy(LHSType); 7154 ConvTy = CheckSingleAssignmentConstraints(LHSTy, RHS); 7155 if (RHS.isInvalid()) 7156 return QualType(); 7157 // Special case of NSObject attributes on c-style pointer types. 7158 if (ConvTy == IncompatiblePointer && 7159 ((Context.isObjCNSObjectType(LHSType) && 7160 RHSType->isObjCObjectPointerType()) || 7161 (Context.isObjCNSObjectType(RHSType) && 7162 LHSType->isObjCObjectPointerType()))) 7163 ConvTy = Compatible; 7164 7165 if (ConvTy == Compatible && 7166 getLangOptions().ObjCNonFragileABI && 7167 LHSType->isObjCObjectType()) 7168 Diag(Loc, diag::err_assignment_requires_nonfragile_object) 7169 << LHSType; 7170 7171 // If the RHS is a unary plus or minus, check to see if they = and + are 7172 // right next to each other. If so, the user may have typo'd "x =+ 4" 7173 // instead of "x += 4". 7174 Expr *RHSCheck = RHS.get(); 7175 if (ImplicitCastExpr *ICE = dyn_cast<ImplicitCastExpr>(RHSCheck)) 7176 RHSCheck = ICE->getSubExpr(); 7177 if (UnaryOperator *UO = dyn_cast<UnaryOperator>(RHSCheck)) { 7178 if ((UO->getOpcode() == UO_Plus || 7179 UO->getOpcode() == UO_Minus) && 7180 Loc.isFileID() && UO->getOperatorLoc().isFileID() && 7181 // Only if the two operators are exactly adjacent. 7182 Loc.getLocWithOffset(1) == UO->getOperatorLoc() && 7183 // And there is a space or other character before the subexpr of the 7184 // unary +/-. We don't want to warn on "x=-1". 7185 Loc.getLocWithOffset(2) != UO->getSubExpr()->getLocStart() && 7186 UO->getSubExpr()->getLocStart().isFileID()) { 7187 Diag(Loc, diag::warn_not_compound_assign) 7188 << (UO->getOpcode() == UO_Plus ? "+" : "-") 7189 << SourceRange(UO->getOperatorLoc(), UO->getOperatorLoc()); 7190 } 7191 } 7192 7193 if (ConvTy == Compatible) { 7194 if (LHSType.getObjCLifetime() == Qualifiers::OCL_Strong) 7195 checkRetainCycles(LHSExpr, RHS.get()); 7196 else if (getLangOptions().ObjCAutoRefCount) 7197 checkUnsafeExprAssigns(Loc, LHSExpr, RHS.get()); 7198 } 7199 } else { 7200 // Compound assignment "x += y" 7201 ConvTy = CheckAssignmentConstraints(Loc, LHSType, RHSType); 7202 } 7203 7204 if (DiagnoseAssignmentResult(ConvTy, Loc, LHSType, RHSType, 7205 RHS.get(), AA_Assigning)) 7206 return QualType(); 7207 7208 CheckForNullPointerDereference(*this, LHSExpr); 7209 7210 // C99 6.5.16p3: The type of an assignment expression is the type of the 7211 // left operand unless the left operand has qualified type, in which case 7212 // it is the unqualified version of the type of the left operand. 7213 // C99 6.5.16.1p2: In simple assignment, the value of the right operand 7214 // is converted to the type of the assignment expression (above). 7215 // C++ 5.17p1: the type of the assignment expression is that of its left 7216 // operand. 7217 return (getLangOptions().CPlusPlus 7218 ? LHSType : LHSType.getUnqualifiedType()); 7219 } 7220 7221 // C99 6.5.17 7222 static QualType CheckCommaOperands(Sema &S, ExprResult &LHS, ExprResult &RHS, 7223 SourceLocation Loc) { 7224 S.DiagnoseUnusedExprResult(LHS.get()); 7225 7226 LHS = S.CheckPlaceholderExpr(LHS.take()); 7227 RHS = S.CheckPlaceholderExpr(RHS.take()); 7228 if (LHS.isInvalid() || RHS.isInvalid()) 7229 return QualType(); 7230 7231 // C's comma performs lvalue conversion (C99 6.3.2.1) on both its 7232 // operands, but not unary promotions. 7233 // C++'s comma does not do any conversions at all (C++ [expr.comma]p1). 7234 7235 // So we treat the LHS as a ignored value, and in C++ we allow the 7236 // containing site to determine what should be done with the RHS. 7237 LHS = S.IgnoredValueConversions(LHS.take()); 7238 if (LHS.isInvalid()) 7239 return QualType(); 7240 7241 if (!S.getLangOptions().CPlusPlus) { 7242 RHS = S.DefaultFunctionArrayLvalueConversion(RHS.take()); 7243 if (RHS.isInvalid()) 7244 return QualType(); 7245 if (!RHS.get()->getType()->isVoidType()) 7246 S.RequireCompleteType(Loc, RHS.get()->getType(), 7247 diag::err_incomplete_type); 7248 } 7249 7250 return RHS.get()->getType(); 7251 } 7252 7253 /// CheckIncrementDecrementOperand - unlike most "Check" methods, this routine 7254 /// doesn't need to call UsualUnaryConversions or UsualArithmeticConversions. 7255 static QualType CheckIncrementDecrementOperand(Sema &S, Expr *Op, 7256 ExprValueKind &VK, 7257 SourceLocation OpLoc, 7258 bool IsInc, bool IsPrefix) { 7259 if (Op->isTypeDependent()) 7260 return S.Context.DependentTy; 7261 7262 QualType ResType = Op->getType(); 7263 assert(!ResType.isNull() && "no type for increment/decrement expression"); 7264 7265 if (S.getLangOptions().CPlusPlus && ResType->isBooleanType()) { 7266 // Decrement of bool is not allowed. 7267 if (!IsInc) { 7268 S.Diag(OpLoc, diag::err_decrement_bool) << Op->getSourceRange(); 7269 return QualType(); 7270 } 7271 // Increment of bool sets it to true, but is deprecated. 7272 S.Diag(OpLoc, diag::warn_increment_bool) << Op->getSourceRange(); 7273 } else if (ResType->isRealType()) { 7274 // OK! 7275 } else if (ResType->isAnyPointerType()) { 7276 // C99 6.5.2.4p2, 6.5.6p2 7277 if (!checkArithmeticOpPointerOperand(S, OpLoc, Op)) 7278 return QualType(); 7279 7280 // Diagnose bad cases where we step over interface counts. 7281 else if (!checkArithmethicPointerOnNonFragileABI(S, OpLoc, Op)) 7282 return QualType(); 7283 } else if (ResType->isAnyComplexType()) { 7284 // C99 does not support ++/-- on complex types, we allow as an extension. 7285 S.Diag(OpLoc, diag::ext_integer_increment_complex) 7286 << ResType << Op->getSourceRange(); 7287 } else if (ResType->isPlaceholderType()) { 7288 ExprResult PR = S.CheckPlaceholderExpr(Op); 7289 if (PR.isInvalid()) return QualType(); 7290 return CheckIncrementDecrementOperand(S, PR.take(), VK, OpLoc, 7291 IsInc, IsPrefix); 7292 } else if (S.getLangOptions().AltiVec && ResType->isVectorType()) { 7293 // OK! ( C/C++ Language Extensions for CBEA(Version 2.6) 10.3 ) 7294 } else { 7295 S.Diag(OpLoc, diag::err_typecheck_illegal_increment_decrement) 7296 << ResType << int(IsInc) << Op->getSourceRange(); 7297 return QualType(); 7298 } 7299 // At this point, we know we have a real, complex or pointer type. 7300 // Now make sure the operand is a modifiable lvalue. 7301 if (CheckForModifiableLvalue(Op, OpLoc, S)) 7302 return QualType(); 7303 // In C++, a prefix increment is the same type as the operand. Otherwise 7304 // (in C or with postfix), the increment is the unqualified type of the 7305 // operand. 7306 if (IsPrefix && S.getLangOptions().CPlusPlus) { 7307 VK = VK_LValue; 7308 return ResType; 7309 } else { 7310 VK = VK_RValue; 7311 return ResType.getUnqualifiedType(); 7312 } 7313 } 7314 7315 7316 /// getPrimaryDecl - Helper function for CheckAddressOfOperand(). 7317 /// This routine allows us to typecheck complex/recursive expressions 7318 /// where the declaration is needed for type checking. We only need to 7319 /// handle cases when the expression references a function designator 7320 /// or is an lvalue. Here are some examples: 7321 /// - &(x) => x 7322 /// - &*****f => f for f a function designator. 7323 /// - &s.xx => s 7324 /// - &s.zz[1].yy -> s, if zz is an array 7325 /// - *(x + 1) -> x, if x is an array 7326 /// - &"123"[2] -> 0 7327 /// - & __real__ x -> x 7328 static ValueDecl *getPrimaryDecl(Expr *E) { 7329 switch (E->getStmtClass()) { 7330 case Stmt::DeclRefExprClass: 7331 return cast<DeclRefExpr>(E)->getDecl(); 7332 case Stmt::MemberExprClass: 7333 // If this is an arrow operator, the address is an offset from 7334 // the base's value, so the object the base refers to is 7335 // irrelevant. 7336 if (cast<MemberExpr>(E)->isArrow()) 7337 return 0; 7338 // Otherwise, the expression refers to a part of the base 7339 return getPrimaryDecl(cast<MemberExpr>(E)->getBase()); 7340 case Stmt::ArraySubscriptExprClass: { 7341 // FIXME: This code shouldn't be necessary! We should catch the implicit 7342 // promotion of register arrays earlier. 7343 Expr* Base = cast<ArraySubscriptExpr>(E)->getBase(); 7344 if (ImplicitCastExpr* ICE = dyn_cast<ImplicitCastExpr>(Base)) { 7345 if (ICE->getSubExpr()->getType()->isArrayType()) 7346 return getPrimaryDecl(ICE->getSubExpr()); 7347 } 7348 return 0; 7349 } 7350 case Stmt::UnaryOperatorClass: { 7351 UnaryOperator *UO = cast<UnaryOperator>(E); 7352 7353 switch(UO->getOpcode()) { 7354 case UO_Real: 7355 case UO_Imag: 7356 case UO_Extension: 7357 return getPrimaryDecl(UO->getSubExpr()); 7358 default: 7359 return 0; 7360 } 7361 } 7362 case Stmt::ParenExprClass: 7363 return getPrimaryDecl(cast<ParenExpr>(E)->getSubExpr()); 7364 case Stmt::ImplicitCastExprClass: 7365 // If the result of an implicit cast is an l-value, we care about 7366 // the sub-expression; otherwise, the result here doesn't matter. 7367 return getPrimaryDecl(cast<ImplicitCastExpr>(E)->getSubExpr()); 7368 default: 7369 return 0; 7370 } 7371 } 7372 7373 namespace { 7374 enum { 7375 AO_Bit_Field = 0, 7376 AO_Vector_Element = 1, 7377 AO_Property_Expansion = 2, 7378 AO_Register_Variable = 3, 7379 AO_No_Error = 4 7380 }; 7381 } 7382 /// \brief Diagnose invalid operand for address of operations. 7383 /// 7384 /// \param Type The type of operand which cannot have its address taken. 7385 static void diagnoseAddressOfInvalidType(Sema &S, SourceLocation Loc, 7386 Expr *E, unsigned Type) { 7387 S.Diag(Loc, diag::err_typecheck_address_of) << Type << E->getSourceRange(); 7388 } 7389 7390 /// CheckAddressOfOperand - The operand of & must be either a function 7391 /// designator or an lvalue designating an object. If it is an lvalue, the 7392 /// object cannot be declared with storage class register or be a bit field. 7393 /// Note: The usual conversions are *not* applied to the operand of the & 7394 /// operator (C99 6.3.2.1p[2-4]), and its result is never an lvalue. 7395 /// In C++, the operand might be an overloaded function name, in which case 7396 /// we allow the '&' but retain the overloaded-function type. 7397 static QualType CheckAddressOfOperand(Sema &S, ExprResult &OrigOp, 7398 SourceLocation OpLoc) { 7399 if (const BuiltinType *PTy = OrigOp.get()->getType()->getAsPlaceholderType()){ 7400 if (PTy->getKind() == BuiltinType::Overload) { 7401 if (!isa<OverloadExpr>(OrigOp.get()->IgnoreParens())) { 7402 S.Diag(OpLoc, diag::err_typecheck_invalid_lvalue_addrof) 7403 << OrigOp.get()->getSourceRange(); 7404 return QualType(); 7405 } 7406 7407 return S.Context.OverloadTy; 7408 } 7409 7410 if (PTy->getKind() == BuiltinType::UnknownAny) 7411 return S.Context.UnknownAnyTy; 7412 7413 if (PTy->getKind() == BuiltinType::BoundMember) { 7414 S.Diag(OpLoc, diag::err_invalid_form_pointer_member_function) 7415 << OrigOp.get()->getSourceRange(); 7416 return QualType(); 7417 } 7418 7419 OrigOp = S.CheckPlaceholderExpr(OrigOp.take()); 7420 if (OrigOp.isInvalid()) return QualType(); 7421 } 7422 7423 if (OrigOp.get()->isTypeDependent()) 7424 return S.Context.DependentTy; 7425 7426 assert(!OrigOp.get()->getType()->isPlaceholderType()); 7427 7428 // Make sure to ignore parentheses in subsequent checks 7429 Expr *op = OrigOp.get()->IgnoreParens(); 7430 7431 if (S.getLangOptions().C99) { 7432 // Implement C99-only parts of addressof rules. 7433 if (UnaryOperator* uOp = dyn_cast<UnaryOperator>(op)) { 7434 if (uOp->getOpcode() == UO_Deref) 7435 // Per C99 6.5.3.2, the address of a deref always returns a valid result 7436 // (assuming the deref expression is valid). 7437 return uOp->getSubExpr()->getType(); 7438 } 7439 // Technically, there should be a check for array subscript 7440 // expressions here, but the result of one is always an lvalue anyway. 7441 } 7442 ValueDecl *dcl = getPrimaryDecl(op); 7443 Expr::LValueClassification lval = op->ClassifyLValue(S.Context); 7444 unsigned AddressOfError = AO_No_Error; 7445 7446 if (lval == Expr::LV_ClassTemporary) { 7447 bool sfinae = S.isSFINAEContext(); 7448 S.Diag(OpLoc, sfinae ? diag::err_typecheck_addrof_class_temporary 7449 : diag::ext_typecheck_addrof_class_temporary) 7450 << op->getType() << op->getSourceRange(); 7451 if (sfinae) 7452 return QualType(); 7453 } else if (isa<ObjCSelectorExpr>(op)) { 7454 return S.Context.getPointerType(op->getType()); 7455 } else if (lval == Expr::LV_MemberFunction) { 7456 // If it's an instance method, make a member pointer. 7457 // The expression must have exactly the form &A::foo. 7458 7459 // If the underlying expression isn't a decl ref, give up. 7460 if (!isa<DeclRefExpr>(op)) { 7461 S.Diag(OpLoc, diag::err_invalid_form_pointer_member_function) 7462 << OrigOp.get()->getSourceRange(); 7463 return QualType(); 7464 } 7465 DeclRefExpr *DRE = cast<DeclRefExpr>(op); 7466 CXXMethodDecl *MD = cast<CXXMethodDecl>(DRE->getDecl()); 7467 7468 // The id-expression was parenthesized. 7469 if (OrigOp.get() != DRE) { 7470 S.Diag(OpLoc, diag::err_parens_pointer_member_function) 7471 << OrigOp.get()->getSourceRange(); 7472 7473 // The method was named without a qualifier. 7474 } else if (!DRE->getQualifier()) { 7475 S.Diag(OpLoc, diag::err_unqualified_pointer_member_function) 7476 << op->getSourceRange(); 7477 } 7478 7479 return S.Context.getMemberPointerType(op->getType(), 7480 S.Context.getTypeDeclType(MD->getParent()).getTypePtr()); 7481 } else if (lval != Expr::LV_Valid && lval != Expr::LV_IncompleteVoidType) { 7482 // C99 6.5.3.2p1 7483 // The operand must be either an l-value or a function designator 7484 if (!op->getType()->isFunctionType()) { 7485 // Use a special diagnostic for loads from property references. 7486 if (isa<PseudoObjectExpr>(op)) { 7487 AddressOfError = AO_Property_Expansion; 7488 } else { 7489 // FIXME: emit more specific diag... 7490 S.Diag(OpLoc, diag::err_typecheck_invalid_lvalue_addrof) 7491 << op->getSourceRange(); 7492 return QualType(); 7493 } 7494 } 7495 } else if (op->getObjectKind() == OK_BitField) { // C99 6.5.3.2p1 7496 // The operand cannot be a bit-field 7497 AddressOfError = AO_Bit_Field; 7498 } else if (op->getObjectKind() == OK_VectorComponent) { 7499 // The operand cannot be an element of a vector 7500 AddressOfError = AO_Vector_Element; 7501 } else if (dcl) { // C99 6.5.3.2p1 7502 // We have an lvalue with a decl. Make sure the decl is not declared 7503 // with the register storage-class specifier. 7504 if (const VarDecl *vd = dyn_cast<VarDecl>(dcl)) { 7505 // in C++ it is not error to take address of a register 7506 // variable (c++03 7.1.1P3) 7507 if (vd->getStorageClass() == SC_Register && 7508 !S.getLangOptions().CPlusPlus) { 7509 AddressOfError = AO_Register_Variable; 7510 } 7511 } else if (isa<FunctionTemplateDecl>(dcl)) { 7512 return S.Context.OverloadTy; 7513 } else if (isa<FieldDecl>(dcl) || isa<IndirectFieldDecl>(dcl)) { 7514 // Okay: we can take the address of a field. 7515 // Could be a pointer to member, though, if there is an explicit 7516 // scope qualifier for the class. 7517 if (isa<DeclRefExpr>(op) && cast<DeclRefExpr>(op)->getQualifier()) { 7518 DeclContext *Ctx = dcl->getDeclContext(); 7519 if (Ctx && Ctx->isRecord()) { 7520 if (dcl->getType()->isReferenceType()) { 7521 S.Diag(OpLoc, 7522 diag::err_cannot_form_pointer_to_member_of_reference_type) 7523 << dcl->getDeclName() << dcl->getType(); 7524 return QualType(); 7525 } 7526 7527 while (cast<RecordDecl>(Ctx)->isAnonymousStructOrUnion()) 7528 Ctx = Ctx->getParent(); 7529 return S.Context.getMemberPointerType(op->getType(), 7530 S.Context.getTypeDeclType(cast<RecordDecl>(Ctx)).getTypePtr()); 7531 } 7532 } 7533 } else if (!isa<FunctionDecl>(dcl) && !isa<NonTypeTemplateParmDecl>(dcl)) 7534 llvm_unreachable("Unknown/unexpected decl type"); 7535 } 7536 7537 if (AddressOfError != AO_No_Error) { 7538 diagnoseAddressOfInvalidType(S, OpLoc, op, AddressOfError); 7539 return QualType(); 7540 } 7541 7542 if (lval == Expr::LV_IncompleteVoidType) { 7543 // Taking the address of a void variable is technically illegal, but we 7544 // allow it in cases which are otherwise valid. 7545 // Example: "extern void x; void* y = &x;". 7546 S.Diag(OpLoc, diag::ext_typecheck_addrof_void) << op->getSourceRange(); 7547 } 7548 7549 // If the operand has type "type", the result has type "pointer to type". 7550 if (op->getType()->isObjCObjectType()) 7551 return S.Context.getObjCObjectPointerType(op->getType()); 7552 return S.Context.getPointerType(op->getType()); 7553 } 7554 7555 /// CheckIndirectionOperand - Type check unary indirection (prefix '*'). 7556 static QualType CheckIndirectionOperand(Sema &S, Expr *Op, ExprValueKind &VK, 7557 SourceLocation OpLoc) { 7558 if (Op->isTypeDependent()) 7559 return S.Context.DependentTy; 7560 7561 ExprResult ConvResult = S.UsualUnaryConversions(Op); 7562 if (ConvResult.isInvalid()) 7563 return QualType(); 7564 Op = ConvResult.take(); 7565 QualType OpTy = Op->getType(); 7566 QualType Result; 7567 7568 if (isa<CXXReinterpretCastExpr>(Op)) { 7569 QualType OpOrigType = Op->IgnoreParenCasts()->getType(); 7570 S.CheckCompatibleReinterpretCast(OpOrigType, OpTy, /*IsDereference*/true, 7571 Op->getSourceRange()); 7572 } 7573 7574 // Note that per both C89 and C99, indirection is always legal, even if OpTy 7575 // is an incomplete type or void. It would be possible to warn about 7576 // dereferencing a void pointer, but it's completely well-defined, and such a 7577 // warning is unlikely to catch any mistakes. 7578 if (const PointerType *PT = OpTy->getAs<PointerType>()) 7579 Result = PT->getPointeeType(); 7580 else if (const ObjCObjectPointerType *OPT = 7581 OpTy->getAs<ObjCObjectPointerType>()) 7582 Result = OPT->getPointeeType(); 7583 else { 7584 ExprResult PR = S.CheckPlaceholderExpr(Op); 7585 if (PR.isInvalid()) return QualType(); 7586 if (PR.take() != Op) 7587 return CheckIndirectionOperand(S, PR.take(), VK, OpLoc); 7588 } 7589 7590 if (Result.isNull()) { 7591 S.Diag(OpLoc, diag::err_typecheck_indirection_requires_pointer) 7592 << OpTy << Op->getSourceRange(); 7593 return QualType(); 7594 } 7595 7596 // Dereferences are usually l-values... 7597 VK = VK_LValue; 7598 7599 // ...except that certain expressions are never l-values in C. 7600 if (!S.getLangOptions().CPlusPlus && Result.isCForbiddenLValueType()) 7601 VK = VK_RValue; 7602 7603 return Result; 7604 } 7605 7606 static inline BinaryOperatorKind ConvertTokenKindToBinaryOpcode( 7607 tok::TokenKind Kind) { 7608 BinaryOperatorKind Opc; 7609 switch (Kind) { 7610 default: llvm_unreachable("Unknown binop!"); 7611 case tok::periodstar: Opc = BO_PtrMemD; break; 7612 case tok::arrowstar: Opc = BO_PtrMemI; break; 7613 case tok::star: Opc = BO_Mul; break; 7614 case tok::slash: Opc = BO_Div; break; 7615 case tok::percent: Opc = BO_Rem; break; 7616 case tok::plus: Opc = BO_Add; break; 7617 case tok::minus: Opc = BO_Sub; break; 7618 case tok::lessless: Opc = BO_Shl; break; 7619 case tok::greatergreater: Opc = BO_Shr; break; 7620 case tok::lessequal: Opc = BO_LE; break; 7621 case tok::less: Opc = BO_LT; break; 7622 case tok::greaterequal: Opc = BO_GE; break; 7623 case tok::greater: Opc = BO_GT; break; 7624 case tok::exclaimequal: Opc = BO_NE; break; 7625 case tok::equalequal: Opc = BO_EQ; break; 7626 case tok::amp: Opc = BO_And; break; 7627 case tok::caret: Opc = BO_Xor; break; 7628 case tok::pipe: Opc = BO_Or; break; 7629 case tok::ampamp: Opc = BO_LAnd; break; 7630 case tok::pipepipe: Opc = BO_LOr; break; 7631 case tok::equal: Opc = BO_Assign; break; 7632 case tok::starequal: Opc = BO_MulAssign; break; 7633 case tok::slashequal: Opc = BO_DivAssign; break; 7634 case tok::percentequal: Opc = BO_RemAssign; break; 7635 case tok::plusequal: Opc = BO_AddAssign; break; 7636 case tok::minusequal: Opc = BO_SubAssign; break; 7637 case tok::lesslessequal: Opc = BO_ShlAssign; break; 7638 case tok::greatergreaterequal: Opc = BO_ShrAssign; break; 7639 case tok::ampequal: Opc = BO_AndAssign; break; 7640 case tok::caretequal: Opc = BO_XorAssign; break; 7641 case tok::pipeequal: Opc = BO_OrAssign; break; 7642 case tok::comma: Opc = BO_Comma; break; 7643 } 7644 return Opc; 7645 } 7646 7647 static inline UnaryOperatorKind ConvertTokenKindToUnaryOpcode( 7648 tok::TokenKind Kind) { 7649 UnaryOperatorKind Opc; 7650 switch (Kind) { 7651 default: llvm_unreachable("Unknown unary op!"); 7652 case tok::plusplus: Opc = UO_PreInc; break; 7653 case tok::minusminus: Opc = UO_PreDec; break; 7654 case tok::amp: Opc = UO_AddrOf; break; 7655 case tok::star: Opc = UO_Deref; break; 7656 case tok::plus: Opc = UO_Plus; break; 7657 case tok::minus: Opc = UO_Minus; break; 7658 case tok::tilde: Opc = UO_Not; break; 7659 case tok::exclaim: Opc = UO_LNot; break; 7660 case tok::kw___real: Opc = UO_Real; break; 7661 case tok::kw___imag: Opc = UO_Imag; break; 7662 case tok::kw___extension__: Opc = UO_Extension; break; 7663 } 7664 return Opc; 7665 } 7666 7667 /// DiagnoseSelfAssignment - Emits a warning if a value is assigned to itself. 7668 /// This warning is only emitted for builtin assignment operations. It is also 7669 /// suppressed in the event of macro expansions. 7670 static void DiagnoseSelfAssignment(Sema &S, Expr *LHSExpr, Expr *RHSExpr, 7671 SourceLocation OpLoc) { 7672 if (!S.ActiveTemplateInstantiations.empty()) 7673 return; 7674 if (OpLoc.isInvalid() || OpLoc.isMacroID()) 7675 return; 7676 LHSExpr = LHSExpr->IgnoreParenImpCasts(); 7677 RHSExpr = RHSExpr->IgnoreParenImpCasts(); 7678 const DeclRefExpr *LHSDeclRef = dyn_cast<DeclRefExpr>(LHSExpr); 7679 const DeclRefExpr *RHSDeclRef = dyn_cast<DeclRefExpr>(RHSExpr); 7680 if (!LHSDeclRef || !RHSDeclRef || 7681 LHSDeclRef->getLocation().isMacroID() || 7682 RHSDeclRef->getLocation().isMacroID()) 7683 return; 7684 const ValueDecl *LHSDecl = 7685 cast<ValueDecl>(LHSDeclRef->getDecl()->getCanonicalDecl()); 7686 const ValueDecl *RHSDecl = 7687 cast<ValueDecl>(RHSDeclRef->getDecl()->getCanonicalDecl()); 7688 if (LHSDecl != RHSDecl) 7689 return; 7690 if (LHSDecl->getType().isVolatileQualified()) 7691 return; 7692 if (const ReferenceType *RefTy = LHSDecl->getType()->getAs<ReferenceType>()) 7693 if (RefTy->getPointeeType().isVolatileQualified()) 7694 return; 7695 7696 S.Diag(OpLoc, diag::warn_self_assignment) 7697 << LHSDeclRef->getType() 7698 << LHSExpr->getSourceRange() << RHSExpr->getSourceRange(); 7699 } 7700 7701 /// CreateBuiltinBinOp - Creates a new built-in binary operation with 7702 /// operator @p Opc at location @c TokLoc. This routine only supports 7703 /// built-in operations; ActOnBinOp handles overloaded operators. 7704 ExprResult Sema::CreateBuiltinBinOp(SourceLocation OpLoc, 7705 BinaryOperatorKind Opc, 7706 Expr *LHSExpr, Expr *RHSExpr) { 7707 ExprResult LHS = Owned(LHSExpr), RHS = Owned(RHSExpr); 7708 QualType ResultTy; // Result type of the binary operator. 7709 // The following two variables are used for compound assignment operators 7710 QualType CompLHSTy; // Type of LHS after promotions for computation 7711 QualType CompResultTy; // Type of computation result 7712 ExprValueKind VK = VK_RValue; 7713 ExprObjectKind OK = OK_Ordinary; 7714 7715 switch (Opc) { 7716 case BO_Assign: 7717 ResultTy = CheckAssignmentOperands(LHS.get(), RHS, OpLoc, QualType()); 7718 if (getLangOptions().CPlusPlus && 7719 LHS.get()->getObjectKind() != OK_ObjCProperty) { 7720 VK = LHS.get()->getValueKind(); 7721 OK = LHS.get()->getObjectKind(); 7722 } 7723 if (!ResultTy.isNull()) 7724 DiagnoseSelfAssignment(*this, LHS.get(), RHS.get(), OpLoc); 7725 break; 7726 case BO_PtrMemD: 7727 case BO_PtrMemI: 7728 ResultTy = CheckPointerToMemberOperands(LHS, RHS, VK, OpLoc, 7729 Opc == BO_PtrMemI); 7730 break; 7731 case BO_Mul: 7732 case BO_Div: 7733 ResultTy = CheckMultiplyDivideOperands(LHS, RHS, OpLoc, false, 7734 Opc == BO_Div); 7735 break; 7736 case BO_Rem: 7737 ResultTy = CheckRemainderOperands(LHS, RHS, OpLoc); 7738 break; 7739 case BO_Add: 7740 ResultTy = CheckAdditionOperands(LHS, RHS, OpLoc); 7741 break; 7742 case BO_Sub: 7743 ResultTy = CheckSubtractionOperands(LHS, RHS, OpLoc); 7744 break; 7745 case BO_Shl: 7746 case BO_Shr: 7747 ResultTy = CheckShiftOperands(LHS, RHS, OpLoc, Opc); 7748 break; 7749 case BO_LE: 7750 case BO_LT: 7751 case BO_GE: 7752 case BO_GT: 7753 ResultTy = CheckCompareOperands(LHS, RHS, OpLoc, Opc, true); 7754 break; 7755 case BO_EQ: 7756 case BO_NE: 7757 ResultTy = CheckCompareOperands(LHS, RHS, OpLoc, Opc, false); 7758 break; 7759 case BO_And: 7760 case BO_Xor: 7761 case BO_Or: 7762 ResultTy = CheckBitwiseOperands(LHS, RHS, OpLoc); 7763 break; 7764 case BO_LAnd: 7765 case BO_LOr: 7766 ResultTy = CheckLogicalOperands(LHS, RHS, OpLoc, Opc); 7767 break; 7768 case BO_MulAssign: 7769 case BO_DivAssign: 7770 CompResultTy = CheckMultiplyDivideOperands(LHS, RHS, OpLoc, true, 7771 Opc == BO_DivAssign); 7772 CompLHSTy = CompResultTy; 7773 if (!CompResultTy.isNull() && !LHS.isInvalid() && !RHS.isInvalid()) 7774 ResultTy = CheckAssignmentOperands(LHS.get(), RHS, OpLoc, CompResultTy); 7775 break; 7776 case BO_RemAssign: 7777 CompResultTy = CheckRemainderOperands(LHS, RHS, OpLoc, true); 7778 CompLHSTy = CompResultTy; 7779 if (!CompResultTy.isNull() && !LHS.isInvalid() && !RHS.isInvalid()) 7780 ResultTy = CheckAssignmentOperands(LHS.get(), RHS, OpLoc, CompResultTy); 7781 break; 7782 case BO_AddAssign: 7783 CompResultTy = CheckAdditionOperands(LHS, RHS, OpLoc, &CompLHSTy); 7784 if (!CompResultTy.isNull() && !LHS.isInvalid() && !RHS.isInvalid()) 7785 ResultTy = CheckAssignmentOperands(LHS.get(), RHS, OpLoc, CompResultTy); 7786 break; 7787 case BO_SubAssign: 7788 CompResultTy = CheckSubtractionOperands(LHS, RHS, OpLoc, &CompLHSTy); 7789 if (!CompResultTy.isNull() && !LHS.isInvalid() && !RHS.isInvalid()) 7790 ResultTy = CheckAssignmentOperands(LHS.get(), RHS, OpLoc, CompResultTy); 7791 break; 7792 case BO_ShlAssign: 7793 case BO_ShrAssign: 7794 CompResultTy = CheckShiftOperands(LHS, RHS, OpLoc, Opc, true); 7795 CompLHSTy = CompResultTy; 7796 if (!CompResultTy.isNull() && !LHS.isInvalid() && !RHS.isInvalid()) 7797 ResultTy = CheckAssignmentOperands(LHS.get(), RHS, OpLoc, CompResultTy); 7798 break; 7799 case BO_AndAssign: 7800 case BO_XorAssign: 7801 case BO_OrAssign: 7802 CompResultTy = CheckBitwiseOperands(LHS, RHS, OpLoc, true); 7803 CompLHSTy = CompResultTy; 7804 if (!CompResultTy.isNull() && !LHS.isInvalid() && !RHS.isInvalid()) 7805 ResultTy = CheckAssignmentOperands(LHS.get(), RHS, OpLoc, CompResultTy); 7806 break; 7807 case BO_Comma: 7808 ResultTy = CheckCommaOperands(*this, LHS, RHS, OpLoc); 7809 if (getLangOptions().CPlusPlus && !RHS.isInvalid()) { 7810 VK = RHS.get()->getValueKind(); 7811 OK = RHS.get()->getObjectKind(); 7812 } 7813 break; 7814 } 7815 if (ResultTy.isNull() || LHS.isInvalid() || RHS.isInvalid()) 7816 return ExprError(); 7817 7818 // Check for array bounds violations for both sides of the BinaryOperator 7819 CheckArrayAccess(LHS.get()); 7820 CheckArrayAccess(RHS.get()); 7821 7822 if (CompResultTy.isNull()) 7823 return Owned(new (Context) BinaryOperator(LHS.take(), RHS.take(), Opc, 7824 ResultTy, VK, OK, OpLoc)); 7825 if (getLangOptions().CPlusPlus && LHS.get()->getObjectKind() != 7826 OK_ObjCProperty) { 7827 VK = VK_LValue; 7828 OK = LHS.get()->getObjectKind(); 7829 } 7830 return Owned(new (Context) CompoundAssignOperator(LHS.take(), RHS.take(), Opc, 7831 ResultTy, VK, OK, CompLHSTy, 7832 CompResultTy, OpLoc)); 7833 } 7834 7835 /// DiagnoseBitwisePrecedence - Emit a warning when bitwise and comparison 7836 /// operators are mixed in a way that suggests that the programmer forgot that 7837 /// comparison operators have higher precedence. The most typical example of 7838 /// such code is "flags & 0x0020 != 0", which is equivalent to "flags & 1". 7839 static void DiagnoseBitwisePrecedence(Sema &Self, BinaryOperatorKind Opc, 7840 SourceLocation OpLoc, Expr *LHSExpr, 7841 Expr *RHSExpr) { 7842 typedef BinaryOperator BinOp; 7843 BinOp::Opcode LHSopc = static_cast<BinOp::Opcode>(-1), 7844 RHSopc = static_cast<BinOp::Opcode>(-1); 7845 if (BinOp *BO = dyn_cast<BinOp>(LHSExpr)) 7846 LHSopc = BO->getOpcode(); 7847 if (BinOp *BO = dyn_cast<BinOp>(RHSExpr)) 7848 RHSopc = BO->getOpcode(); 7849 7850 // Subs are not binary operators. 7851 if (LHSopc == -1 && RHSopc == -1) 7852 return; 7853 7854 // Bitwise operations are sometimes used as eager logical ops. 7855 // Don't diagnose this. 7856 if ((BinOp::isComparisonOp(LHSopc) || BinOp::isBitwiseOp(LHSopc)) && 7857 (BinOp::isComparisonOp(RHSopc) || BinOp::isBitwiseOp(RHSopc))) 7858 return; 7859 7860 bool isLeftComp = BinOp::isComparisonOp(LHSopc); 7861 bool isRightComp = BinOp::isComparisonOp(RHSopc); 7862 if (!isLeftComp && !isRightComp) return; 7863 7864 SourceRange DiagRange = isLeftComp ? SourceRange(LHSExpr->getLocStart(), 7865 OpLoc) 7866 : SourceRange(OpLoc, RHSExpr->getLocEnd()); 7867 std::string OpStr = isLeftComp ? BinOp::getOpcodeStr(LHSopc) 7868 : BinOp::getOpcodeStr(RHSopc); 7869 SourceRange ParensRange = isLeftComp ? 7870 SourceRange(cast<BinOp>(LHSExpr)->getRHS()->getLocStart(), 7871 RHSExpr->getLocEnd()) 7872 : SourceRange(LHSExpr->getLocStart(), 7873 cast<BinOp>(RHSExpr)->getLHS()->getLocStart()); 7874 7875 Self.Diag(OpLoc, diag::warn_precedence_bitwise_rel) 7876 << DiagRange << BinOp::getOpcodeStr(Opc) << OpStr; 7877 SuggestParentheses(Self, OpLoc, 7878 Self.PDiag(diag::note_precedence_bitwise_silence) << OpStr, 7879 RHSExpr->getSourceRange()); 7880 SuggestParentheses(Self, OpLoc, 7881 Self.PDiag(diag::note_precedence_bitwise_first) << BinOp::getOpcodeStr(Opc), 7882 ParensRange); 7883 } 7884 7885 /// \brief It accepts a '&' expr that is inside a '|' one. 7886 /// Emit a diagnostic together with a fixit hint that wraps the '&' expression 7887 /// in parentheses. 7888 static void 7889 EmitDiagnosticForBitwiseAndInBitwiseOr(Sema &Self, SourceLocation OpLoc, 7890 BinaryOperator *Bop) { 7891 assert(Bop->getOpcode() == BO_And); 7892 Self.Diag(Bop->getOperatorLoc(), diag::warn_bitwise_and_in_bitwise_or) 7893 << Bop->getSourceRange() << OpLoc; 7894 SuggestParentheses(Self, Bop->getOperatorLoc(), 7895 Self.PDiag(diag::note_bitwise_and_in_bitwise_or_silence), 7896 Bop->getSourceRange()); 7897 } 7898 7899 /// \brief It accepts a '&&' expr that is inside a '||' one. 7900 /// Emit a diagnostic together with a fixit hint that wraps the '&&' expression 7901 /// in parentheses. 7902 static void 7903 EmitDiagnosticForLogicalAndInLogicalOr(Sema &Self, SourceLocation OpLoc, 7904 BinaryOperator *Bop) { 7905 assert(Bop->getOpcode() == BO_LAnd); 7906 Self.Diag(Bop->getOperatorLoc(), diag::warn_logical_and_in_logical_or) 7907 << Bop->getSourceRange() << OpLoc; 7908 SuggestParentheses(Self, Bop->getOperatorLoc(), 7909 Self.PDiag(diag::note_logical_and_in_logical_or_silence), 7910 Bop->getSourceRange()); 7911 } 7912 7913 /// \brief Returns true if the given expression can be evaluated as a constant 7914 /// 'true'. 7915 static bool EvaluatesAsTrue(Sema &S, Expr *E) { 7916 bool Res; 7917 return E->EvaluateAsBooleanCondition(Res, S.getASTContext()) && Res; 7918 } 7919 7920 /// \brief Returns true if the given expression can be evaluated as a constant 7921 /// 'false'. 7922 static bool EvaluatesAsFalse(Sema &S, Expr *E) { 7923 bool Res; 7924 return E->EvaluateAsBooleanCondition(Res, S.getASTContext()) && !Res; 7925 } 7926 7927 /// \brief Look for '&&' in the left hand of a '||' expr. 7928 static void DiagnoseLogicalAndInLogicalOrLHS(Sema &S, SourceLocation OpLoc, 7929 Expr *LHSExpr, Expr *RHSExpr) { 7930 if (BinaryOperator *Bop = dyn_cast<BinaryOperator>(LHSExpr)) { 7931 if (Bop->getOpcode() == BO_LAnd) { 7932 // If it's "a && b || 0" don't warn since the precedence doesn't matter. 7933 if (EvaluatesAsFalse(S, RHSExpr)) 7934 return; 7935 // If it's "1 && a || b" don't warn since the precedence doesn't matter. 7936 if (!EvaluatesAsTrue(S, Bop->getLHS())) 7937 return EmitDiagnosticForLogicalAndInLogicalOr(S, OpLoc, Bop); 7938 } else if (Bop->getOpcode() == BO_LOr) { 7939 if (BinaryOperator *RBop = dyn_cast<BinaryOperator>(Bop->getRHS())) { 7940 // If it's "a || b && 1 || c" we didn't warn earlier for 7941 // "a || b && 1", but warn now. 7942 if (RBop->getOpcode() == BO_LAnd && EvaluatesAsTrue(S, RBop->getRHS())) 7943 return EmitDiagnosticForLogicalAndInLogicalOr(S, OpLoc, RBop); 7944 } 7945 } 7946 } 7947 } 7948 7949 /// \brief Look for '&&' in the right hand of a '||' expr. 7950 static void DiagnoseLogicalAndInLogicalOrRHS(Sema &S, SourceLocation OpLoc, 7951 Expr *LHSExpr, Expr *RHSExpr) { 7952 if (BinaryOperator *Bop = dyn_cast<BinaryOperator>(RHSExpr)) { 7953 if (Bop->getOpcode() == BO_LAnd) { 7954 // If it's "0 || a && b" don't warn since the precedence doesn't matter. 7955 if (EvaluatesAsFalse(S, LHSExpr)) 7956 return; 7957 // If it's "a || b && 1" don't warn since the precedence doesn't matter. 7958 if (!EvaluatesAsTrue(S, Bop->getRHS())) 7959 return EmitDiagnosticForLogicalAndInLogicalOr(S, OpLoc, Bop); 7960 } 7961 } 7962 } 7963 7964 /// \brief Look for '&' in the left or right hand of a '|' expr. 7965 static void DiagnoseBitwiseAndInBitwiseOr(Sema &S, SourceLocation OpLoc, 7966 Expr *OrArg) { 7967 if (BinaryOperator *Bop = dyn_cast<BinaryOperator>(OrArg)) { 7968 if (Bop->getOpcode() == BO_And) 7969 return EmitDiagnosticForBitwiseAndInBitwiseOr(S, OpLoc, Bop); 7970 } 7971 } 7972 7973 /// DiagnoseBinOpPrecedence - Emit warnings for expressions with tricky 7974 /// precedence. 7975 static void DiagnoseBinOpPrecedence(Sema &Self, BinaryOperatorKind Opc, 7976 SourceLocation OpLoc, Expr *LHSExpr, 7977 Expr *RHSExpr){ 7978 // Diagnose "arg1 'bitwise' arg2 'eq' arg3". 7979 if (BinaryOperator::isBitwiseOp(Opc)) 7980 DiagnoseBitwisePrecedence(Self, Opc, OpLoc, LHSExpr, RHSExpr); 7981 7982 // Diagnose "arg1 & arg2 | arg3" 7983 if (Opc == BO_Or && !OpLoc.isMacroID()/* Don't warn in macros. */) { 7984 DiagnoseBitwiseAndInBitwiseOr(Self, OpLoc, LHSExpr); 7985 DiagnoseBitwiseAndInBitwiseOr(Self, OpLoc, RHSExpr); 7986 } 7987 7988 // Warn about arg1 || arg2 && arg3, as GCC 4.3+ does. 7989 // We don't warn for 'assert(a || b && "bad")' since this is safe. 7990 if (Opc == BO_LOr && !OpLoc.isMacroID()/* Don't warn in macros. */) { 7991 DiagnoseLogicalAndInLogicalOrLHS(Self, OpLoc, LHSExpr, RHSExpr); 7992 DiagnoseLogicalAndInLogicalOrRHS(Self, OpLoc, LHSExpr, RHSExpr); 7993 } 7994 } 7995 7996 // Binary Operators. 'Tok' is the token for the operator. 7997 ExprResult Sema::ActOnBinOp(Scope *S, SourceLocation TokLoc, 7998 tok::TokenKind Kind, 7999 Expr *LHSExpr, Expr *RHSExpr) { 8000 BinaryOperatorKind Opc = ConvertTokenKindToBinaryOpcode(Kind); 8001 assert((LHSExpr != 0) && "ActOnBinOp(): missing left expression"); 8002 assert((RHSExpr != 0) && "ActOnBinOp(): missing right expression"); 8003 8004 // Emit warnings for tricky precedence issues, e.g. "bitfield & 0x4 == 0" 8005 DiagnoseBinOpPrecedence(*this, Opc, TokLoc, LHSExpr, RHSExpr); 8006 8007 return BuildBinOp(S, TokLoc, Opc, LHSExpr, RHSExpr); 8008 } 8009 8010 /// Build an overloaded binary operator expression in the given scope. 8011 static ExprResult BuildOverloadedBinOp(Sema &S, Scope *Sc, SourceLocation OpLoc, 8012 BinaryOperatorKind Opc, 8013 Expr *LHS, Expr *RHS) { 8014 // Find all of the overloaded operators visible from this 8015 // point. We perform both an operator-name lookup from the local 8016 // scope and an argument-dependent lookup based on the types of 8017 // the arguments. 8018 UnresolvedSet<16> Functions; 8019 OverloadedOperatorKind OverOp 8020 = BinaryOperator::getOverloadedOperator(Opc); 8021 if (Sc && OverOp != OO_None) 8022 S.LookupOverloadedOperatorName(OverOp, Sc, LHS->getType(), 8023 RHS->getType(), Functions); 8024 8025 // Build the (potentially-overloaded, potentially-dependent) 8026 // binary operation. 8027 return S.CreateOverloadedBinOp(OpLoc, Opc, Functions, LHS, RHS); 8028 } 8029 8030 ExprResult Sema::BuildBinOp(Scope *S, SourceLocation OpLoc, 8031 BinaryOperatorKind Opc, 8032 Expr *LHSExpr, Expr *RHSExpr) { 8033 // We want to end up calling one of checkPseudoObjectAssignment 8034 // (if the LHS is a pseudo-object), BuildOverloadedBinOp (if 8035 // both expressions are overloadable or either is type-dependent), 8036 // or CreateBuiltinBinOp (in any other case). We also want to get 8037 // any placeholder types out of the way. 8038 8039 // Handle pseudo-objects in the LHS. 8040 if (const BuiltinType *pty = LHSExpr->getType()->getAsPlaceholderType()) { 8041 // Assignments with a pseudo-object l-value need special analysis. 8042 if (pty->getKind() == BuiltinType::PseudoObject && 8043 BinaryOperator::isAssignmentOp(Opc)) 8044 return checkPseudoObjectAssignment(S, OpLoc, Opc, LHSExpr, RHSExpr); 8045 8046 // Don't resolve overloads if the other type is overloadable. 8047 if (pty->getKind() == BuiltinType::Overload) { 8048 // We can't actually test that if we still have a placeholder, 8049 // though. Fortunately, none of the exceptions we see in that 8050 // code below are valid when the LHS is an overload set. Note 8051 // that an overload set can be dependently-typed, but it never 8052 // instantiates to having an overloadable type. 8053 ExprResult resolvedRHS = CheckPlaceholderExpr(RHSExpr); 8054 if (resolvedRHS.isInvalid()) return ExprError(); 8055 RHSExpr = resolvedRHS.take(); 8056 8057 if (RHSExpr->isTypeDependent() || 8058 RHSExpr->getType()->isOverloadableType()) 8059 return BuildOverloadedBinOp(*this, S, OpLoc, Opc, LHSExpr, RHSExpr); 8060 } 8061 8062 ExprResult LHS = CheckPlaceholderExpr(LHSExpr); 8063 if (LHS.isInvalid()) return ExprError(); 8064 LHSExpr = LHS.take(); 8065 } 8066 8067 // Handle pseudo-objects in the RHS. 8068 if (const BuiltinType *pty = RHSExpr->getType()->getAsPlaceholderType()) { 8069 // An overload in the RHS can potentially be resolved by the type 8070 // being assigned to. 8071 if (Opc == BO_Assign && pty->getKind() == BuiltinType::Overload) { 8072 if (LHSExpr->isTypeDependent() || RHSExpr->isTypeDependent()) 8073 return BuildOverloadedBinOp(*this, S, OpLoc, Opc, LHSExpr, RHSExpr); 8074 8075 return CreateBuiltinBinOp(OpLoc, Opc, LHSExpr, RHSExpr); 8076 } 8077 8078 // Don't resolve overloads if the other type is overloadable. 8079 if (pty->getKind() == BuiltinType::Overload && 8080 LHSExpr->getType()->isOverloadableType()) 8081 return BuildOverloadedBinOp(*this, S, OpLoc, Opc, LHSExpr, RHSExpr); 8082 8083 ExprResult resolvedRHS = CheckPlaceholderExpr(RHSExpr); 8084 if (!resolvedRHS.isUsable()) return ExprError(); 8085 RHSExpr = resolvedRHS.take(); 8086 } 8087 8088 if (getLangOptions().CPlusPlus) { 8089 // If either expression is type-dependent, always build an 8090 // overloaded op. 8091 if (LHSExpr->isTypeDependent() || RHSExpr->isTypeDependent()) 8092 return BuildOverloadedBinOp(*this, S, OpLoc, Opc, LHSExpr, RHSExpr); 8093 8094 // Otherwise, build an overloaded op if either expression has an 8095 // overloadable type. 8096 if (LHSExpr->getType()->isOverloadableType() || 8097 RHSExpr->getType()->isOverloadableType()) 8098 return BuildOverloadedBinOp(*this, S, OpLoc, Opc, LHSExpr, RHSExpr); 8099 } 8100 8101 // Build a built-in binary operation. 8102 return CreateBuiltinBinOp(OpLoc, Opc, LHSExpr, RHSExpr); 8103 } 8104 8105 ExprResult Sema::CreateBuiltinUnaryOp(SourceLocation OpLoc, 8106 UnaryOperatorKind Opc, 8107 Expr *InputExpr) { 8108 ExprResult Input = Owned(InputExpr); 8109 ExprValueKind VK = VK_RValue; 8110 ExprObjectKind OK = OK_Ordinary; 8111 QualType resultType; 8112 switch (Opc) { 8113 case UO_PreInc: 8114 case UO_PreDec: 8115 case UO_PostInc: 8116 case UO_PostDec: 8117 resultType = CheckIncrementDecrementOperand(*this, Input.get(), VK, OpLoc, 8118 Opc == UO_PreInc || 8119 Opc == UO_PostInc, 8120 Opc == UO_PreInc || 8121 Opc == UO_PreDec); 8122 break; 8123 case UO_AddrOf: 8124 resultType = CheckAddressOfOperand(*this, Input, OpLoc); 8125 break; 8126 case UO_Deref: { 8127 Input = DefaultFunctionArrayLvalueConversion(Input.take()); 8128 resultType = CheckIndirectionOperand(*this, Input.get(), VK, OpLoc); 8129 break; 8130 } 8131 case UO_Plus: 8132 case UO_Minus: 8133 Input = UsualUnaryConversions(Input.take()); 8134 if (Input.isInvalid()) return ExprError(); 8135 resultType = Input.get()->getType(); 8136 if (resultType->isDependentType()) 8137 break; 8138 if (resultType->isArithmeticType() || // C99 6.5.3.3p1 8139 resultType->isVectorType()) 8140 break; 8141 else if (getLangOptions().CPlusPlus && // C++ [expr.unary.op]p6-7 8142 resultType->isEnumeralType()) 8143 break; 8144 else if (getLangOptions().CPlusPlus && // C++ [expr.unary.op]p6 8145 Opc == UO_Plus && 8146 resultType->isPointerType()) 8147 break; 8148 8149 return ExprError(Diag(OpLoc, diag::err_typecheck_unary_expr) 8150 << resultType << Input.get()->getSourceRange()); 8151 8152 case UO_Not: // bitwise complement 8153 Input = UsualUnaryConversions(Input.take()); 8154 if (Input.isInvalid()) return ExprError(); 8155 resultType = Input.get()->getType(); 8156 if (resultType->isDependentType()) 8157 break; 8158 // C99 6.5.3.3p1. We allow complex int and float as a GCC extension. 8159 if (resultType->isComplexType() || resultType->isComplexIntegerType()) 8160 // C99 does not support '~' for complex conjugation. 8161 Diag(OpLoc, diag::ext_integer_complement_complex) 8162 << resultType << Input.get()->getSourceRange(); 8163 else if (resultType->hasIntegerRepresentation()) 8164 break; 8165 else { 8166 return ExprError(Diag(OpLoc, diag::err_typecheck_unary_expr) 8167 << resultType << Input.get()->getSourceRange()); 8168 } 8169 break; 8170 8171 case UO_LNot: // logical negation 8172 // Unlike +/-/~, integer promotions aren't done here (C99 6.5.3.3p5). 8173 Input = DefaultFunctionArrayLvalueConversion(Input.take()); 8174 if (Input.isInvalid()) return ExprError(); 8175 resultType = Input.get()->getType(); 8176 8177 // Though we still have to promote half FP to float... 8178 if (resultType->isHalfType()) { 8179 Input = ImpCastExprToType(Input.take(), Context.FloatTy, CK_FloatingCast).take(); 8180 resultType = Context.FloatTy; 8181 } 8182 8183 if (resultType->isDependentType()) 8184 break; 8185 if (resultType->isScalarType()) { 8186 // C99 6.5.3.3p1: ok, fallthrough; 8187 if (Context.getLangOptions().CPlusPlus) { 8188 // C++03 [expr.unary.op]p8, C++0x [expr.unary.op]p9: 8189 // operand contextually converted to bool. 8190 Input = ImpCastExprToType(Input.take(), Context.BoolTy, 8191 ScalarTypeToBooleanCastKind(resultType)); 8192 } 8193 } else { 8194 return ExprError(Diag(OpLoc, diag::err_typecheck_unary_expr) 8195 << resultType << Input.get()->getSourceRange()); 8196 } 8197 8198 // LNot always has type int. C99 6.5.3.3p5. 8199 // In C++, it's bool. C++ 5.3.1p8 8200 resultType = Context.getLogicalOperationType(); 8201 break; 8202 case UO_Real: 8203 case UO_Imag: 8204 resultType = CheckRealImagOperand(*this, Input, OpLoc, Opc == UO_Real); 8205 // _Real and _Imag map ordinary l-values into ordinary l-values. 8206 if (Input.isInvalid()) return ExprError(); 8207 if (Input.get()->getValueKind() != VK_RValue && 8208 Input.get()->getObjectKind() == OK_Ordinary) 8209 VK = Input.get()->getValueKind(); 8210 break; 8211 case UO_Extension: 8212 resultType = Input.get()->getType(); 8213 VK = Input.get()->getValueKind(); 8214 OK = Input.get()->getObjectKind(); 8215 break; 8216 } 8217 if (resultType.isNull() || Input.isInvalid()) 8218 return ExprError(); 8219 8220 // Check for array bounds violations in the operand of the UnaryOperator, 8221 // except for the '*' and '&' operators that have to be handled specially 8222 // by CheckArrayAccess (as there are special cases like &array[arraysize] 8223 // that are explicitly defined as valid by the standard). 8224 if (Opc != UO_AddrOf && Opc != UO_Deref) 8225 CheckArrayAccess(Input.get()); 8226 8227 return Owned(new (Context) UnaryOperator(Input.take(), Opc, resultType, 8228 VK, OK, OpLoc)); 8229 } 8230 8231 ExprResult Sema::BuildUnaryOp(Scope *S, SourceLocation OpLoc, 8232 UnaryOperatorKind Opc, Expr *Input) { 8233 // First things first: handle placeholders so that the 8234 // overloaded-operator check considers the right type. 8235 if (const BuiltinType *pty = Input->getType()->getAsPlaceholderType()) { 8236 // Increment and decrement of pseudo-object references. 8237 if (pty->getKind() == BuiltinType::PseudoObject && 8238 UnaryOperator::isIncrementDecrementOp(Opc)) 8239 return checkPseudoObjectIncDec(S, OpLoc, Opc, Input); 8240 8241 // extension is always a builtin operator. 8242 if (Opc == UO_Extension) 8243 return CreateBuiltinUnaryOp(OpLoc, Opc, Input); 8244 8245 // & gets special logic for several kinds of placeholder. 8246 // The builtin code knows what to do. 8247 if (Opc == UO_AddrOf && 8248 (pty->getKind() == BuiltinType::Overload || 8249 pty->getKind() == BuiltinType::UnknownAny || 8250 pty->getKind() == BuiltinType::BoundMember)) 8251 return CreateBuiltinUnaryOp(OpLoc, Opc, Input); 8252 8253 // Anything else needs to be handled now. 8254 ExprResult Result = CheckPlaceholderExpr(Input); 8255 if (Result.isInvalid()) return ExprError(); 8256 Input = Result.take(); 8257 } 8258 8259 if (getLangOptions().CPlusPlus && Input->getType()->isOverloadableType() && 8260 UnaryOperator::getOverloadedOperator(Opc) != OO_None) { 8261 // Find all of the overloaded operators visible from this 8262 // point. We perform both an operator-name lookup from the local 8263 // scope and an argument-dependent lookup based on the types of 8264 // the arguments. 8265 UnresolvedSet<16> Functions; 8266 OverloadedOperatorKind OverOp = UnaryOperator::getOverloadedOperator(Opc); 8267 if (S && OverOp != OO_None) 8268 LookupOverloadedOperatorName(OverOp, S, Input->getType(), QualType(), 8269 Functions); 8270 8271 return CreateOverloadedUnaryOp(OpLoc, Opc, Functions, Input); 8272 } 8273 8274 return CreateBuiltinUnaryOp(OpLoc, Opc, Input); 8275 } 8276 8277 // Unary Operators. 'Tok' is the token for the operator. 8278 ExprResult Sema::ActOnUnaryOp(Scope *S, SourceLocation OpLoc, 8279 tok::TokenKind Op, Expr *Input) { 8280 return BuildUnaryOp(S, OpLoc, ConvertTokenKindToUnaryOpcode(Op), Input); 8281 } 8282 8283 /// ActOnAddrLabel - Parse the GNU address of label extension: "&&foo". 8284 ExprResult Sema::ActOnAddrLabel(SourceLocation OpLoc, SourceLocation LabLoc, 8285 LabelDecl *TheDecl) { 8286 TheDecl->setUsed(); 8287 // Create the AST node. The address of a label always has type 'void*'. 8288 return Owned(new (Context) AddrLabelExpr(OpLoc, LabLoc, TheDecl, 8289 Context.getPointerType(Context.VoidTy))); 8290 } 8291 8292 /// Given the last statement in a statement-expression, check whether 8293 /// the result is a producing expression (like a call to an 8294 /// ns_returns_retained function) and, if so, rebuild it to hoist the 8295 /// release out of the full-expression. Otherwise, return null. 8296 /// Cannot fail. 8297 static Expr *maybeRebuildARCConsumingStmt(Stmt *Statement) { 8298 // Should always be wrapped with one of these. 8299 ExprWithCleanups *cleanups = dyn_cast<ExprWithCleanups>(Statement); 8300 if (!cleanups) return 0; 8301 8302 ImplicitCastExpr *cast = dyn_cast<ImplicitCastExpr>(cleanups->getSubExpr()); 8303 if (!cast || cast->getCastKind() != CK_ARCConsumeObject) 8304 return 0; 8305 8306 // Splice out the cast. This shouldn't modify any interesting 8307 // features of the statement. 8308 Expr *producer = cast->getSubExpr(); 8309 assert(producer->getType() == cast->getType()); 8310 assert(producer->getValueKind() == cast->getValueKind()); 8311 cleanups->setSubExpr(producer); 8312 return cleanups; 8313 } 8314 8315 ExprResult 8316 Sema::ActOnStmtExpr(SourceLocation LPLoc, Stmt *SubStmt, 8317 SourceLocation RPLoc) { // "({..})" 8318 assert(SubStmt && isa<CompoundStmt>(SubStmt) && "Invalid action invocation!"); 8319 CompoundStmt *Compound = cast<CompoundStmt>(SubStmt); 8320 8321 bool isFileScope 8322 = (getCurFunctionOrMethodDecl() == 0) && (getCurBlock() == 0); 8323 if (isFileScope) 8324 return ExprError(Diag(LPLoc, diag::err_stmtexpr_file_scope)); 8325 8326 // FIXME: there are a variety of strange constraints to enforce here, for 8327 // example, it is not possible to goto into a stmt expression apparently. 8328 // More semantic analysis is needed. 8329 8330 // If there are sub stmts in the compound stmt, take the type of the last one 8331 // as the type of the stmtexpr. 8332 QualType Ty = Context.VoidTy; 8333 bool StmtExprMayBindToTemp = false; 8334 if (!Compound->body_empty()) { 8335 Stmt *LastStmt = Compound->body_back(); 8336 LabelStmt *LastLabelStmt = 0; 8337 // If LastStmt is a label, skip down through into the body. 8338 while (LabelStmt *Label = dyn_cast<LabelStmt>(LastStmt)) { 8339 LastLabelStmt = Label; 8340 LastStmt = Label->getSubStmt(); 8341 } 8342 8343 if (Expr *LastE = dyn_cast<Expr>(LastStmt)) { 8344 // Do function/array conversion on the last expression, but not 8345 // lvalue-to-rvalue. However, initialize an unqualified type. 8346 ExprResult LastExpr = DefaultFunctionArrayConversion(LastE); 8347 if (LastExpr.isInvalid()) 8348 return ExprError(); 8349 Ty = LastExpr.get()->getType().getUnqualifiedType(); 8350 8351 if (!Ty->isDependentType() && !LastExpr.get()->isTypeDependent()) { 8352 // In ARC, if the final expression ends in a consume, splice 8353 // the consume out and bind it later. In the alternate case 8354 // (when dealing with a retainable type), the result 8355 // initialization will create a produce. In both cases the 8356 // result will be +1, and we'll need to balance that out with 8357 // a bind. 8358 if (Expr *rebuiltLastStmt 8359 = maybeRebuildARCConsumingStmt(LastExpr.get())) { 8360 LastExpr = rebuiltLastStmt; 8361 } else { 8362 LastExpr = PerformCopyInitialization( 8363 InitializedEntity::InitializeResult(LPLoc, 8364 Ty, 8365 false), 8366 SourceLocation(), 8367 LastExpr); 8368 } 8369 8370 if (LastExpr.isInvalid()) 8371 return ExprError(); 8372 if (LastExpr.get() != 0) { 8373 if (!LastLabelStmt) 8374 Compound->setLastStmt(LastExpr.take()); 8375 else 8376 LastLabelStmt->setSubStmt(LastExpr.take()); 8377 StmtExprMayBindToTemp = true; 8378 } 8379 } 8380 } 8381 } 8382 8383 // FIXME: Check that expression type is complete/non-abstract; statement 8384 // expressions are not lvalues. 8385 Expr *ResStmtExpr = new (Context) StmtExpr(Compound, Ty, LPLoc, RPLoc); 8386 if (StmtExprMayBindToTemp) 8387 return MaybeBindToTemporary(ResStmtExpr); 8388 return Owned(ResStmtExpr); 8389 } 8390 8391 ExprResult Sema::BuildBuiltinOffsetOf(SourceLocation BuiltinLoc, 8392 TypeSourceInfo *TInfo, 8393 OffsetOfComponent *CompPtr, 8394 unsigned NumComponents, 8395 SourceLocation RParenLoc) { 8396 QualType ArgTy = TInfo->getType(); 8397 bool Dependent = ArgTy->isDependentType(); 8398 SourceRange TypeRange = TInfo->getTypeLoc().getLocalSourceRange(); 8399 8400 // We must have at least one component that refers to the type, and the first 8401 // one is known to be a field designator. Verify that the ArgTy represents 8402 // a struct/union/class. 8403 if (!Dependent && !ArgTy->isRecordType()) 8404 return ExprError(Diag(BuiltinLoc, diag::err_offsetof_record_type) 8405 << ArgTy << TypeRange); 8406 8407 // Type must be complete per C99 7.17p3 because a declaring a variable 8408 // with an incomplete type would be ill-formed. 8409 if (!Dependent 8410 && RequireCompleteType(BuiltinLoc, ArgTy, 8411 PDiag(diag::err_offsetof_incomplete_type) 8412 << TypeRange)) 8413 return ExprError(); 8414 8415 // offsetof with non-identifier designators (e.g. "offsetof(x, a.b[c])") are a 8416 // GCC extension, diagnose them. 8417 // FIXME: This diagnostic isn't actually visible because the location is in 8418 // a system header! 8419 if (NumComponents != 1) 8420 Diag(BuiltinLoc, diag::ext_offsetof_extended_field_designator) 8421 << SourceRange(CompPtr[1].LocStart, CompPtr[NumComponents-1].LocEnd); 8422 8423 bool DidWarnAboutNonPOD = false; 8424 QualType CurrentType = ArgTy; 8425 typedef OffsetOfExpr::OffsetOfNode OffsetOfNode; 8426 SmallVector<OffsetOfNode, 4> Comps; 8427 SmallVector<Expr*, 4> Exprs; 8428 for (unsigned i = 0; i != NumComponents; ++i) { 8429 const OffsetOfComponent &OC = CompPtr[i]; 8430 if (OC.isBrackets) { 8431 // Offset of an array sub-field. TODO: Should we allow vector elements? 8432 if (!CurrentType->isDependentType()) { 8433 const ArrayType *AT = Context.getAsArrayType(CurrentType); 8434 if(!AT) 8435 return ExprError(Diag(OC.LocEnd, diag::err_offsetof_array_type) 8436 << CurrentType); 8437 CurrentType = AT->getElementType(); 8438 } else 8439 CurrentType = Context.DependentTy; 8440 8441 ExprResult IdxRval = DefaultLvalueConversion(static_cast<Expr*>(OC.U.E)); 8442 if (IdxRval.isInvalid()) 8443 return ExprError(); 8444 Expr *Idx = IdxRval.take(); 8445 8446 // The expression must be an integral expression. 8447 // FIXME: An integral constant expression? 8448 if (!Idx->isTypeDependent() && !Idx->isValueDependent() && 8449 !Idx->getType()->isIntegerType()) 8450 return ExprError(Diag(Idx->getLocStart(), 8451 diag::err_typecheck_subscript_not_integer) 8452 << Idx->getSourceRange()); 8453 8454 // Record this array index. 8455 Comps.push_back(OffsetOfNode(OC.LocStart, Exprs.size(), OC.LocEnd)); 8456 Exprs.push_back(Idx); 8457 continue; 8458 } 8459 8460 // Offset of a field. 8461 if (CurrentType->isDependentType()) { 8462 // We have the offset of a field, but we can't look into the dependent 8463 // type. Just record the identifier of the field. 8464 Comps.push_back(OffsetOfNode(OC.LocStart, OC.U.IdentInfo, OC.LocEnd)); 8465 CurrentType = Context.DependentTy; 8466 continue; 8467 } 8468 8469 // We need to have a complete type to look into. 8470 if (RequireCompleteType(OC.LocStart, CurrentType, 8471 diag::err_offsetof_incomplete_type)) 8472 return ExprError(); 8473 8474 // Look for the designated field. 8475 const RecordType *RC = CurrentType->getAs<RecordType>(); 8476 if (!RC) 8477 return ExprError(Diag(OC.LocEnd, diag::err_offsetof_record_type) 8478 << CurrentType); 8479 RecordDecl *RD = RC->getDecl(); 8480 8481 // C++ [lib.support.types]p5: 8482 // The macro offsetof accepts a restricted set of type arguments in this 8483 // International Standard. type shall be a POD structure or a POD union 8484 // (clause 9). 8485 if (CXXRecordDecl *CRD = dyn_cast<CXXRecordDecl>(RD)) { 8486 if (!CRD->isPOD() && !DidWarnAboutNonPOD && 8487 DiagRuntimeBehavior(BuiltinLoc, 0, 8488 PDiag(diag::warn_offsetof_non_pod_type) 8489 << SourceRange(CompPtr[0].LocStart, OC.LocEnd) 8490 << CurrentType)) 8491 DidWarnAboutNonPOD = true; 8492 } 8493 8494 // Look for the field. 8495 LookupResult R(*this, OC.U.IdentInfo, OC.LocStart, LookupMemberName); 8496 LookupQualifiedName(R, RD); 8497 FieldDecl *MemberDecl = R.getAsSingle<FieldDecl>(); 8498 IndirectFieldDecl *IndirectMemberDecl = 0; 8499 if (!MemberDecl) { 8500 if ((IndirectMemberDecl = R.getAsSingle<IndirectFieldDecl>())) 8501 MemberDecl = IndirectMemberDecl->getAnonField(); 8502 } 8503 8504 if (!MemberDecl) 8505 return ExprError(Diag(BuiltinLoc, diag::err_no_member) 8506 << OC.U.IdentInfo << RD << SourceRange(OC.LocStart, 8507 OC.LocEnd)); 8508 8509 // C99 7.17p3: 8510 // (If the specified member is a bit-field, the behavior is undefined.) 8511 // 8512 // We diagnose this as an error. 8513 if (MemberDecl->isBitField()) { 8514 Diag(OC.LocEnd, diag::err_offsetof_bitfield) 8515 << MemberDecl->getDeclName() 8516 << SourceRange(BuiltinLoc, RParenLoc); 8517 Diag(MemberDecl->getLocation(), diag::note_bitfield_decl); 8518 return ExprError(); 8519 } 8520 8521 RecordDecl *Parent = MemberDecl->getParent(); 8522 if (IndirectMemberDecl) 8523 Parent = cast<RecordDecl>(IndirectMemberDecl->getDeclContext()); 8524 8525 // If the member was found in a base class, introduce OffsetOfNodes for 8526 // the base class indirections. 8527 CXXBasePaths Paths(/*FindAmbiguities=*/true, /*RecordPaths=*/true, 8528 /*DetectVirtual=*/false); 8529 if (IsDerivedFrom(CurrentType, Context.getTypeDeclType(Parent), Paths)) { 8530 CXXBasePath &Path = Paths.front(); 8531 for (CXXBasePath::iterator B = Path.begin(), BEnd = Path.end(); 8532 B != BEnd; ++B) 8533 Comps.push_back(OffsetOfNode(B->Base)); 8534 } 8535 8536 if (IndirectMemberDecl) { 8537 for (IndirectFieldDecl::chain_iterator FI = 8538 IndirectMemberDecl->chain_begin(), 8539 FEnd = IndirectMemberDecl->chain_end(); FI != FEnd; FI++) { 8540 assert(isa<FieldDecl>(*FI)); 8541 Comps.push_back(OffsetOfNode(OC.LocStart, 8542 cast<FieldDecl>(*FI), OC.LocEnd)); 8543 } 8544 } else 8545 Comps.push_back(OffsetOfNode(OC.LocStart, MemberDecl, OC.LocEnd)); 8546 8547 CurrentType = MemberDecl->getType().getNonReferenceType(); 8548 } 8549 8550 return Owned(OffsetOfExpr::Create(Context, Context.getSizeType(), BuiltinLoc, 8551 TInfo, Comps.data(), Comps.size(), 8552 Exprs.data(), Exprs.size(), RParenLoc)); 8553 } 8554 8555 ExprResult Sema::ActOnBuiltinOffsetOf(Scope *S, 8556 SourceLocation BuiltinLoc, 8557 SourceLocation TypeLoc, 8558 ParsedType ParsedArgTy, 8559 OffsetOfComponent *CompPtr, 8560 unsigned NumComponents, 8561 SourceLocation RParenLoc) { 8562 8563 TypeSourceInfo *ArgTInfo; 8564 QualType ArgTy = GetTypeFromParser(ParsedArgTy, &ArgTInfo); 8565 if (ArgTy.isNull()) 8566 return ExprError(); 8567 8568 if (!ArgTInfo) 8569 ArgTInfo = Context.getTrivialTypeSourceInfo(ArgTy, TypeLoc); 8570 8571 return BuildBuiltinOffsetOf(BuiltinLoc, ArgTInfo, CompPtr, NumComponents, 8572 RParenLoc); 8573 } 8574 8575 8576 ExprResult Sema::ActOnChooseExpr(SourceLocation BuiltinLoc, 8577 Expr *CondExpr, 8578 Expr *LHSExpr, Expr *RHSExpr, 8579 SourceLocation RPLoc) { 8580 assert((CondExpr && LHSExpr && RHSExpr) && "Missing type argument(s)"); 8581 8582 ExprValueKind VK = VK_RValue; 8583 ExprObjectKind OK = OK_Ordinary; 8584 QualType resType; 8585 bool ValueDependent = false; 8586 if (CondExpr->isTypeDependent() || CondExpr->isValueDependent()) { 8587 resType = Context.DependentTy; 8588 ValueDependent = true; 8589 } else { 8590 // The conditional expression is required to be a constant expression. 8591 llvm::APSInt condEval(32); 8592 SourceLocation ExpLoc; 8593 if (!CondExpr->isIntegerConstantExpr(condEval, Context, &ExpLoc)) 8594 return ExprError(Diag(ExpLoc, 8595 diag::err_typecheck_choose_expr_requires_constant) 8596 << CondExpr->getSourceRange()); 8597 8598 // If the condition is > zero, then the AST type is the same as the LSHExpr. 8599 Expr *ActiveExpr = condEval.getZExtValue() ? LHSExpr : RHSExpr; 8600 8601 resType = ActiveExpr->getType(); 8602 ValueDependent = ActiveExpr->isValueDependent(); 8603 VK = ActiveExpr->getValueKind(); 8604 OK = ActiveExpr->getObjectKind(); 8605 } 8606 8607 return Owned(new (Context) ChooseExpr(BuiltinLoc, CondExpr, LHSExpr, RHSExpr, 8608 resType, VK, OK, RPLoc, 8609 resType->isDependentType(), 8610 ValueDependent)); 8611 } 8612 8613 //===----------------------------------------------------------------------===// 8614 // Clang Extensions. 8615 //===----------------------------------------------------------------------===// 8616 8617 /// ActOnBlockStart - This callback is invoked when a block literal is started. 8618 void Sema::ActOnBlockStart(SourceLocation CaretLoc, Scope *CurScope) { 8619 BlockDecl *Block = BlockDecl::Create(Context, CurContext, CaretLoc); 8620 PushBlockScope(CurScope, Block); 8621 CurContext->addDecl(Block); 8622 if (CurScope) 8623 PushDeclContext(CurScope, Block); 8624 else 8625 CurContext = Block; 8626 8627 // Enter a new evaluation context to insulate the block from any 8628 // cleanups from the enclosing full-expression. 8629 PushExpressionEvaluationContext(PotentiallyEvaluated); 8630 } 8631 8632 void Sema::ActOnBlockArguments(Declarator &ParamInfo, Scope *CurScope) { 8633 assert(ParamInfo.getIdentifier()==0 && "block-id should have no identifier!"); 8634 assert(ParamInfo.getContext() == Declarator::BlockLiteralContext); 8635 BlockScopeInfo *CurBlock = getCurBlock(); 8636 8637 TypeSourceInfo *Sig = GetTypeForDeclarator(ParamInfo, CurScope); 8638 QualType T = Sig->getType(); 8639 8640 // GetTypeForDeclarator always produces a function type for a block 8641 // literal signature. Furthermore, it is always a FunctionProtoType 8642 // unless the function was written with a typedef. 8643 assert(T->isFunctionType() && 8644 "GetTypeForDeclarator made a non-function block signature"); 8645 8646 // Look for an explicit signature in that function type. 8647 FunctionProtoTypeLoc ExplicitSignature; 8648 8649 TypeLoc tmp = Sig->getTypeLoc().IgnoreParens(); 8650 if (isa<FunctionProtoTypeLoc>(tmp)) { 8651 ExplicitSignature = cast<FunctionProtoTypeLoc>(tmp); 8652 8653 // Check whether that explicit signature was synthesized by 8654 // GetTypeForDeclarator. If so, don't save that as part of the 8655 // written signature. 8656 if (ExplicitSignature.getLocalRangeBegin() == 8657 ExplicitSignature.getLocalRangeEnd()) { 8658 // This would be much cheaper if we stored TypeLocs instead of 8659 // TypeSourceInfos. 8660 TypeLoc Result = ExplicitSignature.getResultLoc(); 8661 unsigned Size = Result.getFullDataSize(); 8662 Sig = Context.CreateTypeSourceInfo(Result.getType(), Size); 8663 Sig->getTypeLoc().initializeFullCopy(Result, Size); 8664 8665 ExplicitSignature = FunctionProtoTypeLoc(); 8666 } 8667 } 8668 8669 CurBlock->TheDecl->setSignatureAsWritten(Sig); 8670 CurBlock->FunctionType = T; 8671 8672 const FunctionType *Fn = T->getAs<FunctionType>(); 8673 QualType RetTy = Fn->getResultType(); 8674 bool isVariadic = 8675 (isa<FunctionProtoType>(Fn) && cast<FunctionProtoType>(Fn)->isVariadic()); 8676 8677 CurBlock->TheDecl->setIsVariadic(isVariadic); 8678 8679 // Don't allow returning a objc interface by value. 8680 if (RetTy->isObjCObjectType()) { 8681 Diag(ParamInfo.getSourceRange().getBegin(), 8682 diag::err_object_cannot_be_passed_returned_by_value) << 0 << RetTy; 8683 return; 8684 } 8685 8686 // Context.DependentTy is used as a placeholder for a missing block 8687 // return type. TODO: what should we do with declarators like: 8688 // ^ * { ... } 8689 // If the answer is "apply template argument deduction".... 8690 if (RetTy != Context.DependentTy) 8691 CurBlock->ReturnType = RetTy; 8692 8693 // Push block parameters from the declarator if we had them. 8694 SmallVector<ParmVarDecl*, 8> Params; 8695 if (ExplicitSignature) { 8696 for (unsigned I = 0, E = ExplicitSignature.getNumArgs(); I != E; ++I) { 8697 ParmVarDecl *Param = ExplicitSignature.getArg(I); 8698 if (Param->getIdentifier() == 0 && 8699 !Param->isImplicit() && 8700 !Param->isInvalidDecl() && 8701 !getLangOptions().CPlusPlus) 8702 Diag(Param->getLocation(), diag::err_parameter_name_omitted); 8703 Params.push_back(Param); 8704 } 8705 8706 // Fake up parameter variables if we have a typedef, like 8707 // ^ fntype { ... } 8708 } else if (const FunctionProtoType *Fn = T->getAs<FunctionProtoType>()) { 8709 for (FunctionProtoType::arg_type_iterator 8710 I = Fn->arg_type_begin(), E = Fn->arg_type_end(); I != E; ++I) { 8711 ParmVarDecl *Param = 8712 BuildParmVarDeclForTypedef(CurBlock->TheDecl, 8713 ParamInfo.getSourceRange().getBegin(), 8714 *I); 8715 Params.push_back(Param); 8716 } 8717 } 8718 8719 // Set the parameters on the block decl. 8720 if (!Params.empty()) { 8721 CurBlock->TheDecl->setParams(Params); 8722 CheckParmsForFunctionDef(CurBlock->TheDecl->param_begin(), 8723 CurBlock->TheDecl->param_end(), 8724 /*CheckParameterNames=*/false); 8725 } 8726 8727 // Finally we can process decl attributes. 8728 ProcessDeclAttributes(CurScope, CurBlock->TheDecl, ParamInfo); 8729 8730 if (!isVariadic && CurBlock->TheDecl->getAttr<SentinelAttr>()) { 8731 Diag(ParamInfo.getAttributes()->getLoc(), 8732 diag::warn_attribute_sentinel_not_variadic) << 1; 8733 // FIXME: remove the attribute. 8734 } 8735 8736 // Put the parameter variables in scope. We can bail out immediately 8737 // if we don't have any. 8738 if (Params.empty()) 8739 return; 8740 8741 for (BlockDecl::param_iterator AI = CurBlock->TheDecl->param_begin(), 8742 E = CurBlock->TheDecl->param_end(); AI != E; ++AI) { 8743 (*AI)->setOwningFunction(CurBlock->TheDecl); 8744 8745 // If this has an identifier, add it to the scope stack. 8746 if ((*AI)->getIdentifier()) { 8747 CheckShadow(CurBlock->TheScope, *AI); 8748 8749 PushOnScopeChains(*AI, CurBlock->TheScope); 8750 } 8751 } 8752 } 8753 8754 /// ActOnBlockError - If there is an error parsing a block, this callback 8755 /// is invoked to pop the information about the block from the action impl. 8756 void Sema::ActOnBlockError(SourceLocation CaretLoc, Scope *CurScope) { 8757 // Leave the expression-evaluation context. 8758 DiscardCleanupsInEvaluationContext(); 8759 PopExpressionEvaluationContext(); 8760 8761 // Pop off CurBlock, handle nested blocks. 8762 PopDeclContext(); 8763 PopFunctionOrBlockScope(); 8764 } 8765 8766 /// ActOnBlockStmtExpr - This is called when the body of a block statement 8767 /// literal was successfully completed. ^(int x){...} 8768 ExprResult Sema::ActOnBlockStmtExpr(SourceLocation CaretLoc, 8769 Stmt *Body, Scope *CurScope) { 8770 // If blocks are disabled, emit an error. 8771 if (!LangOpts.Blocks) 8772 Diag(CaretLoc, diag::err_blocks_disable); 8773 8774 // Leave the expression-evaluation context. 8775 assert(!ExprNeedsCleanups && "cleanups within block not correctly bound!"); 8776 PopExpressionEvaluationContext(); 8777 8778 BlockScopeInfo *BSI = cast<BlockScopeInfo>(FunctionScopes.back()); 8779 8780 PopDeclContext(); 8781 8782 QualType RetTy = Context.VoidTy; 8783 if (!BSI->ReturnType.isNull()) 8784 RetTy = BSI->ReturnType; 8785 8786 bool NoReturn = BSI->TheDecl->getAttr<NoReturnAttr>(); 8787 QualType BlockTy; 8788 8789 // Set the captured variables on the block. 8790 BSI->TheDecl->setCaptures(Context, BSI->Captures.begin(), BSI->Captures.end(), 8791 BSI->CapturesCXXThis); 8792 8793 // If the user wrote a function type in some form, try to use that. 8794 if (!BSI->FunctionType.isNull()) { 8795 const FunctionType *FTy = BSI->FunctionType->getAs<FunctionType>(); 8796 8797 FunctionType::ExtInfo Ext = FTy->getExtInfo(); 8798 if (NoReturn && !Ext.getNoReturn()) Ext = Ext.withNoReturn(true); 8799 8800 // Turn protoless block types into nullary block types. 8801 if (isa<FunctionNoProtoType>(FTy)) { 8802 FunctionProtoType::ExtProtoInfo EPI; 8803 EPI.ExtInfo = Ext; 8804 BlockTy = Context.getFunctionType(RetTy, 0, 0, EPI); 8805 8806 // Otherwise, if we don't need to change anything about the function type, 8807 // preserve its sugar structure. 8808 } else if (FTy->getResultType() == RetTy && 8809 (!NoReturn || FTy->getNoReturnAttr())) { 8810 BlockTy = BSI->FunctionType; 8811 8812 // Otherwise, make the minimal modifications to the function type. 8813 } else { 8814 const FunctionProtoType *FPT = cast<FunctionProtoType>(FTy); 8815 FunctionProtoType::ExtProtoInfo EPI = FPT->getExtProtoInfo(); 8816 EPI.TypeQuals = 0; // FIXME: silently? 8817 EPI.ExtInfo = Ext; 8818 BlockTy = Context.getFunctionType(RetTy, 8819 FPT->arg_type_begin(), 8820 FPT->getNumArgs(), 8821 EPI); 8822 } 8823 8824 // If we don't have a function type, just build one from nothing. 8825 } else { 8826 FunctionProtoType::ExtProtoInfo EPI; 8827 EPI.ExtInfo = FunctionType::ExtInfo().withNoReturn(NoReturn); 8828 BlockTy = Context.getFunctionType(RetTy, 0, 0, EPI); 8829 } 8830 8831 DiagnoseUnusedParameters(BSI->TheDecl->param_begin(), 8832 BSI->TheDecl->param_end()); 8833 BlockTy = Context.getBlockPointerType(BlockTy); 8834 8835 // If needed, diagnose invalid gotos and switches in the block. 8836 if (getCurFunction()->NeedsScopeChecking() && 8837 !hasAnyUnrecoverableErrorsInThisFunction()) 8838 DiagnoseInvalidJumps(cast<CompoundStmt>(Body)); 8839 8840 BSI->TheDecl->setBody(cast<CompoundStmt>(Body)); 8841 8842 for (BlockDecl::capture_const_iterator ci = BSI->TheDecl->capture_begin(), 8843 ce = BSI->TheDecl->capture_end(); ci != ce; ++ci) { 8844 const VarDecl *variable = ci->getVariable(); 8845 QualType T = variable->getType(); 8846 QualType::DestructionKind destructKind = T.isDestructedType(); 8847 if (destructKind != QualType::DK_none) 8848 getCurFunction()->setHasBranchProtectedScope(); 8849 } 8850 8851 computeNRVO(Body, getCurBlock()); 8852 8853 BlockExpr *Result = new (Context) BlockExpr(BSI->TheDecl, BlockTy); 8854 const AnalysisBasedWarnings::Policy &WP = AnalysisWarnings.getDefaultPolicy(); 8855 PopFunctionOrBlockScope(&WP, Result->getBlockDecl(), Result); 8856 8857 // If the block isn't obviously global, i.e. it captures anything at 8858 // all, mark this full-expression as needing a cleanup. 8859 if (Result->getBlockDecl()->hasCaptures()) { 8860 ExprCleanupObjects.push_back(Result->getBlockDecl()); 8861 ExprNeedsCleanups = true; 8862 } 8863 8864 return Owned(Result); 8865 } 8866 8867 ExprResult Sema::ActOnVAArg(SourceLocation BuiltinLoc, 8868 Expr *E, ParsedType Ty, 8869 SourceLocation RPLoc) { 8870 TypeSourceInfo *TInfo; 8871 GetTypeFromParser(Ty, &TInfo); 8872 return BuildVAArgExpr(BuiltinLoc, E, TInfo, RPLoc); 8873 } 8874 8875 ExprResult Sema::BuildVAArgExpr(SourceLocation BuiltinLoc, 8876 Expr *E, TypeSourceInfo *TInfo, 8877 SourceLocation RPLoc) { 8878 Expr *OrigExpr = E; 8879 8880 // Get the va_list type 8881 QualType VaListType = Context.getBuiltinVaListType(); 8882 if (VaListType->isArrayType()) { 8883 // Deal with implicit array decay; for example, on x86-64, 8884 // va_list is an array, but it's supposed to decay to 8885 // a pointer for va_arg. 8886 VaListType = Context.getArrayDecayedType(VaListType); 8887 // Make sure the input expression also decays appropriately. 8888 ExprResult Result = UsualUnaryConversions(E); 8889 if (Result.isInvalid()) 8890 return ExprError(); 8891 E = Result.take(); 8892 } else { 8893 // Otherwise, the va_list argument must be an l-value because 8894 // it is modified by va_arg. 8895 if (!E->isTypeDependent() && 8896 CheckForModifiableLvalue(E, BuiltinLoc, *this)) 8897 return ExprError(); 8898 } 8899 8900 if (!E->isTypeDependent() && 8901 !Context.hasSameType(VaListType, E->getType())) { 8902 return ExprError(Diag(E->getLocStart(), 8903 diag::err_first_argument_to_va_arg_not_of_type_va_list) 8904 << OrigExpr->getType() << E->getSourceRange()); 8905 } 8906 8907 if (!TInfo->getType()->isDependentType()) { 8908 if (RequireCompleteType(TInfo->getTypeLoc().getBeginLoc(), TInfo->getType(), 8909 PDiag(diag::err_second_parameter_to_va_arg_incomplete) 8910 << TInfo->getTypeLoc().getSourceRange())) 8911 return ExprError(); 8912 8913 if (RequireNonAbstractType(TInfo->getTypeLoc().getBeginLoc(), 8914 TInfo->getType(), 8915 PDiag(diag::err_second_parameter_to_va_arg_abstract) 8916 << TInfo->getTypeLoc().getSourceRange())) 8917 return ExprError(); 8918 8919 if (!TInfo->getType().isPODType(Context)) { 8920 Diag(TInfo->getTypeLoc().getBeginLoc(), 8921 TInfo->getType()->isObjCLifetimeType() 8922 ? diag::warn_second_parameter_to_va_arg_ownership_qualified 8923 : diag::warn_second_parameter_to_va_arg_not_pod) 8924 << TInfo->getType() 8925 << TInfo->getTypeLoc().getSourceRange(); 8926 } 8927 8928 // Check for va_arg where arguments of the given type will be promoted 8929 // (i.e. this va_arg is guaranteed to have undefined behavior). 8930 QualType PromoteType; 8931 if (TInfo->getType()->isPromotableIntegerType()) { 8932 PromoteType = Context.getPromotedIntegerType(TInfo->getType()); 8933 if (Context.typesAreCompatible(PromoteType, TInfo->getType())) 8934 PromoteType = QualType(); 8935 } 8936 if (TInfo->getType()->isSpecificBuiltinType(BuiltinType::Float)) 8937 PromoteType = Context.DoubleTy; 8938 if (!PromoteType.isNull()) 8939 Diag(TInfo->getTypeLoc().getBeginLoc(), 8940 diag::warn_second_parameter_to_va_arg_never_compatible) 8941 << TInfo->getType() 8942 << PromoteType 8943 << TInfo->getTypeLoc().getSourceRange(); 8944 } 8945 8946 QualType T = TInfo->getType().getNonLValueExprType(Context); 8947 return Owned(new (Context) VAArgExpr(BuiltinLoc, E, TInfo, RPLoc, T)); 8948 } 8949 8950 ExprResult Sema::ActOnGNUNullExpr(SourceLocation TokenLoc) { 8951 // The type of __null will be int or long, depending on the size of 8952 // pointers on the target. 8953 QualType Ty; 8954 unsigned pw = Context.getTargetInfo().getPointerWidth(0); 8955 if (pw == Context.getTargetInfo().getIntWidth()) 8956 Ty = Context.IntTy; 8957 else if (pw == Context.getTargetInfo().getLongWidth()) 8958 Ty = Context.LongTy; 8959 else if (pw == Context.getTargetInfo().getLongLongWidth()) 8960 Ty = Context.LongLongTy; 8961 else { 8962 llvm_unreachable("I don't know size of pointer!"); 8963 } 8964 8965 return Owned(new (Context) GNUNullExpr(Ty, TokenLoc)); 8966 } 8967 8968 static void MakeObjCStringLiteralFixItHint(Sema& SemaRef, QualType DstType, 8969 Expr *SrcExpr, FixItHint &Hint) { 8970 if (!SemaRef.getLangOptions().ObjC1) 8971 return; 8972 8973 const ObjCObjectPointerType *PT = DstType->getAs<ObjCObjectPointerType>(); 8974 if (!PT) 8975 return; 8976 8977 // Check if the destination is of type 'id'. 8978 if (!PT->isObjCIdType()) { 8979 // Check if the destination is the 'NSString' interface. 8980 const ObjCInterfaceDecl *ID = PT->getInterfaceDecl(); 8981 if (!ID || !ID->getIdentifier()->isStr("NSString")) 8982 return; 8983 } 8984 8985 // Ignore any parens, implicit casts (should only be 8986 // array-to-pointer decays), and not-so-opaque values. The last is 8987 // important for making this trigger for property assignments. 8988 SrcExpr = SrcExpr->IgnoreParenImpCasts(); 8989 if (OpaqueValueExpr *OV = dyn_cast<OpaqueValueExpr>(SrcExpr)) 8990 if (OV->getSourceExpr()) 8991 SrcExpr = OV->getSourceExpr()->IgnoreParenImpCasts(); 8992 8993 StringLiteral *SL = dyn_cast<StringLiteral>(SrcExpr); 8994 if (!SL || !SL->isAscii()) 8995 return; 8996 8997 Hint = FixItHint::CreateInsertion(SL->getLocStart(), "@"); 8998 } 8999 9000 bool Sema::DiagnoseAssignmentResult(AssignConvertType ConvTy, 9001 SourceLocation Loc, 9002 QualType DstType, QualType SrcType, 9003 Expr *SrcExpr, AssignmentAction Action, 9004 bool *Complained) { 9005 if (Complained) 9006 *Complained = false; 9007 9008 // Decode the result (notice that AST's are still created for extensions). 9009 bool CheckInferredResultType = false; 9010 bool isInvalid = false; 9011 unsigned DiagKind; 9012 FixItHint Hint; 9013 ConversionFixItGenerator ConvHints; 9014 bool MayHaveConvFixit = false; 9015 9016 switch (ConvTy) { 9017 default: llvm_unreachable("Unknown conversion type"); 9018 case Compatible: return false; 9019 case PointerToInt: 9020 DiagKind = diag::ext_typecheck_convert_pointer_int; 9021 ConvHints.tryToFixConversion(SrcExpr, SrcType, DstType, *this); 9022 MayHaveConvFixit = true; 9023 break; 9024 case IntToPointer: 9025 DiagKind = diag::ext_typecheck_convert_int_pointer; 9026 ConvHints.tryToFixConversion(SrcExpr, SrcType, DstType, *this); 9027 MayHaveConvFixit = true; 9028 break; 9029 case IncompatiblePointer: 9030 MakeObjCStringLiteralFixItHint(*this, DstType, SrcExpr, Hint); 9031 DiagKind = diag::ext_typecheck_convert_incompatible_pointer; 9032 CheckInferredResultType = DstType->isObjCObjectPointerType() && 9033 SrcType->isObjCObjectPointerType(); 9034 if (Hint.isNull() && !CheckInferredResultType) { 9035 ConvHints.tryToFixConversion(SrcExpr, SrcType, DstType, *this); 9036 } 9037 MayHaveConvFixit = true; 9038 break; 9039 case IncompatiblePointerSign: 9040 DiagKind = diag::ext_typecheck_convert_incompatible_pointer_sign; 9041 break; 9042 case FunctionVoidPointer: 9043 DiagKind = diag::ext_typecheck_convert_pointer_void_func; 9044 break; 9045 case IncompatiblePointerDiscardsQualifiers: { 9046 // Perform array-to-pointer decay if necessary. 9047 if (SrcType->isArrayType()) SrcType = Context.getArrayDecayedType(SrcType); 9048 9049 Qualifiers lhq = SrcType->getPointeeType().getQualifiers(); 9050 Qualifiers rhq = DstType->getPointeeType().getQualifiers(); 9051 if (lhq.getAddressSpace() != rhq.getAddressSpace()) { 9052 DiagKind = diag::err_typecheck_incompatible_address_space; 9053 break; 9054 9055 9056 } else if (lhq.getObjCLifetime() != rhq.getObjCLifetime()) { 9057 DiagKind = diag::err_typecheck_incompatible_ownership; 9058 break; 9059 } 9060 9061 llvm_unreachable("unknown error case for discarding qualifiers!"); 9062 // fallthrough 9063 } 9064 case CompatiblePointerDiscardsQualifiers: 9065 // If the qualifiers lost were because we were applying the 9066 // (deprecated) C++ conversion from a string literal to a char* 9067 // (or wchar_t*), then there was no error (C++ 4.2p2). FIXME: 9068 // Ideally, this check would be performed in 9069 // checkPointerTypesForAssignment. However, that would require a 9070 // bit of refactoring (so that the second argument is an 9071 // expression, rather than a type), which should be done as part 9072 // of a larger effort to fix checkPointerTypesForAssignment for 9073 // C++ semantics. 9074 if (getLangOptions().CPlusPlus && 9075 IsStringLiteralToNonConstPointerConversion(SrcExpr, DstType)) 9076 return false; 9077 DiagKind = diag::ext_typecheck_convert_discards_qualifiers; 9078 break; 9079 case IncompatibleNestedPointerQualifiers: 9080 DiagKind = diag::ext_nested_pointer_qualifier_mismatch; 9081 break; 9082 case IntToBlockPointer: 9083 DiagKind = diag::err_int_to_block_pointer; 9084 break; 9085 case IncompatibleBlockPointer: 9086 DiagKind = diag::err_typecheck_convert_incompatible_block_pointer; 9087 break; 9088 case IncompatibleObjCQualifiedId: 9089 // FIXME: Diagnose the problem in ObjCQualifiedIdTypesAreCompatible, since 9090 // it can give a more specific diagnostic. 9091 DiagKind = diag::warn_incompatible_qualified_id; 9092 break; 9093 case IncompatibleVectors: 9094 DiagKind = diag::warn_incompatible_vectors; 9095 break; 9096 case IncompatibleObjCWeakRef: 9097 DiagKind = diag::err_arc_weak_unavailable_assign; 9098 break; 9099 case Incompatible: 9100 DiagKind = diag::err_typecheck_convert_incompatible; 9101 ConvHints.tryToFixConversion(SrcExpr, SrcType, DstType, *this); 9102 MayHaveConvFixit = true; 9103 isInvalid = true; 9104 break; 9105 } 9106 9107 QualType FirstType, SecondType; 9108 switch (Action) { 9109 case AA_Assigning: 9110 case AA_Initializing: 9111 // The destination type comes first. 9112 FirstType = DstType; 9113 SecondType = SrcType; 9114 break; 9115 9116 case AA_Returning: 9117 case AA_Passing: 9118 case AA_Converting: 9119 case AA_Sending: 9120 case AA_Casting: 9121 // The source type comes first. 9122 FirstType = SrcType; 9123 SecondType = DstType; 9124 break; 9125 } 9126 9127 PartialDiagnostic FDiag = PDiag(DiagKind); 9128 FDiag << FirstType << SecondType << Action << SrcExpr->getSourceRange(); 9129 9130 // If we can fix the conversion, suggest the FixIts. 9131 assert(ConvHints.isNull() || Hint.isNull()); 9132 if (!ConvHints.isNull()) { 9133 for (llvm::SmallVector<FixItHint, 1>::iterator 9134 HI = ConvHints.Hints.begin(), HE = ConvHints.Hints.end(); 9135 HI != HE; ++HI) 9136 FDiag << *HI; 9137 } else { 9138 FDiag << Hint; 9139 } 9140 if (MayHaveConvFixit) { FDiag << (unsigned) (ConvHints.Kind); } 9141 9142 Diag(Loc, FDiag); 9143 9144 if (CheckInferredResultType) 9145 EmitRelatedResultTypeNote(SrcExpr); 9146 9147 if (Complained) 9148 *Complained = true; 9149 return isInvalid; 9150 } 9151 9152 bool Sema::VerifyIntegerConstantExpression(const Expr *E, llvm::APSInt *Result){ 9153 llvm::APSInt ICEResult; 9154 if (E->isIntegerConstantExpr(ICEResult, Context)) { 9155 if (Result) 9156 *Result = ICEResult; 9157 return false; 9158 } 9159 9160 Expr::EvalResult EvalResult; 9161 9162 if (!E->EvaluateAsRValue(EvalResult, Context) || !EvalResult.Val.isInt() || 9163 EvalResult.HasSideEffects) { 9164 Diag(E->getExprLoc(), diag::err_expr_not_ice) << E->getSourceRange(); 9165 9166 if (EvalResult.Diag) { 9167 // We only show the note if it's not the usual "invalid subexpression" 9168 // or if it's actually in a subexpression. 9169 if (EvalResult.Diag != diag::note_invalid_subexpr_in_ice || 9170 E->IgnoreParens() != EvalResult.DiagExpr->IgnoreParens()) 9171 Diag(EvalResult.DiagLoc, EvalResult.Diag); 9172 } 9173 9174 return true; 9175 } 9176 9177 Diag(E->getExprLoc(), diag::ext_expr_not_ice) << 9178 E->getSourceRange(); 9179 9180 if (EvalResult.Diag && 9181 Diags.getDiagnosticLevel(diag::ext_expr_not_ice, EvalResult.DiagLoc) 9182 != DiagnosticsEngine::Ignored) 9183 Diag(EvalResult.DiagLoc, EvalResult.Diag); 9184 9185 if (Result) 9186 *Result = EvalResult.Val.getInt(); 9187 return false; 9188 } 9189 9190 void 9191 Sema::PushExpressionEvaluationContext(ExpressionEvaluationContext NewContext) { 9192 ExprEvalContexts.push_back( 9193 ExpressionEvaluationContextRecord(NewContext, 9194 ExprCleanupObjects.size(), 9195 ExprNeedsCleanups)); 9196 ExprNeedsCleanups = false; 9197 } 9198 9199 void Sema::PopExpressionEvaluationContext() { 9200 // Pop the current expression evaluation context off the stack. 9201 ExpressionEvaluationContextRecord Rec = ExprEvalContexts.back(); 9202 ExprEvalContexts.pop_back(); 9203 9204 if (Rec.Context == PotentiallyPotentiallyEvaluated) { 9205 if (Rec.PotentiallyReferenced) { 9206 // Mark any remaining declarations in the current position of the stack 9207 // as "referenced". If they were not meant to be referenced, semantic 9208 // analysis would have eliminated them (e.g., in ActOnCXXTypeId). 9209 for (PotentiallyReferencedDecls::iterator 9210 I = Rec.PotentiallyReferenced->begin(), 9211 IEnd = Rec.PotentiallyReferenced->end(); 9212 I != IEnd; ++I) 9213 MarkDeclarationReferenced(I->first, I->second); 9214 } 9215 9216 if (Rec.PotentiallyDiagnosed) { 9217 // Emit any pending diagnostics. 9218 for (PotentiallyEmittedDiagnostics::iterator 9219 I = Rec.PotentiallyDiagnosed->begin(), 9220 IEnd = Rec.PotentiallyDiagnosed->end(); 9221 I != IEnd; ++I) 9222 Diag(I->first, I->second); 9223 } 9224 } 9225 9226 // When are coming out of an unevaluated context, clear out any 9227 // temporaries that we may have created as part of the evaluation of 9228 // the expression in that context: they aren't relevant because they 9229 // will never be constructed. 9230 if (Rec.Context == Unevaluated) { 9231 ExprCleanupObjects.erase(ExprCleanupObjects.begin() + Rec.NumCleanupObjects, 9232 ExprCleanupObjects.end()); 9233 ExprNeedsCleanups = Rec.ParentNeedsCleanups; 9234 9235 // Otherwise, merge the contexts together. 9236 } else { 9237 ExprNeedsCleanups |= Rec.ParentNeedsCleanups; 9238 } 9239 9240 // Destroy the popped expression evaluation record. 9241 Rec.Destroy(); 9242 } 9243 9244 void Sema::DiscardCleanupsInEvaluationContext() { 9245 ExprCleanupObjects.erase( 9246 ExprCleanupObjects.begin() + ExprEvalContexts.back().NumCleanupObjects, 9247 ExprCleanupObjects.end()); 9248 ExprNeedsCleanups = false; 9249 } 9250 9251 /// \brief Note that the given declaration was referenced in the source code. 9252 /// 9253 /// This routine should be invoke whenever a given declaration is referenced 9254 /// in the source code, and where that reference occurred. If this declaration 9255 /// reference means that the the declaration is used (C++ [basic.def.odr]p2, 9256 /// C99 6.9p3), then the declaration will be marked as used. 9257 /// 9258 /// \param Loc the location where the declaration was referenced. 9259 /// 9260 /// \param D the declaration that has been referenced by the source code. 9261 void Sema::MarkDeclarationReferenced(SourceLocation Loc, Decl *D) { 9262 assert(D && "No declaration?"); 9263 9264 D->setReferenced(); 9265 9266 if (D->isUsed(false)) 9267 return; 9268 9269 // Mark a parameter or variable declaration "used", regardless of whether 9270 // we're in a template or not. The reason for this is that unevaluated 9271 // expressions (e.g. (void)sizeof()) constitute a use for warning purposes 9272 // (-Wunused-variables and -Wunused-parameters) 9273 if (isa<ParmVarDecl>(D) || 9274 (isa<VarDecl>(D) && D->getDeclContext()->isFunctionOrMethod())) { 9275 D->setUsed(); 9276 return; 9277 } 9278 9279 if (!isa<VarDecl>(D) && !isa<FunctionDecl>(D)) 9280 return; 9281 9282 // Do not mark anything as "used" within a dependent context; wait for 9283 // an instantiation. 9284 if (CurContext->isDependentContext()) 9285 return; 9286 9287 switch (ExprEvalContexts.back().Context) { 9288 case Unevaluated: 9289 // We are in an expression that is not potentially evaluated; do nothing. 9290 return; 9291 9292 case PotentiallyEvaluated: 9293 // We are in a potentially-evaluated expression, so this declaration is 9294 // "used"; handle this below. 9295 break; 9296 9297 case PotentiallyPotentiallyEvaluated: 9298 // We are in an expression that may be potentially evaluated; queue this 9299 // declaration reference until we know whether the expression is 9300 // potentially evaluated. 9301 ExprEvalContexts.back().addReferencedDecl(Loc, D); 9302 return; 9303 9304 case PotentiallyEvaluatedIfUsed: 9305 // Referenced declarations will only be used if the construct in the 9306 // containing expression is used. 9307 return; 9308 } 9309 9310 // Note that this declaration has been used. 9311 if (CXXConstructorDecl *Constructor = dyn_cast<CXXConstructorDecl>(D)) { 9312 if (Constructor->isDefaulted()) { 9313 if (Constructor->isDefaultConstructor()) { 9314 if (Constructor->isTrivial()) 9315 return; 9316 if (!Constructor->isUsed(false)) 9317 DefineImplicitDefaultConstructor(Loc, Constructor); 9318 } else if (Constructor->isCopyConstructor()) { 9319 if (!Constructor->isUsed(false)) 9320 DefineImplicitCopyConstructor(Loc, Constructor); 9321 } else if (Constructor->isMoveConstructor()) { 9322 if (!Constructor->isUsed(false)) 9323 DefineImplicitMoveConstructor(Loc, Constructor); 9324 } 9325 } 9326 9327 MarkVTableUsed(Loc, Constructor->getParent()); 9328 } else if (CXXDestructorDecl *Destructor = dyn_cast<CXXDestructorDecl>(D)) { 9329 if (Destructor->isDefaulted() && !Destructor->isUsed(false)) 9330 DefineImplicitDestructor(Loc, Destructor); 9331 if (Destructor->isVirtual()) 9332 MarkVTableUsed(Loc, Destructor->getParent()); 9333 } else if (CXXMethodDecl *MethodDecl = dyn_cast<CXXMethodDecl>(D)) { 9334 if (MethodDecl->isDefaulted() && MethodDecl->isOverloadedOperator() && 9335 MethodDecl->getOverloadedOperator() == OO_Equal) { 9336 if (!MethodDecl->isUsed(false)) { 9337 if (MethodDecl->isCopyAssignmentOperator()) 9338 DefineImplicitCopyAssignment(Loc, MethodDecl); 9339 else 9340 DefineImplicitMoveAssignment(Loc, MethodDecl); 9341 } 9342 } else if (MethodDecl->isVirtual()) 9343 MarkVTableUsed(Loc, MethodDecl->getParent()); 9344 } 9345 if (FunctionDecl *Function = dyn_cast<FunctionDecl>(D)) { 9346 // Recursive functions should be marked when used from another function. 9347 if (CurContext == Function) return; 9348 9349 // Implicit instantiation of function templates and member functions of 9350 // class templates. 9351 if (Function->isImplicitlyInstantiable()) { 9352 bool AlreadyInstantiated = false; 9353 if (FunctionTemplateSpecializationInfo *SpecInfo 9354 = Function->getTemplateSpecializationInfo()) { 9355 if (SpecInfo->getPointOfInstantiation().isInvalid()) 9356 SpecInfo->setPointOfInstantiation(Loc); 9357 else if (SpecInfo->getTemplateSpecializationKind() 9358 == TSK_ImplicitInstantiation) 9359 AlreadyInstantiated = true; 9360 } else if (MemberSpecializationInfo *MSInfo 9361 = Function->getMemberSpecializationInfo()) { 9362 if (MSInfo->getPointOfInstantiation().isInvalid()) 9363 MSInfo->setPointOfInstantiation(Loc); 9364 else if (MSInfo->getTemplateSpecializationKind() 9365 == TSK_ImplicitInstantiation) 9366 AlreadyInstantiated = true; 9367 } 9368 9369 if (!AlreadyInstantiated) { 9370 if (isa<CXXRecordDecl>(Function->getDeclContext()) && 9371 cast<CXXRecordDecl>(Function->getDeclContext())->isLocalClass()) 9372 PendingLocalImplicitInstantiations.push_back(std::make_pair(Function, 9373 Loc)); 9374 else 9375 PendingInstantiations.push_back(std::make_pair(Function, Loc)); 9376 } 9377 } else { 9378 // Walk redefinitions, as some of them may be instantiable. 9379 for (FunctionDecl::redecl_iterator i(Function->redecls_begin()), 9380 e(Function->redecls_end()); i != e; ++i) { 9381 if (!i->isUsed(false) && i->isImplicitlyInstantiable()) 9382 MarkDeclarationReferenced(Loc, *i); 9383 } 9384 } 9385 9386 // Keep track of used but undefined functions. 9387 if (!Function->isPure() && !Function->hasBody() && 9388 Function->getLinkage() != ExternalLinkage) { 9389 SourceLocation &old = UndefinedInternals[Function->getCanonicalDecl()]; 9390 if (old.isInvalid()) old = Loc; 9391 } 9392 9393 Function->setUsed(true); 9394 return; 9395 } 9396 9397 if (VarDecl *Var = dyn_cast<VarDecl>(D)) { 9398 // Implicit instantiation of static data members of class templates. 9399 if (Var->isStaticDataMember() && 9400 Var->getInstantiatedFromStaticDataMember()) { 9401 MemberSpecializationInfo *MSInfo = Var->getMemberSpecializationInfo(); 9402 assert(MSInfo && "Missing member specialization information?"); 9403 if (MSInfo->getPointOfInstantiation().isInvalid() && 9404 MSInfo->getTemplateSpecializationKind()== TSK_ImplicitInstantiation) { 9405 MSInfo->setPointOfInstantiation(Loc); 9406 // This is a modification of an existing AST node. Notify listeners. 9407 if (ASTMutationListener *L = getASTMutationListener()) 9408 L->StaticDataMemberInstantiated(Var); 9409 PendingInstantiations.push_back(std::make_pair(Var, Loc)); 9410 } 9411 } 9412 9413 // Keep track of used but undefined variables. We make a hole in 9414 // the warning for static const data members with in-line 9415 // initializers. 9416 if (Var->hasDefinition() == VarDecl::DeclarationOnly 9417 && Var->getLinkage() != ExternalLinkage 9418 && !(Var->isStaticDataMember() && Var->hasInit())) { 9419 SourceLocation &old = UndefinedInternals[Var->getCanonicalDecl()]; 9420 if (old.isInvalid()) old = Loc; 9421 } 9422 9423 D->setUsed(true); 9424 return; 9425 } 9426 } 9427 9428 namespace { 9429 // Mark all of the declarations referenced 9430 // FIXME: Not fully implemented yet! We need to have a better understanding 9431 // of when we're entering 9432 class MarkReferencedDecls : public RecursiveASTVisitor<MarkReferencedDecls> { 9433 Sema &S; 9434 SourceLocation Loc; 9435 9436 public: 9437 typedef RecursiveASTVisitor<MarkReferencedDecls> Inherited; 9438 9439 MarkReferencedDecls(Sema &S, SourceLocation Loc) : S(S), Loc(Loc) { } 9440 9441 bool TraverseTemplateArgument(const TemplateArgument &Arg); 9442 bool TraverseRecordType(RecordType *T); 9443 }; 9444 } 9445 9446 bool MarkReferencedDecls::TraverseTemplateArgument( 9447 const TemplateArgument &Arg) { 9448 if (Arg.getKind() == TemplateArgument::Declaration) { 9449 S.MarkDeclarationReferenced(Loc, Arg.getAsDecl()); 9450 } 9451 9452 return Inherited::TraverseTemplateArgument(Arg); 9453 } 9454 9455 bool MarkReferencedDecls::TraverseRecordType(RecordType *T) { 9456 if (ClassTemplateSpecializationDecl *Spec 9457 = dyn_cast<ClassTemplateSpecializationDecl>(T->getDecl())) { 9458 const TemplateArgumentList &Args = Spec->getTemplateArgs(); 9459 return TraverseTemplateArguments(Args.data(), Args.size()); 9460 } 9461 9462 return true; 9463 } 9464 9465 void Sema::MarkDeclarationsReferencedInType(SourceLocation Loc, QualType T) { 9466 MarkReferencedDecls Marker(*this, Loc); 9467 Marker.TraverseType(Context.getCanonicalType(T)); 9468 } 9469 9470 namespace { 9471 /// \brief Helper class that marks all of the declarations referenced by 9472 /// potentially-evaluated subexpressions as "referenced". 9473 class EvaluatedExprMarker : public EvaluatedExprVisitor<EvaluatedExprMarker> { 9474 Sema &S; 9475 9476 public: 9477 typedef EvaluatedExprVisitor<EvaluatedExprMarker> Inherited; 9478 9479 explicit EvaluatedExprMarker(Sema &S) : Inherited(S.Context), S(S) { } 9480 9481 void VisitDeclRefExpr(DeclRefExpr *E) { 9482 S.MarkDeclarationReferenced(E->getLocation(), E->getDecl()); 9483 } 9484 9485 void VisitMemberExpr(MemberExpr *E) { 9486 S.MarkDeclarationReferenced(E->getMemberLoc(), E->getMemberDecl()); 9487 Inherited::VisitMemberExpr(E); 9488 } 9489 9490 void VisitCXXBindTemporaryExpr(CXXBindTemporaryExpr *E) { 9491 S.MarkDeclarationReferenced(E->getLocStart(), 9492 const_cast<CXXDestructorDecl*>(E->getTemporary()->getDestructor())); 9493 Visit(E->getSubExpr()); 9494 } 9495 9496 void VisitCXXNewExpr(CXXNewExpr *E) { 9497 if (E->getConstructor()) 9498 S.MarkDeclarationReferenced(E->getLocStart(), E->getConstructor()); 9499 if (E->getOperatorNew()) 9500 S.MarkDeclarationReferenced(E->getLocStart(), E->getOperatorNew()); 9501 if (E->getOperatorDelete()) 9502 S.MarkDeclarationReferenced(E->getLocStart(), E->getOperatorDelete()); 9503 Inherited::VisitCXXNewExpr(E); 9504 } 9505 9506 void VisitCXXDeleteExpr(CXXDeleteExpr *E) { 9507 if (E->getOperatorDelete()) 9508 S.MarkDeclarationReferenced(E->getLocStart(), E->getOperatorDelete()); 9509 QualType Destroyed = S.Context.getBaseElementType(E->getDestroyedType()); 9510 if (const RecordType *DestroyedRec = Destroyed->getAs<RecordType>()) { 9511 CXXRecordDecl *Record = cast<CXXRecordDecl>(DestroyedRec->getDecl()); 9512 S.MarkDeclarationReferenced(E->getLocStart(), 9513 S.LookupDestructor(Record)); 9514 } 9515 9516 Inherited::VisitCXXDeleteExpr(E); 9517 } 9518 9519 void VisitCXXConstructExpr(CXXConstructExpr *E) { 9520 S.MarkDeclarationReferenced(E->getLocStart(), E->getConstructor()); 9521 Inherited::VisitCXXConstructExpr(E); 9522 } 9523 9524 void VisitBlockDeclRefExpr(BlockDeclRefExpr *E) { 9525 S.MarkDeclarationReferenced(E->getLocation(), E->getDecl()); 9526 } 9527 9528 void VisitCXXDefaultArgExpr(CXXDefaultArgExpr *E) { 9529 Visit(E->getExpr()); 9530 } 9531 }; 9532 } 9533 9534 /// \brief Mark any declarations that appear within this expression or any 9535 /// potentially-evaluated subexpressions as "referenced". 9536 void Sema::MarkDeclarationsReferencedInExpr(Expr *E) { 9537 EvaluatedExprMarker(*this).Visit(E); 9538 } 9539 9540 /// \brief Emit a diagnostic that describes an effect on the run-time behavior 9541 /// of the program being compiled. 9542 /// 9543 /// This routine emits the given diagnostic when the code currently being 9544 /// type-checked is "potentially evaluated", meaning that there is a 9545 /// possibility that the code will actually be executable. Code in sizeof() 9546 /// expressions, code used only during overload resolution, etc., are not 9547 /// potentially evaluated. This routine will suppress such diagnostics or, 9548 /// in the absolutely nutty case of potentially potentially evaluated 9549 /// expressions (C++ typeid), queue the diagnostic to potentially emit it 9550 /// later. 9551 /// 9552 /// This routine should be used for all diagnostics that describe the run-time 9553 /// behavior of a program, such as passing a non-POD value through an ellipsis. 9554 /// Failure to do so will likely result in spurious diagnostics or failures 9555 /// during overload resolution or within sizeof/alignof/typeof/typeid. 9556 bool Sema::DiagRuntimeBehavior(SourceLocation Loc, const Stmt *Statement, 9557 const PartialDiagnostic &PD) { 9558 switch (ExprEvalContexts.back().Context) { 9559 case Unevaluated: 9560 // The argument will never be evaluated, so don't complain. 9561 break; 9562 9563 case PotentiallyEvaluated: 9564 case PotentiallyEvaluatedIfUsed: 9565 if (Statement && getCurFunctionOrMethodDecl()) { 9566 FunctionScopes.back()->PossiblyUnreachableDiags. 9567 push_back(sema::PossiblyUnreachableDiag(PD, Loc, Statement)); 9568 } 9569 else 9570 Diag(Loc, PD); 9571 9572 return true; 9573 9574 case PotentiallyPotentiallyEvaluated: 9575 ExprEvalContexts.back().addDiagnostic(Loc, PD); 9576 break; 9577 } 9578 9579 return false; 9580 } 9581 9582 bool Sema::CheckCallReturnType(QualType ReturnType, SourceLocation Loc, 9583 CallExpr *CE, FunctionDecl *FD) { 9584 if (ReturnType->isVoidType() || !ReturnType->isIncompleteType()) 9585 return false; 9586 9587 PartialDiagnostic Note = 9588 FD ? PDiag(diag::note_function_with_incomplete_return_type_declared_here) 9589 << FD->getDeclName() : PDiag(); 9590 SourceLocation NoteLoc = FD ? FD->getLocation() : SourceLocation(); 9591 9592 if (RequireCompleteType(Loc, ReturnType, 9593 FD ? 9594 PDiag(diag::err_call_function_incomplete_return) 9595 << CE->getSourceRange() << FD->getDeclName() : 9596 PDiag(diag::err_call_incomplete_return) 9597 << CE->getSourceRange(), 9598 std::make_pair(NoteLoc, Note))) 9599 return true; 9600 9601 return false; 9602 } 9603 9604 // Diagnose the s/=/==/ and s/\|=/!=/ typos. Note that adding parentheses 9605 // will prevent this condition from triggering, which is what we want. 9606 void Sema::DiagnoseAssignmentAsCondition(Expr *E) { 9607 SourceLocation Loc; 9608 9609 unsigned diagnostic = diag::warn_condition_is_assignment; 9610 bool IsOrAssign = false; 9611 9612 if (BinaryOperator *Op = dyn_cast<BinaryOperator>(E)) { 9613 if (Op->getOpcode() != BO_Assign && Op->getOpcode() != BO_OrAssign) 9614 return; 9615 9616 IsOrAssign = Op->getOpcode() == BO_OrAssign; 9617 9618 // Greylist some idioms by putting them into a warning subcategory. 9619 if (ObjCMessageExpr *ME 9620 = dyn_cast<ObjCMessageExpr>(Op->getRHS()->IgnoreParenCasts())) { 9621 Selector Sel = ME->getSelector(); 9622 9623 // self = [<foo> init...] 9624 if (isSelfExpr(Op->getLHS()) && Sel.getNameForSlot(0).startswith("init")) 9625 diagnostic = diag::warn_condition_is_idiomatic_assignment; 9626 9627 // <foo> = [<bar> nextObject] 9628 else if (Sel.isUnarySelector() && Sel.getNameForSlot(0) == "nextObject") 9629 diagnostic = diag::warn_condition_is_idiomatic_assignment; 9630 } 9631 9632 Loc = Op->getOperatorLoc(); 9633 } else if (CXXOperatorCallExpr *Op = dyn_cast<CXXOperatorCallExpr>(E)) { 9634 if (Op->getOperator() != OO_Equal && Op->getOperator() != OO_PipeEqual) 9635 return; 9636 9637 IsOrAssign = Op->getOperator() == OO_PipeEqual; 9638 Loc = Op->getOperatorLoc(); 9639 } else { 9640 // Not an assignment. 9641 return; 9642 } 9643 9644 Diag(Loc, diagnostic) << E->getSourceRange(); 9645 9646 SourceLocation Open = E->getSourceRange().getBegin(); 9647 SourceLocation Close = PP.getLocForEndOfToken(E->getSourceRange().getEnd()); 9648 Diag(Loc, diag::note_condition_assign_silence) 9649 << FixItHint::CreateInsertion(Open, "(") 9650 << FixItHint::CreateInsertion(Close, ")"); 9651 9652 if (IsOrAssign) 9653 Diag(Loc, diag::note_condition_or_assign_to_comparison) 9654 << FixItHint::CreateReplacement(Loc, "!="); 9655 else 9656 Diag(Loc, diag::note_condition_assign_to_comparison) 9657 << FixItHint::CreateReplacement(Loc, "=="); 9658 } 9659 9660 /// \brief Redundant parentheses over an equality comparison can indicate 9661 /// that the user intended an assignment used as condition. 9662 void Sema::DiagnoseEqualityWithExtraParens(ParenExpr *ParenE) { 9663 // Don't warn if the parens came from a macro. 9664 SourceLocation parenLoc = ParenE->getLocStart(); 9665 if (parenLoc.isInvalid() || parenLoc.isMacroID()) 9666 return; 9667 // Don't warn for dependent expressions. 9668 if (ParenE->isTypeDependent()) 9669 return; 9670 9671 Expr *E = ParenE->IgnoreParens(); 9672 9673 if (BinaryOperator *opE = dyn_cast<BinaryOperator>(E)) 9674 if (opE->getOpcode() == BO_EQ && 9675 opE->getLHS()->IgnoreParenImpCasts()->isModifiableLvalue(Context) 9676 == Expr::MLV_Valid) { 9677 SourceLocation Loc = opE->getOperatorLoc(); 9678 9679 Diag(Loc, diag::warn_equality_with_extra_parens) << E->getSourceRange(); 9680 Diag(Loc, diag::note_equality_comparison_silence) 9681 << FixItHint::CreateRemoval(ParenE->getSourceRange().getBegin()) 9682 << FixItHint::CreateRemoval(ParenE->getSourceRange().getEnd()); 9683 Diag(Loc, diag::note_equality_comparison_to_assign) 9684 << FixItHint::CreateReplacement(Loc, "="); 9685 } 9686 } 9687 9688 ExprResult Sema::CheckBooleanCondition(Expr *E, SourceLocation Loc) { 9689 DiagnoseAssignmentAsCondition(E); 9690 if (ParenExpr *parenE = dyn_cast<ParenExpr>(E)) 9691 DiagnoseEqualityWithExtraParens(parenE); 9692 9693 ExprResult result = CheckPlaceholderExpr(E); 9694 if (result.isInvalid()) return ExprError(); 9695 E = result.take(); 9696 9697 if (!E->isTypeDependent()) { 9698 if (getLangOptions().CPlusPlus) 9699 return CheckCXXBooleanCondition(E); // C++ 6.4p4 9700 9701 ExprResult ERes = DefaultFunctionArrayLvalueConversion(E); 9702 if (ERes.isInvalid()) 9703 return ExprError(); 9704 E = ERes.take(); 9705 9706 QualType T = E->getType(); 9707 if (!T->isScalarType()) { // C99 6.8.4.1p1 9708 Diag(Loc, diag::err_typecheck_statement_requires_scalar) 9709 << T << E->getSourceRange(); 9710 return ExprError(); 9711 } 9712 } 9713 9714 return Owned(E); 9715 } 9716 9717 ExprResult Sema::ActOnBooleanCondition(Scope *S, SourceLocation Loc, 9718 Expr *SubExpr) { 9719 if (!SubExpr) 9720 return ExprError(); 9721 9722 return CheckBooleanCondition(SubExpr, Loc); 9723 } 9724 9725 namespace { 9726 /// A visitor for rebuilding a call to an __unknown_any expression 9727 /// to have an appropriate type. 9728 struct RebuildUnknownAnyFunction 9729 : StmtVisitor<RebuildUnknownAnyFunction, ExprResult> { 9730 9731 Sema &S; 9732 9733 RebuildUnknownAnyFunction(Sema &S) : S(S) {} 9734 9735 ExprResult VisitStmt(Stmt *S) { 9736 llvm_unreachable("unexpected statement!"); 9737 return ExprError(); 9738 } 9739 9740 ExprResult VisitExpr(Expr *E) { 9741 S.Diag(E->getExprLoc(), diag::err_unsupported_unknown_any_call) 9742 << E->getSourceRange(); 9743 return ExprError(); 9744 } 9745 9746 /// Rebuild an expression which simply semantically wraps another 9747 /// expression which it shares the type and value kind of. 9748 template <class T> ExprResult rebuildSugarExpr(T *E) { 9749 ExprResult SubResult = Visit(E->getSubExpr()); 9750 if (SubResult.isInvalid()) return ExprError(); 9751 9752 Expr *SubExpr = SubResult.take(); 9753 E->setSubExpr(SubExpr); 9754 E->setType(SubExpr->getType()); 9755 E->setValueKind(SubExpr->getValueKind()); 9756 assert(E->getObjectKind() == OK_Ordinary); 9757 return E; 9758 } 9759 9760 ExprResult VisitParenExpr(ParenExpr *E) { 9761 return rebuildSugarExpr(E); 9762 } 9763 9764 ExprResult VisitUnaryExtension(UnaryOperator *E) { 9765 return rebuildSugarExpr(E); 9766 } 9767 9768 ExprResult VisitUnaryAddrOf(UnaryOperator *E) { 9769 ExprResult SubResult = Visit(E->getSubExpr()); 9770 if (SubResult.isInvalid()) return ExprError(); 9771 9772 Expr *SubExpr = SubResult.take(); 9773 E->setSubExpr(SubExpr); 9774 E->setType(S.Context.getPointerType(SubExpr->getType())); 9775 assert(E->getValueKind() == VK_RValue); 9776 assert(E->getObjectKind() == OK_Ordinary); 9777 return E; 9778 } 9779 9780 ExprResult resolveDecl(Expr *E, ValueDecl *VD) { 9781 if (!isa<FunctionDecl>(VD)) return VisitExpr(E); 9782 9783 E->setType(VD->getType()); 9784 9785 assert(E->getValueKind() == VK_RValue); 9786 if (S.getLangOptions().CPlusPlus && 9787 !(isa<CXXMethodDecl>(VD) && 9788 cast<CXXMethodDecl>(VD)->isInstance())) 9789 E->setValueKind(VK_LValue); 9790 9791 return E; 9792 } 9793 9794 ExprResult VisitMemberExpr(MemberExpr *E) { 9795 return resolveDecl(E, E->getMemberDecl()); 9796 } 9797 9798 ExprResult VisitDeclRefExpr(DeclRefExpr *E) { 9799 return resolveDecl(E, E->getDecl()); 9800 } 9801 }; 9802 } 9803 9804 /// Given a function expression of unknown-any type, try to rebuild it 9805 /// to have a function type. 9806 static ExprResult rebuildUnknownAnyFunction(Sema &S, Expr *FunctionExpr) { 9807 ExprResult Result = RebuildUnknownAnyFunction(S).Visit(FunctionExpr); 9808 if (Result.isInvalid()) return ExprError(); 9809 return S.DefaultFunctionArrayConversion(Result.take()); 9810 } 9811 9812 namespace { 9813 /// A visitor for rebuilding an expression of type __unknown_anytype 9814 /// into one which resolves the type directly on the referring 9815 /// expression. Strict preservation of the original source 9816 /// structure is not a goal. 9817 struct RebuildUnknownAnyExpr 9818 : StmtVisitor<RebuildUnknownAnyExpr, ExprResult> { 9819 9820 Sema &S; 9821 9822 /// The current destination type. 9823 QualType DestType; 9824 9825 RebuildUnknownAnyExpr(Sema &S, QualType CastType) 9826 : S(S), DestType(CastType) {} 9827 9828 ExprResult VisitStmt(Stmt *S) { 9829 llvm_unreachable("unexpected statement!"); 9830 return ExprError(); 9831 } 9832 9833 ExprResult VisitExpr(Expr *E) { 9834 S.Diag(E->getExprLoc(), diag::err_unsupported_unknown_any_expr) 9835 << E->getSourceRange(); 9836 return ExprError(); 9837 } 9838 9839 ExprResult VisitCallExpr(CallExpr *E); 9840 ExprResult VisitObjCMessageExpr(ObjCMessageExpr *E); 9841 9842 /// Rebuild an expression which simply semantically wraps another 9843 /// expression which it shares the type and value kind of. 9844 template <class T> ExprResult rebuildSugarExpr(T *E) { 9845 ExprResult SubResult = Visit(E->getSubExpr()); 9846 if (SubResult.isInvalid()) return ExprError(); 9847 Expr *SubExpr = SubResult.take(); 9848 E->setSubExpr(SubExpr); 9849 E->setType(SubExpr->getType()); 9850 E->setValueKind(SubExpr->getValueKind()); 9851 assert(E->getObjectKind() == OK_Ordinary); 9852 return E; 9853 } 9854 9855 ExprResult VisitParenExpr(ParenExpr *E) { 9856 return rebuildSugarExpr(E); 9857 } 9858 9859 ExprResult VisitUnaryExtension(UnaryOperator *E) { 9860 return rebuildSugarExpr(E); 9861 } 9862 9863 ExprResult VisitUnaryAddrOf(UnaryOperator *E) { 9864 const PointerType *Ptr = DestType->getAs<PointerType>(); 9865 if (!Ptr) { 9866 S.Diag(E->getOperatorLoc(), diag::err_unknown_any_addrof) 9867 << E->getSourceRange(); 9868 return ExprError(); 9869 } 9870 assert(E->getValueKind() == VK_RValue); 9871 assert(E->getObjectKind() == OK_Ordinary); 9872 E->setType(DestType); 9873 9874 // Build the sub-expression as if it were an object of the pointee type. 9875 DestType = Ptr->getPointeeType(); 9876 ExprResult SubResult = Visit(E->getSubExpr()); 9877 if (SubResult.isInvalid()) return ExprError(); 9878 E->setSubExpr(SubResult.take()); 9879 return E; 9880 } 9881 9882 ExprResult VisitImplicitCastExpr(ImplicitCastExpr *E); 9883 9884 ExprResult resolveDecl(Expr *E, ValueDecl *VD); 9885 9886 ExprResult VisitMemberExpr(MemberExpr *E) { 9887 return resolveDecl(E, E->getMemberDecl()); 9888 } 9889 9890 ExprResult VisitDeclRefExpr(DeclRefExpr *E) { 9891 return resolveDecl(E, E->getDecl()); 9892 } 9893 }; 9894 } 9895 9896 /// Rebuilds a call expression which yielded __unknown_anytype. 9897 ExprResult RebuildUnknownAnyExpr::VisitCallExpr(CallExpr *E) { 9898 Expr *CalleeExpr = E->getCallee(); 9899 9900 enum FnKind { 9901 FK_MemberFunction, 9902 FK_FunctionPointer, 9903 FK_BlockPointer 9904 }; 9905 9906 FnKind Kind; 9907 QualType CalleeType = CalleeExpr->getType(); 9908 if (CalleeType == S.Context.BoundMemberTy) { 9909 assert(isa<CXXMemberCallExpr>(E) || isa<CXXOperatorCallExpr>(E)); 9910 Kind = FK_MemberFunction; 9911 CalleeType = Expr::findBoundMemberType(CalleeExpr); 9912 } else if (const PointerType *Ptr = CalleeType->getAs<PointerType>()) { 9913 CalleeType = Ptr->getPointeeType(); 9914 Kind = FK_FunctionPointer; 9915 } else { 9916 CalleeType = CalleeType->castAs<BlockPointerType>()->getPointeeType(); 9917 Kind = FK_BlockPointer; 9918 } 9919 const FunctionType *FnType = CalleeType->castAs<FunctionType>(); 9920 9921 // Verify that this is a legal result type of a function. 9922 if (DestType->isArrayType() || DestType->isFunctionType()) { 9923 unsigned diagID = diag::err_func_returning_array_function; 9924 if (Kind == FK_BlockPointer) 9925 diagID = diag::err_block_returning_array_function; 9926 9927 S.Diag(E->getExprLoc(), diagID) 9928 << DestType->isFunctionType() << DestType; 9929 return ExprError(); 9930 } 9931 9932 // Otherwise, go ahead and set DestType as the call's result. 9933 E->setType(DestType.getNonLValueExprType(S.Context)); 9934 E->setValueKind(Expr::getValueKindForType(DestType)); 9935 assert(E->getObjectKind() == OK_Ordinary); 9936 9937 // Rebuild the function type, replacing the result type with DestType. 9938 if (const FunctionProtoType *Proto = dyn_cast<FunctionProtoType>(FnType)) 9939 DestType = S.Context.getFunctionType(DestType, 9940 Proto->arg_type_begin(), 9941 Proto->getNumArgs(), 9942 Proto->getExtProtoInfo()); 9943 else 9944 DestType = S.Context.getFunctionNoProtoType(DestType, 9945 FnType->getExtInfo()); 9946 9947 // Rebuild the appropriate pointer-to-function type. 9948 switch (Kind) { 9949 case FK_MemberFunction: 9950 // Nothing to do. 9951 break; 9952 9953 case FK_FunctionPointer: 9954 DestType = S.Context.getPointerType(DestType); 9955 break; 9956 9957 case FK_BlockPointer: 9958 DestType = S.Context.getBlockPointerType(DestType); 9959 break; 9960 } 9961 9962 // Finally, we can recurse. 9963 ExprResult CalleeResult = Visit(CalleeExpr); 9964 if (!CalleeResult.isUsable()) return ExprError(); 9965 E->setCallee(CalleeResult.take()); 9966 9967 // Bind a temporary if necessary. 9968 return S.MaybeBindToTemporary(E); 9969 } 9970 9971 ExprResult RebuildUnknownAnyExpr::VisitObjCMessageExpr(ObjCMessageExpr *E) { 9972 // Verify that this is a legal result type of a call. 9973 if (DestType->isArrayType() || DestType->isFunctionType()) { 9974 S.Diag(E->getExprLoc(), diag::err_func_returning_array_function) 9975 << DestType->isFunctionType() << DestType; 9976 return ExprError(); 9977 } 9978 9979 // Rewrite the method result type if available. 9980 if (ObjCMethodDecl *Method = E->getMethodDecl()) { 9981 assert(Method->getResultType() == S.Context.UnknownAnyTy); 9982 Method->setResultType(DestType); 9983 } 9984 9985 // Change the type of the message. 9986 E->setType(DestType.getNonReferenceType()); 9987 E->setValueKind(Expr::getValueKindForType(DestType)); 9988 9989 return S.MaybeBindToTemporary(E); 9990 } 9991 9992 ExprResult RebuildUnknownAnyExpr::VisitImplicitCastExpr(ImplicitCastExpr *E) { 9993 // The only case we should ever see here is a function-to-pointer decay. 9994 assert(E->getCastKind() == CK_FunctionToPointerDecay); 9995 assert(E->getValueKind() == VK_RValue); 9996 assert(E->getObjectKind() == OK_Ordinary); 9997 9998 E->setType(DestType); 9999 10000 // Rebuild the sub-expression as the pointee (function) type. 10001 DestType = DestType->castAs<PointerType>()->getPointeeType(); 10002 10003 ExprResult Result = Visit(E->getSubExpr()); 10004 if (!Result.isUsable()) return ExprError(); 10005 10006 E->setSubExpr(Result.take()); 10007 return S.Owned(E); 10008 } 10009 10010 ExprResult RebuildUnknownAnyExpr::resolveDecl(Expr *E, ValueDecl *VD) { 10011 ExprValueKind ValueKind = VK_LValue; 10012 QualType Type = DestType; 10013 10014 // We know how to make this work for certain kinds of decls: 10015 10016 // - functions 10017 if (FunctionDecl *FD = dyn_cast<FunctionDecl>(VD)) { 10018 if (const PointerType *Ptr = Type->getAs<PointerType>()) { 10019 DestType = Ptr->getPointeeType(); 10020 ExprResult Result = resolveDecl(E, VD); 10021 if (Result.isInvalid()) return ExprError(); 10022 return S.ImpCastExprToType(Result.take(), Type, 10023 CK_FunctionToPointerDecay, VK_RValue); 10024 } 10025 10026 if (!Type->isFunctionType()) { 10027 S.Diag(E->getExprLoc(), diag::err_unknown_any_function) 10028 << VD << E->getSourceRange(); 10029 return ExprError(); 10030 } 10031 10032 if (CXXMethodDecl *MD = dyn_cast<CXXMethodDecl>(FD)) 10033 if (MD->isInstance()) { 10034 ValueKind = VK_RValue; 10035 Type = S.Context.BoundMemberTy; 10036 } 10037 10038 // Function references aren't l-values in C. 10039 if (!S.getLangOptions().CPlusPlus) 10040 ValueKind = VK_RValue; 10041 10042 // - variables 10043 } else if (isa<VarDecl>(VD)) { 10044 if (const ReferenceType *RefTy = Type->getAs<ReferenceType>()) { 10045 Type = RefTy->getPointeeType(); 10046 } else if (Type->isFunctionType()) { 10047 S.Diag(E->getExprLoc(), diag::err_unknown_any_var_function_type) 10048 << VD << E->getSourceRange(); 10049 return ExprError(); 10050 } 10051 10052 // - nothing else 10053 } else { 10054 S.Diag(E->getExprLoc(), diag::err_unsupported_unknown_any_decl) 10055 << VD << E->getSourceRange(); 10056 return ExprError(); 10057 } 10058 10059 VD->setType(DestType); 10060 E->setType(Type); 10061 E->setValueKind(ValueKind); 10062 return S.Owned(E); 10063 } 10064 10065 /// Check a cast of an unknown-any type. We intentionally only 10066 /// trigger this for C-style casts. 10067 ExprResult Sema::checkUnknownAnyCast(SourceRange TypeRange, QualType CastType, 10068 Expr *CastExpr, CastKind &CastKind, 10069 ExprValueKind &VK, CXXCastPath &Path) { 10070 // Rewrite the casted expression from scratch. 10071 ExprResult result = RebuildUnknownAnyExpr(*this, CastType).Visit(CastExpr); 10072 if (!result.isUsable()) return ExprError(); 10073 10074 CastExpr = result.take(); 10075 VK = CastExpr->getValueKind(); 10076 CastKind = CK_NoOp; 10077 10078 return CastExpr; 10079 } 10080 10081 static ExprResult diagnoseUnknownAnyExpr(Sema &S, Expr *E) { 10082 Expr *orig = E; 10083 unsigned diagID = diag::err_uncasted_use_of_unknown_any; 10084 while (true) { 10085 E = E->IgnoreParenImpCasts(); 10086 if (CallExpr *call = dyn_cast<CallExpr>(E)) { 10087 E = call->getCallee(); 10088 diagID = diag::err_uncasted_call_of_unknown_any; 10089 } else { 10090 break; 10091 } 10092 } 10093 10094 SourceLocation loc; 10095 NamedDecl *d; 10096 if (DeclRefExpr *ref = dyn_cast<DeclRefExpr>(E)) { 10097 loc = ref->getLocation(); 10098 d = ref->getDecl(); 10099 } else if (MemberExpr *mem = dyn_cast<MemberExpr>(E)) { 10100 loc = mem->getMemberLoc(); 10101 d = mem->getMemberDecl(); 10102 } else if (ObjCMessageExpr *msg = dyn_cast<ObjCMessageExpr>(E)) { 10103 diagID = diag::err_uncasted_call_of_unknown_any; 10104 loc = msg->getSelectorStartLoc(); 10105 d = msg->getMethodDecl(); 10106 if (!d) { 10107 S.Diag(loc, diag::err_uncasted_send_to_unknown_any_method) 10108 << static_cast<unsigned>(msg->isClassMessage()) << msg->getSelector() 10109 << orig->getSourceRange(); 10110 return ExprError(); 10111 } 10112 } else { 10113 S.Diag(E->getExprLoc(), diag::err_unsupported_unknown_any_expr) 10114 << E->getSourceRange(); 10115 return ExprError(); 10116 } 10117 10118 S.Diag(loc, diagID) << d << orig->getSourceRange(); 10119 10120 // Never recoverable. 10121 return ExprError(); 10122 } 10123 10124 /// Check for operands with placeholder types and complain if found. 10125 /// Returns true if there was an error and no recovery was possible. 10126 ExprResult Sema::CheckPlaceholderExpr(Expr *E) { 10127 const BuiltinType *placeholderType = E->getType()->getAsPlaceholderType(); 10128 if (!placeholderType) return Owned(E); 10129 10130 switch (placeholderType->getKind()) { 10131 10132 // Overloaded expressions. 10133 case BuiltinType::Overload: { 10134 // Try to resolve a single function template specialization. 10135 // This is obligatory. 10136 ExprResult result = Owned(E); 10137 if (ResolveAndFixSingleFunctionTemplateSpecialization(result, false)) { 10138 return result; 10139 10140 // If that failed, try to recover with a call. 10141 } else { 10142 tryToRecoverWithCall(result, PDiag(diag::err_ovl_unresolvable), 10143 /*complain*/ true); 10144 return result; 10145 } 10146 } 10147 10148 // Bound member functions. 10149 case BuiltinType::BoundMember: { 10150 ExprResult result = Owned(E); 10151 tryToRecoverWithCall(result, PDiag(diag::err_bound_member_function), 10152 /*complain*/ true); 10153 return result; 10154 } 10155 10156 // ARC unbridged casts. 10157 case BuiltinType::ARCUnbridgedCast: { 10158 Expr *realCast = stripARCUnbridgedCast(E); 10159 diagnoseARCUnbridgedCast(realCast); 10160 return Owned(realCast); 10161 } 10162 10163 // Expressions of unknown type. 10164 case BuiltinType::UnknownAny: 10165 return diagnoseUnknownAnyExpr(*this, E); 10166 10167 // Pseudo-objects. 10168 case BuiltinType::PseudoObject: 10169 return checkPseudoObjectRValue(E); 10170 10171 // Everything else should be impossible. 10172 #define BUILTIN_TYPE(Id, SingletonId) \ 10173 case BuiltinType::Id: 10174 #define PLACEHOLDER_TYPE(Id, SingletonId) 10175 #include "clang/AST/BuiltinTypes.def" 10176 break; 10177 } 10178 10179 llvm_unreachable("invalid placeholder type!"); 10180 } 10181 10182 bool Sema::CheckCaseExpression(Expr *E) { 10183 if (E->isTypeDependent()) 10184 return true; 10185 if (E->isValueDependent() || E->isIntegerConstantExpr(Context)) 10186 return E->getType()->isIntegralOrEnumerationType(); 10187 return false; 10188 } 10189