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 "Sema.h" 15 #include "clang/AST/ASTContext.h" 16 #include "clang/AST/DeclObjC.h" 17 #include "clang/AST/ExprCXX.h" 18 #include "clang/AST/ExprObjC.h" 19 #include "clang/AST/DeclTemplate.h" 20 #include "clang/Lex/Preprocessor.h" 21 #include "clang/Lex/LiteralSupport.h" 22 #include "clang/Basic/SourceManager.h" 23 #include "clang/Basic/TargetInfo.h" 24 #include "clang/Parse/DeclSpec.h" 25 #include "clang/Parse/Designator.h" 26 #include "clang/Parse/Scope.h" 27 using namespace clang; 28 29 /// \brief Determine whether the use of this declaration is valid, and 30 /// emit any corresponding diagnostics. 31 /// 32 /// This routine diagnoses various problems with referencing 33 /// declarations that can occur when using a declaration. For example, 34 /// it might warn if a deprecated or unavailable declaration is being 35 /// used, or produce an error (and return true) if a C++0x deleted 36 /// function is being used. 37 /// 38 /// \returns true if there was an error (this declaration cannot be 39 /// referenced), false otherwise. 40 bool Sema::DiagnoseUseOfDecl(NamedDecl *D, SourceLocation Loc) { 41 // See if the decl is deprecated. 42 if (D->getAttr<DeprecatedAttr>()) { 43 // Implementing deprecated stuff requires referencing deprecated 44 // stuff. Don't warn if we are implementing a deprecated 45 // construct. 46 bool isSilenced = false; 47 48 if (NamedDecl *ND = getCurFunctionOrMethodDecl()) { 49 // If this reference happens *in* a deprecated function or method, don't 50 // warn. 51 isSilenced = ND->getAttr<DeprecatedAttr>(); 52 53 // If this is an Objective-C method implementation, check to see if the 54 // method was deprecated on the declaration, not the definition. 55 if (ObjCMethodDecl *MD = dyn_cast<ObjCMethodDecl>(ND)) { 56 // The semantic decl context of a ObjCMethodDecl is the 57 // ObjCImplementationDecl. 58 if (ObjCImplementationDecl *Impl 59 = dyn_cast<ObjCImplementationDecl>(MD->getParent())) { 60 61 MD = Impl->getClassInterface()->getMethod(MD->getSelector(), 62 MD->isInstanceMethod()); 63 isSilenced |= MD && MD->getAttr<DeprecatedAttr>(); 64 } 65 } 66 } 67 68 if (!isSilenced) 69 Diag(Loc, diag::warn_deprecated) << D->getDeclName(); 70 } 71 72 // See if this is a deleted function. 73 if (FunctionDecl *FD = dyn_cast<FunctionDecl>(D)) { 74 if (FD->isDeleted()) { 75 Diag(Loc, diag::err_deleted_function_use); 76 Diag(D->getLocation(), diag::note_unavailable_here) << true; 77 return true; 78 } 79 } 80 81 // See if the decl is unavailable 82 if (D->getAttr<UnavailableAttr>()) { 83 Diag(Loc, diag::warn_unavailable) << D->getDeclName(); 84 Diag(D->getLocation(), diag::note_unavailable_here) << 0; 85 } 86 87 return false; 88 } 89 90 /// DiagnoseSentinelCalls - This routine checks on method dispatch calls 91 /// (and other functions in future), which have been declared with sentinel 92 /// attribute. It warns if call does not have the sentinel argument. 93 /// 94 void Sema::DiagnoseSentinelCalls(NamedDecl *D, SourceLocation Loc, 95 Expr **Args, unsigned NumArgs) 96 { 97 const SentinelAttr *attr = D->getAttr<SentinelAttr>(); 98 if (!attr) 99 return; 100 int sentinelPos = attr->getSentinel(); 101 int nullPos = attr->getNullPos(); 102 103 // FIXME. ObjCMethodDecl and FunctionDecl need be derived from the same common 104 // base class. Then we won't be needing two versions of the same code. 105 unsigned int i = 0; 106 bool warnNotEnoughArgs = false; 107 int isMethod = 0; 108 if (ObjCMethodDecl *MD = dyn_cast<ObjCMethodDecl>(D)) { 109 // skip over named parameters. 110 ObjCMethodDecl::param_iterator P, E = MD->param_end(); 111 for (P = MD->param_begin(); (P != E && i < NumArgs); ++P) { 112 if (nullPos) 113 --nullPos; 114 else 115 ++i; 116 } 117 warnNotEnoughArgs = (P != E || i >= NumArgs); 118 isMethod = 1; 119 } 120 else if (FunctionDecl *FD = dyn_cast<FunctionDecl>(D)) { 121 // skip over named parameters. 122 ObjCMethodDecl::param_iterator P, E = FD->param_end(); 123 for (P = FD->param_begin(); (P != E && i < NumArgs); ++P) { 124 if (nullPos) 125 --nullPos; 126 else 127 ++i; 128 } 129 warnNotEnoughArgs = (P != E || i >= NumArgs); 130 } 131 else if (VarDecl *V = dyn_cast<VarDecl>(D)) { 132 // block or function pointer call. 133 QualType Ty = V->getType(); 134 if (Ty->isBlockPointerType() || Ty->isFunctionPointerType()) { 135 const FunctionType *FT = Ty->isFunctionPointerType() 136 ? Ty->getAs<PointerType>()->getPointeeType()->getAsFunctionType() 137 : Ty->getAs<BlockPointerType>()->getPointeeType()->getAsFunctionType(); 138 if (const FunctionProtoType *Proto = dyn_cast<FunctionProtoType>(FT)) { 139 unsigned NumArgsInProto = Proto->getNumArgs(); 140 unsigned k; 141 for (k = 0; (k != NumArgsInProto && i < NumArgs); k++) { 142 if (nullPos) 143 --nullPos; 144 else 145 ++i; 146 } 147 warnNotEnoughArgs = (k != NumArgsInProto || i >= NumArgs); 148 } 149 if (Ty->isBlockPointerType()) 150 isMethod = 2; 151 } 152 else 153 return; 154 } 155 else 156 return; 157 158 if (warnNotEnoughArgs) { 159 Diag(Loc, diag::warn_not_enough_argument) << D->getDeclName(); 160 Diag(D->getLocation(), diag::note_sentinel_here) << isMethod; 161 return; 162 } 163 int sentinel = i; 164 while (sentinelPos > 0 && i < NumArgs-1) { 165 --sentinelPos; 166 ++i; 167 } 168 if (sentinelPos > 0) { 169 Diag(Loc, diag::warn_not_enough_argument) << D->getDeclName(); 170 Diag(D->getLocation(), diag::note_sentinel_here) << isMethod; 171 return; 172 } 173 while (i < NumArgs-1) { 174 ++i; 175 ++sentinel; 176 } 177 Expr *sentinelExpr = Args[sentinel]; 178 if (sentinelExpr && (!sentinelExpr->getType()->isPointerType() || 179 !sentinelExpr->isNullPointerConstant(Context))) { 180 Diag(Loc, diag::warn_missing_sentinel) << isMethod; 181 Diag(D->getLocation(), diag::note_sentinel_here) << isMethod; 182 } 183 return; 184 } 185 186 SourceRange Sema::getExprRange(ExprTy *E) const { 187 Expr *Ex = (Expr *)E; 188 return Ex? Ex->getSourceRange() : SourceRange(); 189 } 190 191 //===----------------------------------------------------------------------===// 192 // Standard Promotions and Conversions 193 //===----------------------------------------------------------------------===// 194 195 /// DefaultFunctionArrayConversion (C99 6.3.2.1p3, C99 6.3.2.1p4). 196 void Sema::DefaultFunctionArrayConversion(Expr *&E) { 197 QualType Ty = E->getType(); 198 assert(!Ty.isNull() && "DefaultFunctionArrayConversion - missing type"); 199 200 if (Ty->isFunctionType()) 201 ImpCastExprToType(E, Context.getPointerType(Ty)); 202 else if (Ty->isArrayType()) { 203 // In C90 mode, arrays only promote to pointers if the array expression is 204 // an lvalue. The relevant legalese is C90 6.2.2.1p3: "an lvalue that has 205 // type 'array of type' is converted to an expression that has type 'pointer 206 // to type'...". In C99 this was changed to: C99 6.3.2.1p3: "an expression 207 // that has type 'array of type' ...". The relevant change is "an lvalue" 208 // (C90) to "an expression" (C99). 209 // 210 // C++ 4.2p1: 211 // An lvalue or rvalue of type "array of N T" or "array of unknown bound of 212 // T" can be converted to an rvalue of type "pointer to T". 213 // 214 if (getLangOptions().C99 || getLangOptions().CPlusPlus || 215 E->isLvalue(Context) == Expr::LV_Valid) 216 ImpCastExprToType(E, Context.getArrayDecayedType(Ty)); 217 } 218 } 219 220 /// \brief Whether this is a promotable bitfield reference according 221 /// to C99 6.3.1.1p2, bullet 2. 222 /// 223 /// \returns the type this bit-field will promote to, or NULL if no 224 /// promotion occurs. 225 static QualType isPromotableBitField(Expr *E, ASTContext &Context) { 226 FieldDecl *Field = E->getBitField(); 227 if (!Field) 228 return QualType(); 229 230 const BuiltinType *BT = Field->getType()->getAsBuiltinType(); 231 if (!BT) 232 return QualType(); 233 234 if (BT->getKind() != BuiltinType::Bool && 235 BT->getKind() != BuiltinType::Int && 236 BT->getKind() != BuiltinType::UInt) 237 return QualType(); 238 239 llvm::APSInt BitWidthAP; 240 if (!Field->getBitWidth()->isIntegerConstantExpr(BitWidthAP, Context)) 241 return QualType(); 242 243 uint64_t BitWidth = BitWidthAP.getZExtValue(); 244 uint64_t IntSize = Context.getTypeSize(Context.IntTy); 245 if (BitWidth < IntSize || 246 (Field->getType()->isSignedIntegerType() && BitWidth == IntSize)) 247 return Context.IntTy; 248 249 if (BitWidth == IntSize && Field->getType()->isUnsignedIntegerType()) 250 return Context.UnsignedIntTy; 251 252 return QualType(); 253 } 254 255 /// UsualUnaryConversions - Performs various conversions that are common to most 256 /// operators (C99 6.3). The conversions of array and function types are 257 /// sometimes surpressed. For example, the array->pointer conversion doesn't 258 /// apply if the array is an argument to the sizeof or address (&) operators. 259 /// In these instances, this routine should *not* be called. 260 Expr *Sema::UsualUnaryConversions(Expr *&Expr) { 261 QualType Ty = Expr->getType(); 262 assert(!Ty.isNull() && "UsualUnaryConversions - missing type"); 263 264 // C99 6.3.1.1p2: 265 // 266 // The following may be used in an expression wherever an int or 267 // unsigned int may be used: 268 // - an object or expression with an integer type whose integer 269 // conversion rank is less than or equal to the rank of int 270 // and unsigned int. 271 // - A bit-field of type _Bool, int, signed int, or unsigned int. 272 // 273 // If an int can represent all values of the original type, the 274 // value is converted to an int; otherwise, it is converted to an 275 // unsigned int. These are called the integer promotions. All 276 // other types are unchanged by the integer promotions. 277 if (Ty->isPromotableIntegerType()) { 278 ImpCastExprToType(Expr, Context.IntTy); 279 return Expr; 280 } else { 281 QualType T = isPromotableBitField(Expr, Context); 282 if (!T.isNull()) { 283 ImpCastExprToType(Expr, T); 284 return Expr; 285 } 286 } 287 288 DefaultFunctionArrayConversion(Expr); 289 return Expr; 290 } 291 292 /// DefaultArgumentPromotion (C99 6.5.2.2p6). Used for function calls that 293 /// do not have a prototype. Arguments that have type float are promoted to 294 /// double. All other argument types are converted by UsualUnaryConversions(). 295 void Sema::DefaultArgumentPromotion(Expr *&Expr) { 296 QualType Ty = Expr->getType(); 297 assert(!Ty.isNull() && "DefaultArgumentPromotion - missing type"); 298 299 // If this is a 'float' (CVR qualified or typedef) promote to double. 300 if (const BuiltinType *BT = Ty->getAsBuiltinType()) 301 if (BT->getKind() == BuiltinType::Float) 302 return ImpCastExprToType(Expr, Context.DoubleTy); 303 304 UsualUnaryConversions(Expr); 305 } 306 307 /// DefaultVariadicArgumentPromotion - Like DefaultArgumentPromotion, but 308 /// will warn if the resulting type is not a POD type, and rejects ObjC 309 /// interfaces passed by value. This returns true if the argument type is 310 /// completely illegal. 311 bool Sema::DefaultVariadicArgumentPromotion(Expr *&Expr, VariadicCallType CT) { 312 DefaultArgumentPromotion(Expr); 313 314 if (Expr->getType()->isObjCInterfaceType()) { 315 Diag(Expr->getLocStart(), 316 diag::err_cannot_pass_objc_interface_to_vararg) 317 << Expr->getType() << CT; 318 return true; 319 } 320 321 if (!Expr->getType()->isPODType()) 322 Diag(Expr->getLocStart(), diag::warn_cannot_pass_non_pod_arg_to_vararg) 323 << Expr->getType() << CT; 324 325 return false; 326 } 327 328 329 /// UsualArithmeticConversions - Performs various conversions that are common to 330 /// binary operators (C99 6.3.1.8). If both operands aren't arithmetic, this 331 /// routine returns the first non-arithmetic type found. The client is 332 /// responsible for emitting appropriate error diagnostics. 333 /// FIXME: verify the conversion rules for "complex int" are consistent with 334 /// GCC. 335 QualType Sema::UsualArithmeticConversions(Expr *&lhsExpr, Expr *&rhsExpr, 336 bool isCompAssign) { 337 if (!isCompAssign) 338 UsualUnaryConversions(lhsExpr); 339 340 UsualUnaryConversions(rhsExpr); 341 342 // For conversion purposes, we ignore any qualifiers. 343 // For example, "const float" and "float" are equivalent. 344 QualType lhs = 345 Context.getCanonicalType(lhsExpr->getType()).getUnqualifiedType(); 346 QualType rhs = 347 Context.getCanonicalType(rhsExpr->getType()).getUnqualifiedType(); 348 349 // If both types are identical, no conversion is needed. 350 if (lhs == rhs) 351 return lhs; 352 353 // If either side is a non-arithmetic type (e.g. a pointer), we are done. 354 // The caller can deal with this (e.g. pointer + int). 355 if (!lhs->isArithmeticType() || !rhs->isArithmeticType()) 356 return lhs; 357 358 // Perform bitfield promotions. 359 QualType LHSBitfieldPromoteTy = isPromotableBitField(lhsExpr, Context); 360 if (!LHSBitfieldPromoteTy.isNull()) 361 lhs = LHSBitfieldPromoteTy; 362 QualType RHSBitfieldPromoteTy = isPromotableBitField(rhsExpr, Context); 363 if (!RHSBitfieldPromoteTy.isNull()) 364 rhs = RHSBitfieldPromoteTy; 365 366 QualType destType = UsualArithmeticConversionsType(lhs, rhs); 367 if (!isCompAssign) 368 ImpCastExprToType(lhsExpr, destType); 369 ImpCastExprToType(rhsExpr, destType); 370 return destType; 371 } 372 373 QualType Sema::UsualArithmeticConversionsType(QualType lhs, QualType rhs) { 374 // Perform the usual unary conversions. We do this early so that 375 // integral promotions to "int" can allow us to exit early, in the 376 // lhs == rhs check. Also, for conversion purposes, we ignore any 377 // qualifiers. For example, "const float" and "float" are 378 // equivalent. 379 if (lhs->isPromotableIntegerType()) 380 lhs = Context.IntTy; 381 else 382 lhs = lhs.getUnqualifiedType(); 383 if (rhs->isPromotableIntegerType()) 384 rhs = Context.IntTy; 385 else 386 rhs = rhs.getUnqualifiedType(); 387 388 // If both types are identical, no conversion is needed. 389 if (lhs == rhs) 390 return lhs; 391 392 // If either side is a non-arithmetic type (e.g. a pointer), we are done. 393 // The caller can deal with this (e.g. pointer + int). 394 if (!lhs->isArithmeticType() || !rhs->isArithmeticType()) 395 return lhs; 396 397 // At this point, we have two different arithmetic types. 398 399 // Handle complex types first (C99 6.3.1.8p1). 400 if (lhs->isComplexType() || rhs->isComplexType()) { 401 // if we have an integer operand, the result is the complex type. 402 if (rhs->isIntegerType() || rhs->isComplexIntegerType()) { 403 // convert the rhs to the lhs complex type. 404 return lhs; 405 } 406 if (lhs->isIntegerType() || lhs->isComplexIntegerType()) { 407 // convert the lhs to the rhs complex type. 408 return rhs; 409 } 410 // This handles complex/complex, complex/float, or float/complex. 411 // When both operands are complex, the shorter operand is converted to the 412 // type of the longer, and that is the type of the result. This corresponds 413 // to what is done when combining two real floating-point operands. 414 // The fun begins when size promotion occur across type domains. 415 // From H&S 6.3.4: When one operand is complex and the other is a real 416 // floating-point type, the less precise type is converted, within it's 417 // real or complex domain, to the precision of the other type. For example, 418 // when combining a "long double" with a "double _Complex", the 419 // "double _Complex" is promoted to "long double _Complex". 420 int result = Context.getFloatingTypeOrder(lhs, rhs); 421 422 if (result > 0) { // The left side is bigger, convert rhs. 423 rhs = Context.getFloatingTypeOfSizeWithinDomain(lhs, rhs); 424 } else if (result < 0) { // The right side is bigger, convert lhs. 425 lhs = Context.getFloatingTypeOfSizeWithinDomain(rhs, lhs); 426 } 427 // At this point, lhs and rhs have the same rank/size. Now, make sure the 428 // domains match. This is a requirement for our implementation, C99 429 // does not require this promotion. 430 if (lhs != rhs) { // Domains don't match, we have complex/float mix. 431 if (lhs->isRealFloatingType()) { // handle "double, _Complex double". 432 return rhs; 433 } else { // handle "_Complex double, double". 434 return lhs; 435 } 436 } 437 return lhs; // The domain/size match exactly. 438 } 439 // Now handle "real" floating types (i.e. float, double, long double). 440 if (lhs->isRealFloatingType() || rhs->isRealFloatingType()) { 441 // if we have an integer operand, the result is the real floating type. 442 if (rhs->isIntegerType()) { 443 // convert rhs to the lhs floating point type. 444 return lhs; 445 } 446 if (rhs->isComplexIntegerType()) { 447 // convert rhs to the complex floating point type. 448 return Context.getComplexType(lhs); 449 } 450 if (lhs->isIntegerType()) { 451 // convert lhs to the rhs floating point type. 452 return rhs; 453 } 454 if (lhs->isComplexIntegerType()) { 455 // convert lhs to the complex floating point type. 456 return Context.getComplexType(rhs); 457 } 458 // We have two real floating types, float/complex combos were handled above. 459 // Convert the smaller operand to the bigger result. 460 int result = Context.getFloatingTypeOrder(lhs, rhs); 461 if (result > 0) // convert the rhs 462 return lhs; 463 assert(result < 0 && "illegal float comparison"); 464 return rhs; // convert the lhs 465 } 466 if (lhs->isComplexIntegerType() || rhs->isComplexIntegerType()) { 467 // Handle GCC complex int extension. 468 const ComplexType *lhsComplexInt = lhs->getAsComplexIntegerType(); 469 const ComplexType *rhsComplexInt = rhs->getAsComplexIntegerType(); 470 471 if (lhsComplexInt && rhsComplexInt) { 472 if (Context.getIntegerTypeOrder(lhsComplexInt->getElementType(), 473 rhsComplexInt->getElementType()) >= 0) 474 return lhs; // convert the rhs 475 return rhs; 476 } else if (lhsComplexInt && rhs->isIntegerType()) { 477 // convert the rhs to the lhs complex type. 478 return lhs; 479 } else if (rhsComplexInt && lhs->isIntegerType()) { 480 // convert the lhs to the rhs complex type. 481 return rhs; 482 } 483 } 484 // Finally, we have two differing integer types. 485 // The rules for this case are in C99 6.3.1.8 486 int compare = Context.getIntegerTypeOrder(lhs, rhs); 487 bool lhsSigned = lhs->isSignedIntegerType(), 488 rhsSigned = rhs->isSignedIntegerType(); 489 QualType destType; 490 if (lhsSigned == rhsSigned) { 491 // Same signedness; use the higher-ranked type 492 destType = compare >= 0 ? lhs : rhs; 493 } else if (compare != (lhsSigned ? 1 : -1)) { 494 // The unsigned type has greater than or equal rank to the 495 // signed type, so use the unsigned type 496 destType = lhsSigned ? rhs : lhs; 497 } else if (Context.getIntWidth(lhs) != Context.getIntWidth(rhs)) { 498 // The two types are different widths; if we are here, that 499 // means the signed type is larger than the unsigned type, so 500 // use the signed type. 501 destType = lhsSigned ? lhs : rhs; 502 } else { 503 // The signed type is higher-ranked than the unsigned type, 504 // but isn't actually any bigger (like unsigned int and long 505 // on most 32-bit systems). Use the unsigned type corresponding 506 // to the signed type. 507 destType = Context.getCorrespondingUnsignedType(lhsSigned ? lhs : rhs); 508 } 509 return destType; 510 } 511 512 //===----------------------------------------------------------------------===// 513 // Semantic Analysis for various Expression Types 514 //===----------------------------------------------------------------------===// 515 516 517 /// ActOnStringLiteral - The specified tokens were lexed as pasted string 518 /// fragments (e.g. "foo" "bar" L"baz"). The result string has to handle string 519 /// concatenation ([C99 5.1.1.2, translation phase #6]), so it may come from 520 /// multiple tokens. However, the common case is that StringToks points to one 521 /// string. 522 /// 523 Action::OwningExprResult 524 Sema::ActOnStringLiteral(const Token *StringToks, unsigned NumStringToks) { 525 assert(NumStringToks && "Must have at least one string!"); 526 527 StringLiteralParser Literal(StringToks, NumStringToks, PP); 528 if (Literal.hadError) 529 return ExprError(); 530 531 llvm::SmallVector<SourceLocation, 4> StringTokLocs; 532 for (unsigned i = 0; i != NumStringToks; ++i) 533 StringTokLocs.push_back(StringToks[i].getLocation()); 534 535 QualType StrTy = Context.CharTy; 536 if (Literal.AnyWide) StrTy = Context.getWCharType(); 537 if (Literal.Pascal) StrTy = Context.UnsignedCharTy; 538 539 // A C++ string literal has a const-qualified element type (C++ 2.13.4p1). 540 if (getLangOptions().CPlusPlus) 541 StrTy.addConst(); 542 543 // Get an array type for the string, according to C99 6.4.5. This includes 544 // the nul terminator character as well as the string length for pascal 545 // strings. 546 StrTy = Context.getConstantArrayType(StrTy, 547 llvm::APInt(32, Literal.GetNumStringChars()+1), 548 ArrayType::Normal, 0); 549 550 // Pass &StringTokLocs[0], StringTokLocs.size() to factory! 551 return Owned(StringLiteral::Create(Context, Literal.GetString(), 552 Literal.GetStringLength(), 553 Literal.AnyWide, StrTy, 554 &StringTokLocs[0], 555 StringTokLocs.size())); 556 } 557 558 /// ShouldSnapshotBlockValueReference - Return true if a reference inside of 559 /// CurBlock to VD should cause it to be snapshotted (as we do for auto 560 /// variables defined outside the block) or false if this is not needed (e.g. 561 /// for values inside the block or for globals). 562 /// 563 /// This also keeps the 'hasBlockDeclRefExprs' in the BlockSemaInfo records 564 /// up-to-date. 565 /// 566 static bool ShouldSnapshotBlockValueReference(BlockSemaInfo *CurBlock, 567 ValueDecl *VD) { 568 // If the value is defined inside the block, we couldn't snapshot it even if 569 // we wanted to. 570 if (CurBlock->TheDecl == VD->getDeclContext()) 571 return false; 572 573 // If this is an enum constant or function, it is constant, don't snapshot. 574 if (isa<EnumConstantDecl>(VD) || isa<FunctionDecl>(VD)) 575 return false; 576 577 // If this is a reference to an extern, static, or global variable, no need to 578 // snapshot it. 579 // FIXME: What about 'const' variables in C++? 580 if (const VarDecl *Var = dyn_cast<VarDecl>(VD)) 581 if (!Var->hasLocalStorage()) 582 return false; 583 584 // Blocks that have these can't be constant. 585 CurBlock->hasBlockDeclRefExprs = true; 586 587 // If we have nested blocks, the decl may be declared in an outer block (in 588 // which case that outer block doesn't get "hasBlockDeclRefExprs") or it may 589 // be defined outside all of the current blocks (in which case the blocks do 590 // all get the bit). Walk the nesting chain. 591 for (BlockSemaInfo *NextBlock = CurBlock->PrevBlockInfo; NextBlock; 592 NextBlock = NextBlock->PrevBlockInfo) { 593 // If we found the defining block for the variable, don't mark the block as 594 // having a reference outside it. 595 if (NextBlock->TheDecl == VD->getDeclContext()) 596 break; 597 598 // Otherwise, the DeclRef from the inner block causes the outer one to need 599 // a snapshot as well. 600 NextBlock->hasBlockDeclRefExprs = true; 601 } 602 603 return true; 604 } 605 606 607 608 /// ActOnIdentifierExpr - The parser read an identifier in expression context, 609 /// validate it per-C99 6.5.1. HasTrailingLParen indicates whether this 610 /// identifier is used in a function call context. 611 /// SS is only used for a C++ qualified-id (foo::bar) to indicate the 612 /// class or namespace that the identifier must be a member of. 613 Sema::OwningExprResult Sema::ActOnIdentifierExpr(Scope *S, SourceLocation Loc, 614 IdentifierInfo &II, 615 bool HasTrailingLParen, 616 const CXXScopeSpec *SS, 617 bool isAddressOfOperand) { 618 return ActOnDeclarationNameExpr(S, Loc, &II, HasTrailingLParen, SS, 619 isAddressOfOperand); 620 } 621 622 /// BuildDeclRefExpr - Build either a DeclRefExpr or a 623 /// QualifiedDeclRefExpr based on whether or not SS is a 624 /// nested-name-specifier. 625 Sema::OwningExprResult 626 Sema::BuildDeclRefExpr(NamedDecl *D, QualType Ty, SourceLocation Loc, 627 bool TypeDependent, bool ValueDependent, 628 const CXXScopeSpec *SS) { 629 if (Context.getCanonicalType(Ty) == Context.UndeducedAutoTy) { 630 Diag(Loc, 631 diag::err_auto_variable_cannot_appear_in_own_initializer) 632 << D->getDeclName(); 633 return ExprError(); 634 } 635 636 if (const VarDecl *VD = dyn_cast<VarDecl>(D)) { 637 if (const CXXMethodDecl *MD = dyn_cast<CXXMethodDecl>(CurContext)) { 638 if (const FunctionDecl *FD = MD->getParent()->isLocalClass()) { 639 if (VD->hasLocalStorage() && VD->getDeclContext() != CurContext) { 640 Diag(Loc, diag::err_reference_to_local_var_in_enclosing_function) 641 << D->getIdentifier() << FD->getDeclName(); 642 Diag(D->getLocation(), diag::note_local_variable_declared_here) 643 << D->getIdentifier(); 644 return ExprError(); 645 } 646 } 647 } 648 } 649 650 MarkDeclarationReferenced(Loc, D); 651 652 Expr *E; 653 if (SS && !SS->isEmpty()) { 654 E = new (Context) QualifiedDeclRefExpr(D, Ty, Loc, TypeDependent, 655 ValueDependent, SS->getRange(), 656 static_cast<NestedNameSpecifier *>(SS->getScopeRep())); 657 } else 658 E = new (Context) DeclRefExpr(D, Ty, Loc, TypeDependent, ValueDependent); 659 660 return Owned(E); 661 } 662 663 /// getObjectForAnonymousRecordDecl - Retrieve the (unnamed) field or 664 /// variable corresponding to the anonymous union or struct whose type 665 /// is Record. 666 static Decl *getObjectForAnonymousRecordDecl(ASTContext &Context, 667 RecordDecl *Record) { 668 assert(Record->isAnonymousStructOrUnion() && 669 "Record must be an anonymous struct or union!"); 670 671 // FIXME: Once Decls are directly linked together, this will be an O(1) 672 // operation rather than a slow walk through DeclContext's vector (which 673 // itself will be eliminated). DeclGroups might make this even better. 674 DeclContext *Ctx = Record->getDeclContext(); 675 for (DeclContext::decl_iterator D = Ctx->decls_begin(), 676 DEnd = Ctx->decls_end(); 677 D != DEnd; ++D) { 678 if (*D == Record) { 679 // The object for the anonymous struct/union directly 680 // follows its type in the list of declarations. 681 ++D; 682 assert(D != DEnd && "Missing object for anonymous record"); 683 assert(!cast<NamedDecl>(*D)->getDeclName() && "Decl should be unnamed"); 684 return *D; 685 } 686 } 687 688 assert(false && "Missing object for anonymous record"); 689 return 0; 690 } 691 692 /// \brief Given a field that represents a member of an anonymous 693 /// struct/union, build the path from that field's context to the 694 /// actual member. 695 /// 696 /// Construct the sequence of field member references we'll have to 697 /// perform to get to the field in the anonymous union/struct. The 698 /// list of members is built from the field outward, so traverse it 699 /// backwards to go from an object in the current context to the field 700 /// we found. 701 /// 702 /// \returns The variable from which the field access should begin, 703 /// for an anonymous struct/union that is not a member of another 704 /// class. Otherwise, returns NULL. 705 VarDecl *Sema::BuildAnonymousStructUnionMemberPath(FieldDecl *Field, 706 llvm::SmallVectorImpl<FieldDecl *> &Path) { 707 assert(Field->getDeclContext()->isRecord() && 708 cast<RecordDecl>(Field->getDeclContext())->isAnonymousStructOrUnion() 709 && "Field must be stored inside an anonymous struct or union"); 710 711 Path.push_back(Field); 712 VarDecl *BaseObject = 0; 713 DeclContext *Ctx = Field->getDeclContext(); 714 do { 715 RecordDecl *Record = cast<RecordDecl>(Ctx); 716 Decl *AnonObject = getObjectForAnonymousRecordDecl(Context, Record); 717 if (FieldDecl *AnonField = dyn_cast<FieldDecl>(AnonObject)) 718 Path.push_back(AnonField); 719 else { 720 BaseObject = cast<VarDecl>(AnonObject); 721 break; 722 } 723 Ctx = Ctx->getParent(); 724 } while (Ctx->isRecord() && 725 cast<RecordDecl>(Ctx)->isAnonymousStructOrUnion()); 726 727 return BaseObject; 728 } 729 730 Sema::OwningExprResult 731 Sema::BuildAnonymousStructUnionMemberReference(SourceLocation Loc, 732 FieldDecl *Field, 733 Expr *BaseObjectExpr, 734 SourceLocation OpLoc) { 735 llvm::SmallVector<FieldDecl *, 4> AnonFields; 736 VarDecl *BaseObject = BuildAnonymousStructUnionMemberPath(Field, 737 AnonFields); 738 739 // Build the expression that refers to the base object, from 740 // which we will build a sequence of member references to each 741 // of the anonymous union objects and, eventually, the field we 742 // found via name lookup. 743 bool BaseObjectIsPointer = false; 744 unsigned ExtraQuals = 0; 745 if (BaseObject) { 746 // BaseObject is an anonymous struct/union variable (and is, 747 // therefore, not part of another non-anonymous record). 748 if (BaseObjectExpr) BaseObjectExpr->Destroy(Context); 749 MarkDeclarationReferenced(Loc, BaseObject); 750 BaseObjectExpr = new (Context) DeclRefExpr(BaseObject,BaseObject->getType(), 751 SourceLocation()); 752 ExtraQuals 753 = Context.getCanonicalType(BaseObject->getType()).getCVRQualifiers(); 754 } else if (BaseObjectExpr) { 755 // The caller provided the base object expression. Determine 756 // whether its a pointer and whether it adds any qualifiers to the 757 // anonymous struct/union fields we're looking into. 758 QualType ObjectType = BaseObjectExpr->getType(); 759 if (const PointerType *ObjectPtr = ObjectType->getAs<PointerType>()) { 760 BaseObjectIsPointer = true; 761 ObjectType = ObjectPtr->getPointeeType(); 762 } 763 ExtraQuals = Context.getCanonicalType(ObjectType).getCVRQualifiers(); 764 } else { 765 // We've found a member of an anonymous struct/union that is 766 // inside a non-anonymous struct/union, so in a well-formed 767 // program our base object expression is "this". 768 if (CXXMethodDecl *MD = dyn_cast<CXXMethodDecl>(CurContext)) { 769 if (!MD->isStatic()) { 770 QualType AnonFieldType 771 = Context.getTagDeclType( 772 cast<RecordDecl>(AnonFields.back()->getDeclContext())); 773 QualType ThisType = Context.getTagDeclType(MD->getParent()); 774 if ((Context.getCanonicalType(AnonFieldType) 775 == Context.getCanonicalType(ThisType)) || 776 IsDerivedFrom(ThisType, AnonFieldType)) { 777 // Our base object expression is "this". 778 BaseObjectExpr = new (Context) CXXThisExpr(SourceLocation(), 779 MD->getThisType(Context)); 780 BaseObjectIsPointer = true; 781 } 782 } else { 783 return ExprError(Diag(Loc,diag::err_invalid_member_use_in_static_method) 784 << Field->getDeclName()); 785 } 786 ExtraQuals = MD->getTypeQualifiers(); 787 } 788 789 if (!BaseObjectExpr) 790 return ExprError(Diag(Loc, diag::err_invalid_non_static_member_use) 791 << Field->getDeclName()); 792 } 793 794 // Build the implicit member references to the field of the 795 // anonymous struct/union. 796 Expr *Result = BaseObjectExpr; 797 unsigned BaseAddrSpace = BaseObjectExpr->getType().getAddressSpace(); 798 for (llvm::SmallVector<FieldDecl *, 4>::reverse_iterator 799 FI = AnonFields.rbegin(), FIEnd = AnonFields.rend(); 800 FI != FIEnd; ++FI) { 801 QualType MemberType = (*FI)->getType(); 802 if (!(*FI)->isMutable()) { 803 unsigned combinedQualifiers 804 = MemberType.getCVRQualifiers() | ExtraQuals; 805 MemberType = MemberType.getQualifiedType(combinedQualifiers); 806 } 807 if (BaseAddrSpace != MemberType.getAddressSpace()) 808 MemberType = Context.getAddrSpaceQualType(MemberType, BaseAddrSpace); 809 MarkDeclarationReferenced(Loc, *FI); 810 Result = new (Context) MemberExpr(Result, BaseObjectIsPointer, *FI, 811 OpLoc, MemberType); 812 BaseObjectIsPointer = false; 813 ExtraQuals = Context.getCanonicalType(MemberType).getCVRQualifiers(); 814 } 815 816 return Owned(Result); 817 } 818 819 /// ActOnDeclarationNameExpr - The parser has read some kind of name 820 /// (e.g., a C++ id-expression (C++ [expr.prim]p1)). This routine 821 /// performs lookup on that name and returns an expression that refers 822 /// to that name. This routine isn't directly called from the parser, 823 /// because the parser doesn't know about DeclarationName. Rather, 824 /// this routine is called by ActOnIdentifierExpr, 825 /// ActOnOperatorFunctionIdExpr, and ActOnConversionFunctionExpr, 826 /// which form the DeclarationName from the corresponding syntactic 827 /// forms. 828 /// 829 /// HasTrailingLParen indicates whether this identifier is used in a 830 /// function call context. LookupCtx is only used for a C++ 831 /// qualified-id (foo::bar) to indicate the class or namespace that 832 /// the identifier must be a member of. 833 /// 834 /// isAddressOfOperand means that this expression is the direct operand 835 /// of an address-of operator. This matters because this is the only 836 /// situation where a qualified name referencing a non-static member may 837 /// appear outside a member function of this class. 838 Sema::OwningExprResult 839 Sema::ActOnDeclarationNameExpr(Scope *S, SourceLocation Loc, 840 DeclarationName Name, bool HasTrailingLParen, 841 const CXXScopeSpec *SS, 842 bool isAddressOfOperand) { 843 // Could be enum-constant, value decl, instance variable, etc. 844 if (SS && SS->isInvalid()) 845 return ExprError(); 846 847 // C++ [temp.dep.expr]p3: 848 // An id-expression is type-dependent if it contains: 849 // -- a nested-name-specifier that contains a class-name that 850 // names a dependent type. 851 // FIXME: Member of the current instantiation. 852 if (SS && isDependentScopeSpecifier(*SS)) { 853 return Owned(new (Context) UnresolvedDeclRefExpr(Name, Context.DependentTy, 854 Loc, SS->getRange(), 855 static_cast<NestedNameSpecifier *>(SS->getScopeRep()), 856 isAddressOfOperand)); 857 } 858 859 LookupResult Lookup = LookupParsedName(S, SS, Name, LookupOrdinaryName, 860 false, true, Loc); 861 862 if (Lookup.isAmbiguous()) { 863 DiagnoseAmbiguousLookup(Lookup, Name, Loc, 864 SS && SS->isSet() ? SS->getRange() 865 : SourceRange()); 866 return ExprError(); 867 } 868 869 NamedDecl *D = Lookup.getAsDecl(); 870 871 // If this reference is in an Objective-C method, then ivar lookup happens as 872 // well. 873 IdentifierInfo *II = Name.getAsIdentifierInfo(); 874 if (II && getCurMethodDecl()) { 875 // There are two cases to handle here. 1) scoped lookup could have failed, 876 // in which case we should look for an ivar. 2) scoped lookup could have 877 // found a decl, but that decl is outside the current instance method (i.e. 878 // a global variable). In these two cases, we do a lookup for an ivar with 879 // this name, if the lookup sucedes, we replace it our current decl. 880 if (D == 0 || D->isDefinedOutsideFunctionOrMethod()) { 881 ObjCInterfaceDecl *IFace = getCurMethodDecl()->getClassInterface(); 882 ObjCInterfaceDecl *ClassDeclared; 883 if (ObjCIvarDecl *IV = IFace->lookupInstanceVariable(II, ClassDeclared)) { 884 // Check if referencing a field with __attribute__((deprecated)). 885 if (DiagnoseUseOfDecl(IV, Loc)) 886 return ExprError(); 887 888 // If we're referencing an invalid decl, just return this as a silent 889 // error node. The error diagnostic was already emitted on the decl. 890 if (IV->isInvalidDecl()) 891 return ExprError(); 892 893 bool IsClsMethod = getCurMethodDecl()->isClassMethod(); 894 // If a class method attemps to use a free standing ivar, this is 895 // an error. 896 if (IsClsMethod && D && !D->isDefinedOutsideFunctionOrMethod()) 897 return ExprError(Diag(Loc, diag::error_ivar_use_in_class_method) 898 << IV->getDeclName()); 899 // If a class method uses a global variable, even if an ivar with 900 // same name exists, use the global. 901 if (!IsClsMethod) { 902 if (IV->getAccessControl() == ObjCIvarDecl::Private && 903 ClassDeclared != IFace) 904 Diag(Loc, diag::error_private_ivar_access) << IV->getDeclName(); 905 // FIXME: This should use a new expr for a direct reference, don't 906 // turn this into Self->ivar, just return a BareIVarExpr or something. 907 IdentifierInfo &II = Context.Idents.get("self"); 908 OwningExprResult SelfExpr = ActOnIdentifierExpr(S, SourceLocation(), 909 II, false); 910 MarkDeclarationReferenced(Loc, IV); 911 return Owned(new (Context) 912 ObjCIvarRefExpr(IV, IV->getType(), Loc, 913 SelfExpr.takeAs<Expr>(), true, true)); 914 } 915 } 916 } 917 else if (getCurMethodDecl()->isInstanceMethod()) { 918 // We should warn if a local variable hides an ivar. 919 ObjCInterfaceDecl *IFace = getCurMethodDecl()->getClassInterface(); 920 ObjCInterfaceDecl *ClassDeclared; 921 if (ObjCIvarDecl *IV = IFace->lookupInstanceVariable(II, ClassDeclared)) { 922 if (IV->getAccessControl() != ObjCIvarDecl::Private || 923 IFace == ClassDeclared) 924 Diag(Loc, diag::warn_ivar_use_hidden) << IV->getDeclName(); 925 } 926 } 927 // Needed to implement property "super.method" notation. 928 if (D == 0 && II->isStr("super")) { 929 QualType T; 930 931 if (getCurMethodDecl()->isInstanceMethod()) 932 T = Context.getObjCObjectPointerType(Context.getObjCInterfaceType( 933 getCurMethodDecl()->getClassInterface())); 934 else 935 T = Context.getObjCClassType(); 936 return Owned(new (Context) ObjCSuperExpr(Loc, T)); 937 } 938 } 939 940 // Determine whether this name might be a candidate for 941 // argument-dependent lookup. 942 bool ADL = getLangOptions().CPlusPlus && (!SS || !SS->isSet()) && 943 HasTrailingLParen; 944 945 if (ADL && D == 0) { 946 // We've seen something of the form 947 // 948 // identifier( 949 // 950 // and we did not find any entity by the name 951 // "identifier". However, this identifier is still subject to 952 // argument-dependent lookup, so keep track of the name. 953 return Owned(new (Context) UnresolvedFunctionNameExpr(Name, 954 Context.OverloadTy, 955 Loc)); 956 } 957 958 if (D == 0) { 959 // Otherwise, this could be an implicitly declared function reference (legal 960 // in C90, extension in C99). 961 if (HasTrailingLParen && II && 962 !getLangOptions().CPlusPlus) // Not in C++. 963 D = ImplicitlyDefineFunction(Loc, *II, S); 964 else { 965 // If this name wasn't predeclared and if this is not a function call, 966 // diagnose the problem. 967 if (SS && !SS->isEmpty()) 968 return ExprError(Diag(Loc, diag::err_typecheck_no_member) 969 << Name << SS->getRange()); 970 else if (Name.getNameKind() == DeclarationName::CXXOperatorName || 971 Name.getNameKind() == DeclarationName::CXXConversionFunctionName) 972 return ExprError(Diag(Loc, diag::err_undeclared_use) 973 << Name.getAsString()); 974 else 975 return ExprError(Diag(Loc, diag::err_undeclared_var_use) << Name); 976 } 977 } 978 979 if (VarDecl *Var = dyn_cast<VarDecl>(D)) { 980 // Warn about constructs like: 981 // if (void *X = foo()) { ... } else { X }. 982 // In the else block, the pointer is always false. 983 984 // FIXME: In a template instantiation, we don't have scope 985 // information to check this property. 986 if (Var->isDeclaredInCondition() && Var->getType()->isScalarType()) { 987 Scope *CheckS = S; 988 while (CheckS) { 989 if (CheckS->isWithinElse() && 990 CheckS->getControlParent()->isDeclScope(DeclPtrTy::make(Var))) { 991 if (Var->getType()->isBooleanType()) 992 ExprError(Diag(Loc, diag::warn_value_always_false) 993 << Var->getDeclName()); 994 else 995 ExprError(Diag(Loc, diag::warn_value_always_zero) 996 << Var->getDeclName()); 997 break; 998 } 999 1000 // Move up one more control parent to check again. 1001 CheckS = CheckS->getControlParent(); 1002 if (CheckS) 1003 CheckS = CheckS->getParent(); 1004 } 1005 } 1006 } else if (FunctionDecl *Func = dyn_cast<FunctionDecl>(D)) { 1007 if (!getLangOptions().CPlusPlus && !Func->hasPrototype()) { 1008 // C99 DR 316 says that, if a function type comes from a 1009 // function definition (without a prototype), that type is only 1010 // used for checking compatibility. Therefore, when referencing 1011 // the function, we pretend that we don't have the full function 1012 // type. 1013 if (DiagnoseUseOfDecl(Func, Loc)) 1014 return ExprError(); 1015 1016 QualType T = Func->getType(); 1017 QualType NoProtoType = T; 1018 if (const FunctionProtoType *Proto = T->getAsFunctionProtoType()) 1019 NoProtoType = Context.getFunctionNoProtoType(Proto->getResultType()); 1020 return BuildDeclRefExpr(Func, NoProtoType, Loc, false, false, SS); 1021 } 1022 } 1023 1024 return BuildDeclarationNameExpr(Loc, D, HasTrailingLParen, SS, isAddressOfOperand); 1025 } 1026 /// \brief Cast member's object to its own class if necessary. 1027 bool 1028 Sema::PerformObjectMemberConversion(Expr *&From, NamedDecl *Member) { 1029 if (FieldDecl *FD = dyn_cast<FieldDecl>(Member)) 1030 if (CXXRecordDecl *RD = 1031 dyn_cast<CXXRecordDecl>(FD->getDeclContext())) { 1032 QualType DestType = 1033 Context.getCanonicalType(Context.getTypeDeclType(RD)); 1034 if (DestType->isDependentType() || From->getType()->isDependentType()) 1035 return false; 1036 QualType FromRecordType = From->getType(); 1037 QualType DestRecordType = DestType; 1038 if (FromRecordType->getAs<PointerType>()) { 1039 DestType = Context.getPointerType(DestType); 1040 FromRecordType = FromRecordType->getPointeeType(); 1041 } 1042 if (!Context.hasSameUnqualifiedType(FromRecordType, DestRecordType) && 1043 CheckDerivedToBaseConversion(FromRecordType, 1044 DestRecordType, 1045 From->getSourceRange().getBegin(), 1046 From->getSourceRange())) 1047 return true; 1048 ImpCastExprToType(From, DestType, CastExpr::CK_DerivedToBase, 1049 /*isLvalue=*/true); 1050 } 1051 return false; 1052 } 1053 1054 /// \brief Complete semantic analysis for a reference to the given declaration. 1055 Sema::OwningExprResult 1056 Sema::BuildDeclarationNameExpr(SourceLocation Loc, NamedDecl *D, 1057 bool HasTrailingLParen, 1058 const CXXScopeSpec *SS, 1059 bool isAddressOfOperand) { 1060 assert(D && "Cannot refer to a NULL declaration"); 1061 DeclarationName Name = D->getDeclName(); 1062 1063 // If this is an expression of the form &Class::member, don't build an 1064 // implicit member ref, because we want a pointer to the member in general, 1065 // not any specific instance's member. 1066 if (isAddressOfOperand && SS && !SS->isEmpty() && !HasTrailingLParen) { 1067 DeclContext *DC = computeDeclContext(*SS); 1068 if (D && isa<CXXRecordDecl>(DC)) { 1069 QualType DType; 1070 if (FieldDecl *FD = dyn_cast<FieldDecl>(D)) { 1071 DType = FD->getType().getNonReferenceType(); 1072 } else if (CXXMethodDecl *Method = dyn_cast<CXXMethodDecl>(D)) { 1073 DType = Method->getType(); 1074 } else if (isa<OverloadedFunctionDecl>(D)) { 1075 DType = Context.OverloadTy; 1076 } 1077 // Could be an inner type. That's diagnosed below, so ignore it here. 1078 if (!DType.isNull()) { 1079 // The pointer is type- and value-dependent if it points into something 1080 // dependent. 1081 bool Dependent = DC->isDependentContext(); 1082 return BuildDeclRefExpr(D, DType, Loc, Dependent, Dependent, SS); 1083 } 1084 } 1085 } 1086 1087 // We may have found a field within an anonymous union or struct 1088 // (C++ [class.union]). 1089 if (FieldDecl *FD = dyn_cast<FieldDecl>(D)) 1090 if (cast<RecordDecl>(FD->getDeclContext())->isAnonymousStructOrUnion()) 1091 return BuildAnonymousStructUnionMemberReference(Loc, FD); 1092 1093 if (CXXMethodDecl *MD = dyn_cast<CXXMethodDecl>(CurContext)) { 1094 if (!MD->isStatic()) { 1095 // C++ [class.mfct.nonstatic]p2: 1096 // [...] if name lookup (3.4.1) resolves the name in the 1097 // id-expression to a nonstatic nontype member of class X or of 1098 // a base class of X, the id-expression is transformed into a 1099 // class member access expression (5.2.5) using (*this) (9.3.2) 1100 // as the postfix-expression to the left of the '.' operator. 1101 DeclContext *Ctx = 0; 1102 QualType MemberType; 1103 if (FieldDecl *FD = dyn_cast<FieldDecl>(D)) { 1104 Ctx = FD->getDeclContext(); 1105 MemberType = FD->getType(); 1106 1107 if (const ReferenceType *RefType = MemberType->getAs<ReferenceType>()) 1108 MemberType = RefType->getPointeeType(); 1109 else if (!FD->isMutable()) { 1110 unsigned combinedQualifiers 1111 = MemberType.getCVRQualifiers() | MD->getTypeQualifiers(); 1112 MemberType = MemberType.getQualifiedType(combinedQualifiers); 1113 } 1114 } else if (CXXMethodDecl *Method = dyn_cast<CXXMethodDecl>(D)) { 1115 if (!Method->isStatic()) { 1116 Ctx = Method->getParent(); 1117 MemberType = Method->getType(); 1118 } 1119 } else if (OverloadedFunctionDecl *Ovl 1120 = dyn_cast<OverloadedFunctionDecl>(D)) { 1121 for (OverloadedFunctionDecl::function_iterator 1122 Func = Ovl->function_begin(), 1123 FuncEnd = Ovl->function_end(); 1124 Func != FuncEnd; ++Func) { 1125 if (CXXMethodDecl *DMethod = dyn_cast<CXXMethodDecl>(*Func)) 1126 if (!DMethod->isStatic()) { 1127 Ctx = Ovl->getDeclContext(); 1128 MemberType = Context.OverloadTy; 1129 break; 1130 } 1131 } 1132 } 1133 1134 if (Ctx && Ctx->isRecord()) { 1135 QualType CtxType = Context.getTagDeclType(cast<CXXRecordDecl>(Ctx)); 1136 QualType ThisType = Context.getTagDeclType(MD->getParent()); 1137 if ((Context.getCanonicalType(CtxType) 1138 == Context.getCanonicalType(ThisType)) || 1139 IsDerivedFrom(ThisType, CtxType)) { 1140 // Build the implicit member access expression. 1141 Expr *This = new (Context) CXXThisExpr(SourceLocation(), 1142 MD->getThisType(Context)); 1143 MarkDeclarationReferenced(Loc, D); 1144 if (PerformObjectMemberConversion(This, D)) 1145 return ExprError(); 1146 return Owned(new (Context) MemberExpr(This, true, D, 1147 Loc, MemberType)); 1148 } 1149 } 1150 } 1151 } 1152 1153 if (FieldDecl *FD = dyn_cast<FieldDecl>(D)) { 1154 if (CXXMethodDecl *MD = dyn_cast<CXXMethodDecl>(CurContext)) { 1155 if (MD->isStatic()) 1156 // "invalid use of member 'x' in static member function" 1157 return ExprError(Diag(Loc,diag::err_invalid_member_use_in_static_method) 1158 << FD->getDeclName()); 1159 } 1160 1161 // Any other ways we could have found the field in a well-formed 1162 // program would have been turned into implicit member expressions 1163 // above. 1164 return ExprError(Diag(Loc, diag::err_invalid_non_static_member_use) 1165 << FD->getDeclName()); 1166 } 1167 1168 if (isa<TypedefDecl>(D)) 1169 return ExprError(Diag(Loc, diag::err_unexpected_typedef) << Name); 1170 if (isa<ObjCInterfaceDecl>(D)) 1171 return ExprError(Diag(Loc, diag::err_unexpected_interface) << Name); 1172 if (isa<NamespaceDecl>(D)) 1173 return ExprError(Diag(Loc, diag::err_unexpected_namespace) << Name); 1174 1175 // Make the DeclRefExpr or BlockDeclRefExpr for the decl. 1176 if (OverloadedFunctionDecl *Ovl = dyn_cast<OverloadedFunctionDecl>(D)) 1177 return BuildDeclRefExpr(Ovl, Context.OverloadTy, Loc, 1178 false, false, SS); 1179 else if (TemplateDecl *Template = dyn_cast<TemplateDecl>(D)) 1180 return BuildDeclRefExpr(Template, Context.OverloadTy, Loc, 1181 false, false, SS); 1182 ValueDecl *VD = cast<ValueDecl>(D); 1183 1184 // Check whether this declaration can be used. Note that we suppress 1185 // this check when we're going to perform argument-dependent lookup 1186 // on this function name, because this might not be the function 1187 // that overload resolution actually selects. 1188 bool ADL = getLangOptions().CPlusPlus && (!SS || !SS->isSet()) && 1189 HasTrailingLParen; 1190 if (!(ADL && isa<FunctionDecl>(VD)) && DiagnoseUseOfDecl(VD, Loc)) 1191 return ExprError(); 1192 1193 // Only create DeclRefExpr's for valid Decl's. 1194 if (VD->isInvalidDecl()) 1195 return ExprError(); 1196 1197 // If the identifier reference is inside a block, and it refers to a value 1198 // that is outside the block, create a BlockDeclRefExpr instead of a 1199 // DeclRefExpr. This ensures the value is treated as a copy-in snapshot when 1200 // the block is formed. 1201 // 1202 // We do not do this for things like enum constants, global variables, etc, 1203 // as they do not get snapshotted. 1204 // 1205 if (CurBlock && ShouldSnapshotBlockValueReference(CurBlock, VD)) { 1206 MarkDeclarationReferenced(Loc, VD); 1207 QualType ExprTy = VD->getType().getNonReferenceType(); 1208 // The BlocksAttr indicates the variable is bound by-reference. 1209 if (VD->getAttr<BlocksAttr>()) 1210 return Owned(new (Context) BlockDeclRefExpr(VD, ExprTy, Loc, true)); 1211 // This is to record that a 'const' was actually synthesize and added. 1212 bool constAdded = !ExprTy.isConstQualified(); 1213 // Variable will be bound by-copy, make it const within the closure. 1214 1215 ExprTy.addConst(); 1216 return Owned(new (Context) BlockDeclRefExpr(VD, ExprTy, Loc, false, 1217 constAdded)); 1218 } 1219 // If this reference is not in a block or if the referenced variable is 1220 // within the block, create a normal DeclRefExpr. 1221 1222 bool TypeDependent = false; 1223 bool ValueDependent = false; 1224 if (getLangOptions().CPlusPlus) { 1225 // C++ [temp.dep.expr]p3: 1226 // An id-expression is type-dependent if it contains: 1227 // - an identifier that was declared with a dependent type, 1228 if (VD->getType()->isDependentType()) 1229 TypeDependent = true; 1230 // - FIXME: a template-id that is dependent, 1231 // - a conversion-function-id that specifies a dependent type, 1232 else if (Name.getNameKind() == DeclarationName::CXXConversionFunctionName && 1233 Name.getCXXNameType()->isDependentType()) 1234 TypeDependent = true; 1235 // - a nested-name-specifier that contains a class-name that 1236 // names a dependent type. 1237 else if (SS && !SS->isEmpty()) { 1238 for (DeclContext *DC = computeDeclContext(*SS); 1239 DC; DC = DC->getParent()) { 1240 // FIXME: could stop early at namespace scope. 1241 if (DC->isRecord()) { 1242 CXXRecordDecl *Record = cast<CXXRecordDecl>(DC); 1243 if (Context.getTypeDeclType(Record)->isDependentType()) { 1244 TypeDependent = true; 1245 break; 1246 } 1247 } 1248 } 1249 } 1250 1251 // C++ [temp.dep.constexpr]p2: 1252 // 1253 // An identifier is value-dependent if it is: 1254 // - a name declared with a dependent type, 1255 if (TypeDependent) 1256 ValueDependent = true; 1257 // - the name of a non-type template parameter, 1258 else if (isa<NonTypeTemplateParmDecl>(VD)) 1259 ValueDependent = true; 1260 // - a constant with integral or enumeration type and is 1261 // initialized with an expression that is value-dependent 1262 else if (const VarDecl *Dcl = dyn_cast<VarDecl>(VD)) { 1263 if (Dcl->getType().getCVRQualifiers() == QualType::Const && 1264 Dcl->getInit()) { 1265 ValueDependent = Dcl->getInit()->isValueDependent(); 1266 } 1267 } 1268 } 1269 1270 return BuildDeclRefExpr(VD, VD->getType().getNonReferenceType(), Loc, 1271 TypeDependent, ValueDependent, SS); 1272 } 1273 1274 Sema::OwningExprResult Sema::ActOnPredefinedExpr(SourceLocation Loc, 1275 tok::TokenKind Kind) { 1276 PredefinedExpr::IdentType IT; 1277 1278 switch (Kind) { 1279 default: assert(0 && "Unknown simple primary expr!"); 1280 case tok::kw___func__: IT = PredefinedExpr::Func; break; // [C99 6.4.2.2] 1281 case tok::kw___FUNCTION__: IT = PredefinedExpr::Function; break; 1282 case tok::kw___PRETTY_FUNCTION__: IT = PredefinedExpr::PrettyFunction; break; 1283 } 1284 1285 // Pre-defined identifiers are of type char[x], where x is the length of the 1286 // string. 1287 unsigned Length; 1288 if (FunctionDecl *FD = getCurFunctionDecl()) 1289 Length = FD->getIdentifier()->getLength(); 1290 else if (ObjCMethodDecl *MD = getCurMethodDecl()) 1291 Length = MD->getSynthesizedMethodSize(); 1292 else { 1293 Diag(Loc, diag::ext_predef_outside_function); 1294 // __PRETTY_FUNCTION__ -> "top level", the others produce an empty string. 1295 Length = IT == PredefinedExpr::PrettyFunction ? strlen("top level") : 0; 1296 } 1297 1298 1299 llvm::APInt LengthI(32, Length + 1); 1300 QualType ResTy = Context.CharTy.getQualifiedType(QualType::Const); 1301 ResTy = Context.getConstantArrayType(ResTy, LengthI, ArrayType::Normal, 0); 1302 return Owned(new (Context) PredefinedExpr(Loc, ResTy, IT)); 1303 } 1304 1305 Sema::OwningExprResult Sema::ActOnCharacterConstant(const Token &Tok) { 1306 llvm::SmallString<16> CharBuffer; 1307 CharBuffer.resize(Tok.getLength()); 1308 const char *ThisTokBegin = &CharBuffer[0]; 1309 unsigned ActualLength = PP.getSpelling(Tok, ThisTokBegin); 1310 1311 CharLiteralParser Literal(ThisTokBegin, ThisTokBegin+ActualLength, 1312 Tok.getLocation(), PP); 1313 if (Literal.hadError()) 1314 return ExprError(); 1315 1316 QualType type = getLangOptions().CPlusPlus ? Context.CharTy : Context.IntTy; 1317 1318 return Owned(new (Context) CharacterLiteral(Literal.getValue(), 1319 Literal.isWide(), 1320 type, Tok.getLocation())); 1321 } 1322 1323 Action::OwningExprResult Sema::ActOnNumericConstant(const Token &Tok) { 1324 // Fast path for a single digit (which is quite common). A single digit 1325 // cannot have a trigraph, escaped newline, radix prefix, or type suffix. 1326 if (Tok.getLength() == 1) { 1327 const char Val = PP.getSpellingOfSingleCharacterNumericConstant(Tok); 1328 unsigned IntSize = Context.Target.getIntWidth(); 1329 return Owned(new (Context) IntegerLiteral(llvm::APInt(IntSize, Val-'0'), 1330 Context.IntTy, Tok.getLocation())); 1331 } 1332 1333 llvm::SmallString<512> IntegerBuffer; 1334 // Add padding so that NumericLiteralParser can overread by one character. 1335 IntegerBuffer.resize(Tok.getLength()+1); 1336 const char *ThisTokBegin = &IntegerBuffer[0]; 1337 1338 // Get the spelling of the token, which eliminates trigraphs, etc. 1339 unsigned ActualLength = PP.getSpelling(Tok, ThisTokBegin); 1340 1341 NumericLiteralParser Literal(ThisTokBegin, ThisTokBegin+ActualLength, 1342 Tok.getLocation(), PP); 1343 if (Literal.hadError) 1344 return ExprError(); 1345 1346 Expr *Res; 1347 1348 if (Literal.isFloatingLiteral()) { 1349 QualType Ty; 1350 if (Literal.isFloat) 1351 Ty = Context.FloatTy; 1352 else if (!Literal.isLong) 1353 Ty = Context.DoubleTy; 1354 else 1355 Ty = Context.LongDoubleTy; 1356 1357 const llvm::fltSemantics &Format = Context.getFloatTypeSemantics(Ty); 1358 1359 // isExact will be set by GetFloatValue(). 1360 bool isExact = false; 1361 llvm::APFloat Val = Literal.GetFloatValue(Format, &isExact); 1362 Res = new (Context) FloatingLiteral(Val, isExact, Ty, Tok.getLocation()); 1363 1364 } else if (!Literal.isIntegerLiteral()) { 1365 return ExprError(); 1366 } else { 1367 QualType Ty; 1368 1369 // long long is a C99 feature. 1370 if (!getLangOptions().C99 && !getLangOptions().CPlusPlus0x && 1371 Literal.isLongLong) 1372 Diag(Tok.getLocation(), diag::ext_longlong); 1373 1374 // Get the value in the widest-possible width. 1375 llvm::APInt ResultVal(Context.Target.getIntMaxTWidth(), 0); 1376 1377 if (Literal.GetIntegerValue(ResultVal)) { 1378 // If this value didn't fit into uintmax_t, warn and force to ull. 1379 Diag(Tok.getLocation(), diag::warn_integer_too_large); 1380 Ty = Context.UnsignedLongLongTy; 1381 assert(Context.getTypeSize(Ty) == ResultVal.getBitWidth() && 1382 "long long is not intmax_t?"); 1383 } else { 1384 // If this value fits into a ULL, try to figure out what else it fits into 1385 // according to the rules of C99 6.4.4.1p5. 1386 1387 // Octal, Hexadecimal, and integers with a U suffix are allowed to 1388 // be an unsigned int. 1389 bool AllowUnsigned = Literal.isUnsigned || Literal.getRadix() != 10; 1390 1391 // Check from smallest to largest, picking the smallest type we can. 1392 unsigned Width = 0; 1393 if (!Literal.isLong && !Literal.isLongLong) { 1394 // Are int/unsigned possibilities? 1395 unsigned IntSize = Context.Target.getIntWidth(); 1396 1397 // Does it fit in a unsigned int? 1398 if (ResultVal.isIntN(IntSize)) { 1399 // Does it fit in a signed int? 1400 if (!Literal.isUnsigned && ResultVal[IntSize-1] == 0) 1401 Ty = Context.IntTy; 1402 else if (AllowUnsigned) 1403 Ty = Context.UnsignedIntTy; 1404 Width = IntSize; 1405 } 1406 } 1407 1408 // Are long/unsigned long possibilities? 1409 if (Ty.isNull() && !Literal.isLongLong) { 1410 unsigned LongSize = Context.Target.getLongWidth(); 1411 1412 // Does it fit in a unsigned long? 1413 if (ResultVal.isIntN(LongSize)) { 1414 // Does it fit in a signed long? 1415 if (!Literal.isUnsigned && ResultVal[LongSize-1] == 0) 1416 Ty = Context.LongTy; 1417 else if (AllowUnsigned) 1418 Ty = Context.UnsignedLongTy; 1419 Width = LongSize; 1420 } 1421 } 1422 1423 // Finally, check long long if needed. 1424 if (Ty.isNull()) { 1425 unsigned LongLongSize = Context.Target.getLongLongWidth(); 1426 1427 // Does it fit in a unsigned long long? 1428 if (ResultVal.isIntN(LongLongSize)) { 1429 // Does it fit in a signed long long? 1430 if (!Literal.isUnsigned && ResultVal[LongLongSize-1] == 0) 1431 Ty = Context.LongLongTy; 1432 else if (AllowUnsigned) 1433 Ty = Context.UnsignedLongLongTy; 1434 Width = LongLongSize; 1435 } 1436 } 1437 1438 // If we still couldn't decide a type, we probably have something that 1439 // does not fit in a signed long long, but has no U suffix. 1440 if (Ty.isNull()) { 1441 Diag(Tok.getLocation(), diag::warn_integer_too_large_for_signed); 1442 Ty = Context.UnsignedLongLongTy; 1443 Width = Context.Target.getLongLongWidth(); 1444 } 1445 1446 if (ResultVal.getBitWidth() != Width) 1447 ResultVal.trunc(Width); 1448 } 1449 Res = new (Context) IntegerLiteral(ResultVal, Ty, Tok.getLocation()); 1450 } 1451 1452 // If this is an imaginary literal, create the ImaginaryLiteral wrapper. 1453 if (Literal.isImaginary) 1454 Res = new (Context) ImaginaryLiteral(Res, 1455 Context.getComplexType(Res->getType())); 1456 1457 return Owned(Res); 1458 } 1459 1460 Action::OwningExprResult Sema::ActOnParenExpr(SourceLocation L, 1461 SourceLocation R, ExprArg Val) { 1462 Expr *E = Val.takeAs<Expr>(); 1463 assert((E != 0) && "ActOnParenExpr() missing expr"); 1464 return Owned(new (Context) ParenExpr(L, R, E)); 1465 } 1466 1467 /// The UsualUnaryConversions() function is *not* called by this routine. 1468 /// See C99 6.3.2.1p[2-4] for more details. 1469 bool Sema::CheckSizeOfAlignOfOperand(QualType exprType, 1470 SourceLocation OpLoc, 1471 const SourceRange &ExprRange, 1472 bool isSizeof) { 1473 if (exprType->isDependentType()) 1474 return false; 1475 1476 // C99 6.5.3.4p1: 1477 if (isa<FunctionType>(exprType)) { 1478 // alignof(function) is allowed as an extension. 1479 if (isSizeof) 1480 Diag(OpLoc, diag::ext_sizeof_function_type) << ExprRange; 1481 return false; 1482 } 1483 1484 // Allow sizeof(void)/alignof(void) as an extension. 1485 if (exprType->isVoidType()) { 1486 Diag(OpLoc, diag::ext_sizeof_void_type) 1487 << (isSizeof ? "sizeof" : "__alignof") << ExprRange; 1488 return false; 1489 } 1490 1491 if (RequireCompleteType(OpLoc, exprType, 1492 isSizeof ? diag::err_sizeof_incomplete_type : 1493 diag::err_alignof_incomplete_type, 1494 ExprRange)) 1495 return true; 1496 1497 // Reject sizeof(interface) and sizeof(interface<proto>) in 64-bit mode. 1498 if (LangOpts.ObjCNonFragileABI && exprType->isObjCInterfaceType()) { 1499 Diag(OpLoc, diag::err_sizeof_nonfragile_interface) 1500 << exprType << isSizeof << ExprRange; 1501 return true; 1502 } 1503 1504 return false; 1505 } 1506 1507 bool Sema::CheckAlignOfExpr(Expr *E, SourceLocation OpLoc, 1508 const SourceRange &ExprRange) { 1509 E = E->IgnoreParens(); 1510 1511 // alignof decl is always ok. 1512 if (isa<DeclRefExpr>(E)) 1513 return false; 1514 1515 // Cannot know anything else if the expression is dependent. 1516 if (E->isTypeDependent()) 1517 return false; 1518 1519 if (E->getBitField()) { 1520 Diag(OpLoc, diag::err_sizeof_alignof_bitfield) << 1 << ExprRange; 1521 return true; 1522 } 1523 1524 // Alignment of a field access is always okay, so long as it isn't a 1525 // bit-field. 1526 if (MemberExpr *ME = dyn_cast<MemberExpr>(E)) 1527 if (isa<FieldDecl>(ME->getMemberDecl())) 1528 return false; 1529 1530 return CheckSizeOfAlignOfOperand(E->getType(), OpLoc, ExprRange, false); 1531 } 1532 1533 /// \brief Build a sizeof or alignof expression given a type operand. 1534 Action::OwningExprResult 1535 Sema::CreateSizeOfAlignOfExpr(QualType T, SourceLocation OpLoc, 1536 bool isSizeOf, SourceRange R) { 1537 if (T.isNull()) 1538 return ExprError(); 1539 1540 if (!T->isDependentType() && 1541 CheckSizeOfAlignOfOperand(T, OpLoc, R, isSizeOf)) 1542 return ExprError(); 1543 1544 // C99 6.5.3.4p4: the type (an unsigned integer type) is size_t. 1545 return Owned(new (Context) SizeOfAlignOfExpr(isSizeOf, T, 1546 Context.getSizeType(), OpLoc, 1547 R.getEnd())); 1548 } 1549 1550 /// \brief Build a sizeof or alignof expression given an expression 1551 /// operand. 1552 Action::OwningExprResult 1553 Sema::CreateSizeOfAlignOfExpr(Expr *E, SourceLocation OpLoc, 1554 bool isSizeOf, SourceRange R) { 1555 // Verify that the operand is valid. 1556 bool isInvalid = false; 1557 if (E->isTypeDependent()) { 1558 // Delay type-checking for type-dependent expressions. 1559 } else if (!isSizeOf) { 1560 isInvalid = CheckAlignOfExpr(E, OpLoc, R); 1561 } else if (E->getBitField()) { // C99 6.5.3.4p1. 1562 Diag(OpLoc, diag::err_sizeof_alignof_bitfield) << 0; 1563 isInvalid = true; 1564 } else { 1565 isInvalid = CheckSizeOfAlignOfOperand(E->getType(), OpLoc, R, true); 1566 } 1567 1568 if (isInvalid) 1569 return ExprError(); 1570 1571 // C99 6.5.3.4p4: the type (an unsigned integer type) is size_t. 1572 return Owned(new (Context) SizeOfAlignOfExpr(isSizeOf, E, 1573 Context.getSizeType(), OpLoc, 1574 R.getEnd())); 1575 } 1576 1577 /// ActOnSizeOfAlignOfExpr - Handle @c sizeof(type) and @c sizeof @c expr and 1578 /// the same for @c alignof and @c __alignof 1579 /// Note that the ArgRange is invalid if isType is false. 1580 Action::OwningExprResult 1581 Sema::ActOnSizeOfAlignOfExpr(SourceLocation OpLoc, bool isSizeof, bool isType, 1582 void *TyOrEx, const SourceRange &ArgRange) { 1583 // If error parsing type, ignore. 1584 if (TyOrEx == 0) return ExprError(); 1585 1586 if (isType) { 1587 QualType ArgTy = QualType::getFromOpaquePtr(TyOrEx); 1588 return CreateSizeOfAlignOfExpr(ArgTy, OpLoc, isSizeof, ArgRange); 1589 } 1590 1591 // Get the end location. 1592 Expr *ArgEx = (Expr *)TyOrEx; 1593 Action::OwningExprResult Result 1594 = CreateSizeOfAlignOfExpr(ArgEx, OpLoc, isSizeof, ArgEx->getSourceRange()); 1595 1596 if (Result.isInvalid()) 1597 DeleteExpr(ArgEx); 1598 1599 return move(Result); 1600 } 1601 1602 QualType Sema::CheckRealImagOperand(Expr *&V, SourceLocation Loc, bool isReal) { 1603 if (V->isTypeDependent()) 1604 return Context.DependentTy; 1605 1606 // These operators return the element type of a complex type. 1607 if (const ComplexType *CT = V->getType()->getAsComplexType()) 1608 return CT->getElementType(); 1609 1610 // Otherwise they pass through real integer and floating point types here. 1611 if (V->getType()->isArithmeticType()) 1612 return V->getType(); 1613 1614 // Reject anything else. 1615 Diag(Loc, diag::err_realimag_invalid_type) << V->getType() 1616 << (isReal ? "__real" : "__imag"); 1617 return QualType(); 1618 } 1619 1620 1621 1622 Action::OwningExprResult 1623 Sema::ActOnPostfixUnaryOp(Scope *S, SourceLocation OpLoc, 1624 tok::TokenKind Kind, ExprArg Input) { 1625 Expr *Arg = (Expr *)Input.get(); 1626 1627 UnaryOperator::Opcode Opc; 1628 switch (Kind) { 1629 default: assert(0 && "Unknown unary op!"); 1630 case tok::plusplus: Opc = UnaryOperator::PostInc; break; 1631 case tok::minusminus: Opc = UnaryOperator::PostDec; break; 1632 } 1633 1634 if (getLangOptions().CPlusPlus && 1635 (Arg->getType()->isRecordType() || Arg->getType()->isEnumeralType())) { 1636 // Which overloaded operator? 1637 OverloadedOperatorKind OverOp = 1638 (Opc == UnaryOperator::PostInc)? OO_PlusPlus : OO_MinusMinus; 1639 1640 // C++ [over.inc]p1: 1641 // 1642 // [...] If the function is a member function with one 1643 // parameter (which shall be of type int) or a non-member 1644 // function with two parameters (the second of which shall be 1645 // of type int), it defines the postfix increment operator ++ 1646 // for objects of that type. When the postfix increment is 1647 // called as a result of using the ++ operator, the int 1648 // argument will have value zero. 1649 Expr *Args[2] = { 1650 Arg, 1651 new (Context) IntegerLiteral(llvm::APInt(Context.Target.getIntWidth(), 0, 1652 /*isSigned=*/true), Context.IntTy, SourceLocation()) 1653 }; 1654 1655 // Build the candidate set for overloading 1656 OverloadCandidateSet CandidateSet; 1657 AddOperatorCandidates(OverOp, S, OpLoc, Args, 2, CandidateSet); 1658 1659 // Perform overload resolution. 1660 OverloadCandidateSet::iterator Best; 1661 switch (BestViableFunction(CandidateSet, OpLoc, Best)) { 1662 case OR_Success: { 1663 // We found a built-in operator or an overloaded operator. 1664 FunctionDecl *FnDecl = Best->Function; 1665 1666 if (FnDecl) { 1667 // We matched an overloaded operator. Build a call to that 1668 // operator. 1669 1670 // Convert the arguments. 1671 if (CXXMethodDecl *Method = dyn_cast<CXXMethodDecl>(FnDecl)) { 1672 if (PerformObjectArgumentInitialization(Arg, Method)) 1673 return ExprError(); 1674 } else { 1675 // Convert the arguments. 1676 if (PerformCopyInitialization(Arg, 1677 FnDecl->getParamDecl(0)->getType(), 1678 "passing")) 1679 return ExprError(); 1680 } 1681 1682 // Determine the result type 1683 QualType ResultTy 1684 = FnDecl->getType()->getAsFunctionType()->getResultType(); 1685 ResultTy = ResultTy.getNonReferenceType(); 1686 1687 // Build the actual expression node. 1688 Expr *FnExpr = new (Context) DeclRefExpr(FnDecl, FnDecl->getType(), 1689 SourceLocation()); 1690 UsualUnaryConversions(FnExpr); 1691 1692 Input.release(); 1693 Args[0] = Arg; 1694 return Owned(new (Context) CXXOperatorCallExpr(Context, OverOp, FnExpr, 1695 Args, 2, ResultTy, 1696 OpLoc)); 1697 } else { 1698 // We matched a built-in operator. Convert the arguments, then 1699 // break out so that we will build the appropriate built-in 1700 // operator node. 1701 if (PerformCopyInitialization(Arg, Best->BuiltinTypes.ParamTypes[0], 1702 "passing")) 1703 return ExprError(); 1704 1705 break; 1706 } 1707 } 1708 1709 case OR_No_Viable_Function: 1710 // No viable function; fall through to handling this as a 1711 // built-in operator, which will produce an error message for us. 1712 break; 1713 1714 case OR_Ambiguous: 1715 Diag(OpLoc, diag::err_ovl_ambiguous_oper) 1716 << UnaryOperator::getOpcodeStr(Opc) 1717 << Arg->getSourceRange(); 1718 PrintOverloadCandidates(CandidateSet, /*OnlyViable=*/true); 1719 return ExprError(); 1720 1721 case OR_Deleted: 1722 Diag(OpLoc, diag::err_ovl_deleted_oper) 1723 << Best->Function->isDeleted() 1724 << UnaryOperator::getOpcodeStr(Opc) 1725 << Arg->getSourceRange(); 1726 PrintOverloadCandidates(CandidateSet, /*OnlyViable=*/true); 1727 return ExprError(); 1728 } 1729 1730 // Either we found no viable overloaded operator or we matched a 1731 // built-in operator. In either case, fall through to trying to 1732 // build a built-in operation. 1733 } 1734 1735 Input.release(); 1736 Input = Arg; 1737 return CreateBuiltinUnaryOp(OpLoc, Opc, move(Input)); 1738 } 1739 1740 Action::OwningExprResult 1741 Sema::ActOnArraySubscriptExpr(Scope *S, ExprArg Base, SourceLocation LLoc, 1742 ExprArg Idx, SourceLocation RLoc) { 1743 Expr *LHSExp = static_cast<Expr*>(Base.get()), 1744 *RHSExp = static_cast<Expr*>(Idx.get()); 1745 1746 if (getLangOptions().CPlusPlus && 1747 (LHSExp->isTypeDependent() || RHSExp->isTypeDependent())) { 1748 Base.release(); 1749 Idx.release(); 1750 return Owned(new (Context) ArraySubscriptExpr(LHSExp, RHSExp, 1751 Context.DependentTy, RLoc)); 1752 } 1753 1754 if (getLangOptions().CPlusPlus && 1755 (LHSExp->getType()->isRecordType() || 1756 LHSExp->getType()->isEnumeralType() || 1757 RHSExp->getType()->isRecordType() || 1758 RHSExp->getType()->isEnumeralType())) { 1759 // Add the appropriate overloaded operators (C++ [over.match.oper]) 1760 // to the candidate set. 1761 OverloadCandidateSet CandidateSet; 1762 Expr *Args[2] = { LHSExp, RHSExp }; 1763 AddOperatorCandidates(OO_Subscript, S, LLoc, Args, 2, CandidateSet, 1764 SourceRange(LLoc, RLoc)); 1765 1766 // Perform overload resolution. 1767 OverloadCandidateSet::iterator Best; 1768 switch (BestViableFunction(CandidateSet, LLoc, Best)) { 1769 case OR_Success: { 1770 // We found a built-in operator or an overloaded operator. 1771 FunctionDecl *FnDecl = Best->Function; 1772 1773 if (FnDecl) { 1774 // We matched an overloaded operator. Build a call to that 1775 // operator. 1776 1777 // Convert the arguments. 1778 if (CXXMethodDecl *Method = dyn_cast<CXXMethodDecl>(FnDecl)) { 1779 if (PerformObjectArgumentInitialization(LHSExp, Method) || 1780 PerformCopyInitialization(RHSExp, 1781 FnDecl->getParamDecl(0)->getType(), 1782 "passing")) 1783 return ExprError(); 1784 } else { 1785 // Convert the arguments. 1786 if (PerformCopyInitialization(LHSExp, 1787 FnDecl->getParamDecl(0)->getType(), 1788 "passing") || 1789 PerformCopyInitialization(RHSExp, 1790 FnDecl->getParamDecl(1)->getType(), 1791 "passing")) 1792 return ExprError(); 1793 } 1794 1795 // Determine the result type 1796 QualType ResultTy 1797 = FnDecl->getType()->getAsFunctionType()->getResultType(); 1798 ResultTy = ResultTy.getNonReferenceType(); 1799 1800 // Build the actual expression node. 1801 Expr *FnExpr = new (Context) DeclRefExpr(FnDecl, FnDecl->getType(), 1802 SourceLocation()); 1803 UsualUnaryConversions(FnExpr); 1804 1805 Base.release(); 1806 Idx.release(); 1807 Args[0] = LHSExp; 1808 Args[1] = RHSExp; 1809 return Owned(new (Context) CXXOperatorCallExpr(Context, OO_Subscript, 1810 FnExpr, Args, 2, 1811 ResultTy, LLoc)); 1812 } else { 1813 // We matched a built-in operator. Convert the arguments, then 1814 // break out so that we will build the appropriate built-in 1815 // operator node. 1816 if (PerformCopyInitialization(LHSExp, Best->BuiltinTypes.ParamTypes[0], 1817 "passing") || 1818 PerformCopyInitialization(RHSExp, Best->BuiltinTypes.ParamTypes[1], 1819 "passing")) 1820 return ExprError(); 1821 1822 break; 1823 } 1824 } 1825 1826 case OR_No_Viable_Function: 1827 // No viable function; fall through to handling this as a 1828 // built-in operator, which will produce an error message for us. 1829 break; 1830 1831 case OR_Ambiguous: 1832 Diag(LLoc, diag::err_ovl_ambiguous_oper) 1833 << "[]" 1834 << LHSExp->getSourceRange() << RHSExp->getSourceRange(); 1835 PrintOverloadCandidates(CandidateSet, /*OnlyViable=*/true); 1836 return ExprError(); 1837 1838 case OR_Deleted: 1839 Diag(LLoc, diag::err_ovl_deleted_oper) 1840 << Best->Function->isDeleted() 1841 << "[]" 1842 << LHSExp->getSourceRange() << RHSExp->getSourceRange(); 1843 PrintOverloadCandidates(CandidateSet, /*OnlyViable=*/true); 1844 return ExprError(); 1845 } 1846 1847 // Either we found no viable overloaded operator or we matched a 1848 // built-in operator. In either case, fall through to trying to 1849 // build a built-in operation. 1850 } 1851 1852 // Perform default conversions. 1853 DefaultFunctionArrayConversion(LHSExp); 1854 DefaultFunctionArrayConversion(RHSExp); 1855 1856 QualType LHSTy = LHSExp->getType(), RHSTy = RHSExp->getType(); 1857 1858 // C99 6.5.2.1p2: the expression e1[e2] is by definition precisely equivalent 1859 // to the expression *((e1)+(e2)). This means the array "Base" may actually be 1860 // in the subscript position. As a result, we need to derive the array base 1861 // and index from the expression types. 1862 Expr *BaseExpr, *IndexExpr; 1863 QualType ResultType; 1864 if (LHSTy->isDependentType() || RHSTy->isDependentType()) { 1865 BaseExpr = LHSExp; 1866 IndexExpr = RHSExp; 1867 ResultType = Context.DependentTy; 1868 } else if (const PointerType *PTy = LHSTy->getAs<PointerType>()) { 1869 BaseExpr = LHSExp; 1870 IndexExpr = RHSExp; 1871 ResultType = PTy->getPointeeType(); 1872 } else if (const PointerType *PTy = RHSTy->getAs<PointerType>()) { 1873 // Handle the uncommon case of "123[Ptr]". 1874 BaseExpr = RHSExp; 1875 IndexExpr = LHSExp; 1876 ResultType = PTy->getPointeeType(); 1877 } else if (const ObjCObjectPointerType *PTy = 1878 LHSTy->getAsObjCObjectPointerType()) { 1879 BaseExpr = LHSExp; 1880 IndexExpr = RHSExp; 1881 ResultType = PTy->getPointeeType(); 1882 } else if (const ObjCObjectPointerType *PTy = 1883 RHSTy->getAsObjCObjectPointerType()) { 1884 // Handle the uncommon case of "123[Ptr]". 1885 BaseExpr = RHSExp; 1886 IndexExpr = LHSExp; 1887 ResultType = PTy->getPointeeType(); 1888 } else if (const VectorType *VTy = LHSTy->getAsVectorType()) { 1889 BaseExpr = LHSExp; // vectors: V[123] 1890 IndexExpr = RHSExp; 1891 1892 // FIXME: need to deal with const... 1893 ResultType = VTy->getElementType(); 1894 } else if (LHSTy->isArrayType()) { 1895 // If we see an array that wasn't promoted by 1896 // DefaultFunctionArrayConversion, it must be an array that 1897 // wasn't promoted because of the C90 rule that doesn't 1898 // allow promoting non-lvalue arrays. Warn, then 1899 // force the promotion here. 1900 Diag(LHSExp->getLocStart(), diag::ext_subscript_non_lvalue) << 1901 LHSExp->getSourceRange(); 1902 ImpCastExprToType(LHSExp, Context.getArrayDecayedType(LHSTy)); 1903 LHSTy = LHSExp->getType(); 1904 1905 BaseExpr = LHSExp; 1906 IndexExpr = RHSExp; 1907 ResultType = LHSTy->getAs<PointerType>()->getPointeeType(); 1908 } else if (RHSTy->isArrayType()) { 1909 // Same as previous, except for 123[f().a] case 1910 Diag(RHSExp->getLocStart(), diag::ext_subscript_non_lvalue) << 1911 RHSExp->getSourceRange(); 1912 ImpCastExprToType(RHSExp, Context.getArrayDecayedType(RHSTy)); 1913 RHSTy = RHSExp->getType(); 1914 1915 BaseExpr = RHSExp; 1916 IndexExpr = LHSExp; 1917 ResultType = RHSTy->getAs<PointerType>()->getPointeeType(); 1918 } else { 1919 return ExprError(Diag(LLoc, diag::err_typecheck_subscript_value) 1920 << LHSExp->getSourceRange() << RHSExp->getSourceRange()); 1921 } 1922 // C99 6.5.2.1p1 1923 if (!IndexExpr->getType()->isIntegerType() && !IndexExpr->isTypeDependent()) 1924 return ExprError(Diag(LLoc, diag::err_typecheck_subscript_not_integer) 1925 << IndexExpr->getSourceRange()); 1926 1927 // C99 6.5.2.1p1: "shall have type "pointer to *object* type". Similarly, 1928 // C++ [expr.sub]p1: The type "T" shall be a completely-defined object 1929 // type. Note that Functions are not objects, and that (in C99 parlance) 1930 // incomplete types are not object types. 1931 if (ResultType->isFunctionType()) { 1932 Diag(BaseExpr->getLocStart(), diag::err_subscript_function_type) 1933 << ResultType << BaseExpr->getSourceRange(); 1934 return ExprError(); 1935 } 1936 1937 if (!ResultType->isDependentType() && 1938 RequireCompleteType(LLoc, ResultType, diag::err_subscript_incomplete_type, 1939 BaseExpr->getSourceRange())) 1940 return ExprError(); 1941 1942 // Diagnose bad cases where we step over interface counts. 1943 if (ResultType->isObjCInterfaceType() && LangOpts.ObjCNonFragileABI) { 1944 Diag(LLoc, diag::err_subscript_nonfragile_interface) 1945 << ResultType << BaseExpr->getSourceRange(); 1946 return ExprError(); 1947 } 1948 1949 Base.release(); 1950 Idx.release(); 1951 return Owned(new (Context) ArraySubscriptExpr(LHSExp, RHSExp, 1952 ResultType, RLoc)); 1953 } 1954 1955 QualType Sema:: 1956 CheckExtVectorComponent(QualType baseType, SourceLocation OpLoc, 1957 IdentifierInfo &CompName, SourceLocation CompLoc) { 1958 const ExtVectorType *vecType = baseType->getAsExtVectorType(); 1959 1960 // The vector accessor can't exceed the number of elements. 1961 const char *compStr = CompName.getName(); 1962 1963 // This flag determines whether or not the component is one of the four 1964 // special names that indicate a subset of exactly half the elements are 1965 // to be selected. 1966 bool HalvingSwizzle = false; 1967 1968 // This flag determines whether or not CompName has an 's' char prefix, 1969 // indicating that it is a string of hex values to be used as vector indices. 1970 bool HexSwizzle = *compStr == 's' || *compStr == 'S'; 1971 1972 // Check that we've found one of the special components, or that the component 1973 // names must come from the same set. 1974 if (!strcmp(compStr, "hi") || !strcmp(compStr, "lo") || 1975 !strcmp(compStr, "even") || !strcmp(compStr, "odd")) { 1976 HalvingSwizzle = true; 1977 } else if (vecType->getPointAccessorIdx(*compStr) != -1) { 1978 do 1979 compStr++; 1980 while (*compStr && vecType->getPointAccessorIdx(*compStr) != -1); 1981 } else if (HexSwizzle || vecType->getNumericAccessorIdx(*compStr) != -1) { 1982 do 1983 compStr++; 1984 while (*compStr && vecType->getNumericAccessorIdx(*compStr) != -1); 1985 } 1986 1987 if (!HalvingSwizzle && *compStr) { 1988 // We didn't get to the end of the string. This means the component names 1989 // didn't come from the same set *or* we encountered an illegal name. 1990 Diag(OpLoc, diag::err_ext_vector_component_name_illegal) 1991 << std::string(compStr,compStr+1) << SourceRange(CompLoc); 1992 return QualType(); 1993 } 1994 1995 // Ensure no component accessor exceeds the width of the vector type it 1996 // operates on. 1997 if (!HalvingSwizzle) { 1998 compStr = CompName.getName(); 1999 2000 if (HexSwizzle) 2001 compStr++; 2002 2003 while (*compStr) { 2004 if (!vecType->isAccessorWithinNumElements(*compStr++)) { 2005 Diag(OpLoc, diag::err_ext_vector_component_exceeds_length) 2006 << baseType << SourceRange(CompLoc); 2007 return QualType(); 2008 } 2009 } 2010 } 2011 2012 // If this is a halving swizzle, verify that the base type has an even 2013 // number of elements. 2014 if (HalvingSwizzle && (vecType->getNumElements() & 1U)) { 2015 Diag(OpLoc, diag::err_ext_vector_component_requires_even) 2016 << baseType << SourceRange(CompLoc); 2017 return QualType(); 2018 } 2019 2020 // The component accessor looks fine - now we need to compute the actual type. 2021 // The vector type is implied by the component accessor. For example, 2022 // vec4.b is a float, vec4.xy is a vec2, vec4.rgb is a vec3, etc. 2023 // vec4.s0 is a float, vec4.s23 is a vec3, etc. 2024 // vec4.hi, vec4.lo, vec4.e, and vec4.o all return vec2. 2025 unsigned CompSize = HalvingSwizzle ? vecType->getNumElements() / 2 2026 : CompName.getLength(); 2027 if (HexSwizzle) 2028 CompSize--; 2029 2030 if (CompSize == 1) 2031 return vecType->getElementType(); 2032 2033 QualType VT = Context.getExtVectorType(vecType->getElementType(), CompSize); 2034 // Now look up the TypeDefDecl from the vector type. Without this, 2035 // diagostics look bad. We want extended vector types to appear built-in. 2036 for (unsigned i = 0, E = ExtVectorDecls.size(); i != E; ++i) { 2037 if (ExtVectorDecls[i]->getUnderlyingType() == VT) 2038 return Context.getTypedefType(ExtVectorDecls[i]); 2039 } 2040 return VT; // should never get here (a typedef type should always be found). 2041 } 2042 2043 static Decl *FindGetterNameDeclFromProtocolList(const ObjCProtocolDecl*PDecl, 2044 IdentifierInfo &Member, 2045 const Selector &Sel, 2046 ASTContext &Context) { 2047 2048 if (ObjCPropertyDecl *PD = PDecl->FindPropertyDeclaration(&Member)) 2049 return PD; 2050 if (ObjCMethodDecl *OMD = PDecl->getInstanceMethod(Sel)) 2051 return OMD; 2052 2053 for (ObjCProtocolDecl::protocol_iterator I = PDecl->protocol_begin(), 2054 E = PDecl->protocol_end(); I != E; ++I) { 2055 if (Decl *D = FindGetterNameDeclFromProtocolList(*I, Member, Sel, 2056 Context)) 2057 return D; 2058 } 2059 return 0; 2060 } 2061 2062 static Decl *FindGetterNameDecl(const ObjCObjectPointerType *QIdTy, 2063 IdentifierInfo &Member, 2064 const Selector &Sel, 2065 ASTContext &Context) { 2066 // Check protocols on qualified interfaces. 2067 Decl *GDecl = 0; 2068 for (ObjCObjectPointerType::qual_iterator I = QIdTy->qual_begin(), 2069 E = QIdTy->qual_end(); I != E; ++I) { 2070 if (ObjCPropertyDecl *PD = (*I)->FindPropertyDeclaration(&Member)) { 2071 GDecl = PD; 2072 break; 2073 } 2074 // Also must look for a getter name which uses property syntax. 2075 if (ObjCMethodDecl *OMD = (*I)->getInstanceMethod(Sel)) { 2076 GDecl = OMD; 2077 break; 2078 } 2079 } 2080 if (!GDecl) { 2081 for (ObjCObjectPointerType::qual_iterator I = QIdTy->qual_begin(), 2082 E = QIdTy->qual_end(); I != E; ++I) { 2083 // Search in the protocol-qualifier list of current protocol. 2084 GDecl = FindGetterNameDeclFromProtocolList(*I, Member, Sel, Context); 2085 if (GDecl) 2086 return GDecl; 2087 } 2088 } 2089 return GDecl; 2090 } 2091 2092 /// FindMethodInNestedImplementations - Look up a method in current and 2093 /// all base class implementations. 2094 /// 2095 ObjCMethodDecl *Sema::FindMethodInNestedImplementations( 2096 const ObjCInterfaceDecl *IFace, 2097 const Selector &Sel) { 2098 ObjCMethodDecl *Method = 0; 2099 if (ObjCImplementationDecl *ImpDecl = IFace->getImplementation()) 2100 Method = ImpDecl->getInstanceMethod(Sel); 2101 2102 if (!Method && IFace->getSuperClass()) 2103 return FindMethodInNestedImplementations(IFace->getSuperClass(), Sel); 2104 return Method; 2105 } 2106 2107 Action::OwningExprResult 2108 Sema::ActOnMemberReferenceExpr(Scope *S, ExprArg Base, SourceLocation OpLoc, 2109 tok::TokenKind OpKind, SourceLocation MemberLoc, 2110 IdentifierInfo &Member, 2111 DeclPtrTy ObjCImpDecl) { 2112 Expr *BaseExpr = Base.takeAs<Expr>(); 2113 assert(BaseExpr && "no record expression"); 2114 2115 // Perform default conversions. 2116 DefaultFunctionArrayConversion(BaseExpr); 2117 2118 QualType BaseType = BaseExpr->getType(); 2119 assert(!BaseType.isNull() && "no type for member expression"); 2120 2121 // Get the type being accessed in BaseType. If this is an arrow, the BaseExpr 2122 // must have pointer type, and the accessed type is the pointee. 2123 if (OpKind == tok::arrow) { 2124 if (BaseType->isDependentType()) 2125 return Owned(new (Context) CXXUnresolvedMemberExpr(Context, 2126 BaseExpr, true, 2127 OpLoc, 2128 DeclarationName(&Member), 2129 MemberLoc)); 2130 else if (const PointerType *PT = BaseType->getAs<PointerType>()) 2131 BaseType = PT->getPointeeType(); 2132 else if (BaseType->isObjCObjectPointerType()) 2133 ; 2134 else if (getLangOptions().CPlusPlus && BaseType->isRecordType()) 2135 return Owned(BuildOverloadedArrowExpr(S, BaseExpr, OpLoc, 2136 MemberLoc, Member)); 2137 else 2138 return ExprError(Diag(MemberLoc, 2139 diag::err_typecheck_member_reference_arrow) 2140 << BaseType << BaseExpr->getSourceRange()); 2141 } else { 2142 if (BaseType->isDependentType()) { 2143 // Require that the base type isn't a pointer type 2144 // (so we'll report an error for) 2145 // T* t; 2146 // t.f; 2147 // 2148 // In Obj-C++, however, the above expression is valid, since it could be 2149 // accessing the 'f' property if T is an Obj-C interface. The extra check 2150 // allows this, while still reporting an error if T is a struct pointer. 2151 const PointerType *PT = BaseType->getAs<PointerType>(); 2152 2153 if (!PT || (getLangOptions().ObjC1 && 2154 !PT->getPointeeType()->isRecordType())) 2155 return Owned(new (Context) CXXUnresolvedMemberExpr(Context, 2156 BaseExpr, false, 2157 OpLoc, 2158 DeclarationName(&Member), 2159 MemberLoc)); 2160 } 2161 } 2162 2163 // Handle field access to simple records. This also handles access to fields 2164 // of the ObjC 'id' struct. 2165 if (const RecordType *RTy = BaseType->getAs<RecordType>()) { 2166 RecordDecl *RDecl = RTy->getDecl(); 2167 if (RequireCompleteType(OpLoc, BaseType, 2168 diag::err_typecheck_incomplete_tag, 2169 BaseExpr->getSourceRange())) 2170 return ExprError(); 2171 2172 // The record definition is complete, now make sure the member is valid. 2173 // FIXME: Qualified name lookup for C++ is a bit more complicated than this. 2174 LookupResult Result 2175 = LookupQualifiedName(RDecl, DeclarationName(&Member), 2176 LookupMemberName, false); 2177 2178 if (!Result) 2179 return ExprError(Diag(MemberLoc, diag::err_typecheck_no_member) 2180 << &Member << BaseExpr->getSourceRange()); 2181 if (Result.isAmbiguous()) { 2182 DiagnoseAmbiguousLookup(Result, DeclarationName(&Member), 2183 MemberLoc, BaseExpr->getSourceRange()); 2184 return ExprError(); 2185 } 2186 2187 NamedDecl *MemberDecl = Result; 2188 2189 // If the decl being referenced had an error, return an error for this 2190 // sub-expr without emitting another error, in order to avoid cascading 2191 // error cases. 2192 if (MemberDecl->isInvalidDecl()) 2193 return ExprError(); 2194 2195 // Check the use of this field 2196 if (DiagnoseUseOfDecl(MemberDecl, MemberLoc)) 2197 return ExprError(); 2198 2199 if (FieldDecl *FD = dyn_cast<FieldDecl>(MemberDecl)) { 2200 // We may have found a field within an anonymous union or struct 2201 // (C++ [class.union]). 2202 if (cast<RecordDecl>(FD->getDeclContext())->isAnonymousStructOrUnion()) 2203 return BuildAnonymousStructUnionMemberReference(MemberLoc, FD, 2204 BaseExpr, OpLoc); 2205 2206 // Figure out the type of the member; see C99 6.5.2.3p3, C++ [expr.ref] 2207 QualType MemberType = FD->getType(); 2208 if (const ReferenceType *Ref = MemberType->getAs<ReferenceType>()) 2209 MemberType = Ref->getPointeeType(); 2210 else { 2211 unsigned BaseAddrSpace = BaseType.getAddressSpace(); 2212 unsigned combinedQualifiers = 2213 MemberType.getCVRQualifiers() | BaseType.getCVRQualifiers(); 2214 if (FD->isMutable()) 2215 combinedQualifiers &= ~QualType::Const; 2216 MemberType = MemberType.getQualifiedType(combinedQualifiers); 2217 if (BaseAddrSpace != MemberType.getAddressSpace()) 2218 MemberType = Context.getAddrSpaceQualType(MemberType, BaseAddrSpace); 2219 } 2220 2221 MarkDeclarationReferenced(MemberLoc, FD); 2222 if (PerformObjectMemberConversion(BaseExpr, FD)) 2223 return ExprError(); 2224 return Owned(new (Context) MemberExpr(BaseExpr, OpKind == tok::arrow, FD, 2225 MemberLoc, MemberType)); 2226 } 2227 2228 if (VarDecl *Var = dyn_cast<VarDecl>(MemberDecl)) { 2229 MarkDeclarationReferenced(MemberLoc, MemberDecl); 2230 return Owned(new (Context) MemberExpr(BaseExpr, OpKind == tok::arrow, 2231 Var, MemberLoc, 2232 Var->getType().getNonReferenceType())); 2233 } 2234 if (FunctionDecl *MemberFn = dyn_cast<FunctionDecl>(MemberDecl)) { 2235 MarkDeclarationReferenced(MemberLoc, MemberDecl); 2236 return Owned(new (Context) MemberExpr(BaseExpr, OpKind == tok::arrow, 2237 MemberFn, MemberLoc, 2238 MemberFn->getType())); 2239 } 2240 if (OverloadedFunctionDecl *Ovl 2241 = dyn_cast<OverloadedFunctionDecl>(MemberDecl)) 2242 return Owned(new (Context) MemberExpr(BaseExpr, OpKind == tok::arrow, Ovl, 2243 MemberLoc, Context.OverloadTy)); 2244 if (EnumConstantDecl *Enum = dyn_cast<EnumConstantDecl>(MemberDecl)) { 2245 MarkDeclarationReferenced(MemberLoc, MemberDecl); 2246 return Owned(new (Context) MemberExpr(BaseExpr, OpKind == tok::arrow, 2247 Enum, MemberLoc, Enum->getType())); 2248 } 2249 if (isa<TypeDecl>(MemberDecl)) 2250 return ExprError(Diag(MemberLoc,diag::err_typecheck_member_reference_type) 2251 << DeclarationName(&Member) << int(OpKind == tok::arrow)); 2252 2253 // We found a declaration kind that we didn't expect. This is a 2254 // generic error message that tells the user that she can't refer 2255 // to this member with '.' or '->'. 2256 return ExprError(Diag(MemberLoc, 2257 diag::err_typecheck_member_reference_unknown) 2258 << DeclarationName(&Member) << int(OpKind == tok::arrow)); 2259 } 2260 2261 // Handle properties on ObjC 'Class' types. 2262 if (OpKind == tok::period && BaseType->isObjCClassType()) { 2263 // Also must look for a getter name which uses property syntax. 2264 Selector Sel = PP.getSelectorTable().getNullarySelector(&Member); 2265 if (ObjCMethodDecl *MD = getCurMethodDecl()) { 2266 ObjCInterfaceDecl *IFace = MD->getClassInterface(); 2267 ObjCMethodDecl *Getter; 2268 // FIXME: need to also look locally in the implementation. 2269 if ((Getter = IFace->lookupClassMethod(Sel))) { 2270 // Check the use of this method. 2271 if (DiagnoseUseOfDecl(Getter, MemberLoc)) 2272 return ExprError(); 2273 } 2274 // If we found a getter then this may be a valid dot-reference, we 2275 // will look for the matching setter, in case it is needed. 2276 Selector SetterSel = 2277 SelectorTable::constructSetterName(PP.getIdentifierTable(), 2278 PP.getSelectorTable(), &Member); 2279 ObjCMethodDecl *Setter = IFace->lookupClassMethod(SetterSel); 2280 if (!Setter) { 2281 // If this reference is in an @implementation, also check for 'private' 2282 // methods. 2283 Setter = FindMethodInNestedImplementations(IFace, SetterSel); 2284 } 2285 // Look through local category implementations associated with the class. 2286 if (!Setter) 2287 Setter = IFace->getCategoryClassMethod(SetterSel); 2288 2289 if (Setter && DiagnoseUseOfDecl(Setter, MemberLoc)) 2290 return ExprError(); 2291 2292 if (Getter || Setter) { 2293 QualType PType; 2294 2295 if (Getter) 2296 PType = Getter->getResultType(); 2297 else { 2298 for (ObjCMethodDecl::param_iterator PI = Setter->param_begin(), 2299 E = Setter->param_end(); PI != E; ++PI) 2300 PType = (*PI)->getType(); 2301 } 2302 // FIXME: we must check that the setter has property type. 2303 return Owned(new (Context) ObjCKVCRefExpr(Getter, PType, 2304 Setter, MemberLoc, BaseExpr)); 2305 } 2306 return ExprError(Diag(MemberLoc, diag::err_property_not_found) 2307 << &Member << BaseType); 2308 } 2309 } 2310 // Handle access to Objective-C instance variables, such as "Obj->ivar" and 2311 // (*Obj).ivar. 2312 if ((OpKind == tok::arrow && BaseType->isObjCObjectPointerType()) || 2313 (OpKind == tok::period && BaseType->isObjCInterfaceType())) { 2314 const ObjCObjectPointerType *OPT = BaseType->getAsObjCObjectPointerType(); 2315 const ObjCInterfaceType *IFaceT = 2316 OPT ? OPT->getInterfaceType() : BaseType->getAsObjCInterfaceType(); 2317 if (IFaceT) { 2318 ObjCInterfaceDecl *IDecl = IFaceT->getDecl(); 2319 ObjCInterfaceDecl *ClassDeclared; 2320 ObjCIvarDecl *IV = IDecl->lookupInstanceVariable(&Member, ClassDeclared); 2321 2322 if (IV) { 2323 // If the decl being referenced had an error, return an error for this 2324 // sub-expr without emitting another error, in order to avoid cascading 2325 // error cases. 2326 if (IV->isInvalidDecl()) 2327 return ExprError(); 2328 2329 // Check whether we can reference this field. 2330 if (DiagnoseUseOfDecl(IV, MemberLoc)) 2331 return ExprError(); 2332 if (IV->getAccessControl() != ObjCIvarDecl::Public && 2333 IV->getAccessControl() != ObjCIvarDecl::Package) { 2334 ObjCInterfaceDecl *ClassOfMethodDecl = 0; 2335 if (ObjCMethodDecl *MD = getCurMethodDecl()) 2336 ClassOfMethodDecl = MD->getClassInterface(); 2337 else if (ObjCImpDecl && getCurFunctionDecl()) { 2338 // Case of a c-function declared inside an objc implementation. 2339 // FIXME: For a c-style function nested inside an objc implementation 2340 // class, there is no implementation context available, so we pass 2341 // down the context as argument to this routine. Ideally, this context 2342 // need be passed down in the AST node and somehow calculated from the 2343 // AST for a function decl. 2344 Decl *ImplDecl = ObjCImpDecl.getAs<Decl>(); 2345 if (ObjCImplementationDecl *IMPD = 2346 dyn_cast<ObjCImplementationDecl>(ImplDecl)) 2347 ClassOfMethodDecl = IMPD->getClassInterface(); 2348 else if (ObjCCategoryImplDecl* CatImplClass = 2349 dyn_cast<ObjCCategoryImplDecl>(ImplDecl)) 2350 ClassOfMethodDecl = CatImplClass->getClassInterface(); 2351 } 2352 2353 if (IV->getAccessControl() == ObjCIvarDecl::Private) { 2354 if (ClassDeclared != IDecl || 2355 ClassOfMethodDecl != ClassDeclared) 2356 Diag(MemberLoc, diag::error_private_ivar_access) 2357 << IV->getDeclName(); 2358 } 2359 // @protected 2360 else if (!IDecl->isSuperClassOf(ClassOfMethodDecl)) 2361 Diag(MemberLoc, diag::error_protected_ivar_access) 2362 << IV->getDeclName(); 2363 } 2364 2365 return Owned(new (Context) ObjCIvarRefExpr(IV, IV->getType(), 2366 MemberLoc, BaseExpr, 2367 OpKind == tok::arrow)); 2368 } 2369 return ExprError(Diag(MemberLoc, diag::err_typecheck_member_reference_ivar) 2370 << IDecl->getDeclName() << &Member 2371 << BaseExpr->getSourceRange()); 2372 } 2373 // We have an 'id' type. Rather than fall through, we check if this 2374 // is a reference to 'isa'. 2375 if (Member.isStr("isa")) 2376 return Owned(new (Context) ObjCIsaExpr(BaseExpr, true, MemberLoc, 2377 Context.getObjCIdType())); 2378 } 2379 // Handle properties on 'id' and qualified "id". 2380 if (OpKind == tok::period && (BaseType->isObjCIdType() || 2381 BaseType->isObjCQualifiedIdType())) { 2382 const ObjCObjectPointerType *QIdTy = BaseType->getAsObjCObjectPointerType(); 2383 2384 // Check protocols on qualified interfaces. 2385 Selector Sel = PP.getSelectorTable().getNullarySelector(&Member); 2386 if (Decl *PMDecl = FindGetterNameDecl(QIdTy, Member, Sel, Context)) { 2387 if (ObjCPropertyDecl *PD = dyn_cast<ObjCPropertyDecl>(PMDecl)) { 2388 // Check the use of this declaration 2389 if (DiagnoseUseOfDecl(PD, MemberLoc)) 2390 return ExprError(); 2391 2392 return Owned(new (Context) ObjCPropertyRefExpr(PD, PD->getType(), 2393 MemberLoc, BaseExpr)); 2394 } 2395 if (ObjCMethodDecl *OMD = dyn_cast<ObjCMethodDecl>(PMDecl)) { 2396 // Check the use of this method. 2397 if (DiagnoseUseOfDecl(OMD, MemberLoc)) 2398 return ExprError(); 2399 2400 return Owned(new (Context) ObjCMessageExpr(BaseExpr, Sel, 2401 OMD->getResultType(), 2402 OMD, OpLoc, MemberLoc, 2403 NULL, 0)); 2404 } 2405 } 2406 2407 return ExprError(Diag(MemberLoc, diag::err_property_not_found) 2408 << &Member << BaseType); 2409 } 2410 // Handle Objective-C property access, which is "Obj.property" where Obj is a 2411 // pointer to a (potentially qualified) interface type. 2412 const ObjCObjectPointerType *OPT; 2413 if (OpKind == tok::period && 2414 (OPT = BaseType->getAsObjCInterfacePointerType())) { 2415 const ObjCInterfaceType *IFaceT = OPT->getInterfaceType(); 2416 ObjCInterfaceDecl *IFace = IFaceT->getDecl(); 2417 2418 // Search for a declared property first. 2419 if (ObjCPropertyDecl *PD = IFace->FindPropertyDeclaration(&Member)) { 2420 // Check whether we can reference this property. 2421 if (DiagnoseUseOfDecl(PD, MemberLoc)) 2422 return ExprError(); 2423 QualType ResTy = PD->getType(); 2424 Selector Sel = PP.getSelectorTable().getNullarySelector(&Member); 2425 ObjCMethodDecl *Getter = IFace->lookupInstanceMethod(Sel); 2426 if (DiagnosePropertyAccessorMismatch(PD, Getter, MemberLoc)) 2427 ResTy = Getter->getResultType(); 2428 return Owned(new (Context) ObjCPropertyRefExpr(PD, ResTy, 2429 MemberLoc, BaseExpr)); 2430 } 2431 // Check protocols on qualified interfaces. 2432 for (ObjCObjectPointerType::qual_iterator I = OPT->qual_begin(), 2433 E = OPT->qual_end(); I != E; ++I) 2434 if (ObjCPropertyDecl *PD = (*I)->FindPropertyDeclaration(&Member)) { 2435 // Check whether we can reference this property. 2436 if (DiagnoseUseOfDecl(PD, MemberLoc)) 2437 return ExprError(); 2438 2439 return Owned(new (Context) ObjCPropertyRefExpr(PD, PD->getType(), 2440 MemberLoc, BaseExpr)); 2441 } 2442 for (ObjCObjectPointerType::qual_iterator I = OPT->qual_begin(), 2443 E = OPT->qual_end(); I != E; ++I) 2444 if (ObjCPropertyDecl *PD = (*I)->FindPropertyDeclaration(&Member)) { 2445 // Check whether we can reference this property. 2446 if (DiagnoseUseOfDecl(PD, MemberLoc)) 2447 return ExprError(); 2448 2449 return Owned(new (Context) ObjCPropertyRefExpr(PD, PD->getType(), 2450 MemberLoc, BaseExpr)); 2451 } 2452 // If that failed, look for an "implicit" property by seeing if the nullary 2453 // selector is implemented. 2454 2455 // FIXME: The logic for looking up nullary and unary selectors should be 2456 // shared with the code in ActOnInstanceMessage. 2457 2458 Selector Sel = PP.getSelectorTable().getNullarySelector(&Member); 2459 ObjCMethodDecl *Getter = IFace->lookupInstanceMethod(Sel); 2460 2461 // If this reference is in an @implementation, check for 'private' methods. 2462 if (!Getter) 2463 Getter = FindMethodInNestedImplementations(IFace, Sel); 2464 2465 // Look through local category implementations associated with the class. 2466 if (!Getter) 2467 Getter = IFace->getCategoryInstanceMethod(Sel); 2468 if (Getter) { 2469 // Check if we can reference this property. 2470 if (DiagnoseUseOfDecl(Getter, MemberLoc)) 2471 return ExprError(); 2472 } 2473 // If we found a getter then this may be a valid dot-reference, we 2474 // will look for the matching setter, in case it is needed. 2475 Selector SetterSel = 2476 SelectorTable::constructSetterName(PP.getIdentifierTable(), 2477 PP.getSelectorTable(), &Member); 2478 ObjCMethodDecl *Setter = IFace->lookupInstanceMethod(SetterSel); 2479 if (!Setter) { 2480 // If this reference is in an @implementation, also check for 'private' 2481 // methods. 2482 Setter = FindMethodInNestedImplementations(IFace, SetterSel); 2483 } 2484 // Look through local category implementations associated with the class. 2485 if (!Setter) 2486 Setter = IFace->getCategoryInstanceMethod(SetterSel); 2487 2488 if (Setter && DiagnoseUseOfDecl(Setter, MemberLoc)) 2489 return ExprError(); 2490 2491 if (Getter || Setter) { 2492 QualType PType; 2493 2494 if (Getter) 2495 PType = Getter->getResultType(); 2496 else { 2497 for (ObjCMethodDecl::param_iterator PI = Setter->param_begin(), 2498 E = Setter->param_end(); PI != E; ++PI) 2499 PType = (*PI)->getType(); 2500 } 2501 // FIXME: we must check that the setter has property type. 2502 return Owned(new (Context) ObjCKVCRefExpr(Getter, PType, 2503 Setter, MemberLoc, BaseExpr)); 2504 } 2505 return ExprError(Diag(MemberLoc, diag::err_property_not_found) 2506 << &Member << BaseType); 2507 } 2508 2509 // Handle the following exceptional case (*Obj).isa. 2510 if (OpKind == tok::period && 2511 BaseType->isSpecificBuiltinType(BuiltinType::ObjCId) && 2512 Member.isStr("isa")) 2513 return Owned(new (Context) ObjCIsaExpr(BaseExpr, false, MemberLoc, 2514 Context.getObjCIdType())); 2515 2516 // Handle 'field access' to vectors, such as 'V.xx'. 2517 if (BaseType->isExtVectorType()) { 2518 QualType ret = CheckExtVectorComponent(BaseType, OpLoc, Member, MemberLoc); 2519 if (ret.isNull()) 2520 return ExprError(); 2521 return Owned(new (Context) ExtVectorElementExpr(ret, BaseExpr, Member, 2522 MemberLoc)); 2523 } 2524 2525 Diag(MemberLoc, diag::err_typecheck_member_reference_struct_union) 2526 << BaseType << BaseExpr->getSourceRange(); 2527 2528 // If the user is trying to apply -> or . to a function or function 2529 // pointer, it's probably because they forgot parentheses to call 2530 // the function. Suggest the addition of those parentheses. 2531 if (BaseType == Context.OverloadTy || 2532 BaseType->isFunctionType() || 2533 (BaseType->isPointerType() && 2534 BaseType->getAs<PointerType>()->isFunctionType())) { 2535 SourceLocation Loc = PP.getLocForEndOfToken(BaseExpr->getLocEnd()); 2536 Diag(Loc, diag::note_member_reference_needs_call) 2537 << CodeModificationHint::CreateInsertion(Loc, "()"); 2538 } 2539 2540 return ExprError(); 2541 } 2542 2543 /// ConvertArgumentsForCall - Converts the arguments specified in 2544 /// Args/NumArgs to the parameter types of the function FDecl with 2545 /// function prototype Proto. Call is the call expression itself, and 2546 /// Fn is the function expression. For a C++ member function, this 2547 /// routine does not attempt to convert the object argument. Returns 2548 /// true if the call is ill-formed. 2549 bool 2550 Sema::ConvertArgumentsForCall(CallExpr *Call, Expr *Fn, 2551 FunctionDecl *FDecl, 2552 const FunctionProtoType *Proto, 2553 Expr **Args, unsigned NumArgs, 2554 SourceLocation RParenLoc) { 2555 // C99 6.5.2.2p7 - the arguments are implicitly converted, as if by 2556 // assignment, to the types of the corresponding parameter, ... 2557 unsigned NumArgsInProto = Proto->getNumArgs(); 2558 unsigned NumArgsToCheck = NumArgs; 2559 bool Invalid = false; 2560 2561 // If too few arguments are available (and we don't have default 2562 // arguments for the remaining parameters), don't make the call. 2563 if (NumArgs < NumArgsInProto) { 2564 if (!FDecl || NumArgs < FDecl->getMinRequiredArguments()) 2565 return Diag(RParenLoc, diag::err_typecheck_call_too_few_args) 2566 << Fn->getType()->isBlockPointerType() << Fn->getSourceRange(); 2567 // Use default arguments for missing arguments 2568 NumArgsToCheck = NumArgsInProto; 2569 Call->setNumArgs(Context, NumArgsInProto); 2570 } 2571 2572 // If too many are passed and not variadic, error on the extras and drop 2573 // them. 2574 if (NumArgs > NumArgsInProto) { 2575 if (!Proto->isVariadic()) { 2576 Diag(Args[NumArgsInProto]->getLocStart(), 2577 diag::err_typecheck_call_too_many_args) 2578 << Fn->getType()->isBlockPointerType() << Fn->getSourceRange() 2579 << SourceRange(Args[NumArgsInProto]->getLocStart(), 2580 Args[NumArgs-1]->getLocEnd()); 2581 // This deletes the extra arguments. 2582 Call->setNumArgs(Context, NumArgsInProto); 2583 Invalid = true; 2584 } 2585 NumArgsToCheck = NumArgsInProto; 2586 } 2587 2588 // Continue to check argument types (even if we have too few/many args). 2589 for (unsigned i = 0; i != NumArgsToCheck; i++) { 2590 QualType ProtoArgType = Proto->getArgType(i); 2591 2592 Expr *Arg; 2593 if (i < NumArgs) { 2594 Arg = Args[i]; 2595 2596 if (RequireCompleteType(Arg->getSourceRange().getBegin(), 2597 ProtoArgType, 2598 diag::err_call_incomplete_argument, 2599 Arg->getSourceRange())) 2600 return true; 2601 2602 // Pass the argument. 2603 if (PerformCopyInitialization(Arg, ProtoArgType, "passing")) 2604 return true; 2605 } else { 2606 if (FDecl->getParamDecl(i)->hasUnparsedDefaultArg()) { 2607 Diag (Call->getSourceRange().getBegin(), 2608 diag::err_use_of_default_argument_to_function_declared_later) << 2609 FDecl << cast<CXXRecordDecl>(FDecl->getDeclContext())->getDeclName(); 2610 Diag(UnparsedDefaultArgLocs[FDecl->getParamDecl(i)], 2611 diag::note_default_argument_declared_here); 2612 } else { 2613 Expr *DefaultExpr = FDecl->getParamDecl(i)->getDefaultArg(); 2614 2615 // If the default expression creates temporaries, we need to 2616 // push them to the current stack of expression temporaries so they'll 2617 // be properly destroyed. 2618 if (CXXExprWithTemporaries *E 2619 = dyn_cast_or_null<CXXExprWithTemporaries>(DefaultExpr)) { 2620 assert(!E->shouldDestroyTemporaries() && 2621 "Can't destroy temporaries in a default argument expr!"); 2622 for (unsigned I = 0, N = E->getNumTemporaries(); I != N; ++I) 2623 ExprTemporaries.push_back(E->getTemporary(I)); 2624 } 2625 } 2626 2627 // We already type-checked the argument, so we know it works. 2628 Arg = new (Context) CXXDefaultArgExpr(FDecl->getParamDecl(i)); 2629 } 2630 2631 QualType ArgType = Arg->getType(); 2632 2633 Call->setArg(i, Arg); 2634 } 2635 2636 // If this is a variadic call, handle args passed through "...". 2637 if (Proto->isVariadic()) { 2638 VariadicCallType CallType = VariadicFunction; 2639 if (Fn->getType()->isBlockPointerType()) 2640 CallType = VariadicBlock; // Block 2641 else if (isa<MemberExpr>(Fn)) 2642 CallType = VariadicMethod; 2643 2644 // Promote the arguments (C99 6.5.2.2p7). 2645 for (unsigned i = NumArgsInProto; i != NumArgs; i++) { 2646 Expr *Arg = Args[i]; 2647 Invalid |= DefaultVariadicArgumentPromotion(Arg, CallType); 2648 Call->setArg(i, Arg); 2649 } 2650 } 2651 2652 return Invalid; 2653 } 2654 2655 /// ActOnCallExpr - Handle a call to Fn with the specified array of arguments. 2656 /// This provides the location of the left/right parens and a list of comma 2657 /// locations. 2658 Action::OwningExprResult 2659 Sema::ActOnCallExpr(Scope *S, ExprArg fn, SourceLocation LParenLoc, 2660 MultiExprArg args, 2661 SourceLocation *CommaLocs, SourceLocation RParenLoc) { 2662 unsigned NumArgs = args.size(); 2663 Expr *Fn = fn.takeAs<Expr>(); 2664 Expr **Args = reinterpret_cast<Expr**>(args.release()); 2665 assert(Fn && "no function call expression"); 2666 FunctionDecl *FDecl = NULL; 2667 NamedDecl *NDecl = NULL; 2668 DeclarationName UnqualifiedName; 2669 2670 if (getLangOptions().CPlusPlus) { 2671 // Determine whether this is a dependent call inside a C++ template, 2672 // in which case we won't do any semantic analysis now. 2673 // FIXME: Will need to cache the results of name lookup (including ADL) in 2674 // Fn. 2675 bool Dependent = false; 2676 if (Fn->isTypeDependent()) 2677 Dependent = true; 2678 else if (Expr::hasAnyTypeDependentArguments(Args, NumArgs)) 2679 Dependent = true; 2680 2681 if (Dependent) 2682 return Owned(new (Context) CallExpr(Context, Fn, Args, NumArgs, 2683 Context.DependentTy, RParenLoc)); 2684 2685 // Determine whether this is a call to an object (C++ [over.call.object]). 2686 if (Fn->getType()->isRecordType()) 2687 return Owned(BuildCallToObjectOfClassType(S, Fn, LParenLoc, Args, NumArgs, 2688 CommaLocs, RParenLoc)); 2689 2690 // Determine whether this is a call to a member function. 2691 if (MemberExpr *MemExpr = dyn_cast<MemberExpr>(Fn->IgnoreParens())) { 2692 NamedDecl *MemDecl = MemExpr->getMemberDecl(); 2693 if (isa<OverloadedFunctionDecl>(MemDecl) || 2694 isa<CXXMethodDecl>(MemDecl) || 2695 (isa<FunctionTemplateDecl>(MemDecl) && 2696 isa<CXXMethodDecl>( 2697 cast<FunctionTemplateDecl>(MemDecl)->getTemplatedDecl()))) 2698 return Owned(BuildCallToMemberFunction(S, Fn, LParenLoc, Args, NumArgs, 2699 CommaLocs, RParenLoc)); 2700 } 2701 } 2702 2703 // If we're directly calling a function, get the appropriate declaration. 2704 // Also, in C++, keep track of whether we should perform argument-dependent 2705 // lookup and whether there were any explicitly-specified template arguments. 2706 Expr *FnExpr = Fn; 2707 bool ADL = true; 2708 bool HasExplicitTemplateArgs = 0; 2709 const TemplateArgument *ExplicitTemplateArgs = 0; 2710 unsigned NumExplicitTemplateArgs = 0; 2711 while (true) { 2712 if (ImplicitCastExpr *IcExpr = dyn_cast<ImplicitCastExpr>(FnExpr)) 2713 FnExpr = IcExpr->getSubExpr(); 2714 else if (ParenExpr *PExpr = dyn_cast<ParenExpr>(FnExpr)) { 2715 // Parentheses around a function disable ADL 2716 // (C++0x [basic.lookup.argdep]p1). 2717 ADL = false; 2718 FnExpr = PExpr->getSubExpr(); 2719 } else if (isa<UnaryOperator>(FnExpr) && 2720 cast<UnaryOperator>(FnExpr)->getOpcode() 2721 == UnaryOperator::AddrOf) { 2722 FnExpr = cast<UnaryOperator>(FnExpr)->getSubExpr(); 2723 } else if (DeclRefExpr *DRExpr = dyn_cast<DeclRefExpr>(FnExpr)) { 2724 // Qualified names disable ADL (C++0x [basic.lookup.argdep]p1). 2725 ADL &= !isa<QualifiedDeclRefExpr>(DRExpr); 2726 NDecl = dyn_cast<NamedDecl>(DRExpr->getDecl()); 2727 break; 2728 } else if (UnresolvedFunctionNameExpr *DepName 2729 = dyn_cast<UnresolvedFunctionNameExpr>(FnExpr)) { 2730 UnqualifiedName = DepName->getName(); 2731 break; 2732 } else if (TemplateIdRefExpr *TemplateIdRef 2733 = dyn_cast<TemplateIdRefExpr>(FnExpr)) { 2734 NDecl = TemplateIdRef->getTemplateName().getAsTemplateDecl(); 2735 if (!NDecl) 2736 NDecl = TemplateIdRef->getTemplateName().getAsOverloadedFunctionDecl(); 2737 HasExplicitTemplateArgs = true; 2738 ExplicitTemplateArgs = TemplateIdRef->getTemplateArgs(); 2739 NumExplicitTemplateArgs = TemplateIdRef->getNumTemplateArgs(); 2740 2741 // C++ [temp.arg.explicit]p6: 2742 // [Note: For simple function names, argument dependent lookup (3.4.2) 2743 // applies even when the function name is not visible within the 2744 // scope of the call. This is because the call still has the syntactic 2745 // form of a function call (3.4.1). But when a function template with 2746 // explicit template arguments is used, the call does not have the 2747 // correct syntactic form unless there is a function template with 2748 // that name visible at the point of the call. If no such name is 2749 // visible, the call is not syntactically well-formed and 2750 // argument-dependent lookup does not apply. If some such name is 2751 // visible, argument dependent lookup applies and additional function 2752 // templates may be found in other namespaces. 2753 // 2754 // The summary of this paragraph is that, if we get to this point and the 2755 // template-id was not a qualified name, then argument-dependent lookup 2756 // is still possible. 2757 if (TemplateIdRef->getQualifier()) 2758 ADL = false; 2759 break; 2760 } else { 2761 // Any kind of name that does not refer to a declaration (or 2762 // set of declarations) disables ADL (C++0x [basic.lookup.argdep]p3). 2763 ADL = false; 2764 break; 2765 } 2766 } 2767 2768 OverloadedFunctionDecl *Ovl = 0; 2769 FunctionTemplateDecl *FunctionTemplate = 0; 2770 if (NDecl) { 2771 FDecl = dyn_cast<FunctionDecl>(NDecl); 2772 if ((FunctionTemplate = dyn_cast<FunctionTemplateDecl>(NDecl))) 2773 FDecl = FunctionTemplate->getTemplatedDecl(); 2774 else 2775 FDecl = dyn_cast<FunctionDecl>(NDecl); 2776 Ovl = dyn_cast<OverloadedFunctionDecl>(NDecl); 2777 } 2778 2779 if (Ovl || FunctionTemplate || 2780 (getLangOptions().CPlusPlus && (FDecl || UnqualifiedName))) { 2781 // We don't perform ADL for implicit declarations of builtins. 2782 if (FDecl && FDecl->getBuiltinID(Context) && FDecl->isImplicit()) 2783 ADL = false; 2784 2785 // We don't perform ADL in C. 2786 if (!getLangOptions().CPlusPlus) 2787 ADL = false; 2788 2789 if (Ovl || FunctionTemplate || ADL) { 2790 FDecl = ResolveOverloadedCallFn(Fn, NDecl, UnqualifiedName, 2791 HasExplicitTemplateArgs, 2792 ExplicitTemplateArgs, 2793 NumExplicitTemplateArgs, 2794 LParenLoc, Args, NumArgs, CommaLocs, 2795 RParenLoc, ADL); 2796 if (!FDecl) 2797 return ExprError(); 2798 2799 // Update Fn to refer to the actual function selected. 2800 Expr *NewFn = 0; 2801 if (QualifiedDeclRefExpr *QDRExpr 2802 = dyn_cast<QualifiedDeclRefExpr>(FnExpr)) 2803 NewFn = new (Context) QualifiedDeclRefExpr(FDecl, FDecl->getType(), 2804 QDRExpr->getLocation(), 2805 false, false, 2806 QDRExpr->getQualifierRange(), 2807 QDRExpr->getQualifier()); 2808 else 2809 NewFn = new (Context) DeclRefExpr(FDecl, FDecl->getType(), 2810 Fn->getSourceRange().getBegin()); 2811 Fn->Destroy(Context); 2812 Fn = NewFn; 2813 } 2814 } 2815 2816 // Promote the function operand. 2817 UsualUnaryConversions(Fn); 2818 2819 // Make the call expr early, before semantic checks. This guarantees cleanup 2820 // of arguments and function on error. 2821 ExprOwningPtr<CallExpr> TheCall(this, new (Context) CallExpr(Context, Fn, 2822 Args, NumArgs, 2823 Context.BoolTy, 2824 RParenLoc)); 2825 2826 const FunctionType *FuncT; 2827 if (!Fn->getType()->isBlockPointerType()) { 2828 // C99 6.5.2.2p1 - "The expression that denotes the called function shall 2829 // have type pointer to function". 2830 const PointerType *PT = Fn->getType()->getAs<PointerType>(); 2831 if (PT == 0) 2832 return ExprError(Diag(LParenLoc, diag::err_typecheck_call_not_function) 2833 << Fn->getType() << Fn->getSourceRange()); 2834 FuncT = PT->getPointeeType()->getAsFunctionType(); 2835 } else { // This is a block call. 2836 FuncT = Fn->getType()->getAs<BlockPointerType>()->getPointeeType()-> 2837 getAsFunctionType(); 2838 } 2839 if (FuncT == 0) 2840 return ExprError(Diag(LParenLoc, diag::err_typecheck_call_not_function) 2841 << Fn->getType() << Fn->getSourceRange()); 2842 2843 // Check for a valid return type 2844 if (!FuncT->getResultType()->isVoidType() && 2845 RequireCompleteType(Fn->getSourceRange().getBegin(), 2846 FuncT->getResultType(), 2847 diag::err_call_incomplete_return, 2848 TheCall->getSourceRange())) 2849 return ExprError(); 2850 2851 // We know the result type of the call, set it. 2852 TheCall->setType(FuncT->getResultType().getNonReferenceType()); 2853 2854 if (const FunctionProtoType *Proto = dyn_cast<FunctionProtoType>(FuncT)) { 2855 if (ConvertArgumentsForCall(&*TheCall, Fn, FDecl, Proto, Args, NumArgs, 2856 RParenLoc)) 2857 return ExprError(); 2858 } else { 2859 assert(isa<FunctionNoProtoType>(FuncT) && "Unknown FunctionType!"); 2860 2861 if (FDecl) { 2862 // Check if we have too few/too many template arguments, based 2863 // on our knowledge of the function definition. 2864 const FunctionDecl *Def = 0; 2865 if (FDecl->getBody(Def) && NumArgs != Def->param_size()) { 2866 const FunctionProtoType *Proto = 2867 Def->getType()->getAsFunctionProtoType(); 2868 if (!Proto || !(Proto->isVariadic() && NumArgs >= Def->param_size())) { 2869 Diag(RParenLoc, diag::warn_call_wrong_number_of_arguments) 2870 << (NumArgs > Def->param_size()) << FDecl << Fn->getSourceRange(); 2871 } 2872 } 2873 } 2874 2875 // Promote the arguments (C99 6.5.2.2p6). 2876 for (unsigned i = 0; i != NumArgs; i++) { 2877 Expr *Arg = Args[i]; 2878 DefaultArgumentPromotion(Arg); 2879 if (RequireCompleteType(Arg->getSourceRange().getBegin(), 2880 Arg->getType(), 2881 diag::err_call_incomplete_argument, 2882 Arg->getSourceRange())) 2883 return ExprError(); 2884 TheCall->setArg(i, Arg); 2885 } 2886 } 2887 2888 if (CXXMethodDecl *Method = dyn_cast_or_null<CXXMethodDecl>(FDecl)) 2889 if (!Method->isStatic()) 2890 return ExprError(Diag(LParenLoc, diag::err_member_call_without_object) 2891 << Fn->getSourceRange()); 2892 2893 // Check for sentinels 2894 if (NDecl) 2895 DiagnoseSentinelCalls(NDecl, LParenLoc, Args, NumArgs); 2896 // Do special checking on direct calls to functions. 2897 if (FDecl) 2898 return CheckFunctionCall(FDecl, TheCall.take()); 2899 if (NDecl) 2900 return CheckBlockCall(NDecl, TheCall.take()); 2901 2902 return Owned(TheCall.take()); 2903 } 2904 2905 Action::OwningExprResult 2906 Sema::ActOnCompoundLiteral(SourceLocation LParenLoc, TypeTy *Ty, 2907 SourceLocation RParenLoc, ExprArg InitExpr) { 2908 assert((Ty != 0) && "ActOnCompoundLiteral(): missing type"); 2909 QualType literalType = QualType::getFromOpaquePtr(Ty); 2910 // FIXME: put back this assert when initializers are worked out. 2911 //assert((InitExpr != 0) && "ActOnCompoundLiteral(): missing expression"); 2912 Expr *literalExpr = static_cast<Expr*>(InitExpr.get()); 2913 2914 if (literalType->isArrayType()) { 2915 if (literalType->isVariableArrayType()) 2916 return ExprError(Diag(LParenLoc, diag::err_variable_object_no_init) 2917 << SourceRange(LParenLoc, literalExpr->getSourceRange().getEnd())); 2918 } else if (!literalType->isDependentType() && 2919 RequireCompleteType(LParenLoc, literalType, 2920 diag::err_typecheck_decl_incomplete_type, 2921 SourceRange(LParenLoc, literalExpr->getSourceRange().getEnd()))) 2922 return ExprError(); 2923 2924 if (CheckInitializerTypes(literalExpr, literalType, LParenLoc, 2925 DeclarationName(), /*FIXME:DirectInit=*/false)) 2926 return ExprError(); 2927 2928 bool isFileScope = getCurFunctionOrMethodDecl() == 0; 2929 if (isFileScope) { // 6.5.2.5p3 2930 if (CheckForConstantInitializer(literalExpr, literalType)) 2931 return ExprError(); 2932 } 2933 InitExpr.release(); 2934 return Owned(new (Context) CompoundLiteralExpr(LParenLoc, literalType, 2935 literalExpr, isFileScope)); 2936 } 2937 2938 Action::OwningExprResult 2939 Sema::ActOnInitList(SourceLocation LBraceLoc, MultiExprArg initlist, 2940 SourceLocation RBraceLoc) { 2941 unsigned NumInit = initlist.size(); 2942 Expr **InitList = reinterpret_cast<Expr**>(initlist.release()); 2943 2944 // Semantic analysis for initializers is done by ActOnDeclarator() and 2945 // CheckInitializer() - it requires knowledge of the object being intialized. 2946 2947 InitListExpr *E = new (Context) InitListExpr(LBraceLoc, InitList, NumInit, 2948 RBraceLoc); 2949 E->setType(Context.VoidTy); // FIXME: just a place holder for now. 2950 return Owned(E); 2951 } 2952 2953 /// CheckCastTypes - Check type constraints for casting between types. 2954 bool Sema::CheckCastTypes(SourceRange TyR, QualType castType, Expr *&castExpr, 2955 bool FunctionalStyle) { 2956 if (getLangOptions().CPlusPlus) 2957 return CXXCheckCStyleCast(TyR, castType, castExpr, FunctionalStyle); 2958 2959 UsualUnaryConversions(castExpr); 2960 2961 // C99 6.5.4p2: the cast type needs to be void or scalar and the expression 2962 // type needs to be scalar. 2963 if (castType->isVoidType()) { 2964 // Cast to void allows any expr type. 2965 } else if (!castType->isScalarType() && !castType->isVectorType()) { 2966 if (Context.getCanonicalType(castType).getUnqualifiedType() == 2967 Context.getCanonicalType(castExpr->getType().getUnqualifiedType()) && 2968 (castType->isStructureType() || castType->isUnionType())) { 2969 // GCC struct/union extension: allow cast to self. 2970 // FIXME: Check that the cast destination type is complete. 2971 Diag(TyR.getBegin(), diag::ext_typecheck_cast_nonscalar) 2972 << castType << castExpr->getSourceRange(); 2973 } else if (castType->isUnionType()) { 2974 // GCC cast to union extension 2975 RecordDecl *RD = castType->getAs<RecordType>()->getDecl(); 2976 RecordDecl::field_iterator Field, FieldEnd; 2977 for (Field = RD->field_begin(), FieldEnd = RD->field_end(); 2978 Field != FieldEnd; ++Field) { 2979 if (Context.getCanonicalType(Field->getType()).getUnqualifiedType() == 2980 Context.getCanonicalType(castExpr->getType()).getUnqualifiedType()) { 2981 Diag(TyR.getBegin(), diag::ext_typecheck_cast_to_union) 2982 << castExpr->getSourceRange(); 2983 break; 2984 } 2985 } 2986 if (Field == FieldEnd) 2987 return Diag(TyR.getBegin(), diag::err_typecheck_cast_to_union_no_type) 2988 << castExpr->getType() << castExpr->getSourceRange(); 2989 } else { 2990 // Reject any other conversions to non-scalar types. 2991 return Diag(TyR.getBegin(), diag::err_typecheck_cond_expect_scalar) 2992 << castType << castExpr->getSourceRange(); 2993 } 2994 } else if (!castExpr->getType()->isScalarType() && 2995 !castExpr->getType()->isVectorType()) { 2996 return Diag(castExpr->getLocStart(), 2997 diag::err_typecheck_expect_scalar_operand) 2998 << castExpr->getType() << castExpr->getSourceRange(); 2999 } else if (castType->isExtVectorType()) { 3000 if (CheckExtVectorCast(TyR, castType, castExpr->getType())) 3001 return true; 3002 } else if (castType->isVectorType()) { 3003 if (CheckVectorCast(TyR, castType, castExpr->getType())) 3004 return true; 3005 } else if (castExpr->getType()->isVectorType()) { 3006 if (CheckVectorCast(TyR, castExpr->getType(), castType)) 3007 return true; 3008 } else if (getLangOptions().ObjC1 && isa<ObjCSuperExpr>(castExpr)) { 3009 return Diag(castExpr->getLocStart(), diag::err_illegal_super_cast) << TyR; 3010 } else if (!castType->isArithmeticType()) { 3011 QualType castExprType = castExpr->getType(); 3012 if (!castExprType->isIntegralType() && castExprType->isArithmeticType()) 3013 return Diag(castExpr->getLocStart(), 3014 diag::err_cast_pointer_from_non_pointer_int) 3015 << castExprType << castExpr->getSourceRange(); 3016 } else if (!castExpr->getType()->isArithmeticType()) { 3017 if (!castType->isIntegralType() && castType->isArithmeticType()) 3018 return Diag(castExpr->getLocStart(), 3019 diag::err_cast_pointer_to_non_pointer_int) 3020 << castType << castExpr->getSourceRange(); 3021 } 3022 if (isa<ObjCSelectorExpr>(castExpr)) 3023 return Diag(castExpr->getLocStart(), diag::err_cast_selector_expr); 3024 return false; 3025 } 3026 3027 bool Sema::CheckVectorCast(SourceRange R, QualType VectorTy, QualType Ty) { 3028 assert(VectorTy->isVectorType() && "Not a vector type!"); 3029 3030 if (Ty->isVectorType() || Ty->isIntegerType()) { 3031 if (Context.getTypeSize(VectorTy) != Context.getTypeSize(Ty)) 3032 return Diag(R.getBegin(), 3033 Ty->isVectorType() ? 3034 diag::err_invalid_conversion_between_vectors : 3035 diag::err_invalid_conversion_between_vector_and_integer) 3036 << VectorTy << Ty << R; 3037 } else 3038 return Diag(R.getBegin(), 3039 diag::err_invalid_conversion_between_vector_and_scalar) 3040 << VectorTy << Ty << R; 3041 3042 return false; 3043 } 3044 3045 bool Sema::CheckExtVectorCast(SourceRange R, QualType DestTy, QualType SrcTy) { 3046 assert(DestTy->isExtVectorType() && "Not an extended vector type!"); 3047 3048 // If SrcTy is a VectorType, the total size must match to explicitly cast to 3049 // an ExtVectorType. 3050 if (SrcTy->isVectorType()) { 3051 if (Context.getTypeSize(DestTy) != Context.getTypeSize(SrcTy)) 3052 return Diag(R.getBegin(),diag::err_invalid_conversion_between_ext_vectors) 3053 << DestTy << SrcTy << R; 3054 return false; 3055 } 3056 3057 // All non-pointer scalars can be cast to ExtVector type. The appropriate 3058 // conversion will take place first from scalar to elt type, and then 3059 // splat from elt type to vector. 3060 if (SrcTy->isPointerType()) 3061 return Diag(R.getBegin(), 3062 diag::err_invalid_conversion_between_vector_and_scalar) 3063 << DestTy << SrcTy << R; 3064 return false; 3065 } 3066 3067 Action::OwningExprResult 3068 Sema::ActOnCastExpr(SourceLocation LParenLoc, TypeTy *Ty, 3069 SourceLocation RParenLoc, ExprArg Op) { 3070 assert((Ty != 0) && (Op.get() != 0) && 3071 "ActOnCastExpr(): missing type or expr"); 3072 3073 Expr *castExpr = Op.takeAs<Expr>(); 3074 QualType castType = QualType::getFromOpaquePtr(Ty); 3075 3076 if (CheckCastTypes(SourceRange(LParenLoc, RParenLoc), castType, castExpr)) 3077 return ExprError(); 3078 return Owned(new (Context) CStyleCastExpr(castType.getNonReferenceType(), 3079 CastExpr::CK_Unknown, castExpr, 3080 castType, LParenLoc, RParenLoc)); 3081 } 3082 3083 /// Note that lhs is not null here, even if this is the gnu "x ?: y" extension. 3084 /// In that case, lhs = cond. 3085 /// C99 6.5.15 3086 QualType Sema::CheckConditionalOperands(Expr *&Cond, Expr *&LHS, Expr *&RHS, 3087 SourceLocation QuestionLoc) { 3088 // C++ is sufficiently different to merit its own checker. 3089 if (getLangOptions().CPlusPlus) 3090 return CXXCheckConditionalOperands(Cond, LHS, RHS, QuestionLoc); 3091 3092 UsualUnaryConversions(Cond); 3093 UsualUnaryConversions(LHS); 3094 UsualUnaryConversions(RHS); 3095 QualType CondTy = Cond->getType(); 3096 QualType LHSTy = LHS->getType(); 3097 QualType RHSTy = RHS->getType(); 3098 3099 // first, check the condition. 3100 if (!CondTy->isScalarType()) { // C99 6.5.15p2 3101 Diag(Cond->getLocStart(), diag::err_typecheck_cond_expect_scalar) 3102 << CondTy; 3103 return QualType(); 3104 } 3105 3106 // Now check the two expressions. 3107 3108 // If both operands have arithmetic type, do the usual arithmetic conversions 3109 // to find a common type: C99 6.5.15p3,5. 3110 if (LHSTy->isArithmeticType() && RHSTy->isArithmeticType()) { 3111 UsualArithmeticConversions(LHS, RHS); 3112 return LHS->getType(); 3113 } 3114 3115 // If both operands are the same structure or union type, the result is that 3116 // type. 3117 if (const RecordType *LHSRT = LHSTy->getAs<RecordType>()) { // C99 6.5.15p3 3118 if (const RecordType *RHSRT = RHSTy->getAs<RecordType>()) 3119 if (LHSRT->getDecl() == RHSRT->getDecl()) 3120 // "If both the operands have structure or union type, the result has 3121 // that type." This implies that CV qualifiers are dropped. 3122 return LHSTy.getUnqualifiedType(); 3123 // FIXME: Type of conditional expression must be complete in C mode. 3124 } 3125 3126 // C99 6.5.15p5: "If both operands have void type, the result has void type." 3127 // The following || allows only one side to be void (a GCC-ism). 3128 if (LHSTy->isVoidType() || RHSTy->isVoidType()) { 3129 if (!LHSTy->isVoidType()) 3130 Diag(RHS->getLocStart(), diag::ext_typecheck_cond_one_void) 3131 << RHS->getSourceRange(); 3132 if (!RHSTy->isVoidType()) 3133 Diag(LHS->getLocStart(), diag::ext_typecheck_cond_one_void) 3134 << LHS->getSourceRange(); 3135 ImpCastExprToType(LHS, Context.VoidTy); 3136 ImpCastExprToType(RHS, Context.VoidTy); 3137 return Context.VoidTy; 3138 } 3139 // C99 6.5.15p6 - "if one operand is a null pointer constant, the result has 3140 // the type of the other operand." 3141 if ((LHSTy->isAnyPointerType() || LHSTy->isBlockPointerType()) && 3142 RHS->isNullPointerConstant(Context)) { 3143 ImpCastExprToType(RHS, LHSTy); // promote the null to a pointer. 3144 return LHSTy; 3145 } 3146 if ((RHSTy->isAnyPointerType() || RHSTy->isBlockPointerType()) && 3147 LHS->isNullPointerConstant(Context)) { 3148 ImpCastExprToType(LHS, RHSTy); // promote the null to a pointer. 3149 return RHSTy; 3150 } 3151 // Handle block pointer types. 3152 if (LHSTy->isBlockPointerType() || RHSTy->isBlockPointerType()) { 3153 if (!LHSTy->isBlockPointerType() || !RHSTy->isBlockPointerType()) { 3154 if (LHSTy->isVoidPointerType() || RHSTy->isVoidPointerType()) { 3155 QualType destType = Context.getPointerType(Context.VoidTy); 3156 ImpCastExprToType(LHS, destType); 3157 ImpCastExprToType(RHS, destType); 3158 return destType; 3159 } 3160 Diag(QuestionLoc, diag::err_typecheck_cond_incompatible_operands) 3161 << LHSTy << RHSTy << LHS->getSourceRange() << RHS->getSourceRange(); 3162 return QualType(); 3163 } 3164 // We have 2 block pointer types. 3165 if (Context.getCanonicalType(LHSTy) == Context.getCanonicalType(RHSTy)) { 3166 // Two identical block pointer types are always compatible. 3167 return LHSTy; 3168 } 3169 // The block pointer types aren't identical, continue checking. 3170 QualType lhptee = LHSTy->getAs<BlockPointerType>()->getPointeeType(); 3171 QualType rhptee = RHSTy->getAs<BlockPointerType>()->getPointeeType(); 3172 3173 if (!Context.typesAreCompatible(lhptee.getUnqualifiedType(), 3174 rhptee.getUnqualifiedType())) { 3175 Diag(QuestionLoc, diag::warn_typecheck_cond_incompatible_pointers) 3176 << LHSTy << RHSTy << LHS->getSourceRange() << RHS->getSourceRange(); 3177 // In this situation, we assume void* type. No especially good 3178 // reason, but this is what gcc does, and we do have to pick 3179 // to get a consistent AST. 3180 QualType incompatTy = Context.getPointerType(Context.VoidTy); 3181 ImpCastExprToType(LHS, incompatTy); 3182 ImpCastExprToType(RHS, incompatTy); 3183 return incompatTy; 3184 } 3185 // The block pointer types are compatible. 3186 ImpCastExprToType(LHS, LHSTy); 3187 ImpCastExprToType(RHS, LHSTy); 3188 return LHSTy; 3189 } 3190 // Check constraints for Objective-C object pointers types. 3191 if (LHSTy->isObjCObjectPointerType() && RHSTy->isObjCObjectPointerType()) { 3192 3193 if (Context.getCanonicalType(LHSTy) == Context.getCanonicalType(RHSTy)) { 3194 // Two identical object pointer types are always compatible. 3195 return LHSTy; 3196 } 3197 const ObjCObjectPointerType *LHSOPT = LHSTy->getAsObjCObjectPointerType(); 3198 const ObjCObjectPointerType *RHSOPT = RHSTy->getAsObjCObjectPointerType(); 3199 QualType compositeType = LHSTy; 3200 3201 // If both operands are interfaces and either operand can be 3202 // assigned to the other, use that type as the composite 3203 // type. This allows 3204 // xxx ? (A*) a : (B*) b 3205 // where B is a subclass of A. 3206 // 3207 // Additionally, as for assignment, if either type is 'id' 3208 // allow silent coercion. Finally, if the types are 3209 // incompatible then make sure to use 'id' as the composite 3210 // type so the result is acceptable for sending messages to. 3211 3212 // FIXME: Consider unifying with 'areComparableObjCPointerTypes'. 3213 // It could return the composite type. 3214 if (Context.canAssignObjCInterfaces(LHSOPT, RHSOPT)) { 3215 compositeType = LHSTy; 3216 } else if (Context.canAssignObjCInterfaces(RHSOPT, LHSOPT)) { 3217 compositeType = RHSTy; 3218 } else if ((LHSTy->isObjCQualifiedIdType() || 3219 RHSTy->isObjCQualifiedIdType()) && 3220 Context.ObjCQualifiedIdTypesAreCompatible(LHSTy, RHSTy, true)) { 3221 // Need to handle "id<xx>" explicitly. 3222 // GCC allows qualified id and any Objective-C type to devolve to 3223 // id. Currently localizing to here until clear this should be 3224 // part of ObjCQualifiedIdTypesAreCompatible. 3225 compositeType = Context.getObjCIdType(); 3226 } else if (LHSTy->isObjCIdType() || RHSTy->isObjCIdType()) { 3227 compositeType = Context.getObjCIdType(); 3228 } else { 3229 Diag(QuestionLoc, diag::ext_typecheck_cond_incompatible_operands) 3230 << LHSTy << RHSTy 3231 << LHS->getSourceRange() << RHS->getSourceRange(); 3232 QualType incompatTy = Context.getObjCIdType(); 3233 ImpCastExprToType(LHS, incompatTy); 3234 ImpCastExprToType(RHS, incompatTy); 3235 return incompatTy; 3236 } 3237 // The object pointer types are compatible. 3238 ImpCastExprToType(LHS, compositeType); 3239 ImpCastExprToType(RHS, compositeType); 3240 return compositeType; 3241 } 3242 // Check Objective-C object pointer types and 'void *' 3243 if (LHSTy->isVoidPointerType() && RHSTy->isObjCObjectPointerType()) { 3244 QualType lhptee = LHSTy->getAs<PointerType>()->getPointeeType(); 3245 QualType rhptee = RHSTy->getAsObjCObjectPointerType()->getPointeeType(); 3246 QualType destPointee = lhptee.getQualifiedType(rhptee.getCVRQualifiers()); 3247 QualType destType = Context.getPointerType(destPointee); 3248 ImpCastExprToType(LHS, destType); // add qualifiers if necessary 3249 ImpCastExprToType(RHS, destType); // promote to void* 3250 return destType; 3251 } 3252 if (LHSTy->isObjCObjectPointerType() && RHSTy->isVoidPointerType()) { 3253 QualType lhptee = LHSTy->getAsObjCObjectPointerType()->getPointeeType(); 3254 QualType rhptee = RHSTy->getAs<PointerType>()->getPointeeType(); 3255 QualType destPointee = rhptee.getQualifiedType(lhptee.getCVRQualifiers()); 3256 QualType destType = Context.getPointerType(destPointee); 3257 ImpCastExprToType(RHS, destType); // add qualifiers if necessary 3258 ImpCastExprToType(LHS, destType); // promote to void* 3259 return destType; 3260 } 3261 // Check constraints for C object pointers types (C99 6.5.15p3,6). 3262 if (LHSTy->isPointerType() && RHSTy->isPointerType()) { 3263 // get the "pointed to" types 3264 QualType lhptee = LHSTy->getAs<PointerType>()->getPointeeType(); 3265 QualType rhptee = RHSTy->getAs<PointerType>()->getPointeeType(); 3266 3267 // ignore qualifiers on void (C99 6.5.15p3, clause 6) 3268 if (lhptee->isVoidType() && rhptee->isIncompleteOrObjectType()) { 3269 // Figure out necessary qualifiers (C99 6.5.15p6) 3270 QualType destPointee=lhptee.getQualifiedType(rhptee.getCVRQualifiers()); 3271 QualType destType = Context.getPointerType(destPointee); 3272 ImpCastExprToType(LHS, destType); // add qualifiers if necessary 3273 ImpCastExprToType(RHS, destType); // promote to void* 3274 return destType; 3275 } 3276 if (rhptee->isVoidType() && lhptee->isIncompleteOrObjectType()) { 3277 QualType destPointee=rhptee.getQualifiedType(lhptee.getCVRQualifiers()); 3278 QualType destType = Context.getPointerType(destPointee); 3279 ImpCastExprToType(LHS, destType); // add qualifiers if necessary 3280 ImpCastExprToType(RHS, destType); // promote to void* 3281 return destType; 3282 } 3283 3284 if (Context.getCanonicalType(LHSTy) == Context.getCanonicalType(RHSTy)) { 3285 // Two identical pointer types are always compatible. 3286 return LHSTy; 3287 } 3288 if (!Context.typesAreCompatible(lhptee.getUnqualifiedType(), 3289 rhptee.getUnqualifiedType())) { 3290 Diag(QuestionLoc, diag::warn_typecheck_cond_incompatible_pointers) 3291 << LHSTy << RHSTy << LHS->getSourceRange() << RHS->getSourceRange(); 3292 // In this situation, we assume void* type. No especially good 3293 // reason, but this is what gcc does, and we do have to pick 3294 // to get a consistent AST. 3295 QualType incompatTy = Context.getPointerType(Context.VoidTy); 3296 ImpCastExprToType(LHS, incompatTy); 3297 ImpCastExprToType(RHS, incompatTy); 3298 return incompatTy; 3299 } 3300 // The pointer types are compatible. 3301 // C99 6.5.15p6: If both operands are pointers to compatible types *or* to 3302 // differently qualified versions of compatible types, the result type is 3303 // a pointer to an appropriately qualified version of the *composite* 3304 // type. 3305 // FIXME: Need to calculate the composite type. 3306 // FIXME: Need to add qualifiers 3307 ImpCastExprToType(LHS, LHSTy); 3308 ImpCastExprToType(RHS, LHSTy); 3309 return LHSTy; 3310 } 3311 3312 // GCC compatibility: soften pointer/integer mismatch. 3313 if (RHSTy->isPointerType() && LHSTy->isIntegerType()) { 3314 Diag(QuestionLoc, diag::warn_typecheck_cond_pointer_integer_mismatch) 3315 << LHSTy << RHSTy << LHS->getSourceRange() << RHS->getSourceRange(); 3316 ImpCastExprToType(LHS, RHSTy); // promote the integer to a pointer. 3317 return RHSTy; 3318 } 3319 if (LHSTy->isPointerType() && RHSTy->isIntegerType()) { 3320 Diag(QuestionLoc, diag::warn_typecheck_cond_pointer_integer_mismatch) 3321 << LHSTy << RHSTy << LHS->getSourceRange() << RHS->getSourceRange(); 3322 ImpCastExprToType(RHS, LHSTy); // promote the integer to a pointer. 3323 return LHSTy; 3324 } 3325 3326 // Otherwise, the operands are not compatible. 3327 Diag(QuestionLoc, diag::err_typecheck_cond_incompatible_operands) 3328 << LHSTy << RHSTy << LHS->getSourceRange() << RHS->getSourceRange(); 3329 return QualType(); 3330 } 3331 3332 /// ActOnConditionalOp - Parse a ?: operation. Note that 'LHS' may be null 3333 /// in the case of a the GNU conditional expr extension. 3334 Action::OwningExprResult Sema::ActOnConditionalOp(SourceLocation QuestionLoc, 3335 SourceLocation ColonLoc, 3336 ExprArg Cond, ExprArg LHS, 3337 ExprArg RHS) { 3338 Expr *CondExpr = (Expr *) Cond.get(); 3339 Expr *LHSExpr = (Expr *) LHS.get(), *RHSExpr = (Expr *) RHS.get(); 3340 3341 // If this is the gnu "x ?: y" extension, analyze the types as though the LHS 3342 // was the condition. 3343 bool isLHSNull = LHSExpr == 0; 3344 if (isLHSNull) 3345 LHSExpr = CondExpr; 3346 3347 QualType result = CheckConditionalOperands(CondExpr, LHSExpr, 3348 RHSExpr, QuestionLoc); 3349 if (result.isNull()) 3350 return ExprError(); 3351 3352 Cond.release(); 3353 LHS.release(); 3354 RHS.release(); 3355 return Owned(new (Context) ConditionalOperator(CondExpr, 3356 isLHSNull ? 0 : LHSExpr, 3357 RHSExpr, result)); 3358 } 3359 3360 // CheckPointerTypesForAssignment - This is a very tricky routine (despite 3361 // being closely modeled after the C99 spec:-). The odd characteristic of this 3362 // routine is it effectively iqnores the qualifiers on the top level pointee. 3363 // This circumvents the usual type rules specified in 6.2.7p1 & 6.7.5.[1-3]. 3364 // FIXME: add a couple examples in this comment. 3365 Sema::AssignConvertType 3366 Sema::CheckPointerTypesForAssignment(QualType lhsType, QualType rhsType) { 3367 QualType lhptee, rhptee; 3368 3369 // get the "pointed to" type (ignoring qualifiers at the top level) 3370 lhptee = lhsType->getAs<PointerType>()->getPointeeType(); 3371 rhptee = rhsType->getAs<PointerType>()->getPointeeType(); 3372 3373 // make sure we operate on the canonical type 3374 lhptee = Context.getCanonicalType(lhptee); 3375 rhptee = Context.getCanonicalType(rhptee); 3376 3377 AssignConvertType ConvTy = Compatible; 3378 3379 // C99 6.5.16.1p1: This following citation is common to constraints 3380 // 3 & 4 (below). ...and the type *pointed to* by the left has all the 3381 // qualifiers of the type *pointed to* by the right; 3382 // FIXME: Handle ExtQualType 3383 if (!lhptee.isAtLeastAsQualifiedAs(rhptee)) 3384 ConvTy = CompatiblePointerDiscardsQualifiers; 3385 3386 // C99 6.5.16.1p1 (constraint 4): If one operand is a pointer to an object or 3387 // incomplete type and the other is a pointer to a qualified or unqualified 3388 // version of void... 3389 if (lhptee->isVoidType()) { 3390 if (rhptee->isIncompleteOrObjectType()) 3391 return ConvTy; 3392 3393 // As an extension, we allow cast to/from void* to function pointer. 3394 assert(rhptee->isFunctionType()); 3395 return FunctionVoidPointer; 3396 } 3397 3398 if (rhptee->isVoidType()) { 3399 if (lhptee->isIncompleteOrObjectType()) 3400 return ConvTy; 3401 3402 // As an extension, we allow cast to/from void* to function pointer. 3403 assert(lhptee->isFunctionType()); 3404 return FunctionVoidPointer; 3405 } 3406 // C99 6.5.16.1p1 (constraint 3): both operands are pointers to qualified or 3407 // unqualified versions of compatible types, ... 3408 lhptee = lhptee.getUnqualifiedType(); 3409 rhptee = rhptee.getUnqualifiedType(); 3410 if (!Context.typesAreCompatible(lhptee, rhptee)) { 3411 // Check if the pointee types are compatible ignoring the sign. 3412 // We explicitly check for char so that we catch "char" vs 3413 // "unsigned char" on systems where "char" is unsigned. 3414 if (lhptee->isCharType()) { 3415 lhptee = Context.UnsignedCharTy; 3416 } else if (lhptee->isSignedIntegerType()) { 3417 lhptee = Context.getCorrespondingUnsignedType(lhptee); 3418 } 3419 if (rhptee->isCharType()) { 3420 rhptee = Context.UnsignedCharTy; 3421 } else if (rhptee->isSignedIntegerType()) { 3422 rhptee = Context.getCorrespondingUnsignedType(rhptee); 3423 } 3424 if (lhptee == rhptee) { 3425 // Types are compatible ignoring the sign. Qualifier incompatibility 3426 // takes priority over sign incompatibility because the sign 3427 // warning can be disabled. 3428 if (ConvTy != Compatible) 3429 return ConvTy; 3430 return IncompatiblePointerSign; 3431 } 3432 // General pointer incompatibility takes priority over qualifiers. 3433 return IncompatiblePointer; 3434 } 3435 return ConvTy; 3436 } 3437 3438 /// CheckBlockPointerTypesForAssignment - This routine determines whether two 3439 /// block pointer types are compatible or whether a block and normal pointer 3440 /// are compatible. It is more restrict than comparing two function pointer 3441 // types. 3442 Sema::AssignConvertType 3443 Sema::CheckBlockPointerTypesForAssignment(QualType lhsType, 3444 QualType rhsType) { 3445 QualType lhptee, rhptee; 3446 3447 // get the "pointed to" type (ignoring qualifiers at the top level) 3448 lhptee = lhsType->getAs<BlockPointerType>()->getPointeeType(); 3449 rhptee = rhsType->getAs<BlockPointerType>()->getPointeeType(); 3450 3451 // make sure we operate on the canonical type 3452 lhptee = Context.getCanonicalType(lhptee); 3453 rhptee = Context.getCanonicalType(rhptee); 3454 3455 AssignConvertType ConvTy = Compatible; 3456 3457 // For blocks we enforce that qualifiers are identical. 3458 if (lhptee.getCVRQualifiers() != rhptee.getCVRQualifiers()) 3459 ConvTy = CompatiblePointerDiscardsQualifiers; 3460 3461 if (!Context.typesAreCompatible(lhptee, rhptee)) 3462 return IncompatibleBlockPointer; 3463 return ConvTy; 3464 } 3465 3466 /// CheckAssignmentConstraints (C99 6.5.16) - This routine currently 3467 /// has code to accommodate several GCC extensions when type checking 3468 /// pointers. Here are some objectionable examples that GCC considers warnings: 3469 /// 3470 /// int a, *pint; 3471 /// short *pshort; 3472 /// struct foo *pfoo; 3473 /// 3474 /// pint = pshort; // warning: assignment from incompatible pointer type 3475 /// a = pint; // warning: assignment makes integer from pointer without a cast 3476 /// pint = a; // warning: assignment makes pointer from integer without a cast 3477 /// pint = pfoo; // warning: assignment from incompatible pointer type 3478 /// 3479 /// As a result, the code for dealing with pointers is more complex than the 3480 /// C99 spec dictates. 3481 /// 3482 Sema::AssignConvertType 3483 Sema::CheckAssignmentConstraints(QualType lhsType, QualType rhsType) { 3484 // Get canonical types. We're not formatting these types, just comparing 3485 // them. 3486 lhsType = Context.getCanonicalType(lhsType).getUnqualifiedType(); 3487 rhsType = Context.getCanonicalType(rhsType).getUnqualifiedType(); 3488 3489 if (lhsType == rhsType) 3490 return Compatible; // Common case: fast path an exact match. 3491 3492 // If the left-hand side is a reference type, then we are in a 3493 // (rare!) case where we've allowed the use of references in C, 3494 // e.g., as a parameter type in a built-in function. In this case, 3495 // just make sure that the type referenced is compatible with the 3496 // right-hand side type. The caller is responsible for adjusting 3497 // lhsType so that the resulting expression does not have reference 3498 // type. 3499 if (const ReferenceType *lhsTypeRef = lhsType->getAs<ReferenceType>()) { 3500 if (Context.typesAreCompatible(lhsTypeRef->getPointeeType(), rhsType)) 3501 return Compatible; 3502 return Incompatible; 3503 } 3504 // Allow scalar to ExtVector assignments, and assignments of an ExtVector type 3505 // to the same ExtVector type. 3506 if (lhsType->isExtVectorType()) { 3507 if (rhsType->isExtVectorType()) 3508 return lhsType == rhsType ? Compatible : Incompatible; 3509 if (!rhsType->isVectorType() && rhsType->isArithmeticType()) 3510 return Compatible; 3511 } 3512 3513 if (lhsType->isVectorType() || rhsType->isVectorType()) { 3514 // If we are allowing lax vector conversions, and LHS and RHS are both 3515 // vectors, the total size only needs to be the same. This is a bitcast; 3516 // no bits are changed but the result type is different. 3517 if (getLangOptions().LaxVectorConversions && 3518 lhsType->isVectorType() && rhsType->isVectorType()) { 3519 if (Context.getTypeSize(lhsType) == Context.getTypeSize(rhsType)) 3520 return IncompatibleVectors; 3521 } 3522 return Incompatible; 3523 } 3524 3525 if (lhsType->isArithmeticType() && rhsType->isArithmeticType()) 3526 return Compatible; 3527 3528 if (isa<PointerType>(lhsType)) { 3529 if (rhsType->isIntegerType()) 3530 return IntToPointer; 3531 3532 if (isa<PointerType>(rhsType)) 3533 return CheckPointerTypesForAssignment(lhsType, rhsType); 3534 3535 // In general, C pointers are not compatible with ObjC object pointers. 3536 if (isa<ObjCObjectPointerType>(rhsType)) { 3537 if (lhsType->isVoidPointerType()) // an exception to the rule. 3538 return Compatible; 3539 return IncompatiblePointer; 3540 } 3541 if (rhsType->getAs<BlockPointerType>()) { 3542 if (lhsType->getAs<PointerType>()->getPointeeType()->isVoidType()) 3543 return Compatible; 3544 3545 // Treat block pointers as objects. 3546 if (getLangOptions().ObjC1 && lhsType->isObjCIdType()) 3547 return Compatible; 3548 } 3549 return Incompatible; 3550 } 3551 3552 if (isa<BlockPointerType>(lhsType)) { 3553 if (rhsType->isIntegerType()) 3554 return IntToBlockPointer; 3555 3556 // Treat block pointers as objects. 3557 if (getLangOptions().ObjC1 && rhsType->isObjCIdType()) 3558 return Compatible; 3559 3560 if (rhsType->isBlockPointerType()) 3561 return CheckBlockPointerTypesForAssignment(lhsType, rhsType); 3562 3563 if (const PointerType *RHSPT = rhsType->getAs<PointerType>()) { 3564 if (RHSPT->getPointeeType()->isVoidType()) 3565 return Compatible; 3566 } 3567 return Incompatible; 3568 } 3569 3570 if (isa<ObjCObjectPointerType>(lhsType)) { 3571 if (rhsType->isIntegerType()) 3572 return IntToPointer; 3573 3574 // In general, C pointers are not compatible with ObjC object pointers. 3575 if (isa<PointerType>(rhsType)) { 3576 if (rhsType->isVoidPointerType()) // an exception to the rule. 3577 return Compatible; 3578 return IncompatiblePointer; 3579 } 3580 if (rhsType->isObjCObjectPointerType()) { 3581 if (lhsType->isObjCBuiltinType() || rhsType->isObjCBuiltinType()) 3582 return Compatible; 3583 if (Context.typesAreCompatible(lhsType, rhsType)) 3584 return Compatible; 3585 if (lhsType->isObjCQualifiedIdType() || rhsType->isObjCQualifiedIdType()) 3586 return IncompatibleObjCQualifiedId; 3587 return IncompatiblePointer; 3588 } 3589 if (const PointerType *RHSPT = rhsType->getAs<PointerType>()) { 3590 if (RHSPT->getPointeeType()->isVoidType()) 3591 return Compatible; 3592 } 3593 // Treat block pointers as objects. 3594 if (rhsType->isBlockPointerType()) 3595 return Compatible; 3596 return Incompatible; 3597 } 3598 if (isa<PointerType>(rhsType)) { 3599 // C99 6.5.16.1p1: the left operand is _Bool and the right is a pointer. 3600 if (lhsType == Context.BoolTy) 3601 return Compatible; 3602 3603 if (lhsType->isIntegerType()) 3604 return PointerToInt; 3605 3606 if (isa<PointerType>(lhsType)) 3607 return CheckPointerTypesForAssignment(lhsType, rhsType); 3608 3609 if (isa<BlockPointerType>(lhsType) && 3610 rhsType->getAs<PointerType>()->getPointeeType()->isVoidType()) 3611 return Compatible; 3612 return Incompatible; 3613 } 3614 if (isa<ObjCObjectPointerType>(rhsType)) { 3615 // C99 6.5.16.1p1: the left operand is _Bool and the right is a pointer. 3616 if (lhsType == Context.BoolTy) 3617 return Compatible; 3618 3619 if (lhsType->isIntegerType()) 3620 return PointerToInt; 3621 3622 // In general, C pointers are not compatible with ObjC object pointers. 3623 if (isa<PointerType>(lhsType)) { 3624 if (lhsType->isVoidPointerType()) // an exception to the rule. 3625 return Compatible; 3626 return IncompatiblePointer; 3627 } 3628 if (isa<BlockPointerType>(lhsType) && 3629 rhsType->getAs<PointerType>()->getPointeeType()->isVoidType()) 3630 return Compatible; 3631 return Incompatible; 3632 } 3633 3634 if (isa<TagType>(lhsType) && isa<TagType>(rhsType)) { 3635 if (Context.typesAreCompatible(lhsType, rhsType)) 3636 return Compatible; 3637 } 3638 return Incompatible; 3639 } 3640 3641 /// \brief Constructs a transparent union from an expression that is 3642 /// used to initialize the transparent union. 3643 static void ConstructTransparentUnion(ASTContext &C, Expr *&E, 3644 QualType UnionType, FieldDecl *Field) { 3645 // Build an initializer list that designates the appropriate member 3646 // of the transparent union. 3647 InitListExpr *Initializer = new (C) InitListExpr(SourceLocation(), 3648 &E, 1, 3649 SourceLocation()); 3650 Initializer->setType(UnionType); 3651 Initializer->setInitializedFieldInUnion(Field); 3652 3653 // Build a compound literal constructing a value of the transparent 3654 // union type from this initializer list. 3655 E = new (C) CompoundLiteralExpr(SourceLocation(), UnionType, Initializer, 3656 false); 3657 } 3658 3659 Sema::AssignConvertType 3660 Sema::CheckTransparentUnionArgumentConstraints(QualType ArgType, Expr *&rExpr) { 3661 QualType FromType = rExpr->getType(); 3662 3663 // If the ArgType is a Union type, we want to handle a potential 3664 // transparent_union GCC extension. 3665 const RecordType *UT = ArgType->getAsUnionType(); 3666 if (!UT || !UT->getDecl()->hasAttr<TransparentUnionAttr>()) 3667 return Incompatible; 3668 3669 // The field to initialize within the transparent union. 3670 RecordDecl *UD = UT->getDecl(); 3671 FieldDecl *InitField = 0; 3672 // It's compatible if the expression matches any of the fields. 3673 for (RecordDecl::field_iterator it = UD->field_begin(), 3674 itend = UD->field_end(); 3675 it != itend; ++it) { 3676 if (it->getType()->isPointerType()) { 3677 // If the transparent union contains a pointer type, we allow: 3678 // 1) void pointer 3679 // 2) null pointer constant 3680 if (FromType->isPointerType()) 3681 if (FromType->getAs<PointerType>()->getPointeeType()->isVoidType()) { 3682 ImpCastExprToType(rExpr, it->getType()); 3683 InitField = *it; 3684 break; 3685 } 3686 3687 if (rExpr->isNullPointerConstant(Context)) { 3688 ImpCastExprToType(rExpr, it->getType()); 3689 InitField = *it; 3690 break; 3691 } 3692 } 3693 3694 if (CheckAssignmentConstraints(it->getType(), rExpr->getType()) 3695 == Compatible) { 3696 InitField = *it; 3697 break; 3698 } 3699 } 3700 3701 if (!InitField) 3702 return Incompatible; 3703 3704 ConstructTransparentUnion(Context, rExpr, ArgType, InitField); 3705 return Compatible; 3706 } 3707 3708 Sema::AssignConvertType 3709 Sema::CheckSingleAssignmentConstraints(QualType lhsType, Expr *&rExpr) { 3710 if (getLangOptions().CPlusPlus) { 3711 if (!lhsType->isRecordType()) { 3712 // C++ 5.17p3: If the left operand is not of class type, the 3713 // expression is implicitly converted (C++ 4) to the 3714 // cv-unqualified type of the left operand. 3715 if (PerformImplicitConversion(rExpr, lhsType.getUnqualifiedType(), 3716 "assigning")) 3717 return Incompatible; 3718 return Compatible; 3719 } 3720 3721 // FIXME: Currently, we fall through and treat C++ classes like C 3722 // structures. 3723 } 3724 3725 // C99 6.5.16.1p1: the left operand is a pointer and the right is 3726 // a null pointer constant. 3727 if ((lhsType->isPointerType() || 3728 lhsType->isObjCObjectPointerType() || 3729 lhsType->isBlockPointerType()) 3730 && rExpr->isNullPointerConstant(Context)) { 3731 ImpCastExprToType(rExpr, lhsType); 3732 return Compatible; 3733 } 3734 3735 // This check seems unnatural, however it is necessary to ensure the proper 3736 // conversion of functions/arrays. If the conversion were done for all 3737 // DeclExpr's (created by ActOnIdentifierExpr), it would mess up the unary 3738 // expressions that surpress this implicit conversion (&, sizeof). 3739 // 3740 // Suppress this for references: C++ 8.5.3p5. 3741 if (!lhsType->isReferenceType()) 3742 DefaultFunctionArrayConversion(rExpr); 3743 3744 Sema::AssignConvertType result = 3745 CheckAssignmentConstraints(lhsType, rExpr->getType()); 3746 3747 // C99 6.5.16.1p2: The value of the right operand is converted to the 3748 // type of the assignment expression. 3749 // CheckAssignmentConstraints allows the left-hand side to be a reference, 3750 // so that we can use references in built-in functions even in C. 3751 // The getNonReferenceType() call makes sure that the resulting expression 3752 // does not have reference type. 3753 if (result != Incompatible && rExpr->getType() != lhsType) 3754 ImpCastExprToType(rExpr, lhsType.getNonReferenceType()); 3755 return result; 3756 } 3757 3758 QualType Sema::InvalidOperands(SourceLocation Loc, Expr *&lex, Expr *&rex) { 3759 Diag(Loc, diag::err_typecheck_invalid_operands) 3760 << lex->getType() << rex->getType() 3761 << lex->getSourceRange() << rex->getSourceRange(); 3762 return QualType(); 3763 } 3764 3765 inline QualType Sema::CheckVectorOperands(SourceLocation Loc, Expr *&lex, 3766 Expr *&rex) { 3767 // For conversion purposes, we ignore any qualifiers. 3768 // For example, "const float" and "float" are equivalent. 3769 QualType lhsType = 3770 Context.getCanonicalType(lex->getType()).getUnqualifiedType(); 3771 QualType rhsType = 3772 Context.getCanonicalType(rex->getType()).getUnqualifiedType(); 3773 3774 // If the vector types are identical, return. 3775 if (lhsType == rhsType) 3776 return lhsType; 3777 3778 // Handle the case of a vector & extvector type of the same size and element 3779 // type. It would be nice if we only had one vector type someday. 3780 if (getLangOptions().LaxVectorConversions) { 3781 // FIXME: Should we warn here? 3782 if (const VectorType *LV = lhsType->getAsVectorType()) { 3783 if (const VectorType *RV = rhsType->getAsVectorType()) 3784 if (LV->getElementType() == RV->getElementType() && 3785 LV->getNumElements() == RV->getNumElements()) { 3786 return lhsType->isExtVectorType() ? lhsType : rhsType; 3787 } 3788 } 3789 } 3790 3791 // Canonicalize the ExtVector to the LHS, remember if we swapped so we can 3792 // swap back (so that we don't reverse the inputs to a subtract, for instance. 3793 bool swapped = false; 3794 if (rhsType->isExtVectorType()) { 3795 swapped = true; 3796 std::swap(rex, lex); 3797 std::swap(rhsType, lhsType); 3798 } 3799 3800 // Handle the case of an ext vector and scalar. 3801 if (const ExtVectorType *LV = lhsType->getAsExtVectorType()) { 3802 QualType EltTy = LV->getElementType(); 3803 if (EltTy->isIntegralType() && rhsType->isIntegralType()) { 3804 if (Context.getIntegerTypeOrder(EltTy, rhsType) >= 0) { 3805 ImpCastExprToType(rex, lhsType); 3806 if (swapped) std::swap(rex, lex); 3807 return lhsType; 3808 } 3809 } 3810 if (EltTy->isRealFloatingType() && rhsType->isScalarType() && 3811 rhsType->isRealFloatingType()) { 3812 if (Context.getFloatingTypeOrder(EltTy, rhsType) >= 0) { 3813 ImpCastExprToType(rex, lhsType); 3814 if (swapped) std::swap(rex, lex); 3815 return lhsType; 3816 } 3817 } 3818 } 3819 3820 // Vectors of different size or scalar and non-ext-vector are errors. 3821 Diag(Loc, diag::err_typecheck_vector_not_convertable) 3822 << lex->getType() << rex->getType() 3823 << lex->getSourceRange() << rex->getSourceRange(); 3824 return QualType(); 3825 } 3826 3827 inline QualType Sema::CheckMultiplyDivideOperands( 3828 Expr *&lex, Expr *&rex, SourceLocation Loc, bool isCompAssign) 3829 { 3830 if (lex->getType()->isVectorType() || rex->getType()->isVectorType()) 3831 return CheckVectorOperands(Loc, lex, rex); 3832 3833 QualType compType = UsualArithmeticConversions(lex, rex, isCompAssign); 3834 3835 if (lex->getType()->isArithmeticType() && rex->getType()->isArithmeticType()) 3836 return compType; 3837 return InvalidOperands(Loc, lex, rex); 3838 } 3839 3840 inline QualType Sema::CheckRemainderOperands( 3841 Expr *&lex, Expr *&rex, SourceLocation Loc, bool isCompAssign) 3842 { 3843 if (lex->getType()->isVectorType() || rex->getType()->isVectorType()) { 3844 if (lex->getType()->isIntegerType() && rex->getType()->isIntegerType()) 3845 return CheckVectorOperands(Loc, lex, rex); 3846 return InvalidOperands(Loc, lex, rex); 3847 } 3848 3849 QualType compType = UsualArithmeticConversions(lex, rex, isCompAssign); 3850 3851 if (lex->getType()->isIntegerType() && rex->getType()->isIntegerType()) 3852 return compType; 3853 return InvalidOperands(Loc, lex, rex); 3854 } 3855 3856 inline QualType Sema::CheckAdditionOperands( // C99 6.5.6 3857 Expr *&lex, Expr *&rex, SourceLocation Loc, QualType* CompLHSTy) 3858 { 3859 if (lex->getType()->isVectorType() || rex->getType()->isVectorType()) { 3860 QualType compType = CheckVectorOperands(Loc, lex, rex); 3861 if (CompLHSTy) *CompLHSTy = compType; 3862 return compType; 3863 } 3864 3865 QualType compType = UsualArithmeticConversions(lex, rex, CompLHSTy); 3866 3867 // handle the common case first (both operands are arithmetic). 3868 if (lex->getType()->isArithmeticType() && 3869 rex->getType()->isArithmeticType()) { 3870 if (CompLHSTy) *CompLHSTy = compType; 3871 return compType; 3872 } 3873 3874 // Put any potential pointer into PExp 3875 Expr* PExp = lex, *IExp = rex; 3876 if (IExp->getType()->isAnyPointerType()) 3877 std::swap(PExp, IExp); 3878 3879 if (PExp->getType()->isAnyPointerType()) { 3880 3881 if (IExp->getType()->isIntegerType()) { 3882 QualType PointeeTy = PExp->getType()->getPointeeType(); 3883 3884 // Check for arithmetic on pointers to incomplete types. 3885 if (PointeeTy->isVoidType()) { 3886 if (getLangOptions().CPlusPlus) { 3887 Diag(Loc, diag::err_typecheck_pointer_arith_void_type) 3888 << lex->getSourceRange() << rex->getSourceRange(); 3889 return QualType(); 3890 } 3891 3892 // GNU extension: arithmetic on pointer to void 3893 Diag(Loc, diag::ext_gnu_void_ptr) 3894 << lex->getSourceRange() << rex->getSourceRange(); 3895 } else if (PointeeTy->isFunctionType()) { 3896 if (getLangOptions().CPlusPlus) { 3897 Diag(Loc, diag::err_typecheck_pointer_arith_function_type) 3898 << lex->getType() << lex->getSourceRange(); 3899 return QualType(); 3900 } 3901 3902 // GNU extension: arithmetic on pointer to function 3903 Diag(Loc, diag::ext_gnu_ptr_func_arith) 3904 << lex->getType() << lex->getSourceRange(); 3905 } else { 3906 // Check if we require a complete type. 3907 if (((PExp->getType()->isPointerType() && 3908 !PExp->getType()->isDependentType()) || 3909 PExp->getType()->isObjCObjectPointerType()) && 3910 RequireCompleteType(Loc, PointeeTy, 3911 diag::err_typecheck_arithmetic_incomplete_type, 3912 PExp->getSourceRange(), SourceRange(), 3913 PExp->getType())) 3914 return QualType(); 3915 } 3916 // Diagnose bad cases where we step over interface counts. 3917 if (PointeeTy->isObjCInterfaceType() && LangOpts.ObjCNonFragileABI) { 3918 Diag(Loc, diag::err_arithmetic_nonfragile_interface) 3919 << PointeeTy << PExp->getSourceRange(); 3920 return QualType(); 3921 } 3922 3923 if (CompLHSTy) { 3924 QualType LHSTy = lex->getType(); 3925 if (LHSTy->isPromotableIntegerType()) 3926 LHSTy = Context.IntTy; 3927 else { 3928 QualType T = isPromotableBitField(lex, Context); 3929 if (!T.isNull()) 3930 LHSTy = T; 3931 } 3932 3933 *CompLHSTy = LHSTy; 3934 } 3935 return PExp->getType(); 3936 } 3937 } 3938 3939 return InvalidOperands(Loc, lex, rex); 3940 } 3941 3942 // C99 6.5.6 3943 QualType Sema::CheckSubtractionOperands(Expr *&lex, Expr *&rex, 3944 SourceLocation Loc, QualType* CompLHSTy) { 3945 if (lex->getType()->isVectorType() || rex->getType()->isVectorType()) { 3946 QualType compType = CheckVectorOperands(Loc, lex, rex); 3947 if (CompLHSTy) *CompLHSTy = compType; 3948 return compType; 3949 } 3950 3951 QualType compType = UsualArithmeticConversions(lex, rex, CompLHSTy); 3952 3953 // Enforce type constraints: C99 6.5.6p3. 3954 3955 // Handle the common case first (both operands are arithmetic). 3956 if (lex->getType()->isArithmeticType() 3957 && rex->getType()->isArithmeticType()) { 3958 if (CompLHSTy) *CompLHSTy = compType; 3959 return compType; 3960 } 3961 3962 // Either ptr - int or ptr - ptr. 3963 if (lex->getType()->isAnyPointerType()) { 3964 QualType lpointee = lex->getType()->getPointeeType(); 3965 3966 // The LHS must be an completely-defined object type. 3967 3968 bool ComplainAboutVoid = false; 3969 Expr *ComplainAboutFunc = 0; 3970 if (lpointee->isVoidType()) { 3971 if (getLangOptions().CPlusPlus) { 3972 Diag(Loc, diag::err_typecheck_pointer_arith_void_type) 3973 << lex->getSourceRange() << rex->getSourceRange(); 3974 return QualType(); 3975 } 3976 3977 // GNU C extension: arithmetic on pointer to void 3978 ComplainAboutVoid = true; 3979 } else if (lpointee->isFunctionType()) { 3980 if (getLangOptions().CPlusPlus) { 3981 Diag(Loc, diag::err_typecheck_pointer_arith_function_type) 3982 << lex->getType() << lex->getSourceRange(); 3983 return QualType(); 3984 } 3985 3986 // GNU C extension: arithmetic on pointer to function 3987 ComplainAboutFunc = lex; 3988 } else if (!lpointee->isDependentType() && 3989 RequireCompleteType(Loc, lpointee, 3990 diag::err_typecheck_sub_ptr_object, 3991 lex->getSourceRange(), 3992 SourceRange(), 3993 lex->getType())) 3994 return QualType(); 3995 3996 // Diagnose bad cases where we step over interface counts. 3997 if (lpointee->isObjCInterfaceType() && LangOpts.ObjCNonFragileABI) { 3998 Diag(Loc, diag::err_arithmetic_nonfragile_interface) 3999 << lpointee << lex->getSourceRange(); 4000 return QualType(); 4001 } 4002 4003 // The result type of a pointer-int computation is the pointer type. 4004 if (rex->getType()->isIntegerType()) { 4005 if (ComplainAboutVoid) 4006 Diag(Loc, diag::ext_gnu_void_ptr) 4007 << lex->getSourceRange() << rex->getSourceRange(); 4008 if (ComplainAboutFunc) 4009 Diag(Loc, diag::ext_gnu_ptr_func_arith) 4010 << ComplainAboutFunc->getType() 4011 << ComplainAboutFunc->getSourceRange(); 4012 4013 if (CompLHSTy) *CompLHSTy = lex->getType(); 4014 return lex->getType(); 4015 } 4016 4017 // Handle pointer-pointer subtractions. 4018 if (const PointerType *RHSPTy = rex->getType()->getAs<PointerType>()) { 4019 QualType rpointee = RHSPTy->getPointeeType(); 4020 4021 // RHS must be a completely-type object type. 4022 // Handle the GNU void* extension. 4023 if (rpointee->isVoidType()) { 4024 if (getLangOptions().CPlusPlus) { 4025 Diag(Loc, diag::err_typecheck_pointer_arith_void_type) 4026 << lex->getSourceRange() << rex->getSourceRange(); 4027 return QualType(); 4028 } 4029 4030 ComplainAboutVoid = true; 4031 } else if (rpointee->isFunctionType()) { 4032 if (getLangOptions().CPlusPlus) { 4033 Diag(Loc, diag::err_typecheck_pointer_arith_function_type) 4034 << rex->getType() << rex->getSourceRange(); 4035 return QualType(); 4036 } 4037 4038 // GNU extension: arithmetic on pointer to function 4039 if (!ComplainAboutFunc) 4040 ComplainAboutFunc = rex; 4041 } else if (!rpointee->isDependentType() && 4042 RequireCompleteType(Loc, rpointee, 4043 diag::err_typecheck_sub_ptr_object, 4044 rex->getSourceRange(), 4045 SourceRange(), 4046 rex->getType())) 4047 return QualType(); 4048 4049 if (getLangOptions().CPlusPlus) { 4050 // Pointee types must be the same: C++ [expr.add] 4051 if (!Context.hasSameUnqualifiedType(lpointee, rpointee)) { 4052 Diag(Loc, diag::err_typecheck_sub_ptr_compatible) 4053 << lex->getType() << rex->getType() 4054 << lex->getSourceRange() << rex->getSourceRange(); 4055 return QualType(); 4056 } 4057 } else { 4058 // Pointee types must be compatible C99 6.5.6p3 4059 if (!Context.typesAreCompatible( 4060 Context.getCanonicalType(lpointee).getUnqualifiedType(), 4061 Context.getCanonicalType(rpointee).getUnqualifiedType())) { 4062 Diag(Loc, diag::err_typecheck_sub_ptr_compatible) 4063 << lex->getType() << rex->getType() 4064 << lex->getSourceRange() << rex->getSourceRange(); 4065 return QualType(); 4066 } 4067 } 4068 4069 if (ComplainAboutVoid) 4070 Diag(Loc, diag::ext_gnu_void_ptr) 4071 << lex->getSourceRange() << rex->getSourceRange(); 4072 if (ComplainAboutFunc) 4073 Diag(Loc, diag::ext_gnu_ptr_func_arith) 4074 << ComplainAboutFunc->getType() 4075 << ComplainAboutFunc->getSourceRange(); 4076 4077 if (CompLHSTy) *CompLHSTy = lex->getType(); 4078 return Context.getPointerDiffType(); 4079 } 4080 } 4081 4082 return InvalidOperands(Loc, lex, rex); 4083 } 4084 4085 // C99 6.5.7 4086 QualType Sema::CheckShiftOperands(Expr *&lex, Expr *&rex, SourceLocation Loc, 4087 bool isCompAssign) { 4088 // C99 6.5.7p2: Each of the operands shall have integer type. 4089 if (!lex->getType()->isIntegerType() || !rex->getType()->isIntegerType()) 4090 return InvalidOperands(Loc, lex, rex); 4091 4092 // Shifts don't perform usual arithmetic conversions, they just do integer 4093 // promotions on each operand. C99 6.5.7p3 4094 QualType LHSTy; 4095 if (lex->getType()->isPromotableIntegerType()) 4096 LHSTy = Context.IntTy; 4097 else { 4098 LHSTy = isPromotableBitField(lex, Context); 4099 if (LHSTy.isNull()) 4100 LHSTy = lex->getType(); 4101 } 4102 if (!isCompAssign) 4103 ImpCastExprToType(lex, LHSTy); 4104 4105 UsualUnaryConversions(rex); 4106 4107 // "The type of the result is that of the promoted left operand." 4108 return LHSTy; 4109 } 4110 4111 // C99 6.5.8, C++ [expr.rel] 4112 QualType Sema::CheckCompareOperands(Expr *&lex, Expr *&rex, SourceLocation Loc, 4113 unsigned OpaqueOpc, bool isRelational) { 4114 BinaryOperator::Opcode Opc = (BinaryOperator::Opcode)OpaqueOpc; 4115 4116 if (lex->getType()->isVectorType() || rex->getType()->isVectorType()) 4117 return CheckVectorCompareOperands(lex, rex, Loc, isRelational); 4118 4119 // C99 6.5.8p3 / C99 6.5.9p4 4120 if (lex->getType()->isArithmeticType() && rex->getType()->isArithmeticType()) 4121 UsualArithmeticConversions(lex, rex); 4122 else { 4123 UsualUnaryConversions(lex); 4124 UsualUnaryConversions(rex); 4125 } 4126 QualType lType = lex->getType(); 4127 QualType rType = rex->getType(); 4128 4129 if (!lType->isFloatingType() 4130 && !(lType->isBlockPointerType() && isRelational)) { 4131 // For non-floating point types, check for self-comparisons of the form 4132 // x == x, x != x, x < x, etc. These always evaluate to a constant, and 4133 // often indicate logic errors in the program. 4134 // NOTE: Don't warn about comparisons of enum constants. These can arise 4135 // from macro expansions, and are usually quite deliberate. 4136 Expr *LHSStripped = lex->IgnoreParens(); 4137 Expr *RHSStripped = rex->IgnoreParens(); 4138 if (DeclRefExpr* DRL = dyn_cast<DeclRefExpr>(LHSStripped)) 4139 if (DeclRefExpr* DRR = dyn_cast<DeclRefExpr>(RHSStripped)) 4140 if (DRL->getDecl() == DRR->getDecl() && 4141 !isa<EnumConstantDecl>(DRL->getDecl())) 4142 Diag(Loc, diag::warn_selfcomparison); 4143 4144 if (isa<CastExpr>(LHSStripped)) 4145 LHSStripped = LHSStripped->IgnoreParenCasts(); 4146 if (isa<CastExpr>(RHSStripped)) 4147 RHSStripped = RHSStripped->IgnoreParenCasts(); 4148 4149 // Warn about comparisons against a string constant (unless the other 4150 // operand is null), the user probably wants strcmp. 4151 Expr *literalString = 0; 4152 Expr *literalStringStripped = 0; 4153 if ((isa<StringLiteral>(LHSStripped) || isa<ObjCEncodeExpr>(LHSStripped)) && 4154 !RHSStripped->isNullPointerConstant(Context)) { 4155 literalString = lex; 4156 literalStringStripped = LHSStripped; 4157 } 4158 else if ((isa<StringLiteral>(RHSStripped) || 4159 isa<ObjCEncodeExpr>(RHSStripped)) && 4160 !LHSStripped->isNullPointerConstant(Context)) { 4161 literalString = rex; 4162 literalStringStripped = RHSStripped; 4163 } 4164 4165 if (literalString) { 4166 std::string resultComparison; 4167 switch (Opc) { 4168 case BinaryOperator::LT: resultComparison = ") < 0"; break; 4169 case BinaryOperator::GT: resultComparison = ") > 0"; break; 4170 case BinaryOperator::LE: resultComparison = ") <= 0"; break; 4171 case BinaryOperator::GE: resultComparison = ") >= 0"; break; 4172 case BinaryOperator::EQ: resultComparison = ") == 0"; break; 4173 case BinaryOperator::NE: resultComparison = ") != 0"; break; 4174 default: assert(false && "Invalid comparison operator"); 4175 } 4176 Diag(Loc, diag::warn_stringcompare) 4177 << isa<ObjCEncodeExpr>(literalStringStripped) 4178 << literalString->getSourceRange() 4179 << CodeModificationHint::CreateReplacement(SourceRange(Loc), ", ") 4180 << CodeModificationHint::CreateInsertion(lex->getLocStart(), 4181 "strcmp(") 4182 << CodeModificationHint::CreateInsertion( 4183 PP.getLocForEndOfToken(rex->getLocEnd()), 4184 resultComparison); 4185 } 4186 } 4187 4188 // The result of comparisons is 'bool' in C++, 'int' in C. 4189 QualType ResultTy = getLangOptions().CPlusPlus? Context.BoolTy :Context.IntTy; 4190 4191 if (isRelational) { 4192 if (lType->isRealType() && rType->isRealType()) 4193 return ResultTy; 4194 } else { 4195 // Check for comparisons of floating point operands using != and ==. 4196 if (lType->isFloatingType()) { 4197 assert(rType->isFloatingType()); 4198 CheckFloatComparison(Loc,lex,rex); 4199 } 4200 4201 if (lType->isArithmeticType() && rType->isArithmeticType()) 4202 return ResultTy; 4203 } 4204 4205 bool LHSIsNull = lex->isNullPointerConstant(Context); 4206 bool RHSIsNull = rex->isNullPointerConstant(Context); 4207 4208 // All of the following pointer related warnings are GCC extensions, except 4209 // when handling null pointer constants. One day, we can consider making them 4210 // errors (when -pedantic-errors is enabled). 4211 if (lType->isPointerType() && rType->isPointerType()) { // C99 6.5.8p2 4212 QualType LCanPointeeTy = 4213 Context.getCanonicalType(lType->getAs<PointerType>()->getPointeeType()); 4214 QualType RCanPointeeTy = 4215 Context.getCanonicalType(rType->getAs<PointerType>()->getPointeeType()); 4216 4217 if (isRelational) { 4218 if (lType->isFunctionPointerType() || rType->isFunctionPointerType()) { 4219 Diag(Loc, diag::ext_typecheck_ordered_comparison_of_function_pointers) 4220 << lType << rType << lex->getSourceRange() << rex->getSourceRange(); 4221 } 4222 if (LCanPointeeTy->isVoidType() != RCanPointeeTy->isVoidType()) { 4223 Diag(Loc, diag::ext_typecheck_comparison_of_distinct_pointers) 4224 << lType << rType << lex->getSourceRange() << rex->getSourceRange(); 4225 } 4226 } else { 4227 if (lType->isFunctionPointerType() != rType->isFunctionPointerType()) { 4228 if (!LHSIsNull && !RHSIsNull) 4229 Diag(Loc, diag::ext_typecheck_comparison_of_distinct_pointers) 4230 << lType << rType << lex->getSourceRange() << rex->getSourceRange(); 4231 } 4232 } 4233 4234 // Simple check: if the pointee types are identical, we're done. 4235 if (LCanPointeeTy == RCanPointeeTy) 4236 return ResultTy; 4237 4238 if (getLangOptions().CPlusPlus) { 4239 // C++ [expr.rel]p2: 4240 // [...] Pointer conversions (4.10) and qualification 4241 // conversions (4.4) are performed on pointer operands (or on 4242 // a pointer operand and a null pointer constant) to bring 4243 // them to their composite pointer type. [...] 4244 // 4245 // C++ [expr.eq]p2 uses the same notion for (in)equality 4246 // comparisons of pointers. 4247 QualType T = FindCompositePointerType(lex, rex); 4248 if (T.isNull()) { 4249 Diag(Loc, diag::err_typecheck_comparison_of_distinct_pointers) 4250 << lType << rType << lex->getSourceRange() << rex->getSourceRange(); 4251 return QualType(); 4252 } 4253 4254 ImpCastExprToType(lex, T); 4255 ImpCastExprToType(rex, T); 4256 return ResultTy; 4257 } 4258 4259 if (!LHSIsNull && !RHSIsNull && // C99 6.5.9p2 4260 !LCanPointeeTy->isVoidType() && !RCanPointeeTy->isVoidType() && 4261 !Context.typesAreCompatible(LCanPointeeTy.getUnqualifiedType(), 4262 RCanPointeeTy.getUnqualifiedType())) { 4263 Diag(Loc, diag::ext_typecheck_comparison_of_distinct_pointers) 4264 << lType << rType << lex->getSourceRange() << rex->getSourceRange(); 4265 } 4266 ImpCastExprToType(rex, lType); // promote the pointer to pointer 4267 return ResultTy; 4268 } 4269 // C++ allows comparison of pointers with null pointer constants. 4270 if (getLangOptions().CPlusPlus) { 4271 if (lType->isPointerType() && RHSIsNull) { 4272 ImpCastExprToType(rex, lType); 4273 return ResultTy; 4274 } 4275 if (rType->isPointerType() && LHSIsNull) { 4276 ImpCastExprToType(lex, rType); 4277 return ResultTy; 4278 } 4279 // And comparison of nullptr_t with itself. 4280 if (lType->isNullPtrType() && rType->isNullPtrType()) 4281 return ResultTy; 4282 } 4283 // Handle block pointer types. 4284 if (!isRelational && lType->isBlockPointerType() && rType->isBlockPointerType()) { 4285 QualType lpointee = lType->getAs<BlockPointerType>()->getPointeeType(); 4286 QualType rpointee = rType->getAs<BlockPointerType>()->getPointeeType(); 4287 4288 if (!LHSIsNull && !RHSIsNull && 4289 !Context.typesAreCompatible(lpointee, rpointee)) { 4290 Diag(Loc, diag::err_typecheck_comparison_of_distinct_blocks) 4291 << lType << rType << lex->getSourceRange() << rex->getSourceRange(); 4292 } 4293 ImpCastExprToType(rex, lType); // promote the pointer to pointer 4294 return ResultTy; 4295 } 4296 // Allow block pointers to be compared with null pointer constants. 4297 if (!isRelational 4298 && ((lType->isBlockPointerType() && rType->isPointerType()) 4299 || (lType->isPointerType() && rType->isBlockPointerType()))) { 4300 if (!LHSIsNull && !RHSIsNull) { 4301 if (!((rType->isPointerType() && rType->getAs<PointerType>() 4302 ->getPointeeType()->isVoidType()) 4303 || (lType->isPointerType() && lType->getAs<PointerType>() 4304 ->getPointeeType()->isVoidType()))) 4305 Diag(Loc, diag::err_typecheck_comparison_of_distinct_blocks) 4306 << lType << rType << lex->getSourceRange() << rex->getSourceRange(); 4307 } 4308 ImpCastExprToType(rex, lType); // promote the pointer to pointer 4309 return ResultTy; 4310 } 4311 4312 if ((lType->isObjCObjectPointerType() || rType->isObjCObjectPointerType())) { 4313 if (lType->isPointerType() || rType->isPointerType()) { 4314 const PointerType *LPT = lType->getAs<PointerType>(); 4315 const PointerType *RPT = rType->getAs<PointerType>(); 4316 bool LPtrToVoid = LPT ? 4317 Context.getCanonicalType(LPT->getPointeeType())->isVoidType() : false; 4318 bool RPtrToVoid = RPT ? 4319 Context.getCanonicalType(RPT->getPointeeType())->isVoidType() : false; 4320 4321 if (!LPtrToVoid && !RPtrToVoid && 4322 !Context.typesAreCompatible(lType, rType)) { 4323 Diag(Loc, diag::ext_typecheck_comparison_of_distinct_pointers) 4324 << lType << rType << lex->getSourceRange() << rex->getSourceRange(); 4325 } 4326 ImpCastExprToType(rex, lType); 4327 return ResultTy; 4328 } 4329 if (lType->isObjCObjectPointerType() && rType->isObjCObjectPointerType()) { 4330 if (!Context.areComparableObjCPointerTypes(lType, rType)) { 4331 Diag(Loc, diag::ext_typecheck_comparison_of_distinct_pointers) 4332 << lType << rType << lex->getSourceRange() << rex->getSourceRange(); 4333 } 4334 ImpCastExprToType(rex, lType); 4335 return ResultTy; 4336 } 4337 } 4338 if (lType->isAnyPointerType() && rType->isIntegerType()) { 4339 if (isRelational) 4340 Diag(Loc, diag::ext_typecheck_ordered_comparison_of_pointer_integer) 4341 << lType << rType << lex->getSourceRange() << rex->getSourceRange(); 4342 else if (!RHSIsNull) 4343 Diag(Loc, diag::ext_typecheck_comparison_of_pointer_integer) 4344 << lType << rType << lex->getSourceRange() << rex->getSourceRange(); 4345 ImpCastExprToType(rex, lType); // promote the integer to pointer 4346 return ResultTy; 4347 } 4348 if (lType->isIntegerType() && rType->isAnyPointerType()) { 4349 if (isRelational) 4350 Diag(Loc, diag::ext_typecheck_ordered_comparison_of_pointer_integer) 4351 << lType << rType << lex->getSourceRange() << rex->getSourceRange(); 4352 else if (!LHSIsNull) 4353 Diag(Loc, diag::ext_typecheck_comparison_of_pointer_integer) 4354 << lType << rType << lex->getSourceRange() << rex->getSourceRange(); 4355 ImpCastExprToType(lex, rType); // promote the integer to pointer 4356 return ResultTy; 4357 } 4358 // Handle block pointers. 4359 if (!isRelational && RHSIsNull 4360 && lType->isBlockPointerType() && rType->isIntegerType()) { 4361 ImpCastExprToType(rex, lType); // promote the integer to pointer 4362 return ResultTy; 4363 } 4364 if (!isRelational && LHSIsNull 4365 && lType->isIntegerType() && rType->isBlockPointerType()) { 4366 ImpCastExprToType(lex, rType); // promote the integer to pointer 4367 return ResultTy; 4368 } 4369 return InvalidOperands(Loc, lex, rex); 4370 } 4371 4372 /// CheckVectorCompareOperands - vector comparisons are a clang extension that 4373 /// operates on extended vector types. Instead of producing an IntTy result, 4374 /// like a scalar comparison, a vector comparison produces a vector of integer 4375 /// types. 4376 QualType Sema::CheckVectorCompareOperands(Expr *&lex, Expr *&rex, 4377 SourceLocation Loc, 4378 bool isRelational) { 4379 // Check to make sure we're operating on vectors of the same type and width, 4380 // Allowing one side to be a scalar of element type. 4381 QualType vType = CheckVectorOperands(Loc, lex, rex); 4382 if (vType.isNull()) 4383 return vType; 4384 4385 QualType lType = lex->getType(); 4386 QualType rType = rex->getType(); 4387 4388 // For non-floating point types, check for self-comparisons of the form 4389 // x == x, x != x, x < x, etc. These always evaluate to a constant, and 4390 // often indicate logic errors in the program. 4391 if (!lType->isFloatingType()) { 4392 if (DeclRefExpr* DRL = dyn_cast<DeclRefExpr>(lex->IgnoreParens())) 4393 if (DeclRefExpr* DRR = dyn_cast<DeclRefExpr>(rex->IgnoreParens())) 4394 if (DRL->getDecl() == DRR->getDecl()) 4395 Diag(Loc, diag::warn_selfcomparison); 4396 } 4397 4398 // Check for comparisons of floating point operands using != and ==. 4399 if (!isRelational && lType->isFloatingType()) { 4400 assert (rType->isFloatingType()); 4401 CheckFloatComparison(Loc,lex,rex); 4402 } 4403 4404 // Return the type for the comparison, which is the same as vector type for 4405 // integer vectors, or an integer type of identical size and number of 4406 // elements for floating point vectors. 4407 if (lType->isIntegerType()) 4408 return lType; 4409 4410 const VectorType *VTy = lType->getAsVectorType(); 4411 unsigned TypeSize = Context.getTypeSize(VTy->getElementType()); 4412 if (TypeSize == Context.getTypeSize(Context.IntTy)) 4413 return Context.getExtVectorType(Context.IntTy, VTy->getNumElements()); 4414 if (TypeSize == Context.getTypeSize(Context.LongTy)) 4415 return Context.getExtVectorType(Context.LongTy, VTy->getNumElements()); 4416 4417 assert(TypeSize == Context.getTypeSize(Context.LongLongTy) && 4418 "Unhandled vector element size in vector compare"); 4419 return Context.getExtVectorType(Context.LongLongTy, VTy->getNumElements()); 4420 } 4421 4422 inline QualType Sema::CheckBitwiseOperands( 4423 Expr *&lex, Expr *&rex, SourceLocation Loc, bool isCompAssign) 4424 { 4425 if (lex->getType()->isVectorType() || rex->getType()->isVectorType()) 4426 return CheckVectorOperands(Loc, lex, rex); 4427 4428 QualType compType = UsualArithmeticConversions(lex, rex, isCompAssign); 4429 4430 if (lex->getType()->isIntegerType() && rex->getType()->isIntegerType()) 4431 return compType; 4432 return InvalidOperands(Loc, lex, rex); 4433 } 4434 4435 inline QualType Sema::CheckLogicalOperands( // C99 6.5.[13,14] 4436 Expr *&lex, Expr *&rex, SourceLocation Loc) 4437 { 4438 UsualUnaryConversions(lex); 4439 UsualUnaryConversions(rex); 4440 4441 if (lex->getType()->isScalarType() && rex->getType()->isScalarType()) 4442 return Context.IntTy; 4443 return InvalidOperands(Loc, lex, rex); 4444 } 4445 4446 /// IsReadonlyProperty - Verify that otherwise a valid l-value expression 4447 /// is a read-only property; return true if so. A readonly property expression 4448 /// depends on various declarations and thus must be treated specially. 4449 /// 4450 static bool IsReadonlyProperty(Expr *E, Sema &S) 4451 { 4452 if (E->getStmtClass() == Expr::ObjCPropertyRefExprClass) { 4453 const ObjCPropertyRefExpr* PropExpr = cast<ObjCPropertyRefExpr>(E); 4454 if (ObjCPropertyDecl *PDecl = PropExpr->getProperty()) { 4455 QualType BaseType = PropExpr->getBase()->getType(); 4456 if (const ObjCObjectPointerType *OPT = 4457 BaseType->getAsObjCInterfacePointerType()) 4458 if (ObjCInterfaceDecl *IFace = OPT->getInterfaceDecl()) 4459 if (S.isPropertyReadonly(PDecl, IFace)) 4460 return true; 4461 } 4462 } 4463 return false; 4464 } 4465 4466 /// CheckForModifiableLvalue - Verify that E is a modifiable lvalue. If not, 4467 /// emit an error and return true. If so, return false. 4468 static bool CheckForModifiableLvalue(Expr *E, SourceLocation Loc, Sema &S) { 4469 SourceLocation OrigLoc = Loc; 4470 Expr::isModifiableLvalueResult IsLV = E->isModifiableLvalue(S.Context, 4471 &Loc); 4472 if (IsLV == Expr::MLV_Valid && IsReadonlyProperty(E, S)) 4473 IsLV = Expr::MLV_ReadonlyProperty; 4474 if (IsLV == Expr::MLV_Valid) 4475 return false; 4476 4477 unsigned Diag = 0; 4478 bool NeedType = false; 4479 switch (IsLV) { // C99 6.5.16p2 4480 default: assert(0 && "Unknown result from isModifiableLvalue!"); 4481 case Expr::MLV_ConstQualified: Diag = diag::err_typecheck_assign_const; break; 4482 case Expr::MLV_ArrayType: 4483 Diag = diag::err_typecheck_array_not_modifiable_lvalue; 4484 NeedType = true; 4485 break; 4486 case Expr::MLV_NotObjectType: 4487 Diag = diag::err_typecheck_non_object_not_modifiable_lvalue; 4488 NeedType = true; 4489 break; 4490 case Expr::MLV_LValueCast: 4491 Diag = diag::err_typecheck_lvalue_casts_not_supported; 4492 break; 4493 case Expr::MLV_InvalidExpression: 4494 Diag = diag::err_typecheck_expression_not_modifiable_lvalue; 4495 break; 4496 case Expr::MLV_IncompleteType: 4497 case Expr::MLV_IncompleteVoidType: 4498 return S.RequireCompleteType(Loc, E->getType(), 4499 diag::err_typecheck_incomplete_type_not_modifiable_lvalue, 4500 E->getSourceRange()); 4501 case Expr::MLV_DuplicateVectorComponents: 4502 Diag = diag::err_typecheck_duplicate_vector_components_not_mlvalue; 4503 break; 4504 case Expr::MLV_NotBlockQualified: 4505 Diag = diag::err_block_decl_ref_not_modifiable_lvalue; 4506 break; 4507 case Expr::MLV_ReadonlyProperty: 4508 Diag = diag::error_readonly_property_assignment; 4509 break; 4510 case Expr::MLV_NoSetterProperty: 4511 Diag = diag::error_nosetter_property_assignment; 4512 break; 4513 } 4514 4515 SourceRange Assign; 4516 if (Loc != OrigLoc) 4517 Assign = SourceRange(OrigLoc, OrigLoc); 4518 if (NeedType) 4519 S.Diag(Loc, Diag) << E->getType() << E->getSourceRange() << Assign; 4520 else 4521 S.Diag(Loc, Diag) << E->getSourceRange() << Assign; 4522 return true; 4523 } 4524 4525 4526 4527 // C99 6.5.16.1 4528 QualType Sema::CheckAssignmentOperands(Expr *LHS, Expr *&RHS, 4529 SourceLocation Loc, 4530 QualType CompoundType) { 4531 // Verify that LHS is a modifiable lvalue, and emit error if not. 4532 if (CheckForModifiableLvalue(LHS, Loc, *this)) 4533 return QualType(); 4534 4535 QualType LHSType = LHS->getType(); 4536 QualType RHSType = CompoundType.isNull() ? RHS->getType() : CompoundType; 4537 4538 AssignConvertType ConvTy; 4539 if (CompoundType.isNull()) { 4540 // Simple assignment "x = y". 4541 ConvTy = CheckSingleAssignmentConstraints(LHSType, RHS); 4542 // Special case of NSObject attributes on c-style pointer types. 4543 if (ConvTy == IncompatiblePointer && 4544 ((Context.isObjCNSObjectType(LHSType) && 4545 RHSType->isObjCObjectPointerType()) || 4546 (Context.isObjCNSObjectType(RHSType) && 4547 LHSType->isObjCObjectPointerType()))) 4548 ConvTy = Compatible; 4549 4550 // If the RHS is a unary plus or minus, check to see if they = and + are 4551 // right next to each other. If so, the user may have typo'd "x =+ 4" 4552 // instead of "x += 4". 4553 Expr *RHSCheck = RHS; 4554 if (ImplicitCastExpr *ICE = dyn_cast<ImplicitCastExpr>(RHSCheck)) 4555 RHSCheck = ICE->getSubExpr(); 4556 if (UnaryOperator *UO = dyn_cast<UnaryOperator>(RHSCheck)) { 4557 if ((UO->getOpcode() == UnaryOperator::Plus || 4558 UO->getOpcode() == UnaryOperator::Minus) && 4559 Loc.isFileID() && UO->getOperatorLoc().isFileID() && 4560 // Only if the two operators are exactly adjacent. 4561 Loc.getFileLocWithOffset(1) == UO->getOperatorLoc() && 4562 // And there is a space or other character before the subexpr of the 4563 // unary +/-. We don't want to warn on "x=-1". 4564 Loc.getFileLocWithOffset(2) != UO->getSubExpr()->getLocStart() && 4565 UO->getSubExpr()->getLocStart().isFileID()) { 4566 Diag(Loc, diag::warn_not_compound_assign) 4567 << (UO->getOpcode() == UnaryOperator::Plus ? "+" : "-") 4568 << SourceRange(UO->getOperatorLoc(), UO->getOperatorLoc()); 4569 } 4570 } 4571 } else { 4572 // Compound assignment "x += y" 4573 ConvTy = CheckAssignmentConstraints(LHSType, RHSType); 4574 } 4575 4576 if (DiagnoseAssignmentResult(ConvTy, Loc, LHSType, RHSType, 4577 RHS, "assigning")) 4578 return QualType(); 4579 4580 // C99 6.5.16p3: The type of an assignment expression is the type of the 4581 // left operand unless the left operand has qualified type, in which case 4582 // it is the unqualified version of the type of the left operand. 4583 // C99 6.5.16.1p2: In simple assignment, the value of the right operand 4584 // is converted to the type of the assignment expression (above). 4585 // C++ 5.17p1: the type of the assignment expression is that of its left 4586 // operand. 4587 return LHSType.getUnqualifiedType(); 4588 } 4589 4590 // C99 6.5.17 4591 QualType Sema::CheckCommaOperands(Expr *LHS, Expr *&RHS, SourceLocation Loc) { 4592 // Comma performs lvalue conversion (C99 6.3.2.1), but not unary conversions. 4593 DefaultFunctionArrayConversion(RHS); 4594 4595 // FIXME: Check that RHS type is complete in C mode (it's legal for it to be 4596 // incomplete in C++). 4597 4598 return RHS->getType(); 4599 } 4600 4601 /// CheckIncrementDecrementOperand - unlike most "Check" methods, this routine 4602 /// doesn't need to call UsualUnaryConversions or UsualArithmeticConversions. 4603 QualType Sema::CheckIncrementDecrementOperand(Expr *Op, SourceLocation OpLoc, 4604 bool isInc) { 4605 if (Op->isTypeDependent()) 4606 return Context.DependentTy; 4607 4608 QualType ResType = Op->getType(); 4609 assert(!ResType.isNull() && "no type for increment/decrement expression"); 4610 4611 if (getLangOptions().CPlusPlus && ResType->isBooleanType()) { 4612 // Decrement of bool is not allowed. 4613 if (!isInc) { 4614 Diag(OpLoc, diag::err_decrement_bool) << Op->getSourceRange(); 4615 return QualType(); 4616 } 4617 // Increment of bool sets it to true, but is deprecated. 4618 Diag(OpLoc, diag::warn_increment_bool) << Op->getSourceRange(); 4619 } else if (ResType->isRealType()) { 4620 // OK! 4621 } else if (ResType->isAnyPointerType()) { 4622 QualType PointeeTy = ResType->getPointeeType(); 4623 4624 // C99 6.5.2.4p2, 6.5.6p2 4625 if (PointeeTy->isVoidType()) { 4626 if (getLangOptions().CPlusPlus) { 4627 Diag(OpLoc, diag::err_typecheck_pointer_arith_void_type) 4628 << Op->getSourceRange(); 4629 return QualType(); 4630 } 4631 4632 // Pointer to void is a GNU extension in C. 4633 Diag(OpLoc, diag::ext_gnu_void_ptr) << Op->getSourceRange(); 4634 } else if (PointeeTy->isFunctionType()) { 4635 if (getLangOptions().CPlusPlus) { 4636 Diag(OpLoc, diag::err_typecheck_pointer_arith_function_type) 4637 << Op->getType() << Op->getSourceRange(); 4638 return QualType(); 4639 } 4640 4641 Diag(OpLoc, diag::ext_gnu_ptr_func_arith) 4642 << ResType << Op->getSourceRange(); 4643 } else if (RequireCompleteType(OpLoc, PointeeTy, 4644 diag::err_typecheck_arithmetic_incomplete_type, 4645 Op->getSourceRange(), SourceRange(), 4646 ResType)) 4647 return QualType(); 4648 // Diagnose bad cases where we step over interface counts. 4649 else if (PointeeTy->isObjCInterfaceType() && LangOpts.ObjCNonFragileABI) { 4650 Diag(OpLoc, diag::err_arithmetic_nonfragile_interface) 4651 << PointeeTy << Op->getSourceRange(); 4652 return QualType(); 4653 } 4654 } else if (ResType->isComplexType()) { 4655 // C99 does not support ++/-- on complex types, we allow as an extension. 4656 Diag(OpLoc, diag::ext_integer_increment_complex) 4657 << ResType << Op->getSourceRange(); 4658 } else { 4659 Diag(OpLoc, diag::err_typecheck_illegal_increment_decrement) 4660 << ResType << Op->getSourceRange(); 4661 return QualType(); 4662 } 4663 // At this point, we know we have a real, complex or pointer type. 4664 // Now make sure the operand is a modifiable lvalue. 4665 if (CheckForModifiableLvalue(Op, OpLoc, *this)) 4666 return QualType(); 4667 return ResType; 4668 } 4669 4670 /// getPrimaryDecl - Helper function for CheckAddressOfOperand(). 4671 /// This routine allows us to typecheck complex/recursive expressions 4672 /// where the declaration is needed for type checking. We only need to 4673 /// handle cases when the expression references a function designator 4674 /// or is an lvalue. Here are some examples: 4675 /// - &(x) => x 4676 /// - &*****f => f for f a function designator. 4677 /// - &s.xx => s 4678 /// - &s.zz[1].yy -> s, if zz is an array 4679 /// - *(x + 1) -> x, if x is an array 4680 /// - &"123"[2] -> 0 4681 /// - & __real__ x -> x 4682 static NamedDecl *getPrimaryDecl(Expr *E) { 4683 switch (E->getStmtClass()) { 4684 case Stmt::DeclRefExprClass: 4685 case Stmt::QualifiedDeclRefExprClass: 4686 return cast<DeclRefExpr>(E)->getDecl(); 4687 case Stmt::MemberExprClass: 4688 // If this is an arrow operator, the address is an offset from 4689 // the base's value, so the object the base refers to is 4690 // irrelevant. 4691 if (cast<MemberExpr>(E)->isArrow()) 4692 return 0; 4693 // Otherwise, the expression refers to a part of the base 4694 return getPrimaryDecl(cast<MemberExpr>(E)->getBase()); 4695 case Stmt::ArraySubscriptExprClass: { 4696 // FIXME: This code shouldn't be necessary! We should catch the implicit 4697 // promotion of register arrays earlier. 4698 Expr* Base = cast<ArraySubscriptExpr>(E)->getBase(); 4699 if (ImplicitCastExpr* ICE = dyn_cast<ImplicitCastExpr>(Base)) { 4700 if (ICE->getSubExpr()->getType()->isArrayType()) 4701 return getPrimaryDecl(ICE->getSubExpr()); 4702 } 4703 return 0; 4704 } 4705 case Stmt::UnaryOperatorClass: { 4706 UnaryOperator *UO = cast<UnaryOperator>(E); 4707 4708 switch(UO->getOpcode()) { 4709 case UnaryOperator::Real: 4710 case UnaryOperator::Imag: 4711 case UnaryOperator::Extension: 4712 return getPrimaryDecl(UO->getSubExpr()); 4713 default: 4714 return 0; 4715 } 4716 } 4717 case Stmt::ParenExprClass: 4718 return getPrimaryDecl(cast<ParenExpr>(E)->getSubExpr()); 4719 case Stmt::ImplicitCastExprClass: 4720 // If the result of an implicit cast is an l-value, we care about 4721 // the sub-expression; otherwise, the result here doesn't matter. 4722 return getPrimaryDecl(cast<ImplicitCastExpr>(E)->getSubExpr()); 4723 default: 4724 return 0; 4725 } 4726 } 4727 4728 /// CheckAddressOfOperand - The operand of & must be either a function 4729 /// designator or an lvalue designating an object. If it is an lvalue, the 4730 /// object cannot be declared with storage class register or be a bit field. 4731 /// Note: The usual conversions are *not* applied to the operand of the & 4732 /// operator (C99 6.3.2.1p[2-4]), and its result is never an lvalue. 4733 /// In C++, the operand might be an overloaded function name, in which case 4734 /// we allow the '&' but retain the overloaded-function type. 4735 QualType Sema::CheckAddressOfOperand(Expr *op, SourceLocation OpLoc) { 4736 // Make sure to ignore parentheses in subsequent checks 4737 op = op->IgnoreParens(); 4738 4739 if (op->isTypeDependent()) 4740 return Context.DependentTy; 4741 4742 if (getLangOptions().C99) { 4743 // Implement C99-only parts of addressof rules. 4744 if (UnaryOperator* uOp = dyn_cast<UnaryOperator>(op)) { 4745 if (uOp->getOpcode() == UnaryOperator::Deref) 4746 // Per C99 6.5.3.2, the address of a deref always returns a valid result 4747 // (assuming the deref expression is valid). 4748 return uOp->getSubExpr()->getType(); 4749 } 4750 // Technically, there should be a check for array subscript 4751 // expressions here, but the result of one is always an lvalue anyway. 4752 } 4753 NamedDecl *dcl = getPrimaryDecl(op); 4754 Expr::isLvalueResult lval = op->isLvalue(Context); 4755 4756 if (lval != Expr::LV_Valid && lval != Expr::LV_IncompleteVoidType) { 4757 // C99 6.5.3.2p1 4758 // The operand must be either an l-value or a function designator 4759 if (!op->getType()->isFunctionType()) { 4760 // FIXME: emit more specific diag... 4761 Diag(OpLoc, diag::err_typecheck_invalid_lvalue_addrof) 4762 << op->getSourceRange(); 4763 return QualType(); 4764 } 4765 } else if (op->getBitField()) { // C99 6.5.3.2p1 4766 // The operand cannot be a bit-field 4767 Diag(OpLoc, diag::err_typecheck_address_of) 4768 << "bit-field" << op->getSourceRange(); 4769 return QualType(); 4770 } else if (isa<ExtVectorElementExpr>(op) || (isa<ArraySubscriptExpr>(op) && 4771 cast<ArraySubscriptExpr>(op)->getBase()->getType()->isVectorType())){ 4772 // The operand cannot be an element of a vector 4773 Diag(OpLoc, diag::err_typecheck_address_of) 4774 << "vector element" << op->getSourceRange(); 4775 return QualType(); 4776 } else if (isa<ObjCPropertyRefExpr>(op)) { 4777 // cannot take address of a property expression. 4778 Diag(OpLoc, diag::err_typecheck_address_of) 4779 << "property expression" << op->getSourceRange(); 4780 return QualType(); 4781 } else if (dcl) { // C99 6.5.3.2p1 4782 // We have an lvalue with a decl. Make sure the decl is not declared 4783 // with the register storage-class specifier. 4784 if (const VarDecl *vd = dyn_cast<VarDecl>(dcl)) { 4785 if (vd->getStorageClass() == VarDecl::Register) { 4786 Diag(OpLoc, diag::err_typecheck_address_of) 4787 << "register variable" << op->getSourceRange(); 4788 return QualType(); 4789 } 4790 } else if (isa<OverloadedFunctionDecl>(dcl) || 4791 isa<FunctionTemplateDecl>(dcl)) { 4792 return Context.OverloadTy; 4793 } else if (FieldDecl *FD = dyn_cast<FieldDecl>(dcl)) { 4794 // Okay: we can take the address of a field. 4795 // Could be a pointer to member, though, if there is an explicit 4796 // scope qualifier for the class. 4797 if (isa<QualifiedDeclRefExpr>(op)) { 4798 DeclContext *Ctx = dcl->getDeclContext(); 4799 if (Ctx && Ctx->isRecord()) { 4800 if (FD->getType()->isReferenceType()) { 4801 Diag(OpLoc, 4802 diag::err_cannot_form_pointer_to_member_of_reference_type) 4803 << FD->getDeclName() << FD->getType(); 4804 return QualType(); 4805 } 4806 4807 return Context.getMemberPointerType(op->getType(), 4808 Context.getTypeDeclType(cast<RecordDecl>(Ctx)).getTypePtr()); 4809 } 4810 } 4811 } else if (CXXMethodDecl *MD = dyn_cast<CXXMethodDecl>(dcl)) { 4812 // Okay: we can take the address of a function. 4813 // As above. 4814 if (isa<QualifiedDeclRefExpr>(op) && MD->isInstance()) 4815 return Context.getMemberPointerType(op->getType(), 4816 Context.getTypeDeclType(MD->getParent()).getTypePtr()); 4817 } else if (!isa<FunctionDecl>(dcl)) 4818 assert(0 && "Unknown/unexpected decl type"); 4819 } 4820 4821 if (lval == Expr::LV_IncompleteVoidType) { 4822 // Taking the address of a void variable is technically illegal, but we 4823 // allow it in cases which are otherwise valid. 4824 // Example: "extern void x; void* y = &x;". 4825 Diag(OpLoc, diag::ext_typecheck_addrof_void) << op->getSourceRange(); 4826 } 4827 4828 // If the operand has type "type", the result has type "pointer to type". 4829 return Context.getPointerType(op->getType()); 4830 } 4831 4832 QualType Sema::CheckIndirectionOperand(Expr *Op, SourceLocation OpLoc) { 4833 if (Op->isTypeDependent()) 4834 return Context.DependentTy; 4835 4836 UsualUnaryConversions(Op); 4837 QualType Ty = Op->getType(); 4838 4839 // Note that per both C89 and C99, this is always legal, even if ptype is an 4840 // incomplete type or void. It would be possible to warn about dereferencing 4841 // a void pointer, but it's completely well-defined, and such a warning is 4842 // unlikely to catch any mistakes. 4843 if (const PointerType *PT = Ty->getAs<PointerType>()) 4844 return PT->getPointeeType(); 4845 4846 if (const ObjCObjectPointerType *OPT = Ty->getAsObjCObjectPointerType()) 4847 return OPT->getPointeeType(); 4848 4849 Diag(OpLoc, diag::err_typecheck_indirection_requires_pointer) 4850 << Ty << Op->getSourceRange(); 4851 return QualType(); 4852 } 4853 4854 static inline BinaryOperator::Opcode ConvertTokenKindToBinaryOpcode( 4855 tok::TokenKind Kind) { 4856 BinaryOperator::Opcode Opc; 4857 switch (Kind) { 4858 default: assert(0 && "Unknown binop!"); 4859 case tok::periodstar: Opc = BinaryOperator::PtrMemD; break; 4860 case tok::arrowstar: Opc = BinaryOperator::PtrMemI; break; 4861 case tok::star: Opc = BinaryOperator::Mul; break; 4862 case tok::slash: Opc = BinaryOperator::Div; break; 4863 case tok::percent: Opc = BinaryOperator::Rem; break; 4864 case tok::plus: Opc = BinaryOperator::Add; break; 4865 case tok::minus: Opc = BinaryOperator::Sub; break; 4866 case tok::lessless: Opc = BinaryOperator::Shl; break; 4867 case tok::greatergreater: Opc = BinaryOperator::Shr; break; 4868 case tok::lessequal: Opc = BinaryOperator::LE; break; 4869 case tok::less: Opc = BinaryOperator::LT; break; 4870 case tok::greaterequal: Opc = BinaryOperator::GE; break; 4871 case tok::greater: Opc = BinaryOperator::GT; break; 4872 case tok::exclaimequal: Opc = BinaryOperator::NE; break; 4873 case tok::equalequal: Opc = BinaryOperator::EQ; break; 4874 case tok::amp: Opc = BinaryOperator::And; break; 4875 case tok::caret: Opc = BinaryOperator::Xor; break; 4876 case tok::pipe: Opc = BinaryOperator::Or; break; 4877 case tok::ampamp: Opc = BinaryOperator::LAnd; break; 4878 case tok::pipepipe: Opc = BinaryOperator::LOr; break; 4879 case tok::equal: Opc = BinaryOperator::Assign; break; 4880 case tok::starequal: Opc = BinaryOperator::MulAssign; break; 4881 case tok::slashequal: Opc = BinaryOperator::DivAssign; break; 4882 case tok::percentequal: Opc = BinaryOperator::RemAssign; break; 4883 case tok::plusequal: Opc = BinaryOperator::AddAssign; break; 4884 case tok::minusequal: Opc = BinaryOperator::SubAssign; break; 4885 case tok::lesslessequal: Opc = BinaryOperator::ShlAssign; break; 4886 case tok::greatergreaterequal: Opc = BinaryOperator::ShrAssign; break; 4887 case tok::ampequal: Opc = BinaryOperator::AndAssign; break; 4888 case tok::caretequal: Opc = BinaryOperator::XorAssign; break; 4889 case tok::pipeequal: Opc = BinaryOperator::OrAssign; break; 4890 case tok::comma: Opc = BinaryOperator::Comma; break; 4891 } 4892 return Opc; 4893 } 4894 4895 static inline UnaryOperator::Opcode ConvertTokenKindToUnaryOpcode( 4896 tok::TokenKind Kind) { 4897 UnaryOperator::Opcode Opc; 4898 switch (Kind) { 4899 default: assert(0 && "Unknown unary op!"); 4900 case tok::plusplus: Opc = UnaryOperator::PreInc; break; 4901 case tok::minusminus: Opc = UnaryOperator::PreDec; break; 4902 case tok::amp: Opc = UnaryOperator::AddrOf; break; 4903 case tok::star: Opc = UnaryOperator::Deref; break; 4904 case tok::plus: Opc = UnaryOperator::Plus; break; 4905 case tok::minus: Opc = UnaryOperator::Minus; break; 4906 case tok::tilde: Opc = UnaryOperator::Not; break; 4907 case tok::exclaim: Opc = UnaryOperator::LNot; break; 4908 case tok::kw___real: Opc = UnaryOperator::Real; break; 4909 case tok::kw___imag: Opc = UnaryOperator::Imag; break; 4910 case tok::kw___extension__: Opc = UnaryOperator::Extension; break; 4911 } 4912 return Opc; 4913 } 4914 4915 /// CreateBuiltinBinOp - Creates a new built-in binary operation with 4916 /// operator @p Opc at location @c TokLoc. This routine only supports 4917 /// built-in operations; ActOnBinOp handles overloaded operators. 4918 Action::OwningExprResult Sema::CreateBuiltinBinOp(SourceLocation OpLoc, 4919 unsigned Op, 4920 Expr *lhs, Expr *rhs) { 4921 QualType ResultTy; // Result type of the binary operator. 4922 BinaryOperator::Opcode Opc = (BinaryOperator::Opcode)Op; 4923 // The following two variables are used for compound assignment operators 4924 QualType CompLHSTy; // Type of LHS after promotions for computation 4925 QualType CompResultTy; // Type of computation result 4926 4927 switch (Opc) { 4928 case BinaryOperator::Assign: 4929 ResultTy = CheckAssignmentOperands(lhs, rhs, OpLoc, QualType()); 4930 break; 4931 case BinaryOperator::PtrMemD: 4932 case BinaryOperator::PtrMemI: 4933 ResultTy = CheckPointerToMemberOperands(lhs, rhs, OpLoc, 4934 Opc == BinaryOperator::PtrMemI); 4935 break; 4936 case BinaryOperator::Mul: 4937 case BinaryOperator::Div: 4938 ResultTy = CheckMultiplyDivideOperands(lhs, rhs, OpLoc); 4939 break; 4940 case BinaryOperator::Rem: 4941 ResultTy = CheckRemainderOperands(lhs, rhs, OpLoc); 4942 break; 4943 case BinaryOperator::Add: 4944 ResultTy = CheckAdditionOperands(lhs, rhs, OpLoc); 4945 break; 4946 case BinaryOperator::Sub: 4947 ResultTy = CheckSubtractionOperands(lhs, rhs, OpLoc); 4948 break; 4949 case BinaryOperator::Shl: 4950 case BinaryOperator::Shr: 4951 ResultTy = CheckShiftOperands(lhs, rhs, OpLoc); 4952 break; 4953 case BinaryOperator::LE: 4954 case BinaryOperator::LT: 4955 case BinaryOperator::GE: 4956 case BinaryOperator::GT: 4957 ResultTy = CheckCompareOperands(lhs, rhs, OpLoc, Opc, true); 4958 break; 4959 case BinaryOperator::EQ: 4960 case BinaryOperator::NE: 4961 ResultTy = CheckCompareOperands(lhs, rhs, OpLoc, Opc, false); 4962 break; 4963 case BinaryOperator::And: 4964 case BinaryOperator::Xor: 4965 case BinaryOperator::Or: 4966 ResultTy = CheckBitwiseOperands(lhs, rhs, OpLoc); 4967 break; 4968 case BinaryOperator::LAnd: 4969 case BinaryOperator::LOr: 4970 ResultTy = CheckLogicalOperands(lhs, rhs, OpLoc); 4971 break; 4972 case BinaryOperator::MulAssign: 4973 case BinaryOperator::DivAssign: 4974 CompResultTy = CheckMultiplyDivideOperands(lhs, rhs, OpLoc, true); 4975 CompLHSTy = CompResultTy; 4976 if (!CompResultTy.isNull()) 4977 ResultTy = CheckAssignmentOperands(lhs, rhs, OpLoc, CompResultTy); 4978 break; 4979 case BinaryOperator::RemAssign: 4980 CompResultTy = CheckRemainderOperands(lhs, rhs, OpLoc, true); 4981 CompLHSTy = CompResultTy; 4982 if (!CompResultTy.isNull()) 4983 ResultTy = CheckAssignmentOperands(lhs, rhs, OpLoc, CompResultTy); 4984 break; 4985 case BinaryOperator::AddAssign: 4986 CompResultTy = CheckAdditionOperands(lhs, rhs, OpLoc, &CompLHSTy); 4987 if (!CompResultTy.isNull()) 4988 ResultTy = CheckAssignmentOperands(lhs, rhs, OpLoc, CompResultTy); 4989 break; 4990 case BinaryOperator::SubAssign: 4991 CompResultTy = CheckSubtractionOperands(lhs, rhs, OpLoc, &CompLHSTy); 4992 if (!CompResultTy.isNull()) 4993 ResultTy = CheckAssignmentOperands(lhs, rhs, OpLoc, CompResultTy); 4994 break; 4995 case BinaryOperator::ShlAssign: 4996 case BinaryOperator::ShrAssign: 4997 CompResultTy = CheckShiftOperands(lhs, rhs, OpLoc, true); 4998 CompLHSTy = CompResultTy; 4999 if (!CompResultTy.isNull()) 5000 ResultTy = CheckAssignmentOperands(lhs, rhs, OpLoc, CompResultTy); 5001 break; 5002 case BinaryOperator::AndAssign: 5003 case BinaryOperator::XorAssign: 5004 case BinaryOperator::OrAssign: 5005 CompResultTy = CheckBitwiseOperands(lhs, rhs, OpLoc, true); 5006 CompLHSTy = CompResultTy; 5007 if (!CompResultTy.isNull()) 5008 ResultTy = CheckAssignmentOperands(lhs, rhs, OpLoc, CompResultTy); 5009 break; 5010 case BinaryOperator::Comma: 5011 ResultTy = CheckCommaOperands(lhs, rhs, OpLoc); 5012 break; 5013 } 5014 if (ResultTy.isNull()) 5015 return ExprError(); 5016 if (CompResultTy.isNull()) 5017 return Owned(new (Context) BinaryOperator(lhs, rhs, Opc, ResultTy, OpLoc)); 5018 else 5019 return Owned(new (Context) CompoundAssignOperator(lhs, rhs, Opc, ResultTy, 5020 CompLHSTy, CompResultTy, 5021 OpLoc)); 5022 } 5023 5024 // Binary Operators. 'Tok' is the token for the operator. 5025 Action::OwningExprResult Sema::ActOnBinOp(Scope *S, SourceLocation TokLoc, 5026 tok::TokenKind Kind, 5027 ExprArg LHS, ExprArg RHS) { 5028 BinaryOperator::Opcode Opc = ConvertTokenKindToBinaryOpcode(Kind); 5029 Expr *lhs = LHS.takeAs<Expr>(), *rhs = RHS.takeAs<Expr>(); 5030 5031 assert((lhs != 0) && "ActOnBinOp(): missing left expression"); 5032 assert((rhs != 0) && "ActOnBinOp(): missing right expression"); 5033 5034 if (getLangOptions().CPlusPlus && 5035 (lhs->getType()->isOverloadableType() || 5036 rhs->getType()->isOverloadableType())) { 5037 // Find all of the overloaded operators visible from this 5038 // point. We perform both an operator-name lookup from the local 5039 // scope and an argument-dependent lookup based on the types of 5040 // the arguments. 5041 FunctionSet Functions; 5042 OverloadedOperatorKind OverOp = BinaryOperator::getOverloadedOperator(Opc); 5043 if (OverOp != OO_None) { 5044 LookupOverloadedOperatorName(OverOp, S, lhs->getType(), rhs->getType(), 5045 Functions); 5046 Expr *Args[2] = { lhs, rhs }; 5047 DeclarationName OpName 5048 = Context.DeclarationNames.getCXXOperatorName(OverOp); 5049 ArgumentDependentLookup(OpName, Args, 2, Functions); 5050 } 5051 5052 // Build the (potentially-overloaded, potentially-dependent) 5053 // binary operation. 5054 return CreateOverloadedBinOp(TokLoc, Opc, Functions, lhs, rhs); 5055 } 5056 5057 // Build a built-in binary operation. 5058 return CreateBuiltinBinOp(TokLoc, Opc, lhs, rhs); 5059 } 5060 5061 Action::OwningExprResult Sema::CreateBuiltinUnaryOp(SourceLocation OpLoc, 5062 unsigned OpcIn, 5063 ExprArg InputArg) { 5064 UnaryOperator::Opcode Opc = static_cast<UnaryOperator::Opcode>(OpcIn); 5065 5066 // FIXME: Input is modified below, but InputArg is not updated appropriately. 5067 Expr *Input = (Expr *)InputArg.get(); 5068 QualType resultType; 5069 switch (Opc) { 5070 case UnaryOperator::OffsetOf: 5071 assert(false && "Invalid unary operator"); 5072 break; 5073 5074 case UnaryOperator::PreInc: 5075 case UnaryOperator::PreDec: 5076 case UnaryOperator::PostInc: 5077 case UnaryOperator::PostDec: 5078 resultType = CheckIncrementDecrementOperand(Input, OpLoc, 5079 Opc == UnaryOperator::PreInc || 5080 Opc == UnaryOperator::PostInc); 5081 break; 5082 case UnaryOperator::AddrOf: 5083 resultType = CheckAddressOfOperand(Input, OpLoc); 5084 break; 5085 case UnaryOperator::Deref: 5086 DefaultFunctionArrayConversion(Input); 5087 resultType = CheckIndirectionOperand(Input, OpLoc); 5088 break; 5089 case UnaryOperator::Plus: 5090 case UnaryOperator::Minus: 5091 UsualUnaryConversions(Input); 5092 resultType = Input->getType(); 5093 if (resultType->isDependentType()) 5094 break; 5095 if (resultType->isArithmeticType()) // C99 6.5.3.3p1 5096 break; 5097 else if (getLangOptions().CPlusPlus && // C++ [expr.unary.op]p6-7 5098 resultType->isEnumeralType()) 5099 break; 5100 else if (getLangOptions().CPlusPlus && // C++ [expr.unary.op]p6 5101 Opc == UnaryOperator::Plus && 5102 resultType->isPointerType()) 5103 break; 5104 5105 return ExprError(Diag(OpLoc, diag::err_typecheck_unary_expr) 5106 << resultType << Input->getSourceRange()); 5107 case UnaryOperator::Not: // bitwise complement 5108 UsualUnaryConversions(Input); 5109 resultType = Input->getType(); 5110 if (resultType->isDependentType()) 5111 break; 5112 // C99 6.5.3.3p1. We allow complex int and float as a GCC extension. 5113 if (resultType->isComplexType() || resultType->isComplexIntegerType()) 5114 // C99 does not support '~' for complex conjugation. 5115 Diag(OpLoc, diag::ext_integer_complement_complex) 5116 << resultType << Input->getSourceRange(); 5117 else if (!resultType->isIntegerType()) 5118 return ExprError(Diag(OpLoc, diag::err_typecheck_unary_expr) 5119 << resultType << Input->getSourceRange()); 5120 break; 5121 case UnaryOperator::LNot: // logical negation 5122 // Unlike +/-/~, integer promotions aren't done here (C99 6.5.3.3p5). 5123 DefaultFunctionArrayConversion(Input); 5124 resultType = Input->getType(); 5125 if (resultType->isDependentType()) 5126 break; 5127 if (!resultType->isScalarType()) // C99 6.5.3.3p1 5128 return ExprError(Diag(OpLoc, diag::err_typecheck_unary_expr) 5129 << resultType << Input->getSourceRange()); 5130 // LNot always has type int. C99 6.5.3.3p5. 5131 // In C++, it's bool. C++ 5.3.1p8 5132 resultType = getLangOptions().CPlusPlus ? Context.BoolTy : Context.IntTy; 5133 break; 5134 case UnaryOperator::Real: 5135 case UnaryOperator::Imag: 5136 resultType = CheckRealImagOperand(Input, OpLoc, Opc == UnaryOperator::Real); 5137 break; 5138 case UnaryOperator::Extension: 5139 resultType = Input->getType(); 5140 break; 5141 } 5142 if (resultType.isNull()) 5143 return ExprError(); 5144 5145 InputArg.release(); 5146 return Owned(new (Context) UnaryOperator(Input, Opc, resultType, OpLoc)); 5147 } 5148 5149 // Unary Operators. 'Tok' is the token for the operator. 5150 Action::OwningExprResult Sema::ActOnUnaryOp(Scope *S, SourceLocation OpLoc, 5151 tok::TokenKind Op, ExprArg input) { 5152 Expr *Input = (Expr*)input.get(); 5153 UnaryOperator::Opcode Opc = ConvertTokenKindToUnaryOpcode(Op); 5154 5155 if (getLangOptions().CPlusPlus && Input->getType()->isOverloadableType()) { 5156 // Find all of the overloaded operators visible from this 5157 // point. We perform both an operator-name lookup from the local 5158 // scope and an argument-dependent lookup based on the types of 5159 // the arguments. 5160 FunctionSet Functions; 5161 OverloadedOperatorKind OverOp = UnaryOperator::getOverloadedOperator(Opc); 5162 if (OverOp != OO_None) { 5163 LookupOverloadedOperatorName(OverOp, S, Input->getType(), QualType(), 5164 Functions); 5165 DeclarationName OpName 5166 = Context.DeclarationNames.getCXXOperatorName(OverOp); 5167 ArgumentDependentLookup(OpName, &Input, 1, Functions); 5168 } 5169 5170 return CreateOverloadedUnaryOp(OpLoc, Opc, Functions, move(input)); 5171 } 5172 5173 return CreateBuiltinUnaryOp(OpLoc, Opc, move(input)); 5174 } 5175 5176 /// ActOnAddrLabel - Parse the GNU address of label extension: "&&foo". 5177 Sema::OwningExprResult Sema::ActOnAddrLabel(SourceLocation OpLoc, 5178 SourceLocation LabLoc, 5179 IdentifierInfo *LabelII) { 5180 // Look up the record for this label identifier. 5181 LabelStmt *&LabelDecl = getLabelMap()[LabelII]; 5182 5183 // If we haven't seen this label yet, create a forward reference. It 5184 // will be validated and/or cleaned up in ActOnFinishFunctionBody. 5185 if (LabelDecl == 0) 5186 LabelDecl = new (Context) LabelStmt(LabLoc, LabelII, 0); 5187 5188 // Create the AST node. The address of a label always has type 'void*'. 5189 return Owned(new (Context) AddrLabelExpr(OpLoc, LabLoc, LabelDecl, 5190 Context.getPointerType(Context.VoidTy))); 5191 } 5192 5193 Sema::OwningExprResult 5194 Sema::ActOnStmtExpr(SourceLocation LPLoc, StmtArg substmt, 5195 SourceLocation RPLoc) { // "({..})" 5196 Stmt *SubStmt = static_cast<Stmt*>(substmt.get()); 5197 assert(SubStmt && isa<CompoundStmt>(SubStmt) && "Invalid action invocation!"); 5198 CompoundStmt *Compound = cast<CompoundStmt>(SubStmt); 5199 5200 bool isFileScope = getCurFunctionOrMethodDecl() == 0; 5201 if (isFileScope) 5202 return ExprError(Diag(LPLoc, diag::err_stmtexpr_file_scope)); 5203 5204 // FIXME: there are a variety of strange constraints to enforce here, for 5205 // example, it is not possible to goto into a stmt expression apparently. 5206 // More semantic analysis is needed. 5207 5208 // If there are sub stmts in the compound stmt, take the type of the last one 5209 // as the type of the stmtexpr. 5210 QualType Ty = Context.VoidTy; 5211 5212 if (!Compound->body_empty()) { 5213 Stmt *LastStmt = Compound->body_back(); 5214 // If LastStmt is a label, skip down through into the body. 5215 while (LabelStmt *Label = dyn_cast<LabelStmt>(LastStmt)) 5216 LastStmt = Label->getSubStmt(); 5217 5218 if (Expr *LastExpr = dyn_cast<Expr>(LastStmt)) 5219 Ty = LastExpr->getType(); 5220 } 5221 5222 // FIXME: Check that expression type is complete/non-abstract; statement 5223 // expressions are not lvalues. 5224 5225 substmt.release(); 5226 return Owned(new (Context) StmtExpr(Compound, Ty, LPLoc, RPLoc)); 5227 } 5228 5229 Sema::OwningExprResult Sema::ActOnBuiltinOffsetOf(Scope *S, 5230 SourceLocation BuiltinLoc, 5231 SourceLocation TypeLoc, 5232 TypeTy *argty, 5233 OffsetOfComponent *CompPtr, 5234 unsigned NumComponents, 5235 SourceLocation RPLoc) { 5236 // FIXME: This function leaks all expressions in the offset components on 5237 // error. 5238 QualType ArgTy = QualType::getFromOpaquePtr(argty); 5239 assert(!ArgTy.isNull() && "Missing type argument!"); 5240 5241 bool Dependent = ArgTy->isDependentType(); 5242 5243 // We must have at least one component that refers to the type, and the first 5244 // one is known to be a field designator. Verify that the ArgTy represents 5245 // a struct/union/class. 5246 if (!Dependent && !ArgTy->isRecordType()) 5247 return ExprError(Diag(TypeLoc, diag::err_offsetof_record_type) << ArgTy); 5248 5249 // FIXME: Type must be complete per C99 7.17p3 because a declaring a variable 5250 // with an incomplete type would be illegal. 5251 5252 // Otherwise, create a null pointer as the base, and iteratively process 5253 // the offsetof designators. 5254 QualType ArgTyPtr = Context.getPointerType(ArgTy); 5255 Expr* Res = new (Context) ImplicitValueInitExpr(ArgTyPtr); 5256 Res = new (Context) UnaryOperator(Res, UnaryOperator::Deref, 5257 ArgTy, SourceLocation()); 5258 5259 // offsetof with non-identifier designators (e.g. "offsetof(x, a.b[c])") are a 5260 // GCC extension, diagnose them. 5261 // FIXME: This diagnostic isn't actually visible because the location is in 5262 // a system header! 5263 if (NumComponents != 1) 5264 Diag(BuiltinLoc, diag::ext_offsetof_extended_field_designator) 5265 << SourceRange(CompPtr[1].LocStart, CompPtr[NumComponents-1].LocEnd); 5266 5267 if (!Dependent) { 5268 bool DidWarnAboutNonPOD = false; 5269 5270 // FIXME: Dependent case loses a lot of information here. And probably 5271 // leaks like a sieve. 5272 for (unsigned i = 0; i != NumComponents; ++i) { 5273 const OffsetOfComponent &OC = CompPtr[i]; 5274 if (OC.isBrackets) { 5275 // Offset of an array sub-field. TODO: Should we allow vector elements? 5276 const ArrayType *AT = Context.getAsArrayType(Res->getType()); 5277 if (!AT) { 5278 Res->Destroy(Context); 5279 return ExprError(Diag(OC.LocEnd, diag::err_offsetof_array_type) 5280 << Res->getType()); 5281 } 5282 5283 // FIXME: C++: Verify that operator[] isn't overloaded. 5284 5285 // Promote the array so it looks more like a normal array subscript 5286 // expression. 5287 DefaultFunctionArrayConversion(Res); 5288 5289 // C99 6.5.2.1p1 5290 Expr *Idx = static_cast<Expr*>(OC.U.E); 5291 // FIXME: Leaks Res 5292 if (!Idx->isTypeDependent() && !Idx->getType()->isIntegerType()) 5293 return ExprError(Diag(Idx->getLocStart(), 5294 diag::err_typecheck_subscript_not_integer) 5295 << Idx->getSourceRange()); 5296 5297 Res = new (Context) ArraySubscriptExpr(Res, Idx, AT->getElementType(), 5298 OC.LocEnd); 5299 continue; 5300 } 5301 5302 const RecordType *RC = Res->getType()->getAs<RecordType>(); 5303 if (!RC) { 5304 Res->Destroy(Context); 5305 return ExprError(Diag(OC.LocEnd, diag::err_offsetof_record_type) 5306 << Res->getType()); 5307 } 5308 5309 // Get the decl corresponding to this. 5310 RecordDecl *RD = RC->getDecl(); 5311 if (CXXRecordDecl *CRD = dyn_cast<CXXRecordDecl>(RD)) { 5312 if (!CRD->isPOD() && !DidWarnAboutNonPOD) { 5313 ExprError(Diag(BuiltinLoc, diag::warn_offsetof_non_pod_type) 5314 << SourceRange(CompPtr[0].LocStart, OC.LocEnd) 5315 << Res->getType()); 5316 DidWarnAboutNonPOD = true; 5317 } 5318 } 5319 5320 FieldDecl *MemberDecl 5321 = dyn_cast_or_null<FieldDecl>(LookupQualifiedName(RD, OC.U.IdentInfo, 5322 LookupMemberName) 5323 .getAsDecl()); 5324 // FIXME: Leaks Res 5325 if (!MemberDecl) 5326 return ExprError(Diag(BuiltinLoc, diag::err_typecheck_no_member) 5327 << OC.U.IdentInfo << SourceRange(OC.LocStart, OC.LocEnd)); 5328 5329 // FIXME: C++: Verify that MemberDecl isn't a static field. 5330 // FIXME: Verify that MemberDecl isn't a bitfield. 5331 if (cast<RecordDecl>(MemberDecl->getDeclContext())->isAnonymousStructOrUnion()) { 5332 Res = BuildAnonymousStructUnionMemberReference( 5333 SourceLocation(), MemberDecl, Res, SourceLocation()).takeAs<Expr>(); 5334 } else { 5335 // MemberDecl->getType() doesn't get the right qualifiers, but it 5336 // doesn't matter here. 5337 Res = new (Context) MemberExpr(Res, false, MemberDecl, OC.LocEnd, 5338 MemberDecl->getType().getNonReferenceType()); 5339 } 5340 } 5341 } 5342 5343 return Owned(new (Context) UnaryOperator(Res, UnaryOperator::OffsetOf, 5344 Context.getSizeType(), BuiltinLoc)); 5345 } 5346 5347 5348 Sema::OwningExprResult Sema::ActOnTypesCompatibleExpr(SourceLocation BuiltinLoc, 5349 TypeTy *arg1,TypeTy *arg2, 5350 SourceLocation RPLoc) { 5351 QualType argT1 = QualType::getFromOpaquePtr(arg1); 5352 QualType argT2 = QualType::getFromOpaquePtr(arg2); 5353 5354 assert((!argT1.isNull() && !argT2.isNull()) && "Missing type argument(s)"); 5355 5356 if (getLangOptions().CPlusPlus) { 5357 Diag(BuiltinLoc, diag::err_types_compatible_p_in_cplusplus) 5358 << SourceRange(BuiltinLoc, RPLoc); 5359 return ExprError(); 5360 } 5361 5362 return Owned(new (Context) TypesCompatibleExpr(Context.IntTy, BuiltinLoc, 5363 argT1, argT2, RPLoc)); 5364 } 5365 5366 Sema::OwningExprResult Sema::ActOnChooseExpr(SourceLocation BuiltinLoc, 5367 ExprArg cond, 5368 ExprArg expr1, ExprArg expr2, 5369 SourceLocation RPLoc) { 5370 Expr *CondExpr = static_cast<Expr*>(cond.get()); 5371 Expr *LHSExpr = static_cast<Expr*>(expr1.get()); 5372 Expr *RHSExpr = static_cast<Expr*>(expr2.get()); 5373 5374 assert((CondExpr && LHSExpr && RHSExpr) && "Missing type argument(s)"); 5375 5376 QualType resType; 5377 if (CondExpr->isTypeDependent() || CondExpr->isValueDependent()) { 5378 resType = Context.DependentTy; 5379 } else { 5380 // The conditional expression is required to be a constant expression. 5381 llvm::APSInt condEval(32); 5382 SourceLocation ExpLoc; 5383 if (!CondExpr->isIntegerConstantExpr(condEval, Context, &ExpLoc)) 5384 return ExprError(Diag(ExpLoc, 5385 diag::err_typecheck_choose_expr_requires_constant) 5386 << CondExpr->getSourceRange()); 5387 5388 // If the condition is > zero, then the AST type is the same as the LSHExpr. 5389 resType = condEval.getZExtValue() ? LHSExpr->getType() : RHSExpr->getType(); 5390 } 5391 5392 cond.release(); expr1.release(); expr2.release(); 5393 return Owned(new (Context) ChooseExpr(BuiltinLoc, CondExpr, LHSExpr, RHSExpr, 5394 resType, RPLoc)); 5395 } 5396 5397 //===----------------------------------------------------------------------===// 5398 // Clang Extensions. 5399 //===----------------------------------------------------------------------===// 5400 5401 /// ActOnBlockStart - This callback is invoked when a block literal is started. 5402 void Sema::ActOnBlockStart(SourceLocation CaretLoc, Scope *BlockScope) { 5403 // Analyze block parameters. 5404 BlockSemaInfo *BSI = new BlockSemaInfo(); 5405 5406 // Add BSI to CurBlock. 5407 BSI->PrevBlockInfo = CurBlock; 5408 CurBlock = BSI; 5409 5410 BSI->ReturnType = QualType(); 5411 BSI->TheScope = BlockScope; 5412 BSI->hasBlockDeclRefExprs = false; 5413 BSI->hasPrototype = false; 5414 BSI->SavedFunctionNeedsScopeChecking = CurFunctionNeedsScopeChecking; 5415 CurFunctionNeedsScopeChecking = false; 5416 5417 BSI->TheDecl = BlockDecl::Create(Context, CurContext, CaretLoc); 5418 PushDeclContext(BlockScope, BSI->TheDecl); 5419 } 5420 5421 void Sema::ActOnBlockArguments(Declarator &ParamInfo, Scope *CurScope) { 5422 assert(ParamInfo.getIdentifier()==0 && "block-id should have no identifier!"); 5423 5424 if (ParamInfo.getNumTypeObjects() == 0 5425 || ParamInfo.getTypeObject(0).Kind != DeclaratorChunk::Function) { 5426 ProcessDeclAttributes(CurScope, CurBlock->TheDecl, ParamInfo); 5427 QualType T = GetTypeForDeclarator(ParamInfo, CurScope); 5428 5429 if (T->isArrayType()) { 5430 Diag(ParamInfo.getSourceRange().getBegin(), 5431 diag::err_block_returns_array); 5432 return; 5433 } 5434 5435 // The parameter list is optional, if there was none, assume (). 5436 if (!T->isFunctionType()) 5437 T = Context.getFunctionType(T, NULL, 0, 0, 0); 5438 5439 CurBlock->hasPrototype = true; 5440 CurBlock->isVariadic = false; 5441 // Check for a valid sentinel attribute on this block. 5442 if (CurBlock->TheDecl->getAttr<SentinelAttr>()) { 5443 Diag(ParamInfo.getAttributes()->getLoc(), 5444 diag::warn_attribute_sentinel_not_variadic) << 1; 5445 // FIXME: remove the attribute. 5446 } 5447 QualType RetTy = T.getTypePtr()->getAsFunctionType()->getResultType(); 5448 5449 // Do not allow returning a objc interface by-value. 5450 if (RetTy->isObjCInterfaceType()) { 5451 Diag(ParamInfo.getSourceRange().getBegin(), 5452 diag::err_object_cannot_be_passed_returned_by_value) << 0 << RetTy; 5453 return; 5454 } 5455 return; 5456 } 5457 5458 // Analyze arguments to block. 5459 assert(ParamInfo.getTypeObject(0).Kind == DeclaratorChunk::Function && 5460 "Not a function declarator!"); 5461 DeclaratorChunk::FunctionTypeInfo &FTI = ParamInfo.getTypeObject(0).Fun; 5462 5463 CurBlock->hasPrototype = FTI.hasPrototype; 5464 CurBlock->isVariadic = true; 5465 5466 // Check for C99 6.7.5.3p10 - foo(void) is a non-varargs function that takes 5467 // no arguments, not a function that takes a single void argument. 5468 if (FTI.hasPrototype && 5469 FTI.NumArgs == 1 && !FTI.isVariadic && FTI.ArgInfo[0].Ident == 0 && 5470 (!FTI.ArgInfo[0].Param.getAs<ParmVarDecl>()->getType().getCVRQualifiers()&& 5471 FTI.ArgInfo[0].Param.getAs<ParmVarDecl>()->getType()->isVoidType())) { 5472 // empty arg list, don't push any params. 5473 CurBlock->isVariadic = false; 5474 } else if (FTI.hasPrototype) { 5475 for (unsigned i = 0, e = FTI.NumArgs; i != e; ++i) 5476 CurBlock->Params.push_back(FTI.ArgInfo[i].Param.getAs<ParmVarDecl>()); 5477 CurBlock->isVariadic = FTI.isVariadic; 5478 } 5479 CurBlock->TheDecl->setParams(Context, CurBlock->Params.data(), 5480 CurBlock->Params.size()); 5481 CurBlock->TheDecl->setIsVariadic(CurBlock->isVariadic); 5482 ProcessDeclAttributes(CurScope, CurBlock->TheDecl, ParamInfo); 5483 for (BlockDecl::param_iterator AI = CurBlock->TheDecl->param_begin(), 5484 E = CurBlock->TheDecl->param_end(); AI != E; ++AI) 5485 // If this has an identifier, add it to the scope stack. 5486 if ((*AI)->getIdentifier()) 5487 PushOnScopeChains(*AI, CurBlock->TheScope); 5488 5489 // Check for a valid sentinel attribute on this block. 5490 if (!CurBlock->isVariadic && 5491 CurBlock->TheDecl->getAttr<SentinelAttr>()) { 5492 Diag(ParamInfo.getAttributes()->getLoc(), 5493 diag::warn_attribute_sentinel_not_variadic) << 1; 5494 // FIXME: remove the attribute. 5495 } 5496 5497 // Analyze the return type. 5498 QualType T = GetTypeForDeclarator(ParamInfo, CurScope); 5499 QualType RetTy = T->getAsFunctionType()->getResultType(); 5500 5501 // Do not allow returning a objc interface by-value. 5502 if (RetTy->isObjCInterfaceType()) { 5503 Diag(ParamInfo.getSourceRange().getBegin(), 5504 diag::err_object_cannot_be_passed_returned_by_value) << 0 << RetTy; 5505 } else if (!RetTy->isDependentType()) 5506 CurBlock->ReturnType = RetTy; 5507 } 5508 5509 /// ActOnBlockError - If there is an error parsing a block, this callback 5510 /// is invoked to pop the information about the block from the action impl. 5511 void Sema::ActOnBlockError(SourceLocation CaretLoc, Scope *CurScope) { 5512 // Ensure that CurBlock is deleted. 5513 llvm::OwningPtr<BlockSemaInfo> CC(CurBlock); 5514 5515 CurFunctionNeedsScopeChecking = CurBlock->SavedFunctionNeedsScopeChecking; 5516 5517 // Pop off CurBlock, handle nested blocks. 5518 PopDeclContext(); 5519 CurBlock = CurBlock->PrevBlockInfo; 5520 // FIXME: Delete the ParmVarDecl objects as well??? 5521 } 5522 5523 /// ActOnBlockStmtExpr - This is called when the body of a block statement 5524 /// literal was successfully completed. ^(int x){...} 5525 Sema::OwningExprResult Sema::ActOnBlockStmtExpr(SourceLocation CaretLoc, 5526 StmtArg body, Scope *CurScope) { 5527 // If blocks are disabled, emit an error. 5528 if (!LangOpts.Blocks) 5529 Diag(CaretLoc, diag::err_blocks_disable); 5530 5531 // Ensure that CurBlock is deleted. 5532 llvm::OwningPtr<BlockSemaInfo> BSI(CurBlock); 5533 5534 PopDeclContext(); 5535 5536 // Pop off CurBlock, handle nested blocks. 5537 CurBlock = CurBlock->PrevBlockInfo; 5538 5539 QualType RetTy = Context.VoidTy; 5540 if (!BSI->ReturnType.isNull()) 5541 RetTy = BSI->ReturnType; 5542 5543 llvm::SmallVector<QualType, 8> ArgTypes; 5544 for (unsigned i = 0, e = BSI->Params.size(); i != e; ++i) 5545 ArgTypes.push_back(BSI->Params[i]->getType()); 5546 5547 bool NoReturn = BSI->TheDecl->getAttr<NoReturnAttr>(); 5548 QualType BlockTy; 5549 if (!BSI->hasPrototype) 5550 BlockTy = Context.getFunctionType(RetTy, 0, 0, false, 0, false, false, 0, 0, 5551 NoReturn); 5552 else 5553 BlockTy = Context.getFunctionType(RetTy, ArgTypes.data(), ArgTypes.size(), 5554 BSI->isVariadic, 0, false, false, 0, 0, 5555 NoReturn); 5556 5557 // FIXME: Check that return/parameter types are complete/non-abstract 5558 DiagnoseUnusedParameters(BSI->Params.begin(), BSI->Params.end()); 5559 BlockTy = Context.getBlockPointerType(BlockTy); 5560 5561 // If needed, diagnose invalid gotos and switches in the block. 5562 if (CurFunctionNeedsScopeChecking) 5563 DiagnoseInvalidJumps(static_cast<CompoundStmt*>(body.get())); 5564 CurFunctionNeedsScopeChecking = BSI->SavedFunctionNeedsScopeChecking; 5565 5566 BSI->TheDecl->setBody(body.takeAs<CompoundStmt>()); 5567 CheckFallThroughForBlock(BlockTy, BSI->TheDecl->getBody()); 5568 return Owned(new (Context) BlockExpr(BSI->TheDecl, BlockTy, 5569 BSI->hasBlockDeclRefExprs)); 5570 } 5571 5572 Sema::OwningExprResult Sema::ActOnVAArg(SourceLocation BuiltinLoc, 5573 ExprArg expr, TypeTy *type, 5574 SourceLocation RPLoc) { 5575 QualType T = QualType::getFromOpaquePtr(type); 5576 Expr *E = static_cast<Expr*>(expr.get()); 5577 Expr *OrigExpr = E; 5578 5579 InitBuiltinVaListType(); 5580 5581 // Get the va_list type 5582 QualType VaListType = Context.getBuiltinVaListType(); 5583 if (VaListType->isArrayType()) { 5584 // Deal with implicit array decay; for example, on x86-64, 5585 // va_list is an array, but it's supposed to decay to 5586 // a pointer for va_arg. 5587 VaListType = Context.getArrayDecayedType(VaListType); 5588 // Make sure the input expression also decays appropriately. 5589 UsualUnaryConversions(E); 5590 } else { 5591 // Otherwise, the va_list argument must be an l-value because 5592 // it is modified by va_arg. 5593 if (!E->isTypeDependent() && 5594 CheckForModifiableLvalue(E, BuiltinLoc, *this)) 5595 return ExprError(); 5596 } 5597 5598 if (!E->isTypeDependent() && 5599 !Context.hasSameType(VaListType, E->getType())) { 5600 return ExprError(Diag(E->getLocStart(), 5601 diag::err_first_argument_to_va_arg_not_of_type_va_list) 5602 << OrigExpr->getType() << E->getSourceRange()); 5603 } 5604 5605 // FIXME: Check that type is complete/non-abstract 5606 // FIXME: Warn if a non-POD type is passed in. 5607 5608 expr.release(); 5609 return Owned(new (Context) VAArgExpr(BuiltinLoc, E, T.getNonReferenceType(), 5610 RPLoc)); 5611 } 5612 5613 Sema::OwningExprResult Sema::ActOnGNUNullExpr(SourceLocation TokenLoc) { 5614 // The type of __null will be int or long, depending on the size of 5615 // pointers on the target. 5616 QualType Ty; 5617 if (Context.Target.getPointerWidth(0) == Context.Target.getIntWidth()) 5618 Ty = Context.IntTy; 5619 else 5620 Ty = Context.LongTy; 5621 5622 return Owned(new (Context) GNUNullExpr(Ty, TokenLoc)); 5623 } 5624 5625 bool Sema::DiagnoseAssignmentResult(AssignConvertType ConvTy, 5626 SourceLocation Loc, 5627 QualType DstType, QualType SrcType, 5628 Expr *SrcExpr, const char *Flavor) { 5629 // Decode the result (notice that AST's are still created for extensions). 5630 bool isInvalid = false; 5631 unsigned DiagKind; 5632 switch (ConvTy) { 5633 default: assert(0 && "Unknown conversion type"); 5634 case Compatible: return false; 5635 case PointerToInt: 5636 DiagKind = diag::ext_typecheck_convert_pointer_int; 5637 break; 5638 case IntToPointer: 5639 DiagKind = diag::ext_typecheck_convert_int_pointer; 5640 break; 5641 case IncompatiblePointer: 5642 DiagKind = diag::ext_typecheck_convert_incompatible_pointer; 5643 break; 5644 case IncompatiblePointerSign: 5645 DiagKind = diag::ext_typecheck_convert_incompatible_pointer_sign; 5646 break; 5647 case FunctionVoidPointer: 5648 DiagKind = diag::ext_typecheck_convert_pointer_void_func; 5649 break; 5650 case CompatiblePointerDiscardsQualifiers: 5651 // If the qualifiers lost were because we were applying the 5652 // (deprecated) C++ conversion from a string literal to a char* 5653 // (or wchar_t*), then there was no error (C++ 4.2p2). FIXME: 5654 // Ideally, this check would be performed in 5655 // CheckPointerTypesForAssignment. However, that would require a 5656 // bit of refactoring (so that the second argument is an 5657 // expression, rather than a type), which should be done as part 5658 // of a larger effort to fix CheckPointerTypesForAssignment for 5659 // C++ semantics. 5660 if (getLangOptions().CPlusPlus && 5661 IsStringLiteralToNonConstPointerConversion(SrcExpr, DstType)) 5662 return false; 5663 DiagKind = diag::ext_typecheck_convert_discards_qualifiers; 5664 break; 5665 case IntToBlockPointer: 5666 DiagKind = diag::err_int_to_block_pointer; 5667 break; 5668 case IncompatibleBlockPointer: 5669 DiagKind = diag::err_typecheck_convert_incompatible_block_pointer; 5670 break; 5671 case IncompatibleObjCQualifiedId: 5672 // FIXME: Diagnose the problem in ObjCQualifiedIdTypesAreCompatible, since 5673 // it can give a more specific diagnostic. 5674 DiagKind = diag::warn_incompatible_qualified_id; 5675 break; 5676 case IncompatibleVectors: 5677 DiagKind = diag::warn_incompatible_vectors; 5678 break; 5679 case Incompatible: 5680 DiagKind = diag::err_typecheck_convert_incompatible; 5681 isInvalid = true; 5682 break; 5683 } 5684 5685 Diag(Loc, DiagKind) << DstType << SrcType << Flavor 5686 << SrcExpr->getSourceRange(); 5687 return isInvalid; 5688 } 5689 5690 bool Sema::VerifyIntegerConstantExpression(const Expr *E, llvm::APSInt *Result){ 5691 llvm::APSInt ICEResult; 5692 if (E->isIntegerConstantExpr(ICEResult, Context)) { 5693 if (Result) 5694 *Result = ICEResult; 5695 return false; 5696 } 5697 5698 Expr::EvalResult EvalResult; 5699 5700 if (!E->Evaluate(EvalResult, Context) || !EvalResult.Val.isInt() || 5701 EvalResult.HasSideEffects) { 5702 Diag(E->getExprLoc(), diag::err_expr_not_ice) << E->getSourceRange(); 5703 5704 if (EvalResult.Diag) { 5705 // We only show the note if it's not the usual "invalid subexpression" 5706 // or if it's actually in a subexpression. 5707 if (EvalResult.Diag != diag::note_invalid_subexpr_in_ice || 5708 E->IgnoreParens() != EvalResult.DiagExpr->IgnoreParens()) 5709 Diag(EvalResult.DiagLoc, EvalResult.Diag); 5710 } 5711 5712 return true; 5713 } 5714 5715 Diag(E->getExprLoc(), diag::ext_expr_not_ice) << 5716 E->getSourceRange(); 5717 5718 if (EvalResult.Diag && 5719 Diags.getDiagnosticLevel(diag::ext_expr_not_ice) != Diagnostic::Ignored) 5720 Diag(EvalResult.DiagLoc, EvalResult.Diag); 5721 5722 if (Result) 5723 *Result = EvalResult.Val.getInt(); 5724 return false; 5725 } 5726 5727 Sema::ExpressionEvaluationContext 5728 Sema::PushExpressionEvaluationContext(ExpressionEvaluationContext NewContext) { 5729 // Introduce a new set of potentially referenced declarations to the stack. 5730 if (NewContext == PotentiallyPotentiallyEvaluated) 5731 PotentiallyReferencedDeclStack.push_back(PotentiallyReferencedDecls()); 5732 5733 std::swap(ExprEvalContext, NewContext); 5734 return NewContext; 5735 } 5736 5737 void 5738 Sema::PopExpressionEvaluationContext(ExpressionEvaluationContext OldContext, 5739 ExpressionEvaluationContext NewContext) { 5740 ExprEvalContext = NewContext; 5741 5742 if (OldContext == PotentiallyPotentiallyEvaluated) { 5743 // Mark any remaining declarations in the current position of the stack 5744 // as "referenced". If they were not meant to be referenced, semantic 5745 // analysis would have eliminated them (e.g., in ActOnCXXTypeId). 5746 PotentiallyReferencedDecls RemainingDecls; 5747 RemainingDecls.swap(PotentiallyReferencedDeclStack.back()); 5748 PotentiallyReferencedDeclStack.pop_back(); 5749 5750 for (PotentiallyReferencedDecls::iterator I = RemainingDecls.begin(), 5751 IEnd = RemainingDecls.end(); 5752 I != IEnd; ++I) 5753 MarkDeclarationReferenced(I->first, I->second); 5754 } 5755 } 5756 5757 /// \brief Note that the given declaration was referenced in the source code. 5758 /// 5759 /// This routine should be invoke whenever a given declaration is referenced 5760 /// in the source code, and where that reference occurred. If this declaration 5761 /// reference means that the the declaration is used (C++ [basic.def.odr]p2, 5762 /// C99 6.9p3), then the declaration will be marked as used. 5763 /// 5764 /// \param Loc the location where the declaration was referenced. 5765 /// 5766 /// \param D the declaration that has been referenced by the source code. 5767 void Sema::MarkDeclarationReferenced(SourceLocation Loc, Decl *D) { 5768 assert(D && "No declaration?"); 5769 5770 if (D->isUsed()) 5771 return; 5772 5773 // Mark a parameter declaration "used", regardless of whether we're in a 5774 // template or not. 5775 if (isa<ParmVarDecl>(D)) 5776 D->setUsed(true); 5777 5778 // Do not mark anything as "used" within a dependent context; wait for 5779 // an instantiation. 5780 if (CurContext->isDependentContext()) 5781 return; 5782 5783 switch (ExprEvalContext) { 5784 case Unevaluated: 5785 // We are in an expression that is not potentially evaluated; do nothing. 5786 return; 5787 5788 case PotentiallyEvaluated: 5789 // We are in a potentially-evaluated expression, so this declaration is 5790 // "used"; handle this below. 5791 break; 5792 5793 case PotentiallyPotentiallyEvaluated: 5794 // We are in an expression that may be potentially evaluated; queue this 5795 // declaration reference until we know whether the expression is 5796 // potentially evaluated. 5797 PotentiallyReferencedDeclStack.back().push_back(std::make_pair(Loc, D)); 5798 return; 5799 } 5800 5801 // Note that this declaration has been used. 5802 if (CXXConstructorDecl *Constructor = dyn_cast<CXXConstructorDecl>(D)) { 5803 unsigned TypeQuals; 5804 if (Constructor->isImplicit() && Constructor->isDefaultConstructor()) { 5805 if (!Constructor->isUsed()) 5806 DefineImplicitDefaultConstructor(Loc, Constructor); 5807 } 5808 else if (Constructor->isImplicit() && 5809 Constructor->isCopyConstructor(Context, TypeQuals)) { 5810 if (!Constructor->isUsed()) 5811 DefineImplicitCopyConstructor(Loc, Constructor, TypeQuals); 5812 } 5813 } else if (CXXDestructorDecl *Destructor = dyn_cast<CXXDestructorDecl>(D)) { 5814 if (Destructor->isImplicit() && !Destructor->isUsed()) 5815 DefineImplicitDestructor(Loc, Destructor); 5816 5817 } else if (CXXMethodDecl *MethodDecl = dyn_cast<CXXMethodDecl>(D)) { 5818 if (MethodDecl->isImplicit() && MethodDecl->isOverloadedOperator() && 5819 MethodDecl->getOverloadedOperator() == OO_Equal) { 5820 if (!MethodDecl->isUsed()) 5821 DefineImplicitOverloadedAssign(Loc, MethodDecl); 5822 } 5823 } 5824 if (FunctionDecl *Function = dyn_cast<FunctionDecl>(D)) { 5825 // Implicit instantiation of function templates and member functions of 5826 // class templates. 5827 if (!Function->getBody()) { 5828 // FIXME: distinguish between implicit instantiations of function 5829 // templates and explicit specializations (the latter don't get 5830 // instantiated, naturally). 5831 if (Function->getInstantiatedFromMemberFunction() || 5832 Function->getPrimaryTemplate()) 5833 PendingImplicitInstantiations.push_back(std::make_pair(Function, Loc)); 5834 } 5835 5836 5837 // FIXME: keep track of references to static functions 5838 Function->setUsed(true); 5839 return; 5840 } 5841 5842 if (VarDecl *Var = dyn_cast<VarDecl>(D)) { 5843 // Implicit instantiation of static data members of class templates. 5844 // FIXME: distinguish between implicit instantiations (which we need to 5845 // actually instantiate) and explicit specializations. 5846 if (Var->isStaticDataMember() && 5847 Var->getInstantiatedFromStaticDataMember()) 5848 PendingImplicitInstantiations.push_back(std::make_pair(Var, Loc)); 5849 5850 // FIXME: keep track of references to static data? 5851 5852 D->setUsed(true); 5853 return; 5854 } 5855 } 5856 5857