1 //===--- Expr.cpp - Expression AST Node Implementation --------------------===// 2 // 3 // Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions. 4 // See https://llvm.org/LICENSE.txt for license information. 5 // SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception 6 // 7 //===----------------------------------------------------------------------===// 8 // 9 // This file implements the Expr class and subclasses. 10 // 11 //===----------------------------------------------------------------------===// 12 13 #include "clang/AST/Expr.h" 14 #include "clang/AST/APValue.h" 15 #include "clang/AST/ASTContext.h" 16 #include "clang/AST/Attr.h" 17 #include "clang/AST/ComputeDependence.h" 18 #include "clang/AST/DeclCXX.h" 19 #include "clang/AST/DeclObjC.h" 20 #include "clang/AST/DeclTemplate.h" 21 #include "clang/AST/DependenceFlags.h" 22 #include "clang/AST/EvaluatedExprVisitor.h" 23 #include "clang/AST/ExprCXX.h" 24 #include "clang/AST/Mangle.h" 25 #include "clang/AST/RecordLayout.h" 26 #include "clang/AST/StmtVisitor.h" 27 #include "clang/Basic/Builtins.h" 28 #include "clang/Basic/CharInfo.h" 29 #include "clang/Basic/SourceManager.h" 30 #include "clang/Basic/TargetInfo.h" 31 #include "clang/Lex/Lexer.h" 32 #include "clang/Lex/LiteralSupport.h" 33 #include "llvm/Support/ErrorHandling.h" 34 #include "llvm/Support/raw_ostream.h" 35 #include <algorithm> 36 #include <cstring> 37 using namespace clang; 38 39 const Expr *Expr::getBestDynamicClassTypeExpr() const { 40 const Expr *E = this; 41 while (true) { 42 E = E->ignoreParenBaseCasts(); 43 44 // Follow the RHS of a comma operator. 45 if (auto *BO = dyn_cast<BinaryOperator>(E)) { 46 if (BO->getOpcode() == BO_Comma) { 47 E = BO->getRHS(); 48 continue; 49 } 50 } 51 52 // Step into initializer for materialized temporaries. 53 if (auto *MTE = dyn_cast<MaterializeTemporaryExpr>(E)) { 54 E = MTE->getSubExpr(); 55 continue; 56 } 57 58 break; 59 } 60 61 return E; 62 } 63 64 const CXXRecordDecl *Expr::getBestDynamicClassType() const { 65 const Expr *E = getBestDynamicClassTypeExpr(); 66 QualType DerivedType = E->getType(); 67 if (const PointerType *PTy = DerivedType->getAs<PointerType>()) 68 DerivedType = PTy->getPointeeType(); 69 70 if (DerivedType->isDependentType()) 71 return nullptr; 72 73 const RecordType *Ty = DerivedType->castAs<RecordType>(); 74 Decl *D = Ty->getDecl(); 75 return cast<CXXRecordDecl>(D); 76 } 77 78 const Expr *Expr::skipRValueSubobjectAdjustments( 79 SmallVectorImpl<const Expr *> &CommaLHSs, 80 SmallVectorImpl<SubobjectAdjustment> &Adjustments) const { 81 const Expr *E = this; 82 while (true) { 83 E = E->IgnoreParens(); 84 85 if (const CastExpr *CE = dyn_cast<CastExpr>(E)) { 86 if ((CE->getCastKind() == CK_DerivedToBase || 87 CE->getCastKind() == CK_UncheckedDerivedToBase) && 88 E->getType()->isRecordType()) { 89 E = CE->getSubExpr(); 90 auto *Derived = 91 cast<CXXRecordDecl>(E->getType()->castAs<RecordType>()->getDecl()); 92 Adjustments.push_back(SubobjectAdjustment(CE, Derived)); 93 continue; 94 } 95 96 if (CE->getCastKind() == CK_NoOp) { 97 E = CE->getSubExpr(); 98 continue; 99 } 100 } else if (const MemberExpr *ME = dyn_cast<MemberExpr>(E)) { 101 if (!ME->isArrow()) { 102 assert(ME->getBase()->getType()->isRecordType()); 103 if (FieldDecl *Field = dyn_cast<FieldDecl>(ME->getMemberDecl())) { 104 if (!Field->isBitField() && !Field->getType()->isReferenceType()) { 105 E = ME->getBase(); 106 Adjustments.push_back(SubobjectAdjustment(Field)); 107 continue; 108 } 109 } 110 } 111 } else if (const BinaryOperator *BO = dyn_cast<BinaryOperator>(E)) { 112 if (BO->getOpcode() == BO_PtrMemD) { 113 assert(BO->getRHS()->isRValue()); 114 E = BO->getLHS(); 115 const MemberPointerType *MPT = 116 BO->getRHS()->getType()->getAs<MemberPointerType>(); 117 Adjustments.push_back(SubobjectAdjustment(MPT, BO->getRHS())); 118 continue; 119 } else if (BO->getOpcode() == BO_Comma) { 120 CommaLHSs.push_back(BO->getLHS()); 121 E = BO->getRHS(); 122 continue; 123 } 124 } 125 126 // Nothing changed. 127 break; 128 } 129 return E; 130 } 131 132 bool Expr::isKnownToHaveBooleanValue(bool Semantic) const { 133 const Expr *E = IgnoreParens(); 134 135 // If this value has _Bool type, it is obvious 0/1. 136 if (E->getType()->isBooleanType()) return true; 137 // If this is a non-scalar-integer type, we don't care enough to try. 138 if (!E->getType()->isIntegralOrEnumerationType()) return false; 139 140 if (const UnaryOperator *UO = dyn_cast<UnaryOperator>(E)) { 141 switch (UO->getOpcode()) { 142 case UO_Plus: 143 return UO->getSubExpr()->isKnownToHaveBooleanValue(Semantic); 144 case UO_LNot: 145 return true; 146 default: 147 return false; 148 } 149 } 150 151 // Only look through implicit casts. If the user writes 152 // '(int) (a && b)' treat it as an arbitrary int. 153 // FIXME: Should we look through any cast expression in !Semantic mode? 154 if (const ImplicitCastExpr *CE = dyn_cast<ImplicitCastExpr>(E)) 155 return CE->getSubExpr()->isKnownToHaveBooleanValue(Semantic); 156 157 if (const BinaryOperator *BO = dyn_cast<BinaryOperator>(E)) { 158 switch (BO->getOpcode()) { 159 default: return false; 160 case BO_LT: // Relational operators. 161 case BO_GT: 162 case BO_LE: 163 case BO_GE: 164 case BO_EQ: // Equality operators. 165 case BO_NE: 166 case BO_LAnd: // AND operator. 167 case BO_LOr: // Logical OR operator. 168 return true; 169 170 case BO_And: // Bitwise AND operator. 171 case BO_Xor: // Bitwise XOR operator. 172 case BO_Or: // Bitwise OR operator. 173 // Handle things like (x==2)|(y==12). 174 return BO->getLHS()->isKnownToHaveBooleanValue(Semantic) && 175 BO->getRHS()->isKnownToHaveBooleanValue(Semantic); 176 177 case BO_Comma: 178 case BO_Assign: 179 return BO->getRHS()->isKnownToHaveBooleanValue(Semantic); 180 } 181 } 182 183 if (const ConditionalOperator *CO = dyn_cast<ConditionalOperator>(E)) 184 return CO->getTrueExpr()->isKnownToHaveBooleanValue(Semantic) && 185 CO->getFalseExpr()->isKnownToHaveBooleanValue(Semantic); 186 187 if (isa<ObjCBoolLiteralExpr>(E)) 188 return true; 189 190 if (const auto *OVE = dyn_cast<OpaqueValueExpr>(E)) 191 return OVE->getSourceExpr()->isKnownToHaveBooleanValue(Semantic); 192 193 if (const FieldDecl *FD = E->getSourceBitField()) 194 if (!Semantic && FD->getType()->isUnsignedIntegerType() && 195 !FD->getBitWidth()->isValueDependent() && 196 FD->getBitWidthValue(FD->getASTContext()) == 1) 197 return true; 198 199 return false; 200 } 201 202 // Amusing macro metaprogramming hack: check whether a class provides 203 // a more specific implementation of getExprLoc(). 204 // 205 // See also Stmt.cpp:{getBeginLoc(),getEndLoc()}. 206 namespace { 207 /// This implementation is used when a class provides a custom 208 /// implementation of getExprLoc. 209 template <class E, class T> 210 SourceLocation getExprLocImpl(const Expr *expr, 211 SourceLocation (T::*v)() const) { 212 return static_cast<const E*>(expr)->getExprLoc(); 213 } 214 215 /// This implementation is used when a class doesn't provide 216 /// a custom implementation of getExprLoc. Overload resolution 217 /// should pick it over the implementation above because it's 218 /// more specialized according to function template partial ordering. 219 template <class E> 220 SourceLocation getExprLocImpl(const Expr *expr, 221 SourceLocation (Expr::*v)() const) { 222 return static_cast<const E *>(expr)->getBeginLoc(); 223 } 224 } 225 226 SourceLocation Expr::getExprLoc() const { 227 switch (getStmtClass()) { 228 case Stmt::NoStmtClass: llvm_unreachable("statement without class"); 229 #define ABSTRACT_STMT(type) 230 #define STMT(type, base) \ 231 case Stmt::type##Class: break; 232 #define EXPR(type, base) \ 233 case Stmt::type##Class: return getExprLocImpl<type>(this, &type::getExprLoc); 234 #include "clang/AST/StmtNodes.inc" 235 } 236 llvm_unreachable("unknown expression kind"); 237 } 238 239 //===----------------------------------------------------------------------===// 240 // Primary Expressions. 241 //===----------------------------------------------------------------------===// 242 243 static void AssertResultStorageKind(ConstantExpr::ResultStorageKind Kind) { 244 assert((Kind == ConstantExpr::RSK_APValue || 245 Kind == ConstantExpr::RSK_Int64 || Kind == ConstantExpr::RSK_None) && 246 "Invalid StorageKind Value"); 247 } 248 249 ConstantExpr::ResultStorageKind 250 ConstantExpr::getStorageKind(const APValue &Value) { 251 switch (Value.getKind()) { 252 case APValue::None: 253 case APValue::Indeterminate: 254 return ConstantExpr::RSK_None; 255 case APValue::Int: 256 if (!Value.getInt().needsCleanup()) 257 return ConstantExpr::RSK_Int64; 258 LLVM_FALLTHROUGH; 259 default: 260 return ConstantExpr::RSK_APValue; 261 } 262 } 263 264 ConstantExpr::ResultStorageKind 265 ConstantExpr::getStorageKind(const Type *T, const ASTContext &Context) { 266 if (T->isIntegralOrEnumerationType() && Context.getTypeInfo(T).Width <= 64) 267 return ConstantExpr::RSK_Int64; 268 return ConstantExpr::RSK_APValue; 269 } 270 271 void ConstantExpr::DefaultInit(ResultStorageKind StorageKind) { 272 ConstantExprBits.ResultKind = StorageKind; 273 ConstantExprBits.APValueKind = APValue::None; 274 ConstantExprBits.HasCleanup = false; 275 if (StorageKind == ConstantExpr::RSK_APValue) 276 ::new (getTrailingObjects<APValue>()) APValue(); 277 } 278 279 ConstantExpr::ConstantExpr(Expr *subexpr, ResultStorageKind StorageKind) 280 : FullExpr(ConstantExprClass, subexpr) { 281 DefaultInit(StorageKind); 282 } 283 284 ConstantExpr *ConstantExpr::Create(const ASTContext &Context, Expr *E, 285 ResultStorageKind StorageKind, 286 bool IsImmediateInvocation) { 287 assert(!isa<ConstantExpr>(E)); 288 AssertResultStorageKind(StorageKind); 289 unsigned Size = totalSizeToAlloc<APValue, uint64_t>( 290 StorageKind == ConstantExpr::RSK_APValue, 291 StorageKind == ConstantExpr::RSK_Int64); 292 void *Mem = Context.Allocate(Size, alignof(ConstantExpr)); 293 ConstantExpr *Self = new (Mem) ConstantExpr(E, StorageKind); 294 Self->ConstantExprBits.IsImmediateInvocation = 295 IsImmediateInvocation; 296 return Self; 297 } 298 299 ConstantExpr *ConstantExpr::Create(const ASTContext &Context, Expr *E, 300 const APValue &Result) { 301 ResultStorageKind StorageKind = getStorageKind(Result); 302 ConstantExpr *Self = Create(Context, E, StorageKind); 303 Self->SetResult(Result, Context); 304 return Self; 305 } 306 307 ConstantExpr::ConstantExpr(ResultStorageKind StorageKind, EmptyShell Empty) 308 : FullExpr(ConstantExprClass, Empty) { 309 DefaultInit(StorageKind); 310 } 311 312 ConstantExpr *ConstantExpr::CreateEmpty(const ASTContext &Context, 313 ResultStorageKind StorageKind, 314 EmptyShell Empty) { 315 AssertResultStorageKind(StorageKind); 316 unsigned Size = totalSizeToAlloc<APValue, uint64_t>( 317 StorageKind == ConstantExpr::RSK_APValue, 318 StorageKind == ConstantExpr::RSK_Int64); 319 void *Mem = Context.Allocate(Size, alignof(ConstantExpr)); 320 ConstantExpr *Self = new (Mem) ConstantExpr(StorageKind, Empty); 321 return Self; 322 } 323 324 void ConstantExpr::MoveIntoResult(APValue &Value, const ASTContext &Context) { 325 assert((unsigned)getStorageKind(Value) <= ConstantExprBits.ResultKind && 326 "Invalid storage for this value kind"); 327 ConstantExprBits.APValueKind = Value.getKind(); 328 switch (ConstantExprBits.ResultKind) { 329 case RSK_None: 330 return; 331 case RSK_Int64: 332 Int64Result() = *Value.getInt().getRawData(); 333 ConstantExprBits.BitWidth = Value.getInt().getBitWidth(); 334 ConstantExprBits.IsUnsigned = Value.getInt().isUnsigned(); 335 return; 336 case RSK_APValue: 337 if (!ConstantExprBits.HasCleanup && Value.needsCleanup()) { 338 ConstantExprBits.HasCleanup = true; 339 Context.addDestruction(&APValueResult()); 340 } 341 APValueResult() = std::move(Value); 342 return; 343 } 344 llvm_unreachable("Invalid ResultKind Bits"); 345 } 346 347 llvm::APSInt ConstantExpr::getResultAsAPSInt() const { 348 switch (ConstantExprBits.ResultKind) { 349 case ConstantExpr::RSK_APValue: 350 return APValueResult().getInt(); 351 case ConstantExpr::RSK_Int64: 352 return llvm::APSInt(llvm::APInt(ConstantExprBits.BitWidth, Int64Result()), 353 ConstantExprBits.IsUnsigned); 354 default: 355 llvm_unreachable("invalid Accessor"); 356 } 357 } 358 359 APValue ConstantExpr::getAPValueResult() const { 360 assert(hasAPValueResult()); 361 362 switch (ConstantExprBits.ResultKind) { 363 case ConstantExpr::RSK_APValue: 364 return APValueResult(); 365 case ConstantExpr::RSK_Int64: 366 return APValue( 367 llvm::APSInt(llvm::APInt(ConstantExprBits.BitWidth, Int64Result()), 368 ConstantExprBits.IsUnsigned)); 369 case ConstantExpr::RSK_None: 370 return APValue(); 371 } 372 llvm_unreachable("invalid ResultKind"); 373 } 374 375 DeclRefExpr::DeclRefExpr(const ASTContext &Ctx, ValueDecl *D, 376 bool RefersToEnclosingVariableOrCapture, QualType T, 377 ExprValueKind VK, SourceLocation L, 378 const DeclarationNameLoc &LocInfo, 379 NonOdrUseReason NOUR) 380 : Expr(DeclRefExprClass, T, VK, OK_Ordinary), D(D), DNLoc(LocInfo) { 381 DeclRefExprBits.HasQualifier = false; 382 DeclRefExprBits.HasTemplateKWAndArgsInfo = false; 383 DeclRefExprBits.HasFoundDecl = false; 384 DeclRefExprBits.HadMultipleCandidates = false; 385 DeclRefExprBits.RefersToEnclosingVariableOrCapture = 386 RefersToEnclosingVariableOrCapture; 387 DeclRefExprBits.NonOdrUseReason = NOUR; 388 DeclRefExprBits.Loc = L; 389 setDependence(computeDependence(this, Ctx)); 390 } 391 392 DeclRefExpr::DeclRefExpr(const ASTContext &Ctx, 393 NestedNameSpecifierLoc QualifierLoc, 394 SourceLocation TemplateKWLoc, ValueDecl *D, 395 bool RefersToEnclosingVariableOrCapture, 396 const DeclarationNameInfo &NameInfo, NamedDecl *FoundD, 397 const TemplateArgumentListInfo *TemplateArgs, 398 QualType T, ExprValueKind VK, NonOdrUseReason NOUR) 399 : Expr(DeclRefExprClass, T, VK, OK_Ordinary), D(D), 400 DNLoc(NameInfo.getInfo()) { 401 DeclRefExprBits.Loc = NameInfo.getLoc(); 402 DeclRefExprBits.HasQualifier = QualifierLoc ? 1 : 0; 403 if (QualifierLoc) 404 new (getTrailingObjects<NestedNameSpecifierLoc>()) 405 NestedNameSpecifierLoc(QualifierLoc); 406 DeclRefExprBits.HasFoundDecl = FoundD ? 1 : 0; 407 if (FoundD) 408 *getTrailingObjects<NamedDecl *>() = FoundD; 409 DeclRefExprBits.HasTemplateKWAndArgsInfo 410 = (TemplateArgs || TemplateKWLoc.isValid()) ? 1 : 0; 411 DeclRefExprBits.RefersToEnclosingVariableOrCapture = 412 RefersToEnclosingVariableOrCapture; 413 DeclRefExprBits.NonOdrUseReason = NOUR; 414 if (TemplateArgs) { 415 auto Deps = TemplateArgumentDependence::None; 416 getTrailingObjects<ASTTemplateKWAndArgsInfo>()->initializeFrom( 417 TemplateKWLoc, *TemplateArgs, getTrailingObjects<TemplateArgumentLoc>(), 418 Deps); 419 assert(!(Deps & TemplateArgumentDependence::Dependent) && 420 "built a DeclRefExpr with dependent template args"); 421 } else if (TemplateKWLoc.isValid()) { 422 getTrailingObjects<ASTTemplateKWAndArgsInfo>()->initializeFrom( 423 TemplateKWLoc); 424 } 425 DeclRefExprBits.HadMultipleCandidates = 0; 426 setDependence(computeDependence(this, Ctx)); 427 } 428 429 DeclRefExpr *DeclRefExpr::Create(const ASTContext &Context, 430 NestedNameSpecifierLoc QualifierLoc, 431 SourceLocation TemplateKWLoc, ValueDecl *D, 432 bool RefersToEnclosingVariableOrCapture, 433 SourceLocation NameLoc, QualType T, 434 ExprValueKind VK, NamedDecl *FoundD, 435 const TemplateArgumentListInfo *TemplateArgs, 436 NonOdrUseReason NOUR) { 437 return Create(Context, QualifierLoc, TemplateKWLoc, D, 438 RefersToEnclosingVariableOrCapture, 439 DeclarationNameInfo(D->getDeclName(), NameLoc), 440 T, VK, FoundD, TemplateArgs, NOUR); 441 } 442 443 DeclRefExpr *DeclRefExpr::Create(const ASTContext &Context, 444 NestedNameSpecifierLoc QualifierLoc, 445 SourceLocation TemplateKWLoc, ValueDecl *D, 446 bool RefersToEnclosingVariableOrCapture, 447 const DeclarationNameInfo &NameInfo, 448 QualType T, ExprValueKind VK, 449 NamedDecl *FoundD, 450 const TemplateArgumentListInfo *TemplateArgs, 451 NonOdrUseReason NOUR) { 452 // Filter out cases where the found Decl is the same as the value refenenced. 453 if (D == FoundD) 454 FoundD = nullptr; 455 456 bool HasTemplateKWAndArgsInfo = TemplateArgs || TemplateKWLoc.isValid(); 457 std::size_t Size = 458 totalSizeToAlloc<NestedNameSpecifierLoc, NamedDecl *, 459 ASTTemplateKWAndArgsInfo, TemplateArgumentLoc>( 460 QualifierLoc ? 1 : 0, FoundD ? 1 : 0, 461 HasTemplateKWAndArgsInfo ? 1 : 0, 462 TemplateArgs ? TemplateArgs->size() : 0); 463 464 void *Mem = Context.Allocate(Size, alignof(DeclRefExpr)); 465 return new (Mem) DeclRefExpr(Context, QualifierLoc, TemplateKWLoc, D, 466 RefersToEnclosingVariableOrCapture, NameInfo, 467 FoundD, TemplateArgs, T, VK, NOUR); 468 } 469 470 DeclRefExpr *DeclRefExpr::CreateEmpty(const ASTContext &Context, 471 bool HasQualifier, 472 bool HasFoundDecl, 473 bool HasTemplateKWAndArgsInfo, 474 unsigned NumTemplateArgs) { 475 assert(NumTemplateArgs == 0 || HasTemplateKWAndArgsInfo); 476 std::size_t Size = 477 totalSizeToAlloc<NestedNameSpecifierLoc, NamedDecl *, 478 ASTTemplateKWAndArgsInfo, TemplateArgumentLoc>( 479 HasQualifier ? 1 : 0, HasFoundDecl ? 1 : 0, HasTemplateKWAndArgsInfo, 480 NumTemplateArgs); 481 void *Mem = Context.Allocate(Size, alignof(DeclRefExpr)); 482 return new (Mem) DeclRefExpr(EmptyShell()); 483 } 484 485 SourceLocation DeclRefExpr::getBeginLoc() const { 486 if (hasQualifier()) 487 return getQualifierLoc().getBeginLoc(); 488 return getNameInfo().getBeginLoc(); 489 } 490 SourceLocation DeclRefExpr::getEndLoc() const { 491 if (hasExplicitTemplateArgs()) 492 return getRAngleLoc(); 493 return getNameInfo().getEndLoc(); 494 } 495 496 PredefinedExpr::PredefinedExpr(SourceLocation L, QualType FNTy, IdentKind IK, 497 StringLiteral *SL) 498 : Expr(PredefinedExprClass, FNTy, VK_LValue, OK_Ordinary) { 499 PredefinedExprBits.Kind = IK; 500 assert((getIdentKind() == IK) && 501 "IdentKind do not fit in PredefinedExprBitfields!"); 502 bool HasFunctionName = SL != nullptr; 503 PredefinedExprBits.HasFunctionName = HasFunctionName; 504 PredefinedExprBits.Loc = L; 505 if (HasFunctionName) 506 setFunctionName(SL); 507 setDependence(computeDependence(this)); 508 } 509 510 PredefinedExpr::PredefinedExpr(SourceLocation L, QualType FnTy, IdentKind IK, 511 TypeSourceInfo *Info) 512 : Expr(PredefinedExprClass, FnTy, VK_LValue, OK_Ordinary) { 513 PredefinedExprBits.Kind = IK; 514 assert((getIdentKind() == IK) && 515 "IdentKind do not fit in PredefinedExprBitFields!"); 516 assert(IK == UniqueStableNameType && 517 "Constructor only valid with UniqueStableNameType"); 518 PredefinedExprBits.HasFunctionName = false; 519 PredefinedExprBits.Loc = L; 520 setTypeSourceInfo(Info); 521 setDependence(computeDependence(this)); 522 } 523 524 PredefinedExpr::PredefinedExpr(SourceLocation L, QualType FnTy, IdentKind IK, 525 Expr *E) 526 : Expr(PredefinedExprClass, FnTy, VK_LValue, OK_Ordinary) { 527 PredefinedExprBits.Kind = IK; 528 assert((getIdentKind() == IK) && 529 "IdentKind do not fit in PredefinedExprBitFields!"); 530 assert(IK == UniqueStableNameExpr && 531 "Constructor only valid with UniqueStableNameExpr"); 532 PredefinedExprBits.HasFunctionName = false; 533 PredefinedExprBits.Loc = L; 534 setExpr(E); 535 setDependence(computeDependence(this)); 536 } 537 538 PredefinedExpr::PredefinedExpr(EmptyShell Empty, bool HasFunctionName) 539 : Expr(PredefinedExprClass, Empty) { 540 PredefinedExprBits.HasFunctionName = HasFunctionName; 541 } 542 543 PredefinedExpr *PredefinedExpr::Create(const ASTContext &Ctx, SourceLocation L, 544 QualType FNTy, IdentKind IK, 545 StringLiteral *SL) { 546 bool HasFunctionName = SL != nullptr; 547 void *Mem = Ctx.Allocate( 548 totalSizeToAlloc<Stmt *, Expr *, TypeSourceInfo *>(HasFunctionName, 0, 0), 549 alignof(PredefinedExpr)); 550 return new (Mem) PredefinedExpr(L, FNTy, IK, SL); 551 } 552 553 PredefinedExpr *PredefinedExpr::Create(const ASTContext &Ctx, SourceLocation L, 554 QualType FNTy, IdentKind IK, 555 StringLiteral *SL, 556 TypeSourceInfo *Info) { 557 assert(IK == UniqueStableNameType && "Only valid with UniqueStableNameType"); 558 bool HasFunctionName = SL != nullptr; 559 void *Mem = Ctx.Allocate(totalSizeToAlloc<Stmt *, Expr *, TypeSourceInfo *>( 560 HasFunctionName, 0, !HasFunctionName), 561 alignof(PredefinedExpr)); 562 if (HasFunctionName) 563 return new (Mem) PredefinedExpr(L, FNTy, IK, SL); 564 return new (Mem) PredefinedExpr(L, FNTy, IK, Info); 565 } 566 567 PredefinedExpr *PredefinedExpr::Create(const ASTContext &Ctx, SourceLocation L, 568 QualType FNTy, IdentKind IK, 569 StringLiteral *SL, Expr *E) { 570 assert(IK == UniqueStableNameExpr && "Only valid with UniqueStableNameExpr"); 571 bool HasFunctionName = SL != nullptr; 572 void *Mem = Ctx.Allocate(totalSizeToAlloc<Stmt *, Expr *, TypeSourceInfo *>( 573 HasFunctionName, !HasFunctionName, 0), 574 alignof(PredefinedExpr)); 575 if (HasFunctionName) 576 return new (Mem) PredefinedExpr(L, FNTy, IK, SL); 577 return new (Mem) PredefinedExpr(L, FNTy, IK, E); 578 } 579 580 PredefinedExpr *PredefinedExpr::CreateEmpty(const ASTContext &Ctx, 581 bool HasFunctionName) { 582 void *Mem = Ctx.Allocate( 583 totalSizeToAlloc<Stmt *, Expr *, TypeSourceInfo *>(HasFunctionName, 0, 0), 584 alignof(PredefinedExpr)); 585 return new (Mem) PredefinedExpr(EmptyShell(), HasFunctionName); 586 } 587 588 StringRef PredefinedExpr::getIdentKindName(PredefinedExpr::IdentKind IK) { 589 switch (IK) { 590 case Func: 591 return "__func__"; 592 case Function: 593 return "__FUNCTION__"; 594 case FuncDName: 595 return "__FUNCDNAME__"; 596 case LFunction: 597 return "L__FUNCTION__"; 598 case PrettyFunction: 599 return "__PRETTY_FUNCTION__"; 600 case FuncSig: 601 return "__FUNCSIG__"; 602 case LFuncSig: 603 return "L__FUNCSIG__"; 604 case UniqueStableNameType: 605 case UniqueStableNameExpr: 606 return "__builtin_unique_stable_name"; 607 case PrettyFunctionNoVirtual: 608 break; 609 } 610 llvm_unreachable("Unknown ident kind for PredefinedExpr"); 611 } 612 613 std::string PredefinedExpr::ComputeName(ASTContext &Context, IdentKind IK, 614 QualType Ty) { 615 std::unique_ptr<MangleContext> Ctx{ItaniumMangleContext::create( 616 Context, Context.getDiagnostics(), /*IsUniqueNameMangler*/ true)}; 617 618 Ty = Ty.getCanonicalType(); 619 620 SmallString<256> Buffer; 621 llvm::raw_svector_ostream Out(Buffer); 622 Ctx->mangleTypeName(Ty, Out); 623 return std::string(Buffer.str()); 624 } 625 626 // FIXME: Maybe this should use DeclPrinter with a special "print predefined 627 // expr" policy instead. 628 std::string PredefinedExpr::ComputeName(IdentKind IK, const Decl *CurrentDecl) { 629 ASTContext &Context = CurrentDecl->getASTContext(); 630 631 if (IK == PredefinedExpr::FuncDName) { 632 if (const NamedDecl *ND = dyn_cast<NamedDecl>(CurrentDecl)) { 633 std::unique_ptr<MangleContext> MC; 634 MC.reset(Context.createMangleContext()); 635 636 if (MC->shouldMangleDeclName(ND)) { 637 SmallString<256> Buffer; 638 llvm::raw_svector_ostream Out(Buffer); 639 GlobalDecl GD; 640 if (const CXXConstructorDecl *CD = dyn_cast<CXXConstructorDecl>(ND)) 641 GD = GlobalDecl(CD, Ctor_Base); 642 else if (const CXXDestructorDecl *DD = dyn_cast<CXXDestructorDecl>(ND)) 643 GD = GlobalDecl(DD, Dtor_Base); 644 else if (ND->hasAttr<CUDAGlobalAttr>()) 645 GD = GlobalDecl(cast<FunctionDecl>(ND)); 646 else 647 GD = GlobalDecl(ND); 648 MC->mangleName(GD, Out); 649 650 if (!Buffer.empty() && Buffer.front() == '\01') 651 return std::string(Buffer.substr(1)); 652 return std::string(Buffer.str()); 653 } else 654 return std::string(ND->getIdentifier()->getName()); 655 } 656 return ""; 657 } 658 if (isa<BlockDecl>(CurrentDecl)) { 659 // For blocks we only emit something if it is enclosed in a function 660 // For top-level block we'd like to include the name of variable, but we 661 // don't have it at this point. 662 auto DC = CurrentDecl->getDeclContext(); 663 if (DC->isFileContext()) 664 return ""; 665 666 SmallString<256> Buffer; 667 llvm::raw_svector_ostream Out(Buffer); 668 if (auto *DCBlock = dyn_cast<BlockDecl>(DC)) 669 // For nested blocks, propagate up to the parent. 670 Out << ComputeName(IK, DCBlock); 671 else if (auto *DCDecl = dyn_cast<Decl>(DC)) 672 Out << ComputeName(IK, DCDecl) << "_block_invoke"; 673 return std::string(Out.str()); 674 } 675 if (const FunctionDecl *FD = dyn_cast<FunctionDecl>(CurrentDecl)) { 676 if (IK != PrettyFunction && IK != PrettyFunctionNoVirtual && 677 IK != FuncSig && IK != LFuncSig) 678 return FD->getNameAsString(); 679 680 SmallString<256> Name; 681 llvm::raw_svector_ostream Out(Name); 682 683 if (const CXXMethodDecl *MD = dyn_cast<CXXMethodDecl>(FD)) { 684 if (MD->isVirtual() && IK != PrettyFunctionNoVirtual) 685 Out << "virtual "; 686 if (MD->isStatic()) 687 Out << "static "; 688 } 689 690 PrintingPolicy Policy(Context.getLangOpts()); 691 std::string Proto; 692 llvm::raw_string_ostream POut(Proto); 693 694 const FunctionDecl *Decl = FD; 695 if (const FunctionDecl* Pattern = FD->getTemplateInstantiationPattern()) 696 Decl = Pattern; 697 const FunctionType *AFT = Decl->getType()->getAs<FunctionType>(); 698 const FunctionProtoType *FT = nullptr; 699 if (FD->hasWrittenPrototype()) 700 FT = dyn_cast<FunctionProtoType>(AFT); 701 702 if (IK == FuncSig || IK == LFuncSig) { 703 switch (AFT->getCallConv()) { 704 case CC_C: POut << "__cdecl "; break; 705 case CC_X86StdCall: POut << "__stdcall "; break; 706 case CC_X86FastCall: POut << "__fastcall "; break; 707 case CC_X86ThisCall: POut << "__thiscall "; break; 708 case CC_X86VectorCall: POut << "__vectorcall "; break; 709 case CC_X86RegCall: POut << "__regcall "; break; 710 // Only bother printing the conventions that MSVC knows about. 711 default: break; 712 } 713 } 714 715 FD->printQualifiedName(POut, Policy); 716 717 POut << "("; 718 if (FT) { 719 for (unsigned i = 0, e = Decl->getNumParams(); i != e; ++i) { 720 if (i) POut << ", "; 721 POut << Decl->getParamDecl(i)->getType().stream(Policy); 722 } 723 724 if (FT->isVariadic()) { 725 if (FD->getNumParams()) POut << ", "; 726 POut << "..."; 727 } else if ((IK == FuncSig || IK == LFuncSig || 728 !Context.getLangOpts().CPlusPlus) && 729 !Decl->getNumParams()) { 730 POut << "void"; 731 } 732 } 733 POut << ")"; 734 735 if (const CXXMethodDecl *MD = dyn_cast<CXXMethodDecl>(FD)) { 736 assert(FT && "We must have a written prototype in this case."); 737 if (FT->isConst()) 738 POut << " const"; 739 if (FT->isVolatile()) 740 POut << " volatile"; 741 RefQualifierKind Ref = MD->getRefQualifier(); 742 if (Ref == RQ_LValue) 743 POut << " &"; 744 else if (Ref == RQ_RValue) 745 POut << " &&"; 746 } 747 748 typedef SmallVector<const ClassTemplateSpecializationDecl *, 8> SpecsTy; 749 SpecsTy Specs; 750 const DeclContext *Ctx = FD->getDeclContext(); 751 while (Ctx && isa<NamedDecl>(Ctx)) { 752 const ClassTemplateSpecializationDecl *Spec 753 = dyn_cast<ClassTemplateSpecializationDecl>(Ctx); 754 if (Spec && !Spec->isExplicitSpecialization()) 755 Specs.push_back(Spec); 756 Ctx = Ctx->getParent(); 757 } 758 759 std::string TemplateParams; 760 llvm::raw_string_ostream TOut(TemplateParams); 761 for (SpecsTy::reverse_iterator I = Specs.rbegin(), E = Specs.rend(); 762 I != E; ++I) { 763 const TemplateParameterList *Params 764 = (*I)->getSpecializedTemplate()->getTemplateParameters(); 765 const TemplateArgumentList &Args = (*I)->getTemplateArgs(); 766 assert(Params->size() == Args.size()); 767 for (unsigned i = 0, numParams = Params->size(); i != numParams; ++i) { 768 StringRef Param = Params->getParam(i)->getName(); 769 if (Param.empty()) continue; 770 TOut << Param << " = "; 771 Args.get(i).print(Policy, TOut); 772 TOut << ", "; 773 } 774 } 775 776 FunctionTemplateSpecializationInfo *FSI 777 = FD->getTemplateSpecializationInfo(); 778 if (FSI && !FSI->isExplicitSpecialization()) { 779 const TemplateParameterList* Params 780 = FSI->getTemplate()->getTemplateParameters(); 781 const TemplateArgumentList* Args = FSI->TemplateArguments; 782 assert(Params->size() == Args->size()); 783 for (unsigned i = 0, e = Params->size(); i != e; ++i) { 784 StringRef Param = Params->getParam(i)->getName(); 785 if (Param.empty()) continue; 786 TOut << Param << " = "; 787 Args->get(i).print(Policy, TOut); 788 TOut << ", "; 789 } 790 } 791 792 TOut.flush(); 793 if (!TemplateParams.empty()) { 794 // remove the trailing comma and space 795 TemplateParams.resize(TemplateParams.size() - 2); 796 POut << " [" << TemplateParams << "]"; 797 } 798 799 POut.flush(); 800 801 // Print "auto" for all deduced return types. This includes C++1y return 802 // type deduction and lambdas. For trailing return types resolve the 803 // decltype expression. Otherwise print the real type when this is 804 // not a constructor or destructor. 805 if (isa<CXXMethodDecl>(FD) && 806 cast<CXXMethodDecl>(FD)->getParent()->isLambda()) 807 Proto = "auto " + Proto; 808 else if (FT && FT->getReturnType()->getAs<DecltypeType>()) 809 FT->getReturnType() 810 ->getAs<DecltypeType>() 811 ->getUnderlyingType() 812 .getAsStringInternal(Proto, Policy); 813 else if (!isa<CXXConstructorDecl>(FD) && !isa<CXXDestructorDecl>(FD)) 814 AFT->getReturnType().getAsStringInternal(Proto, Policy); 815 816 Out << Proto; 817 818 return std::string(Name); 819 } 820 if (const CapturedDecl *CD = dyn_cast<CapturedDecl>(CurrentDecl)) { 821 for (const DeclContext *DC = CD->getParent(); DC; DC = DC->getParent()) 822 // Skip to its enclosing function or method, but not its enclosing 823 // CapturedDecl. 824 if (DC->isFunctionOrMethod() && (DC->getDeclKind() != Decl::Captured)) { 825 const Decl *D = Decl::castFromDeclContext(DC); 826 return ComputeName(IK, D); 827 } 828 llvm_unreachable("CapturedDecl not inside a function or method"); 829 } 830 if (const ObjCMethodDecl *MD = dyn_cast<ObjCMethodDecl>(CurrentDecl)) { 831 SmallString<256> Name; 832 llvm::raw_svector_ostream Out(Name); 833 Out << (MD->isInstanceMethod() ? '-' : '+'); 834 Out << '['; 835 836 // For incorrect code, there might not be an ObjCInterfaceDecl. Do 837 // a null check to avoid a crash. 838 if (const ObjCInterfaceDecl *ID = MD->getClassInterface()) 839 Out << *ID; 840 841 if (const ObjCCategoryImplDecl *CID = 842 dyn_cast<ObjCCategoryImplDecl>(MD->getDeclContext())) 843 Out << '(' << *CID << ')'; 844 845 Out << ' '; 846 MD->getSelector().print(Out); 847 Out << ']'; 848 849 return std::string(Name); 850 } 851 if (isa<TranslationUnitDecl>(CurrentDecl) && IK == PrettyFunction) { 852 // __PRETTY_FUNCTION__ -> "top level", the others produce an empty string. 853 return "top level"; 854 } 855 return ""; 856 } 857 858 void APNumericStorage::setIntValue(const ASTContext &C, 859 const llvm::APInt &Val) { 860 if (hasAllocation()) 861 C.Deallocate(pVal); 862 863 BitWidth = Val.getBitWidth(); 864 unsigned NumWords = Val.getNumWords(); 865 const uint64_t* Words = Val.getRawData(); 866 if (NumWords > 1) { 867 pVal = new (C) uint64_t[NumWords]; 868 std::copy(Words, Words + NumWords, pVal); 869 } else if (NumWords == 1) 870 VAL = Words[0]; 871 else 872 VAL = 0; 873 } 874 875 IntegerLiteral::IntegerLiteral(const ASTContext &C, const llvm::APInt &V, 876 QualType type, SourceLocation l) 877 : Expr(IntegerLiteralClass, type, VK_RValue, OK_Ordinary), Loc(l) { 878 assert(type->isIntegerType() && "Illegal type in IntegerLiteral"); 879 assert(V.getBitWidth() == C.getIntWidth(type) && 880 "Integer type is not the correct size for constant."); 881 setValue(C, V); 882 setDependence(ExprDependence::None); 883 } 884 885 IntegerLiteral * 886 IntegerLiteral::Create(const ASTContext &C, const llvm::APInt &V, 887 QualType type, SourceLocation l) { 888 return new (C) IntegerLiteral(C, V, type, l); 889 } 890 891 IntegerLiteral * 892 IntegerLiteral::Create(const ASTContext &C, EmptyShell Empty) { 893 return new (C) IntegerLiteral(Empty); 894 } 895 896 FixedPointLiteral::FixedPointLiteral(const ASTContext &C, const llvm::APInt &V, 897 QualType type, SourceLocation l, 898 unsigned Scale) 899 : Expr(FixedPointLiteralClass, type, VK_RValue, OK_Ordinary), Loc(l), 900 Scale(Scale) { 901 assert(type->isFixedPointType() && "Illegal type in FixedPointLiteral"); 902 assert(V.getBitWidth() == C.getTypeInfo(type).Width && 903 "Fixed point type is not the correct size for constant."); 904 setValue(C, V); 905 setDependence(ExprDependence::None); 906 } 907 908 FixedPointLiteral *FixedPointLiteral::CreateFromRawInt(const ASTContext &C, 909 const llvm::APInt &V, 910 QualType type, 911 SourceLocation l, 912 unsigned Scale) { 913 return new (C) FixedPointLiteral(C, V, type, l, Scale); 914 } 915 916 FixedPointLiteral *FixedPointLiteral::Create(const ASTContext &C, 917 EmptyShell Empty) { 918 return new (C) FixedPointLiteral(Empty); 919 } 920 921 std::string FixedPointLiteral::getValueAsString(unsigned Radix) const { 922 // Currently the longest decimal number that can be printed is the max for an 923 // unsigned long _Accum: 4294967295.99999999976716935634613037109375 924 // which is 43 characters. 925 SmallString<64> S; 926 FixedPointValueToString( 927 S, llvm::APSInt::getUnsigned(getValue().getZExtValue()), Scale); 928 return std::string(S.str()); 929 } 930 931 FloatingLiteral::FloatingLiteral(const ASTContext &C, const llvm::APFloat &V, 932 bool isexact, QualType Type, SourceLocation L) 933 : Expr(FloatingLiteralClass, Type, VK_RValue, OK_Ordinary), Loc(L) { 934 setSemantics(V.getSemantics()); 935 FloatingLiteralBits.IsExact = isexact; 936 setValue(C, V); 937 setDependence(ExprDependence::None); 938 } 939 940 FloatingLiteral::FloatingLiteral(const ASTContext &C, EmptyShell Empty) 941 : Expr(FloatingLiteralClass, Empty) { 942 setRawSemantics(llvm::APFloatBase::S_IEEEhalf); 943 FloatingLiteralBits.IsExact = false; 944 } 945 946 FloatingLiteral * 947 FloatingLiteral::Create(const ASTContext &C, const llvm::APFloat &V, 948 bool isexact, QualType Type, SourceLocation L) { 949 return new (C) FloatingLiteral(C, V, isexact, Type, L); 950 } 951 952 FloatingLiteral * 953 FloatingLiteral::Create(const ASTContext &C, EmptyShell Empty) { 954 return new (C) FloatingLiteral(C, Empty); 955 } 956 957 /// getValueAsApproximateDouble - This returns the value as an inaccurate 958 /// double. Note that this may cause loss of precision, but is useful for 959 /// debugging dumps, etc. 960 double FloatingLiteral::getValueAsApproximateDouble() const { 961 llvm::APFloat V = getValue(); 962 bool ignored; 963 V.convert(llvm::APFloat::IEEEdouble(), llvm::APFloat::rmNearestTiesToEven, 964 &ignored); 965 return V.convertToDouble(); 966 } 967 968 unsigned StringLiteral::mapCharByteWidth(TargetInfo const &Target, 969 StringKind SK) { 970 unsigned CharByteWidth = 0; 971 switch (SK) { 972 case Ascii: 973 case UTF8: 974 CharByteWidth = Target.getCharWidth(); 975 break; 976 case Wide: 977 CharByteWidth = Target.getWCharWidth(); 978 break; 979 case UTF16: 980 CharByteWidth = Target.getChar16Width(); 981 break; 982 case UTF32: 983 CharByteWidth = Target.getChar32Width(); 984 break; 985 } 986 assert((CharByteWidth & 7) == 0 && "Assumes character size is byte multiple"); 987 CharByteWidth /= 8; 988 assert((CharByteWidth == 1 || CharByteWidth == 2 || CharByteWidth == 4) && 989 "The only supported character byte widths are 1,2 and 4!"); 990 return CharByteWidth; 991 } 992 993 StringLiteral::StringLiteral(const ASTContext &Ctx, StringRef Str, 994 StringKind Kind, bool Pascal, QualType Ty, 995 const SourceLocation *Loc, 996 unsigned NumConcatenated) 997 : Expr(StringLiteralClass, Ty, VK_LValue, OK_Ordinary) { 998 assert(Ctx.getAsConstantArrayType(Ty) && 999 "StringLiteral must be of constant array type!"); 1000 unsigned CharByteWidth = mapCharByteWidth(Ctx.getTargetInfo(), Kind); 1001 unsigned ByteLength = Str.size(); 1002 assert((ByteLength % CharByteWidth == 0) && 1003 "The size of the data must be a multiple of CharByteWidth!"); 1004 1005 // Avoid the expensive division. The compiler should be able to figure it 1006 // out by itself. However as of clang 7, even with the appropriate 1007 // llvm_unreachable added just here, it is not able to do so. 1008 unsigned Length; 1009 switch (CharByteWidth) { 1010 case 1: 1011 Length = ByteLength; 1012 break; 1013 case 2: 1014 Length = ByteLength / 2; 1015 break; 1016 case 4: 1017 Length = ByteLength / 4; 1018 break; 1019 default: 1020 llvm_unreachable("Unsupported character width!"); 1021 } 1022 1023 StringLiteralBits.Kind = Kind; 1024 StringLiteralBits.CharByteWidth = CharByteWidth; 1025 StringLiteralBits.IsPascal = Pascal; 1026 StringLiteralBits.NumConcatenated = NumConcatenated; 1027 *getTrailingObjects<unsigned>() = Length; 1028 1029 // Initialize the trailing array of SourceLocation. 1030 // This is safe since SourceLocation is POD-like. 1031 std::memcpy(getTrailingObjects<SourceLocation>(), Loc, 1032 NumConcatenated * sizeof(SourceLocation)); 1033 1034 // Initialize the trailing array of char holding the string data. 1035 std::memcpy(getTrailingObjects<char>(), Str.data(), ByteLength); 1036 1037 setDependence(ExprDependence::None); 1038 } 1039 1040 StringLiteral::StringLiteral(EmptyShell Empty, unsigned NumConcatenated, 1041 unsigned Length, unsigned CharByteWidth) 1042 : Expr(StringLiteralClass, Empty) { 1043 StringLiteralBits.CharByteWidth = CharByteWidth; 1044 StringLiteralBits.NumConcatenated = NumConcatenated; 1045 *getTrailingObjects<unsigned>() = Length; 1046 } 1047 1048 StringLiteral *StringLiteral::Create(const ASTContext &Ctx, StringRef Str, 1049 StringKind Kind, bool Pascal, QualType Ty, 1050 const SourceLocation *Loc, 1051 unsigned NumConcatenated) { 1052 void *Mem = Ctx.Allocate(totalSizeToAlloc<unsigned, SourceLocation, char>( 1053 1, NumConcatenated, Str.size()), 1054 alignof(StringLiteral)); 1055 return new (Mem) 1056 StringLiteral(Ctx, Str, Kind, Pascal, Ty, Loc, NumConcatenated); 1057 } 1058 1059 StringLiteral *StringLiteral::CreateEmpty(const ASTContext &Ctx, 1060 unsigned NumConcatenated, 1061 unsigned Length, 1062 unsigned CharByteWidth) { 1063 void *Mem = Ctx.Allocate(totalSizeToAlloc<unsigned, SourceLocation, char>( 1064 1, NumConcatenated, Length * CharByteWidth), 1065 alignof(StringLiteral)); 1066 return new (Mem) 1067 StringLiteral(EmptyShell(), NumConcatenated, Length, CharByteWidth); 1068 } 1069 1070 void StringLiteral::outputString(raw_ostream &OS) const { 1071 switch (getKind()) { 1072 case Ascii: break; // no prefix. 1073 case Wide: OS << 'L'; break; 1074 case UTF8: OS << "u8"; break; 1075 case UTF16: OS << 'u'; break; 1076 case UTF32: OS << 'U'; break; 1077 } 1078 OS << '"'; 1079 static const char Hex[] = "0123456789ABCDEF"; 1080 1081 unsigned LastSlashX = getLength(); 1082 for (unsigned I = 0, N = getLength(); I != N; ++I) { 1083 switch (uint32_t Char = getCodeUnit(I)) { 1084 default: 1085 // FIXME: Convert UTF-8 back to codepoints before rendering. 1086 1087 // Convert UTF-16 surrogate pairs back to codepoints before rendering. 1088 // Leave invalid surrogates alone; we'll use \x for those. 1089 if (getKind() == UTF16 && I != N - 1 && Char >= 0xd800 && 1090 Char <= 0xdbff) { 1091 uint32_t Trail = getCodeUnit(I + 1); 1092 if (Trail >= 0xdc00 && Trail <= 0xdfff) { 1093 Char = 0x10000 + ((Char - 0xd800) << 10) + (Trail - 0xdc00); 1094 ++I; 1095 } 1096 } 1097 1098 if (Char > 0xff) { 1099 // If this is a wide string, output characters over 0xff using \x 1100 // escapes. Otherwise, this is a UTF-16 or UTF-32 string, and Char is a 1101 // codepoint: use \x escapes for invalid codepoints. 1102 if (getKind() == Wide || 1103 (Char >= 0xd800 && Char <= 0xdfff) || Char >= 0x110000) { 1104 // FIXME: Is this the best way to print wchar_t? 1105 OS << "\\x"; 1106 int Shift = 28; 1107 while ((Char >> Shift) == 0) 1108 Shift -= 4; 1109 for (/**/; Shift >= 0; Shift -= 4) 1110 OS << Hex[(Char >> Shift) & 15]; 1111 LastSlashX = I; 1112 break; 1113 } 1114 1115 if (Char > 0xffff) 1116 OS << "\\U00" 1117 << Hex[(Char >> 20) & 15] 1118 << Hex[(Char >> 16) & 15]; 1119 else 1120 OS << "\\u"; 1121 OS << Hex[(Char >> 12) & 15] 1122 << Hex[(Char >> 8) & 15] 1123 << Hex[(Char >> 4) & 15] 1124 << Hex[(Char >> 0) & 15]; 1125 break; 1126 } 1127 1128 // If we used \x... for the previous character, and this character is a 1129 // hexadecimal digit, prevent it being slurped as part of the \x. 1130 if (LastSlashX + 1 == I) { 1131 switch (Char) { 1132 case '0': case '1': case '2': case '3': case '4': 1133 case '5': case '6': case '7': case '8': case '9': 1134 case 'a': case 'b': case 'c': case 'd': case 'e': case 'f': 1135 case 'A': case 'B': case 'C': case 'D': case 'E': case 'F': 1136 OS << "\"\""; 1137 } 1138 } 1139 1140 assert(Char <= 0xff && 1141 "Characters above 0xff should already have been handled."); 1142 1143 if (isPrintable(Char)) 1144 OS << (char)Char; 1145 else // Output anything hard as an octal escape. 1146 OS << '\\' 1147 << (char)('0' + ((Char >> 6) & 7)) 1148 << (char)('0' + ((Char >> 3) & 7)) 1149 << (char)('0' + ((Char >> 0) & 7)); 1150 break; 1151 // Handle some common non-printable cases to make dumps prettier. 1152 case '\\': OS << "\\\\"; break; 1153 case '"': OS << "\\\""; break; 1154 case '\a': OS << "\\a"; break; 1155 case '\b': OS << "\\b"; break; 1156 case '\f': OS << "\\f"; break; 1157 case '\n': OS << "\\n"; break; 1158 case '\r': OS << "\\r"; break; 1159 case '\t': OS << "\\t"; break; 1160 case '\v': OS << "\\v"; break; 1161 } 1162 } 1163 OS << '"'; 1164 } 1165 1166 /// getLocationOfByte - Return a source location that points to the specified 1167 /// byte of this string literal. 1168 /// 1169 /// Strings are amazingly complex. They can be formed from multiple tokens and 1170 /// can have escape sequences in them in addition to the usual trigraph and 1171 /// escaped newline business. This routine handles this complexity. 1172 /// 1173 /// The *StartToken sets the first token to be searched in this function and 1174 /// the *StartTokenByteOffset is the byte offset of the first token. Before 1175 /// returning, it updates the *StartToken to the TokNo of the token being found 1176 /// and sets *StartTokenByteOffset to the byte offset of the token in the 1177 /// string. 1178 /// Using these two parameters can reduce the time complexity from O(n^2) to 1179 /// O(n) if one wants to get the location of byte for all the tokens in a 1180 /// string. 1181 /// 1182 SourceLocation 1183 StringLiteral::getLocationOfByte(unsigned ByteNo, const SourceManager &SM, 1184 const LangOptions &Features, 1185 const TargetInfo &Target, unsigned *StartToken, 1186 unsigned *StartTokenByteOffset) const { 1187 assert((getKind() == StringLiteral::Ascii || 1188 getKind() == StringLiteral::UTF8) && 1189 "Only narrow string literals are currently supported"); 1190 1191 // Loop over all of the tokens in this string until we find the one that 1192 // contains the byte we're looking for. 1193 unsigned TokNo = 0; 1194 unsigned StringOffset = 0; 1195 if (StartToken) 1196 TokNo = *StartToken; 1197 if (StartTokenByteOffset) { 1198 StringOffset = *StartTokenByteOffset; 1199 ByteNo -= StringOffset; 1200 } 1201 while (1) { 1202 assert(TokNo < getNumConcatenated() && "Invalid byte number!"); 1203 SourceLocation StrTokLoc = getStrTokenLoc(TokNo); 1204 1205 // Get the spelling of the string so that we can get the data that makes up 1206 // the string literal, not the identifier for the macro it is potentially 1207 // expanded through. 1208 SourceLocation StrTokSpellingLoc = SM.getSpellingLoc(StrTokLoc); 1209 1210 // Re-lex the token to get its length and original spelling. 1211 std::pair<FileID, unsigned> LocInfo = 1212 SM.getDecomposedLoc(StrTokSpellingLoc); 1213 bool Invalid = false; 1214 StringRef Buffer = SM.getBufferData(LocInfo.first, &Invalid); 1215 if (Invalid) { 1216 if (StartTokenByteOffset != nullptr) 1217 *StartTokenByteOffset = StringOffset; 1218 if (StartToken != nullptr) 1219 *StartToken = TokNo; 1220 return StrTokSpellingLoc; 1221 } 1222 1223 const char *StrData = Buffer.data()+LocInfo.second; 1224 1225 // Create a lexer starting at the beginning of this token. 1226 Lexer TheLexer(SM.getLocForStartOfFile(LocInfo.first), Features, 1227 Buffer.begin(), StrData, Buffer.end()); 1228 Token TheTok; 1229 TheLexer.LexFromRawLexer(TheTok); 1230 1231 // Use the StringLiteralParser to compute the length of the string in bytes. 1232 StringLiteralParser SLP(TheTok, SM, Features, Target); 1233 unsigned TokNumBytes = SLP.GetStringLength(); 1234 1235 // If the byte is in this token, return the location of the byte. 1236 if (ByteNo < TokNumBytes || 1237 (ByteNo == TokNumBytes && TokNo == getNumConcatenated() - 1)) { 1238 unsigned Offset = SLP.getOffsetOfStringByte(TheTok, ByteNo); 1239 1240 // Now that we know the offset of the token in the spelling, use the 1241 // preprocessor to get the offset in the original source. 1242 if (StartTokenByteOffset != nullptr) 1243 *StartTokenByteOffset = StringOffset; 1244 if (StartToken != nullptr) 1245 *StartToken = TokNo; 1246 return Lexer::AdvanceToTokenCharacter(StrTokLoc, Offset, SM, Features); 1247 } 1248 1249 // Move to the next string token. 1250 StringOffset += TokNumBytes; 1251 ++TokNo; 1252 ByteNo -= TokNumBytes; 1253 } 1254 } 1255 1256 /// getOpcodeStr - Turn an Opcode enum value into the punctuation char it 1257 /// corresponds to, e.g. "sizeof" or "[pre]++". 1258 StringRef UnaryOperator::getOpcodeStr(Opcode Op) { 1259 switch (Op) { 1260 #define UNARY_OPERATION(Name, Spelling) case UO_##Name: return Spelling; 1261 #include "clang/AST/OperationKinds.def" 1262 } 1263 llvm_unreachable("Unknown unary operator"); 1264 } 1265 1266 UnaryOperatorKind 1267 UnaryOperator::getOverloadedOpcode(OverloadedOperatorKind OO, bool Postfix) { 1268 switch (OO) { 1269 default: llvm_unreachable("No unary operator for overloaded function"); 1270 case OO_PlusPlus: return Postfix ? UO_PostInc : UO_PreInc; 1271 case OO_MinusMinus: return Postfix ? UO_PostDec : UO_PreDec; 1272 case OO_Amp: return UO_AddrOf; 1273 case OO_Star: return UO_Deref; 1274 case OO_Plus: return UO_Plus; 1275 case OO_Minus: return UO_Minus; 1276 case OO_Tilde: return UO_Not; 1277 case OO_Exclaim: return UO_LNot; 1278 case OO_Coawait: return UO_Coawait; 1279 } 1280 } 1281 1282 OverloadedOperatorKind UnaryOperator::getOverloadedOperator(Opcode Opc) { 1283 switch (Opc) { 1284 case UO_PostInc: case UO_PreInc: return OO_PlusPlus; 1285 case UO_PostDec: case UO_PreDec: return OO_MinusMinus; 1286 case UO_AddrOf: return OO_Amp; 1287 case UO_Deref: return OO_Star; 1288 case UO_Plus: return OO_Plus; 1289 case UO_Minus: return OO_Minus; 1290 case UO_Not: return OO_Tilde; 1291 case UO_LNot: return OO_Exclaim; 1292 case UO_Coawait: return OO_Coawait; 1293 default: return OO_None; 1294 } 1295 } 1296 1297 1298 //===----------------------------------------------------------------------===// 1299 // Postfix Operators. 1300 //===----------------------------------------------------------------------===// 1301 1302 CallExpr::CallExpr(StmtClass SC, Expr *Fn, ArrayRef<Expr *> PreArgs, 1303 ArrayRef<Expr *> Args, QualType Ty, ExprValueKind VK, 1304 SourceLocation RParenLoc, unsigned MinNumArgs, 1305 ADLCallKind UsesADL) 1306 : Expr(SC, Ty, VK, OK_Ordinary), RParenLoc(RParenLoc) { 1307 NumArgs = std::max<unsigned>(Args.size(), MinNumArgs); 1308 unsigned NumPreArgs = PreArgs.size(); 1309 CallExprBits.NumPreArgs = NumPreArgs; 1310 assert((NumPreArgs == getNumPreArgs()) && "NumPreArgs overflow!"); 1311 1312 unsigned OffsetToTrailingObjects = offsetToTrailingObjects(SC); 1313 CallExprBits.OffsetToTrailingObjects = OffsetToTrailingObjects; 1314 assert((CallExprBits.OffsetToTrailingObjects == OffsetToTrailingObjects) && 1315 "OffsetToTrailingObjects overflow!"); 1316 1317 CallExprBits.UsesADL = static_cast<bool>(UsesADL); 1318 1319 setCallee(Fn); 1320 for (unsigned I = 0; I != NumPreArgs; ++I) 1321 setPreArg(I, PreArgs[I]); 1322 for (unsigned I = 0; I != Args.size(); ++I) 1323 setArg(I, Args[I]); 1324 for (unsigned I = Args.size(); I != NumArgs; ++I) 1325 setArg(I, nullptr); 1326 1327 setDependence(computeDependence(this, PreArgs)); 1328 } 1329 1330 CallExpr::CallExpr(StmtClass SC, unsigned NumPreArgs, unsigned NumArgs, 1331 EmptyShell Empty) 1332 : Expr(SC, Empty), NumArgs(NumArgs) { 1333 CallExprBits.NumPreArgs = NumPreArgs; 1334 assert((NumPreArgs == getNumPreArgs()) && "NumPreArgs overflow!"); 1335 1336 unsigned OffsetToTrailingObjects = offsetToTrailingObjects(SC); 1337 CallExprBits.OffsetToTrailingObjects = OffsetToTrailingObjects; 1338 assert((CallExprBits.OffsetToTrailingObjects == OffsetToTrailingObjects) && 1339 "OffsetToTrailingObjects overflow!"); 1340 } 1341 1342 CallExpr *CallExpr::Create(const ASTContext &Ctx, Expr *Fn, 1343 ArrayRef<Expr *> Args, QualType Ty, ExprValueKind VK, 1344 SourceLocation RParenLoc, unsigned MinNumArgs, 1345 ADLCallKind UsesADL) { 1346 unsigned NumArgs = std::max<unsigned>(Args.size(), MinNumArgs); 1347 unsigned SizeOfTrailingObjects = 1348 CallExpr::sizeOfTrailingObjects(/*NumPreArgs=*/0, NumArgs); 1349 void *Mem = 1350 Ctx.Allocate(sizeof(CallExpr) + SizeOfTrailingObjects, alignof(CallExpr)); 1351 return new (Mem) CallExpr(CallExprClass, Fn, /*PreArgs=*/{}, Args, Ty, VK, 1352 RParenLoc, MinNumArgs, UsesADL); 1353 } 1354 1355 CallExpr *CallExpr::CreateTemporary(void *Mem, Expr *Fn, QualType Ty, 1356 ExprValueKind VK, SourceLocation RParenLoc, 1357 ADLCallKind UsesADL) { 1358 assert(!(reinterpret_cast<uintptr_t>(Mem) % alignof(CallExpr)) && 1359 "Misaligned memory in CallExpr::CreateTemporary!"); 1360 return new (Mem) CallExpr(CallExprClass, Fn, /*PreArgs=*/{}, /*Args=*/{}, Ty, 1361 VK, RParenLoc, 1362 /*MinNumArgs=*/0, UsesADL); 1363 } 1364 1365 CallExpr *CallExpr::CreateEmpty(const ASTContext &Ctx, unsigned NumArgs, 1366 EmptyShell Empty) { 1367 unsigned SizeOfTrailingObjects = 1368 CallExpr::sizeOfTrailingObjects(/*NumPreArgs=*/0, NumArgs); 1369 void *Mem = 1370 Ctx.Allocate(sizeof(CallExpr) + SizeOfTrailingObjects, alignof(CallExpr)); 1371 return new (Mem) CallExpr(CallExprClass, /*NumPreArgs=*/0, NumArgs, Empty); 1372 } 1373 1374 unsigned CallExpr::offsetToTrailingObjects(StmtClass SC) { 1375 switch (SC) { 1376 case CallExprClass: 1377 return sizeof(CallExpr); 1378 case CXXOperatorCallExprClass: 1379 return sizeof(CXXOperatorCallExpr); 1380 case CXXMemberCallExprClass: 1381 return sizeof(CXXMemberCallExpr); 1382 case UserDefinedLiteralClass: 1383 return sizeof(UserDefinedLiteral); 1384 case CUDAKernelCallExprClass: 1385 return sizeof(CUDAKernelCallExpr); 1386 default: 1387 llvm_unreachable("unexpected class deriving from CallExpr!"); 1388 } 1389 } 1390 1391 Decl *Expr::getReferencedDeclOfCallee() { 1392 Expr *CEE = IgnoreParenImpCasts(); 1393 1394 while (SubstNonTypeTemplateParmExpr *NTTP = 1395 dyn_cast<SubstNonTypeTemplateParmExpr>(CEE)) { 1396 CEE = NTTP->getReplacement()->IgnoreParenImpCasts(); 1397 } 1398 1399 // If we're calling a dereference, look at the pointer instead. 1400 while (true) { 1401 if (BinaryOperator *BO = dyn_cast<BinaryOperator>(CEE)) { 1402 if (BO->isPtrMemOp()) { 1403 CEE = BO->getRHS()->IgnoreParenImpCasts(); 1404 continue; 1405 } 1406 } else if (UnaryOperator *UO = dyn_cast<UnaryOperator>(CEE)) { 1407 if (UO->getOpcode() == UO_Deref || UO->getOpcode() == UO_AddrOf || 1408 UO->getOpcode() == UO_Plus) { 1409 CEE = UO->getSubExpr()->IgnoreParenImpCasts(); 1410 continue; 1411 } 1412 } 1413 break; 1414 } 1415 1416 if (DeclRefExpr *DRE = dyn_cast<DeclRefExpr>(CEE)) 1417 return DRE->getDecl(); 1418 if (MemberExpr *ME = dyn_cast<MemberExpr>(CEE)) 1419 return ME->getMemberDecl(); 1420 if (auto *BE = dyn_cast<BlockExpr>(CEE)) 1421 return BE->getBlockDecl(); 1422 1423 return nullptr; 1424 } 1425 1426 /// If this is a call to a builtin, return the builtin ID. If not, return 0. 1427 unsigned CallExpr::getBuiltinCallee() const { 1428 auto *FDecl = 1429 dyn_cast_or_null<FunctionDecl>(getCallee()->getReferencedDeclOfCallee()); 1430 return FDecl ? FDecl->getBuiltinID() : 0; 1431 } 1432 1433 bool CallExpr::isUnevaluatedBuiltinCall(const ASTContext &Ctx) const { 1434 if (unsigned BI = getBuiltinCallee()) 1435 return Ctx.BuiltinInfo.isUnevaluated(BI); 1436 return false; 1437 } 1438 1439 QualType CallExpr::getCallReturnType(const ASTContext &Ctx) const { 1440 const Expr *Callee = getCallee(); 1441 QualType CalleeType = Callee->getType(); 1442 if (const auto *FnTypePtr = CalleeType->getAs<PointerType>()) { 1443 CalleeType = FnTypePtr->getPointeeType(); 1444 } else if (const auto *BPT = CalleeType->getAs<BlockPointerType>()) { 1445 CalleeType = BPT->getPointeeType(); 1446 } else if (CalleeType->isSpecificPlaceholderType(BuiltinType::BoundMember)) { 1447 if (isa<CXXPseudoDestructorExpr>(Callee->IgnoreParens())) 1448 return Ctx.VoidTy; 1449 1450 // This should never be overloaded and so should never return null. 1451 CalleeType = Expr::findBoundMemberType(Callee); 1452 } 1453 1454 const FunctionType *FnType = CalleeType->castAs<FunctionType>(); 1455 return FnType->getReturnType(); 1456 } 1457 1458 const Attr *CallExpr::getUnusedResultAttr(const ASTContext &Ctx) const { 1459 // If the return type is a struct, union, or enum that is marked nodiscard, 1460 // then return the return type attribute. 1461 if (const TagDecl *TD = getCallReturnType(Ctx)->getAsTagDecl()) 1462 if (const auto *A = TD->getAttr<WarnUnusedResultAttr>()) 1463 return A; 1464 1465 // Otherwise, see if the callee is marked nodiscard and return that attribute 1466 // instead. 1467 const Decl *D = getCalleeDecl(); 1468 return D ? D->getAttr<WarnUnusedResultAttr>() : nullptr; 1469 } 1470 1471 SourceLocation CallExpr::getBeginLoc() const { 1472 if (isa<CXXOperatorCallExpr>(this)) 1473 return cast<CXXOperatorCallExpr>(this)->getBeginLoc(); 1474 1475 SourceLocation begin = getCallee()->getBeginLoc(); 1476 if (begin.isInvalid() && getNumArgs() > 0 && getArg(0)) 1477 begin = getArg(0)->getBeginLoc(); 1478 return begin; 1479 } 1480 SourceLocation CallExpr::getEndLoc() const { 1481 if (isa<CXXOperatorCallExpr>(this)) 1482 return cast<CXXOperatorCallExpr>(this)->getEndLoc(); 1483 1484 SourceLocation end = getRParenLoc(); 1485 if (end.isInvalid() && getNumArgs() > 0 && getArg(getNumArgs() - 1)) 1486 end = getArg(getNumArgs() - 1)->getEndLoc(); 1487 return end; 1488 } 1489 1490 OffsetOfExpr *OffsetOfExpr::Create(const ASTContext &C, QualType type, 1491 SourceLocation OperatorLoc, 1492 TypeSourceInfo *tsi, 1493 ArrayRef<OffsetOfNode> comps, 1494 ArrayRef<Expr*> exprs, 1495 SourceLocation RParenLoc) { 1496 void *Mem = C.Allocate( 1497 totalSizeToAlloc<OffsetOfNode, Expr *>(comps.size(), exprs.size())); 1498 1499 return new (Mem) OffsetOfExpr(C, type, OperatorLoc, tsi, comps, exprs, 1500 RParenLoc); 1501 } 1502 1503 OffsetOfExpr *OffsetOfExpr::CreateEmpty(const ASTContext &C, 1504 unsigned numComps, unsigned numExprs) { 1505 void *Mem = 1506 C.Allocate(totalSizeToAlloc<OffsetOfNode, Expr *>(numComps, numExprs)); 1507 return new (Mem) OffsetOfExpr(numComps, numExprs); 1508 } 1509 1510 OffsetOfExpr::OffsetOfExpr(const ASTContext &C, QualType type, 1511 SourceLocation OperatorLoc, TypeSourceInfo *tsi, 1512 ArrayRef<OffsetOfNode> comps, ArrayRef<Expr *> exprs, 1513 SourceLocation RParenLoc) 1514 : Expr(OffsetOfExprClass, type, VK_RValue, OK_Ordinary), 1515 OperatorLoc(OperatorLoc), RParenLoc(RParenLoc), TSInfo(tsi), 1516 NumComps(comps.size()), NumExprs(exprs.size()) { 1517 for (unsigned i = 0; i != comps.size(); ++i) 1518 setComponent(i, comps[i]); 1519 for (unsigned i = 0; i != exprs.size(); ++i) 1520 setIndexExpr(i, exprs[i]); 1521 1522 setDependence(computeDependence(this)); 1523 } 1524 1525 IdentifierInfo *OffsetOfNode::getFieldName() const { 1526 assert(getKind() == Field || getKind() == Identifier); 1527 if (getKind() == Field) 1528 return getField()->getIdentifier(); 1529 1530 return reinterpret_cast<IdentifierInfo *> (Data & ~(uintptr_t)Mask); 1531 } 1532 1533 UnaryExprOrTypeTraitExpr::UnaryExprOrTypeTraitExpr( 1534 UnaryExprOrTypeTrait ExprKind, Expr *E, QualType resultType, 1535 SourceLocation op, SourceLocation rp) 1536 : Expr(UnaryExprOrTypeTraitExprClass, resultType, VK_RValue, OK_Ordinary), 1537 OpLoc(op), RParenLoc(rp) { 1538 UnaryExprOrTypeTraitExprBits.Kind = ExprKind; 1539 UnaryExprOrTypeTraitExprBits.IsType = false; 1540 Argument.Ex = E; 1541 setDependence(computeDependence(this)); 1542 } 1543 1544 MemberExpr::MemberExpr(Expr *Base, bool IsArrow, SourceLocation OperatorLoc, 1545 ValueDecl *MemberDecl, 1546 const DeclarationNameInfo &NameInfo, QualType T, 1547 ExprValueKind VK, ExprObjectKind OK, 1548 NonOdrUseReason NOUR) 1549 : Expr(MemberExprClass, T, VK, OK), Base(Base), MemberDecl(MemberDecl), 1550 MemberDNLoc(NameInfo.getInfo()), MemberLoc(NameInfo.getLoc()) { 1551 assert(!NameInfo.getName() || 1552 MemberDecl->getDeclName() == NameInfo.getName()); 1553 MemberExprBits.IsArrow = IsArrow; 1554 MemberExprBits.HasQualifierOrFoundDecl = false; 1555 MemberExprBits.HasTemplateKWAndArgsInfo = false; 1556 MemberExprBits.HadMultipleCandidates = false; 1557 MemberExprBits.NonOdrUseReason = NOUR; 1558 MemberExprBits.OperatorLoc = OperatorLoc; 1559 setDependence(computeDependence(this)); 1560 } 1561 1562 MemberExpr *MemberExpr::Create( 1563 const ASTContext &C, Expr *Base, bool IsArrow, SourceLocation OperatorLoc, 1564 NestedNameSpecifierLoc QualifierLoc, SourceLocation TemplateKWLoc, 1565 ValueDecl *MemberDecl, DeclAccessPair FoundDecl, 1566 DeclarationNameInfo NameInfo, const TemplateArgumentListInfo *TemplateArgs, 1567 QualType T, ExprValueKind VK, ExprObjectKind OK, NonOdrUseReason NOUR) { 1568 bool HasQualOrFound = QualifierLoc || FoundDecl.getDecl() != MemberDecl || 1569 FoundDecl.getAccess() != MemberDecl->getAccess(); 1570 bool HasTemplateKWAndArgsInfo = TemplateArgs || TemplateKWLoc.isValid(); 1571 std::size_t Size = 1572 totalSizeToAlloc<MemberExprNameQualifier, ASTTemplateKWAndArgsInfo, 1573 TemplateArgumentLoc>( 1574 HasQualOrFound ? 1 : 0, HasTemplateKWAndArgsInfo ? 1 : 0, 1575 TemplateArgs ? TemplateArgs->size() : 0); 1576 1577 void *Mem = C.Allocate(Size, alignof(MemberExpr)); 1578 MemberExpr *E = new (Mem) MemberExpr(Base, IsArrow, OperatorLoc, MemberDecl, 1579 NameInfo, T, VK, OK, NOUR); 1580 1581 // FIXME: remove remaining dependence computation to computeDependence(). 1582 auto Deps = E->getDependence(); 1583 if (HasQualOrFound) { 1584 // FIXME: Wrong. We should be looking at the member declaration we found. 1585 if (QualifierLoc && QualifierLoc.getNestedNameSpecifier()->isDependent()) 1586 Deps |= ExprDependence::TypeValueInstantiation; 1587 else if (QualifierLoc && 1588 QualifierLoc.getNestedNameSpecifier()->isInstantiationDependent()) 1589 Deps |= ExprDependence::Instantiation; 1590 1591 E->MemberExprBits.HasQualifierOrFoundDecl = true; 1592 1593 MemberExprNameQualifier *NQ = 1594 E->getTrailingObjects<MemberExprNameQualifier>(); 1595 NQ->QualifierLoc = QualifierLoc; 1596 NQ->FoundDecl = FoundDecl; 1597 } 1598 1599 E->MemberExprBits.HasTemplateKWAndArgsInfo = 1600 TemplateArgs || TemplateKWLoc.isValid(); 1601 1602 if (TemplateArgs) { 1603 auto TemplateArgDeps = TemplateArgumentDependence::None; 1604 E->getTrailingObjects<ASTTemplateKWAndArgsInfo>()->initializeFrom( 1605 TemplateKWLoc, *TemplateArgs, 1606 E->getTrailingObjects<TemplateArgumentLoc>(), TemplateArgDeps); 1607 if (TemplateArgDeps & TemplateArgumentDependence::Instantiation) 1608 Deps |= ExprDependence::Instantiation; 1609 } else if (TemplateKWLoc.isValid()) { 1610 E->getTrailingObjects<ASTTemplateKWAndArgsInfo>()->initializeFrom( 1611 TemplateKWLoc); 1612 } 1613 E->setDependence(Deps); 1614 1615 return E; 1616 } 1617 1618 MemberExpr *MemberExpr::CreateEmpty(const ASTContext &Context, 1619 bool HasQualifier, bool HasFoundDecl, 1620 bool HasTemplateKWAndArgsInfo, 1621 unsigned NumTemplateArgs) { 1622 assert((!NumTemplateArgs || HasTemplateKWAndArgsInfo) && 1623 "template args but no template arg info?"); 1624 bool HasQualOrFound = HasQualifier || HasFoundDecl; 1625 std::size_t Size = 1626 totalSizeToAlloc<MemberExprNameQualifier, ASTTemplateKWAndArgsInfo, 1627 TemplateArgumentLoc>(HasQualOrFound ? 1 : 0, 1628 HasTemplateKWAndArgsInfo ? 1 : 0, 1629 NumTemplateArgs); 1630 void *Mem = Context.Allocate(Size, alignof(MemberExpr)); 1631 return new (Mem) MemberExpr(EmptyShell()); 1632 } 1633 1634 SourceLocation MemberExpr::getBeginLoc() const { 1635 if (isImplicitAccess()) { 1636 if (hasQualifier()) 1637 return getQualifierLoc().getBeginLoc(); 1638 return MemberLoc; 1639 } 1640 1641 // FIXME: We don't want this to happen. Rather, we should be able to 1642 // detect all kinds of implicit accesses more cleanly. 1643 SourceLocation BaseStartLoc = getBase()->getBeginLoc(); 1644 if (BaseStartLoc.isValid()) 1645 return BaseStartLoc; 1646 return MemberLoc; 1647 } 1648 SourceLocation MemberExpr::getEndLoc() const { 1649 SourceLocation EndLoc = getMemberNameInfo().getEndLoc(); 1650 if (hasExplicitTemplateArgs()) 1651 EndLoc = getRAngleLoc(); 1652 else if (EndLoc.isInvalid()) 1653 EndLoc = getBase()->getEndLoc(); 1654 return EndLoc; 1655 } 1656 1657 bool CastExpr::CastConsistency() const { 1658 switch (getCastKind()) { 1659 case CK_DerivedToBase: 1660 case CK_UncheckedDerivedToBase: 1661 case CK_DerivedToBaseMemberPointer: 1662 case CK_BaseToDerived: 1663 case CK_BaseToDerivedMemberPointer: 1664 assert(!path_empty() && "Cast kind should have a base path!"); 1665 break; 1666 1667 case CK_CPointerToObjCPointerCast: 1668 assert(getType()->isObjCObjectPointerType()); 1669 assert(getSubExpr()->getType()->isPointerType()); 1670 goto CheckNoBasePath; 1671 1672 case CK_BlockPointerToObjCPointerCast: 1673 assert(getType()->isObjCObjectPointerType()); 1674 assert(getSubExpr()->getType()->isBlockPointerType()); 1675 goto CheckNoBasePath; 1676 1677 case CK_ReinterpretMemberPointer: 1678 assert(getType()->isMemberPointerType()); 1679 assert(getSubExpr()->getType()->isMemberPointerType()); 1680 goto CheckNoBasePath; 1681 1682 case CK_BitCast: 1683 // Arbitrary casts to C pointer types count as bitcasts. 1684 // Otherwise, we should only have block and ObjC pointer casts 1685 // here if they stay within the type kind. 1686 if (!getType()->isPointerType()) { 1687 assert(getType()->isObjCObjectPointerType() == 1688 getSubExpr()->getType()->isObjCObjectPointerType()); 1689 assert(getType()->isBlockPointerType() == 1690 getSubExpr()->getType()->isBlockPointerType()); 1691 } 1692 goto CheckNoBasePath; 1693 1694 case CK_AnyPointerToBlockPointerCast: 1695 assert(getType()->isBlockPointerType()); 1696 assert(getSubExpr()->getType()->isAnyPointerType() && 1697 !getSubExpr()->getType()->isBlockPointerType()); 1698 goto CheckNoBasePath; 1699 1700 case CK_CopyAndAutoreleaseBlockObject: 1701 assert(getType()->isBlockPointerType()); 1702 assert(getSubExpr()->getType()->isBlockPointerType()); 1703 goto CheckNoBasePath; 1704 1705 case CK_FunctionToPointerDecay: 1706 assert(getType()->isPointerType()); 1707 assert(getSubExpr()->getType()->isFunctionType()); 1708 goto CheckNoBasePath; 1709 1710 case CK_AddressSpaceConversion: { 1711 auto Ty = getType(); 1712 auto SETy = getSubExpr()->getType(); 1713 assert(getValueKindForType(Ty) == Expr::getValueKindForType(SETy)); 1714 if (isRValue() && !Ty->isDependentType() && !SETy->isDependentType()) { 1715 Ty = Ty->getPointeeType(); 1716 SETy = SETy->getPointeeType(); 1717 } 1718 assert((Ty->isDependentType() || SETy->isDependentType()) || 1719 (!Ty.isNull() && !SETy.isNull() && 1720 Ty.getAddressSpace() != SETy.getAddressSpace())); 1721 goto CheckNoBasePath; 1722 } 1723 // These should not have an inheritance path. 1724 case CK_Dynamic: 1725 case CK_ToUnion: 1726 case CK_ArrayToPointerDecay: 1727 case CK_NullToMemberPointer: 1728 case CK_NullToPointer: 1729 case CK_ConstructorConversion: 1730 case CK_IntegralToPointer: 1731 case CK_PointerToIntegral: 1732 case CK_ToVoid: 1733 case CK_VectorSplat: 1734 case CK_IntegralCast: 1735 case CK_BooleanToSignedIntegral: 1736 case CK_IntegralToFloating: 1737 case CK_FloatingToIntegral: 1738 case CK_FloatingCast: 1739 case CK_ObjCObjectLValueCast: 1740 case CK_FloatingRealToComplex: 1741 case CK_FloatingComplexToReal: 1742 case CK_FloatingComplexCast: 1743 case CK_FloatingComplexToIntegralComplex: 1744 case CK_IntegralRealToComplex: 1745 case CK_IntegralComplexToReal: 1746 case CK_IntegralComplexCast: 1747 case CK_IntegralComplexToFloatingComplex: 1748 case CK_ARCProduceObject: 1749 case CK_ARCConsumeObject: 1750 case CK_ARCReclaimReturnedObject: 1751 case CK_ARCExtendBlockObject: 1752 case CK_ZeroToOCLOpaqueType: 1753 case CK_IntToOCLSampler: 1754 case CK_FixedPointCast: 1755 case CK_FixedPointToIntegral: 1756 case CK_IntegralToFixedPoint: 1757 assert(!getType()->isBooleanType() && "unheralded conversion to bool"); 1758 goto CheckNoBasePath; 1759 1760 case CK_Dependent: 1761 case CK_LValueToRValue: 1762 case CK_NoOp: 1763 case CK_AtomicToNonAtomic: 1764 case CK_NonAtomicToAtomic: 1765 case CK_PointerToBoolean: 1766 case CK_IntegralToBoolean: 1767 case CK_FloatingToBoolean: 1768 case CK_MemberPointerToBoolean: 1769 case CK_FloatingComplexToBoolean: 1770 case CK_IntegralComplexToBoolean: 1771 case CK_LValueBitCast: // -> bool& 1772 case CK_LValueToRValueBitCast: 1773 case CK_UserDefinedConversion: // operator bool() 1774 case CK_BuiltinFnToFnPtr: 1775 case CK_FixedPointToBoolean: 1776 CheckNoBasePath: 1777 assert(path_empty() && "Cast kind should not have a base path!"); 1778 break; 1779 } 1780 return true; 1781 } 1782 1783 const char *CastExpr::getCastKindName(CastKind CK) { 1784 switch (CK) { 1785 #define CAST_OPERATION(Name) case CK_##Name: return #Name; 1786 #include "clang/AST/OperationKinds.def" 1787 } 1788 llvm_unreachable("Unhandled cast kind!"); 1789 } 1790 1791 namespace { 1792 const Expr *skipImplicitTemporary(const Expr *E) { 1793 // Skip through reference binding to temporary. 1794 if (auto *Materialize = dyn_cast<MaterializeTemporaryExpr>(E)) 1795 E = Materialize->getSubExpr(); 1796 1797 // Skip any temporary bindings; they're implicit. 1798 if (auto *Binder = dyn_cast<CXXBindTemporaryExpr>(E)) 1799 E = Binder->getSubExpr(); 1800 1801 return E; 1802 } 1803 } 1804 1805 Expr *CastExpr::getSubExprAsWritten() { 1806 const Expr *SubExpr = nullptr; 1807 const CastExpr *E = this; 1808 do { 1809 SubExpr = skipImplicitTemporary(E->getSubExpr()); 1810 1811 // Conversions by constructor and conversion functions have a 1812 // subexpression describing the call; strip it off. 1813 if (E->getCastKind() == CK_ConstructorConversion) 1814 SubExpr = 1815 skipImplicitTemporary(cast<CXXConstructExpr>(SubExpr)->getArg(0)); 1816 else if (E->getCastKind() == CK_UserDefinedConversion) { 1817 assert((isa<CXXMemberCallExpr>(SubExpr) || 1818 isa<BlockExpr>(SubExpr)) && 1819 "Unexpected SubExpr for CK_UserDefinedConversion."); 1820 if (auto *MCE = dyn_cast<CXXMemberCallExpr>(SubExpr)) 1821 SubExpr = MCE->getImplicitObjectArgument(); 1822 } 1823 1824 // If the subexpression we're left with is an implicit cast, look 1825 // through that, too. 1826 } while ((E = dyn_cast<ImplicitCastExpr>(SubExpr))); 1827 1828 return const_cast<Expr*>(SubExpr); 1829 } 1830 1831 NamedDecl *CastExpr::getConversionFunction() const { 1832 const Expr *SubExpr = nullptr; 1833 1834 for (const CastExpr *E = this; E; E = dyn_cast<ImplicitCastExpr>(SubExpr)) { 1835 SubExpr = skipImplicitTemporary(E->getSubExpr()); 1836 1837 if (E->getCastKind() == CK_ConstructorConversion) 1838 return cast<CXXConstructExpr>(SubExpr)->getConstructor(); 1839 1840 if (E->getCastKind() == CK_UserDefinedConversion) { 1841 if (auto *MCE = dyn_cast<CXXMemberCallExpr>(SubExpr)) 1842 return MCE->getMethodDecl(); 1843 } 1844 } 1845 1846 return nullptr; 1847 } 1848 1849 CXXBaseSpecifier **CastExpr::path_buffer() { 1850 switch (getStmtClass()) { 1851 #define ABSTRACT_STMT(x) 1852 #define CASTEXPR(Type, Base) \ 1853 case Stmt::Type##Class: \ 1854 return static_cast<Type *>(this)->getTrailingObjects<CXXBaseSpecifier *>(); 1855 #define STMT(Type, Base) 1856 #include "clang/AST/StmtNodes.inc" 1857 default: 1858 llvm_unreachable("non-cast expressions not possible here"); 1859 } 1860 } 1861 1862 const FieldDecl *CastExpr::getTargetFieldForToUnionCast(QualType unionType, 1863 QualType opType) { 1864 auto RD = unionType->castAs<RecordType>()->getDecl(); 1865 return getTargetFieldForToUnionCast(RD, opType); 1866 } 1867 1868 const FieldDecl *CastExpr::getTargetFieldForToUnionCast(const RecordDecl *RD, 1869 QualType OpType) { 1870 auto &Ctx = RD->getASTContext(); 1871 RecordDecl::field_iterator Field, FieldEnd; 1872 for (Field = RD->field_begin(), FieldEnd = RD->field_end(); 1873 Field != FieldEnd; ++Field) { 1874 if (Ctx.hasSameUnqualifiedType(Field->getType(), OpType) && 1875 !Field->isUnnamedBitfield()) { 1876 return *Field; 1877 } 1878 } 1879 return nullptr; 1880 } 1881 1882 ImplicitCastExpr *ImplicitCastExpr::Create(const ASTContext &C, QualType T, 1883 CastKind Kind, Expr *Operand, 1884 const CXXCastPath *BasePath, 1885 ExprValueKind VK) { 1886 unsigned PathSize = (BasePath ? BasePath->size() : 0); 1887 void *Buffer = C.Allocate(totalSizeToAlloc<CXXBaseSpecifier *>(PathSize)); 1888 // Per C++ [conv.lval]p3, lvalue-to-rvalue conversions on class and 1889 // std::nullptr_t have special semantics not captured by CK_LValueToRValue. 1890 assert((Kind != CK_LValueToRValue || 1891 !(T->isNullPtrType() || T->getAsCXXRecordDecl())) && 1892 "invalid type for lvalue-to-rvalue conversion"); 1893 ImplicitCastExpr *E = 1894 new (Buffer) ImplicitCastExpr(T, Kind, Operand, PathSize, VK); 1895 if (PathSize) 1896 std::uninitialized_copy_n(BasePath->data(), BasePath->size(), 1897 E->getTrailingObjects<CXXBaseSpecifier *>()); 1898 return E; 1899 } 1900 1901 ImplicitCastExpr *ImplicitCastExpr::CreateEmpty(const ASTContext &C, 1902 unsigned PathSize) { 1903 void *Buffer = C.Allocate(totalSizeToAlloc<CXXBaseSpecifier *>(PathSize)); 1904 return new (Buffer) ImplicitCastExpr(EmptyShell(), PathSize); 1905 } 1906 1907 1908 CStyleCastExpr *CStyleCastExpr::Create(const ASTContext &C, QualType T, 1909 ExprValueKind VK, CastKind K, Expr *Op, 1910 const CXXCastPath *BasePath, 1911 TypeSourceInfo *WrittenTy, 1912 SourceLocation L, SourceLocation R) { 1913 unsigned PathSize = (BasePath ? BasePath->size() : 0); 1914 void *Buffer = C.Allocate(totalSizeToAlloc<CXXBaseSpecifier *>(PathSize)); 1915 CStyleCastExpr *E = 1916 new (Buffer) CStyleCastExpr(T, VK, K, Op, PathSize, WrittenTy, L, R); 1917 if (PathSize) 1918 std::uninitialized_copy_n(BasePath->data(), BasePath->size(), 1919 E->getTrailingObjects<CXXBaseSpecifier *>()); 1920 return E; 1921 } 1922 1923 CStyleCastExpr *CStyleCastExpr::CreateEmpty(const ASTContext &C, 1924 unsigned PathSize) { 1925 void *Buffer = C.Allocate(totalSizeToAlloc<CXXBaseSpecifier *>(PathSize)); 1926 return new (Buffer) CStyleCastExpr(EmptyShell(), PathSize); 1927 } 1928 1929 /// getOpcodeStr - Turn an Opcode enum value into the punctuation char it 1930 /// corresponds to, e.g. "<<=". 1931 StringRef BinaryOperator::getOpcodeStr(Opcode Op) { 1932 switch (Op) { 1933 #define BINARY_OPERATION(Name, Spelling) case BO_##Name: return Spelling; 1934 #include "clang/AST/OperationKinds.def" 1935 } 1936 llvm_unreachable("Invalid OpCode!"); 1937 } 1938 1939 BinaryOperatorKind 1940 BinaryOperator::getOverloadedOpcode(OverloadedOperatorKind OO) { 1941 switch (OO) { 1942 default: llvm_unreachable("Not an overloadable binary operator"); 1943 case OO_Plus: return BO_Add; 1944 case OO_Minus: return BO_Sub; 1945 case OO_Star: return BO_Mul; 1946 case OO_Slash: return BO_Div; 1947 case OO_Percent: return BO_Rem; 1948 case OO_Caret: return BO_Xor; 1949 case OO_Amp: return BO_And; 1950 case OO_Pipe: return BO_Or; 1951 case OO_Equal: return BO_Assign; 1952 case OO_Spaceship: return BO_Cmp; 1953 case OO_Less: return BO_LT; 1954 case OO_Greater: return BO_GT; 1955 case OO_PlusEqual: return BO_AddAssign; 1956 case OO_MinusEqual: return BO_SubAssign; 1957 case OO_StarEqual: return BO_MulAssign; 1958 case OO_SlashEqual: return BO_DivAssign; 1959 case OO_PercentEqual: return BO_RemAssign; 1960 case OO_CaretEqual: return BO_XorAssign; 1961 case OO_AmpEqual: return BO_AndAssign; 1962 case OO_PipeEqual: return BO_OrAssign; 1963 case OO_LessLess: return BO_Shl; 1964 case OO_GreaterGreater: return BO_Shr; 1965 case OO_LessLessEqual: return BO_ShlAssign; 1966 case OO_GreaterGreaterEqual: return BO_ShrAssign; 1967 case OO_EqualEqual: return BO_EQ; 1968 case OO_ExclaimEqual: return BO_NE; 1969 case OO_LessEqual: return BO_LE; 1970 case OO_GreaterEqual: return BO_GE; 1971 case OO_AmpAmp: return BO_LAnd; 1972 case OO_PipePipe: return BO_LOr; 1973 case OO_Comma: return BO_Comma; 1974 case OO_ArrowStar: return BO_PtrMemI; 1975 } 1976 } 1977 1978 OverloadedOperatorKind BinaryOperator::getOverloadedOperator(Opcode Opc) { 1979 static const OverloadedOperatorKind OverOps[] = { 1980 /* .* Cannot be overloaded */OO_None, OO_ArrowStar, 1981 OO_Star, OO_Slash, OO_Percent, 1982 OO_Plus, OO_Minus, 1983 OO_LessLess, OO_GreaterGreater, 1984 OO_Spaceship, 1985 OO_Less, OO_Greater, OO_LessEqual, OO_GreaterEqual, 1986 OO_EqualEqual, OO_ExclaimEqual, 1987 OO_Amp, 1988 OO_Caret, 1989 OO_Pipe, 1990 OO_AmpAmp, 1991 OO_PipePipe, 1992 OO_Equal, OO_StarEqual, 1993 OO_SlashEqual, OO_PercentEqual, 1994 OO_PlusEqual, OO_MinusEqual, 1995 OO_LessLessEqual, OO_GreaterGreaterEqual, 1996 OO_AmpEqual, OO_CaretEqual, 1997 OO_PipeEqual, 1998 OO_Comma 1999 }; 2000 return OverOps[Opc]; 2001 } 2002 2003 bool BinaryOperator::isNullPointerArithmeticExtension(ASTContext &Ctx, 2004 Opcode Opc, 2005 Expr *LHS, Expr *RHS) { 2006 if (Opc != BO_Add) 2007 return false; 2008 2009 // Check that we have one pointer and one integer operand. 2010 Expr *PExp; 2011 if (LHS->getType()->isPointerType()) { 2012 if (!RHS->getType()->isIntegerType()) 2013 return false; 2014 PExp = LHS; 2015 } else if (RHS->getType()->isPointerType()) { 2016 if (!LHS->getType()->isIntegerType()) 2017 return false; 2018 PExp = RHS; 2019 } else { 2020 return false; 2021 } 2022 2023 // Check that the pointer is a nullptr. 2024 if (!PExp->IgnoreParenCasts() 2025 ->isNullPointerConstant(Ctx, Expr::NPC_ValueDependentIsNotNull)) 2026 return false; 2027 2028 // Check that the pointee type is char-sized. 2029 const PointerType *PTy = PExp->getType()->getAs<PointerType>(); 2030 if (!PTy || !PTy->getPointeeType()->isCharType()) 2031 return false; 2032 2033 return true; 2034 } 2035 2036 static QualType getDecayedSourceLocExprType(const ASTContext &Ctx, 2037 SourceLocExpr::IdentKind Kind) { 2038 switch (Kind) { 2039 case SourceLocExpr::File: 2040 case SourceLocExpr::Function: { 2041 QualType ArrTy = Ctx.getStringLiteralArrayType(Ctx.CharTy, 0); 2042 return Ctx.getPointerType(ArrTy->getAsArrayTypeUnsafe()->getElementType()); 2043 } 2044 case SourceLocExpr::Line: 2045 case SourceLocExpr::Column: 2046 return Ctx.UnsignedIntTy; 2047 } 2048 llvm_unreachable("unhandled case"); 2049 } 2050 2051 SourceLocExpr::SourceLocExpr(const ASTContext &Ctx, IdentKind Kind, 2052 SourceLocation BLoc, SourceLocation RParenLoc, 2053 DeclContext *ParentContext) 2054 : Expr(SourceLocExprClass, getDecayedSourceLocExprType(Ctx, Kind), 2055 VK_RValue, OK_Ordinary), 2056 BuiltinLoc(BLoc), RParenLoc(RParenLoc), ParentContext(ParentContext) { 2057 SourceLocExprBits.Kind = Kind; 2058 setDependence(ExprDependence::None); 2059 } 2060 2061 StringRef SourceLocExpr::getBuiltinStr() const { 2062 switch (getIdentKind()) { 2063 case File: 2064 return "__builtin_FILE"; 2065 case Function: 2066 return "__builtin_FUNCTION"; 2067 case Line: 2068 return "__builtin_LINE"; 2069 case Column: 2070 return "__builtin_COLUMN"; 2071 } 2072 llvm_unreachable("unexpected IdentKind!"); 2073 } 2074 2075 APValue SourceLocExpr::EvaluateInContext(const ASTContext &Ctx, 2076 const Expr *DefaultExpr) const { 2077 SourceLocation Loc; 2078 const DeclContext *Context; 2079 2080 std::tie(Loc, 2081 Context) = [&]() -> std::pair<SourceLocation, const DeclContext *> { 2082 if (auto *DIE = dyn_cast_or_null<CXXDefaultInitExpr>(DefaultExpr)) 2083 return {DIE->getUsedLocation(), DIE->getUsedContext()}; 2084 if (auto *DAE = dyn_cast_or_null<CXXDefaultArgExpr>(DefaultExpr)) 2085 return {DAE->getUsedLocation(), DAE->getUsedContext()}; 2086 return {this->getLocation(), this->getParentContext()}; 2087 }(); 2088 2089 PresumedLoc PLoc = Ctx.getSourceManager().getPresumedLoc( 2090 Ctx.getSourceManager().getExpansionRange(Loc).getEnd()); 2091 2092 auto MakeStringLiteral = [&](StringRef Tmp) { 2093 using LValuePathEntry = APValue::LValuePathEntry; 2094 StringLiteral *Res = Ctx.getPredefinedStringLiteralFromCache(Tmp); 2095 // Decay the string to a pointer to the first character. 2096 LValuePathEntry Path[1] = {LValuePathEntry::ArrayIndex(0)}; 2097 return APValue(Res, CharUnits::Zero(), Path, /*OnePastTheEnd=*/false); 2098 }; 2099 2100 switch (getIdentKind()) { 2101 case SourceLocExpr::File: 2102 return MakeStringLiteral(PLoc.getFilename()); 2103 case SourceLocExpr::Function: { 2104 const Decl *CurDecl = dyn_cast_or_null<Decl>(Context); 2105 return MakeStringLiteral( 2106 CurDecl ? PredefinedExpr::ComputeName(PredefinedExpr::Function, CurDecl) 2107 : std::string("")); 2108 } 2109 case SourceLocExpr::Line: 2110 case SourceLocExpr::Column: { 2111 llvm::APSInt IntVal(Ctx.getIntWidth(Ctx.UnsignedIntTy), 2112 /*isUnsigned=*/true); 2113 IntVal = getIdentKind() == SourceLocExpr::Line ? PLoc.getLine() 2114 : PLoc.getColumn(); 2115 return APValue(IntVal); 2116 } 2117 } 2118 llvm_unreachable("unhandled case"); 2119 } 2120 2121 InitListExpr::InitListExpr(const ASTContext &C, SourceLocation lbraceloc, 2122 ArrayRef<Expr *> initExprs, SourceLocation rbraceloc) 2123 : Expr(InitListExprClass, QualType(), VK_RValue, OK_Ordinary), 2124 InitExprs(C, initExprs.size()), LBraceLoc(lbraceloc), 2125 RBraceLoc(rbraceloc), AltForm(nullptr, true) { 2126 sawArrayRangeDesignator(false); 2127 InitExprs.insert(C, InitExprs.end(), initExprs.begin(), initExprs.end()); 2128 2129 setDependence(computeDependence(this)); 2130 } 2131 2132 void InitListExpr::reserveInits(const ASTContext &C, unsigned NumInits) { 2133 if (NumInits > InitExprs.size()) 2134 InitExprs.reserve(C, NumInits); 2135 } 2136 2137 void InitListExpr::resizeInits(const ASTContext &C, unsigned NumInits) { 2138 InitExprs.resize(C, NumInits, nullptr); 2139 } 2140 2141 Expr *InitListExpr::updateInit(const ASTContext &C, unsigned Init, Expr *expr) { 2142 if (Init >= InitExprs.size()) { 2143 InitExprs.insert(C, InitExprs.end(), Init - InitExprs.size() + 1, nullptr); 2144 setInit(Init, expr); 2145 return nullptr; 2146 } 2147 2148 Expr *Result = cast_or_null<Expr>(InitExprs[Init]); 2149 setInit(Init, expr); 2150 return Result; 2151 } 2152 2153 void InitListExpr::setArrayFiller(Expr *filler) { 2154 assert(!hasArrayFiller() && "Filler already set!"); 2155 ArrayFillerOrUnionFieldInit = filler; 2156 // Fill out any "holes" in the array due to designated initializers. 2157 Expr **inits = getInits(); 2158 for (unsigned i = 0, e = getNumInits(); i != e; ++i) 2159 if (inits[i] == nullptr) 2160 inits[i] = filler; 2161 } 2162 2163 bool InitListExpr::isStringLiteralInit() const { 2164 if (getNumInits() != 1) 2165 return false; 2166 const ArrayType *AT = getType()->getAsArrayTypeUnsafe(); 2167 if (!AT || !AT->getElementType()->isIntegerType()) 2168 return false; 2169 // It is possible for getInit() to return null. 2170 const Expr *Init = getInit(0); 2171 if (!Init) 2172 return false; 2173 Init = Init->IgnoreParens(); 2174 return isa<StringLiteral>(Init) || isa<ObjCEncodeExpr>(Init); 2175 } 2176 2177 bool InitListExpr::isTransparent() const { 2178 assert(isSemanticForm() && "syntactic form never semantically transparent"); 2179 2180 // A glvalue InitListExpr is always just sugar. 2181 if (isGLValue()) { 2182 assert(getNumInits() == 1 && "multiple inits in glvalue init list"); 2183 return true; 2184 } 2185 2186 // Otherwise, we're sugar if and only if we have exactly one initializer that 2187 // is of the same type. 2188 if (getNumInits() != 1 || !getInit(0)) 2189 return false; 2190 2191 // Don't confuse aggregate initialization of a struct X { X &x; }; with a 2192 // transparent struct copy. 2193 if (!getInit(0)->isRValue() && getType()->isRecordType()) 2194 return false; 2195 2196 return getType().getCanonicalType() == 2197 getInit(0)->getType().getCanonicalType(); 2198 } 2199 2200 bool InitListExpr::isIdiomaticZeroInitializer(const LangOptions &LangOpts) const { 2201 assert(isSyntacticForm() && "only test syntactic form as zero initializer"); 2202 2203 if (LangOpts.CPlusPlus || getNumInits() != 1 || !getInit(0)) { 2204 return false; 2205 } 2206 2207 const IntegerLiteral *Lit = dyn_cast<IntegerLiteral>(getInit(0)->IgnoreImplicit()); 2208 return Lit && Lit->getValue() == 0; 2209 } 2210 2211 SourceLocation InitListExpr::getBeginLoc() const { 2212 if (InitListExpr *SyntacticForm = getSyntacticForm()) 2213 return SyntacticForm->getBeginLoc(); 2214 SourceLocation Beg = LBraceLoc; 2215 if (Beg.isInvalid()) { 2216 // Find the first non-null initializer. 2217 for (InitExprsTy::const_iterator I = InitExprs.begin(), 2218 E = InitExprs.end(); 2219 I != E; ++I) { 2220 if (Stmt *S = *I) { 2221 Beg = S->getBeginLoc(); 2222 break; 2223 } 2224 } 2225 } 2226 return Beg; 2227 } 2228 2229 SourceLocation InitListExpr::getEndLoc() const { 2230 if (InitListExpr *SyntacticForm = getSyntacticForm()) 2231 return SyntacticForm->getEndLoc(); 2232 SourceLocation End = RBraceLoc; 2233 if (End.isInvalid()) { 2234 // Find the first non-null initializer from the end. 2235 for (InitExprsTy::const_reverse_iterator I = InitExprs.rbegin(), 2236 E = InitExprs.rend(); 2237 I != E; ++I) { 2238 if (Stmt *S = *I) { 2239 End = S->getEndLoc(); 2240 break; 2241 } 2242 } 2243 } 2244 return End; 2245 } 2246 2247 /// getFunctionType - Return the underlying function type for this block. 2248 /// 2249 const FunctionProtoType *BlockExpr::getFunctionType() const { 2250 // The block pointer is never sugared, but the function type might be. 2251 return cast<BlockPointerType>(getType()) 2252 ->getPointeeType()->castAs<FunctionProtoType>(); 2253 } 2254 2255 SourceLocation BlockExpr::getCaretLocation() const { 2256 return TheBlock->getCaretLocation(); 2257 } 2258 const Stmt *BlockExpr::getBody() const { 2259 return TheBlock->getBody(); 2260 } 2261 Stmt *BlockExpr::getBody() { 2262 return TheBlock->getBody(); 2263 } 2264 2265 2266 //===----------------------------------------------------------------------===// 2267 // Generic Expression Routines 2268 //===----------------------------------------------------------------------===// 2269 2270 /// isUnusedResultAWarning - Return true if this immediate expression should 2271 /// be warned about if the result is unused. If so, fill in Loc and Ranges 2272 /// with location to warn on and the source range[s] to report with the 2273 /// warning. 2274 bool Expr::isUnusedResultAWarning(const Expr *&WarnE, SourceLocation &Loc, 2275 SourceRange &R1, SourceRange &R2, 2276 ASTContext &Ctx) const { 2277 // Don't warn if the expr is type dependent. The type could end up 2278 // instantiating to void. 2279 if (isTypeDependent()) 2280 return false; 2281 2282 switch (getStmtClass()) { 2283 default: 2284 if (getType()->isVoidType()) 2285 return false; 2286 WarnE = this; 2287 Loc = getExprLoc(); 2288 R1 = getSourceRange(); 2289 return true; 2290 case ParenExprClass: 2291 return cast<ParenExpr>(this)->getSubExpr()-> 2292 isUnusedResultAWarning(WarnE, Loc, R1, R2, Ctx); 2293 case GenericSelectionExprClass: 2294 return cast<GenericSelectionExpr>(this)->getResultExpr()-> 2295 isUnusedResultAWarning(WarnE, Loc, R1, R2, Ctx); 2296 case CoawaitExprClass: 2297 case CoyieldExprClass: 2298 return cast<CoroutineSuspendExpr>(this)->getResumeExpr()-> 2299 isUnusedResultAWarning(WarnE, Loc, R1, R2, Ctx); 2300 case ChooseExprClass: 2301 return cast<ChooseExpr>(this)->getChosenSubExpr()-> 2302 isUnusedResultAWarning(WarnE, Loc, R1, R2, Ctx); 2303 case UnaryOperatorClass: { 2304 const UnaryOperator *UO = cast<UnaryOperator>(this); 2305 2306 switch (UO->getOpcode()) { 2307 case UO_Plus: 2308 case UO_Minus: 2309 case UO_AddrOf: 2310 case UO_Not: 2311 case UO_LNot: 2312 case UO_Deref: 2313 break; 2314 case UO_Coawait: 2315 // This is just the 'operator co_await' call inside the guts of a 2316 // dependent co_await call. 2317 case UO_PostInc: 2318 case UO_PostDec: 2319 case UO_PreInc: 2320 case UO_PreDec: // ++/-- 2321 return false; // Not a warning. 2322 case UO_Real: 2323 case UO_Imag: 2324 // accessing a piece of a volatile complex is a side-effect. 2325 if (Ctx.getCanonicalType(UO->getSubExpr()->getType()) 2326 .isVolatileQualified()) 2327 return false; 2328 break; 2329 case UO_Extension: 2330 return UO->getSubExpr()->isUnusedResultAWarning(WarnE, Loc, R1, R2, Ctx); 2331 } 2332 WarnE = this; 2333 Loc = UO->getOperatorLoc(); 2334 R1 = UO->getSubExpr()->getSourceRange(); 2335 return true; 2336 } 2337 case BinaryOperatorClass: { 2338 const BinaryOperator *BO = cast<BinaryOperator>(this); 2339 switch (BO->getOpcode()) { 2340 default: 2341 break; 2342 // Consider the RHS of comma for side effects. LHS was checked by 2343 // Sema::CheckCommaOperands. 2344 case BO_Comma: 2345 // ((foo = <blah>), 0) is an idiom for hiding the result (and 2346 // lvalue-ness) of an assignment written in a macro. 2347 if (IntegerLiteral *IE = 2348 dyn_cast<IntegerLiteral>(BO->getRHS()->IgnoreParens())) 2349 if (IE->getValue() == 0) 2350 return false; 2351 return BO->getRHS()->isUnusedResultAWarning(WarnE, Loc, R1, R2, Ctx); 2352 // Consider '||', '&&' to have side effects if the LHS or RHS does. 2353 case BO_LAnd: 2354 case BO_LOr: 2355 if (!BO->getLHS()->isUnusedResultAWarning(WarnE, Loc, R1, R2, Ctx) || 2356 !BO->getRHS()->isUnusedResultAWarning(WarnE, Loc, R1, R2, Ctx)) 2357 return false; 2358 break; 2359 } 2360 if (BO->isAssignmentOp()) 2361 return false; 2362 WarnE = this; 2363 Loc = BO->getOperatorLoc(); 2364 R1 = BO->getLHS()->getSourceRange(); 2365 R2 = BO->getRHS()->getSourceRange(); 2366 return true; 2367 } 2368 case CompoundAssignOperatorClass: 2369 case VAArgExprClass: 2370 case AtomicExprClass: 2371 return false; 2372 2373 case ConditionalOperatorClass: { 2374 // If only one of the LHS or RHS is a warning, the operator might 2375 // be being used for control flow. Only warn if both the LHS and 2376 // RHS are warnings. 2377 const auto *Exp = cast<ConditionalOperator>(this); 2378 return Exp->getLHS()->isUnusedResultAWarning(WarnE, Loc, R1, R2, Ctx) && 2379 Exp->getRHS()->isUnusedResultAWarning(WarnE, Loc, R1, R2, Ctx); 2380 } 2381 case BinaryConditionalOperatorClass: { 2382 const auto *Exp = cast<BinaryConditionalOperator>(this); 2383 return Exp->getFalseExpr()->isUnusedResultAWarning(WarnE, Loc, R1, R2, Ctx); 2384 } 2385 2386 case MemberExprClass: 2387 WarnE = this; 2388 Loc = cast<MemberExpr>(this)->getMemberLoc(); 2389 R1 = SourceRange(Loc, Loc); 2390 R2 = cast<MemberExpr>(this)->getBase()->getSourceRange(); 2391 return true; 2392 2393 case ArraySubscriptExprClass: 2394 WarnE = this; 2395 Loc = cast<ArraySubscriptExpr>(this)->getRBracketLoc(); 2396 R1 = cast<ArraySubscriptExpr>(this)->getLHS()->getSourceRange(); 2397 R2 = cast<ArraySubscriptExpr>(this)->getRHS()->getSourceRange(); 2398 return true; 2399 2400 case CXXOperatorCallExprClass: { 2401 // Warn about operator ==,!=,<,>,<=, and >= even when user-defined operator 2402 // overloads as there is no reasonable way to define these such that they 2403 // have non-trivial, desirable side-effects. See the -Wunused-comparison 2404 // warning: operators == and != are commonly typo'ed, and so warning on them 2405 // provides additional value as well. If this list is updated, 2406 // DiagnoseUnusedComparison should be as well. 2407 const CXXOperatorCallExpr *Op = cast<CXXOperatorCallExpr>(this); 2408 switch (Op->getOperator()) { 2409 default: 2410 break; 2411 case OO_EqualEqual: 2412 case OO_ExclaimEqual: 2413 case OO_Less: 2414 case OO_Greater: 2415 case OO_GreaterEqual: 2416 case OO_LessEqual: 2417 if (Op->getCallReturnType(Ctx)->isReferenceType() || 2418 Op->getCallReturnType(Ctx)->isVoidType()) 2419 break; 2420 WarnE = this; 2421 Loc = Op->getOperatorLoc(); 2422 R1 = Op->getSourceRange(); 2423 return true; 2424 } 2425 2426 // Fallthrough for generic call handling. 2427 LLVM_FALLTHROUGH; 2428 } 2429 case CallExprClass: 2430 case CXXMemberCallExprClass: 2431 case UserDefinedLiteralClass: { 2432 // If this is a direct call, get the callee. 2433 const CallExpr *CE = cast<CallExpr>(this); 2434 if (const Decl *FD = CE->getCalleeDecl()) { 2435 // If the callee has attribute pure, const, or warn_unused_result, warn 2436 // about it. void foo() { strlen("bar"); } should warn. 2437 // 2438 // Note: If new cases are added here, DiagnoseUnusedExprResult should be 2439 // updated to match for QoI. 2440 if (CE->hasUnusedResultAttr(Ctx) || 2441 FD->hasAttr<PureAttr>() || FD->hasAttr<ConstAttr>()) { 2442 WarnE = this; 2443 Loc = CE->getCallee()->getBeginLoc(); 2444 R1 = CE->getCallee()->getSourceRange(); 2445 2446 if (unsigned NumArgs = CE->getNumArgs()) 2447 R2 = SourceRange(CE->getArg(0)->getBeginLoc(), 2448 CE->getArg(NumArgs - 1)->getEndLoc()); 2449 return true; 2450 } 2451 } 2452 return false; 2453 } 2454 2455 // If we don't know precisely what we're looking at, let's not warn. 2456 case UnresolvedLookupExprClass: 2457 case CXXUnresolvedConstructExprClass: 2458 case RecoveryExprClass: 2459 return false; 2460 2461 case CXXTemporaryObjectExprClass: 2462 case CXXConstructExprClass: { 2463 if (const CXXRecordDecl *Type = getType()->getAsCXXRecordDecl()) { 2464 const auto *WarnURAttr = Type->getAttr<WarnUnusedResultAttr>(); 2465 if (Type->hasAttr<WarnUnusedAttr>() || 2466 (WarnURAttr && WarnURAttr->IsCXX11NoDiscard())) { 2467 WarnE = this; 2468 Loc = getBeginLoc(); 2469 R1 = getSourceRange(); 2470 return true; 2471 } 2472 } 2473 2474 const auto *CE = cast<CXXConstructExpr>(this); 2475 if (const CXXConstructorDecl *Ctor = CE->getConstructor()) { 2476 const auto *WarnURAttr = Ctor->getAttr<WarnUnusedResultAttr>(); 2477 if (WarnURAttr && WarnURAttr->IsCXX11NoDiscard()) { 2478 WarnE = this; 2479 Loc = getBeginLoc(); 2480 R1 = getSourceRange(); 2481 2482 if (unsigned NumArgs = CE->getNumArgs()) 2483 R2 = SourceRange(CE->getArg(0)->getBeginLoc(), 2484 CE->getArg(NumArgs - 1)->getEndLoc()); 2485 return true; 2486 } 2487 } 2488 2489 return false; 2490 } 2491 2492 case ObjCMessageExprClass: { 2493 const ObjCMessageExpr *ME = cast<ObjCMessageExpr>(this); 2494 if (Ctx.getLangOpts().ObjCAutoRefCount && 2495 ME->isInstanceMessage() && 2496 !ME->getType()->isVoidType() && 2497 ME->getMethodFamily() == OMF_init) { 2498 WarnE = this; 2499 Loc = getExprLoc(); 2500 R1 = ME->getSourceRange(); 2501 return true; 2502 } 2503 2504 if (const ObjCMethodDecl *MD = ME->getMethodDecl()) 2505 if (MD->hasAttr<WarnUnusedResultAttr>()) { 2506 WarnE = this; 2507 Loc = getExprLoc(); 2508 return true; 2509 } 2510 2511 return false; 2512 } 2513 2514 case ObjCPropertyRefExprClass: 2515 WarnE = this; 2516 Loc = getExprLoc(); 2517 R1 = getSourceRange(); 2518 return true; 2519 2520 case PseudoObjectExprClass: { 2521 const PseudoObjectExpr *PO = cast<PseudoObjectExpr>(this); 2522 2523 // Only complain about things that have the form of a getter. 2524 if (isa<UnaryOperator>(PO->getSyntacticForm()) || 2525 isa<BinaryOperator>(PO->getSyntacticForm())) 2526 return false; 2527 2528 WarnE = this; 2529 Loc = getExprLoc(); 2530 R1 = getSourceRange(); 2531 return true; 2532 } 2533 2534 case StmtExprClass: { 2535 // Statement exprs don't logically have side effects themselves, but are 2536 // sometimes used in macros in ways that give them a type that is unused. 2537 // For example ({ blah; foo(); }) will end up with a type if foo has a type. 2538 // however, if the result of the stmt expr is dead, we don't want to emit a 2539 // warning. 2540 const CompoundStmt *CS = cast<StmtExpr>(this)->getSubStmt(); 2541 if (!CS->body_empty()) { 2542 if (const Expr *E = dyn_cast<Expr>(CS->body_back())) 2543 return E->isUnusedResultAWarning(WarnE, Loc, R1, R2, Ctx); 2544 if (const LabelStmt *Label = dyn_cast<LabelStmt>(CS->body_back())) 2545 if (const Expr *E = dyn_cast<Expr>(Label->getSubStmt())) 2546 return E->isUnusedResultAWarning(WarnE, Loc, R1, R2, Ctx); 2547 } 2548 2549 if (getType()->isVoidType()) 2550 return false; 2551 WarnE = this; 2552 Loc = cast<StmtExpr>(this)->getLParenLoc(); 2553 R1 = getSourceRange(); 2554 return true; 2555 } 2556 case CXXFunctionalCastExprClass: 2557 case CStyleCastExprClass: { 2558 // Ignore an explicit cast to void unless the operand is a non-trivial 2559 // volatile lvalue. 2560 const CastExpr *CE = cast<CastExpr>(this); 2561 if (CE->getCastKind() == CK_ToVoid) { 2562 if (CE->getSubExpr()->isGLValue() && 2563 CE->getSubExpr()->getType().isVolatileQualified()) { 2564 const DeclRefExpr *DRE = 2565 dyn_cast<DeclRefExpr>(CE->getSubExpr()->IgnoreParens()); 2566 if (!(DRE && isa<VarDecl>(DRE->getDecl()) && 2567 cast<VarDecl>(DRE->getDecl())->hasLocalStorage()) && 2568 !isa<CallExpr>(CE->getSubExpr()->IgnoreParens())) { 2569 return CE->getSubExpr()->isUnusedResultAWarning(WarnE, Loc, 2570 R1, R2, Ctx); 2571 } 2572 } 2573 return false; 2574 } 2575 2576 // If this is a cast to a constructor conversion, check the operand. 2577 // Otherwise, the result of the cast is unused. 2578 if (CE->getCastKind() == CK_ConstructorConversion) 2579 return CE->getSubExpr()->isUnusedResultAWarning(WarnE, Loc, R1, R2, Ctx); 2580 2581 WarnE = this; 2582 if (const CXXFunctionalCastExpr *CXXCE = 2583 dyn_cast<CXXFunctionalCastExpr>(this)) { 2584 Loc = CXXCE->getBeginLoc(); 2585 R1 = CXXCE->getSubExpr()->getSourceRange(); 2586 } else { 2587 const CStyleCastExpr *CStyleCE = cast<CStyleCastExpr>(this); 2588 Loc = CStyleCE->getLParenLoc(); 2589 R1 = CStyleCE->getSubExpr()->getSourceRange(); 2590 } 2591 return true; 2592 } 2593 case ImplicitCastExprClass: { 2594 const CastExpr *ICE = cast<ImplicitCastExpr>(this); 2595 2596 // lvalue-to-rvalue conversion on a volatile lvalue is a side-effect. 2597 if (ICE->getCastKind() == CK_LValueToRValue && 2598 ICE->getSubExpr()->getType().isVolatileQualified()) 2599 return false; 2600 2601 return ICE->getSubExpr()->isUnusedResultAWarning(WarnE, Loc, R1, R2, Ctx); 2602 } 2603 case CXXDefaultArgExprClass: 2604 return (cast<CXXDefaultArgExpr>(this) 2605 ->getExpr()->isUnusedResultAWarning(WarnE, Loc, R1, R2, Ctx)); 2606 case CXXDefaultInitExprClass: 2607 return (cast<CXXDefaultInitExpr>(this) 2608 ->getExpr()->isUnusedResultAWarning(WarnE, Loc, R1, R2, Ctx)); 2609 2610 case CXXNewExprClass: 2611 // FIXME: In theory, there might be new expressions that don't have side 2612 // effects (e.g. a placement new with an uninitialized POD). 2613 case CXXDeleteExprClass: 2614 return false; 2615 case MaterializeTemporaryExprClass: 2616 return cast<MaterializeTemporaryExpr>(this) 2617 ->getSubExpr() 2618 ->isUnusedResultAWarning(WarnE, Loc, R1, R2, Ctx); 2619 case CXXBindTemporaryExprClass: 2620 return cast<CXXBindTemporaryExpr>(this)->getSubExpr() 2621 ->isUnusedResultAWarning(WarnE, Loc, R1, R2, Ctx); 2622 case ExprWithCleanupsClass: 2623 return cast<ExprWithCleanups>(this)->getSubExpr() 2624 ->isUnusedResultAWarning(WarnE, Loc, R1, R2, Ctx); 2625 } 2626 } 2627 2628 /// isOBJCGCCandidate - Check if an expression is objc gc'able. 2629 /// returns true, if it is; false otherwise. 2630 bool Expr::isOBJCGCCandidate(ASTContext &Ctx) const { 2631 const Expr *E = IgnoreParens(); 2632 switch (E->getStmtClass()) { 2633 default: 2634 return false; 2635 case ObjCIvarRefExprClass: 2636 return true; 2637 case Expr::UnaryOperatorClass: 2638 return cast<UnaryOperator>(E)->getSubExpr()->isOBJCGCCandidate(Ctx); 2639 case ImplicitCastExprClass: 2640 return cast<ImplicitCastExpr>(E)->getSubExpr()->isOBJCGCCandidate(Ctx); 2641 case MaterializeTemporaryExprClass: 2642 return cast<MaterializeTemporaryExpr>(E)->getSubExpr()->isOBJCGCCandidate( 2643 Ctx); 2644 case CStyleCastExprClass: 2645 return cast<CStyleCastExpr>(E)->getSubExpr()->isOBJCGCCandidate(Ctx); 2646 case DeclRefExprClass: { 2647 const Decl *D = cast<DeclRefExpr>(E)->getDecl(); 2648 2649 if (const VarDecl *VD = dyn_cast<VarDecl>(D)) { 2650 if (VD->hasGlobalStorage()) 2651 return true; 2652 QualType T = VD->getType(); 2653 // dereferencing to a pointer is always a gc'able candidate, 2654 // unless it is __weak. 2655 return T->isPointerType() && 2656 (Ctx.getObjCGCAttrKind(T) != Qualifiers::Weak); 2657 } 2658 return false; 2659 } 2660 case MemberExprClass: { 2661 const MemberExpr *M = cast<MemberExpr>(E); 2662 return M->getBase()->isOBJCGCCandidate(Ctx); 2663 } 2664 case ArraySubscriptExprClass: 2665 return cast<ArraySubscriptExpr>(E)->getBase()->isOBJCGCCandidate(Ctx); 2666 } 2667 } 2668 2669 bool Expr::isBoundMemberFunction(ASTContext &Ctx) const { 2670 if (isTypeDependent()) 2671 return false; 2672 return ClassifyLValue(Ctx) == Expr::LV_MemberFunction; 2673 } 2674 2675 QualType Expr::findBoundMemberType(const Expr *expr) { 2676 assert(expr->hasPlaceholderType(BuiltinType::BoundMember)); 2677 2678 // Bound member expressions are always one of these possibilities: 2679 // x->m x.m x->*y x.*y 2680 // (possibly parenthesized) 2681 2682 expr = expr->IgnoreParens(); 2683 if (const MemberExpr *mem = dyn_cast<MemberExpr>(expr)) { 2684 assert(isa<CXXMethodDecl>(mem->getMemberDecl())); 2685 return mem->getMemberDecl()->getType(); 2686 } 2687 2688 if (const BinaryOperator *op = dyn_cast<BinaryOperator>(expr)) { 2689 QualType type = op->getRHS()->getType()->castAs<MemberPointerType>() 2690 ->getPointeeType(); 2691 assert(type->isFunctionType()); 2692 return type; 2693 } 2694 2695 assert(isa<UnresolvedMemberExpr>(expr) || isa<CXXPseudoDestructorExpr>(expr)); 2696 return QualType(); 2697 } 2698 2699 static Expr *IgnoreImpCastsSingleStep(Expr *E) { 2700 if (auto *ICE = dyn_cast<ImplicitCastExpr>(E)) 2701 return ICE->getSubExpr(); 2702 2703 if (auto *FE = dyn_cast<FullExpr>(E)) 2704 return FE->getSubExpr(); 2705 2706 return E; 2707 } 2708 2709 static Expr *IgnoreImpCastsExtraSingleStep(Expr *E) { 2710 // FIXME: Skip MaterializeTemporaryExpr and SubstNonTypeTemplateParmExpr in 2711 // addition to what IgnoreImpCasts() skips to account for the current 2712 // behaviour of IgnoreParenImpCasts(). 2713 Expr *SubE = IgnoreImpCastsSingleStep(E); 2714 if (SubE != E) 2715 return SubE; 2716 2717 if (auto *MTE = dyn_cast<MaterializeTemporaryExpr>(E)) 2718 return MTE->getSubExpr(); 2719 2720 if (auto *NTTP = dyn_cast<SubstNonTypeTemplateParmExpr>(E)) 2721 return NTTP->getReplacement(); 2722 2723 return E; 2724 } 2725 2726 static Expr *IgnoreCastsSingleStep(Expr *E) { 2727 if (auto *CE = dyn_cast<CastExpr>(E)) 2728 return CE->getSubExpr(); 2729 2730 if (auto *FE = dyn_cast<FullExpr>(E)) 2731 return FE->getSubExpr(); 2732 2733 if (auto *MTE = dyn_cast<MaterializeTemporaryExpr>(E)) 2734 return MTE->getSubExpr(); 2735 2736 if (auto *NTTP = dyn_cast<SubstNonTypeTemplateParmExpr>(E)) 2737 return NTTP->getReplacement(); 2738 2739 return E; 2740 } 2741 2742 static Expr *IgnoreLValueCastsSingleStep(Expr *E) { 2743 // Skip what IgnoreCastsSingleStep skips, except that only 2744 // lvalue-to-rvalue casts are skipped. 2745 if (auto *CE = dyn_cast<CastExpr>(E)) 2746 if (CE->getCastKind() != CK_LValueToRValue) 2747 return E; 2748 2749 return IgnoreCastsSingleStep(E); 2750 } 2751 2752 static Expr *IgnoreBaseCastsSingleStep(Expr *E) { 2753 if (auto *CE = dyn_cast<CastExpr>(E)) 2754 if (CE->getCastKind() == CK_DerivedToBase || 2755 CE->getCastKind() == CK_UncheckedDerivedToBase || 2756 CE->getCastKind() == CK_NoOp) 2757 return CE->getSubExpr(); 2758 2759 return E; 2760 } 2761 2762 static Expr *IgnoreImplicitSingleStep(Expr *E) { 2763 Expr *SubE = IgnoreImpCastsSingleStep(E); 2764 if (SubE != E) 2765 return SubE; 2766 2767 if (auto *MTE = dyn_cast<MaterializeTemporaryExpr>(E)) 2768 return MTE->getSubExpr(); 2769 2770 if (auto *BTE = dyn_cast<CXXBindTemporaryExpr>(E)) 2771 return BTE->getSubExpr(); 2772 2773 return E; 2774 } 2775 2776 static Expr *IgnoreImplicitAsWrittenSingleStep(Expr *E) { 2777 if (auto *ICE = dyn_cast<ImplicitCastExpr>(E)) 2778 return ICE->getSubExprAsWritten(); 2779 2780 return IgnoreImplicitSingleStep(E); 2781 } 2782 2783 static Expr *IgnoreParensOnlySingleStep(Expr *E) { 2784 if (auto *PE = dyn_cast<ParenExpr>(E)) 2785 return PE->getSubExpr(); 2786 return E; 2787 } 2788 2789 static Expr *IgnoreParensSingleStep(Expr *E) { 2790 if (auto *PE = dyn_cast<ParenExpr>(E)) 2791 return PE->getSubExpr(); 2792 2793 if (auto *UO = dyn_cast<UnaryOperator>(E)) { 2794 if (UO->getOpcode() == UO_Extension) 2795 return UO->getSubExpr(); 2796 } 2797 2798 else if (auto *GSE = dyn_cast<GenericSelectionExpr>(E)) { 2799 if (!GSE->isResultDependent()) 2800 return GSE->getResultExpr(); 2801 } 2802 2803 else if (auto *CE = dyn_cast<ChooseExpr>(E)) { 2804 if (!CE->isConditionDependent()) 2805 return CE->getChosenSubExpr(); 2806 } 2807 2808 return E; 2809 } 2810 2811 static Expr *IgnoreNoopCastsSingleStep(const ASTContext &Ctx, Expr *E) { 2812 if (auto *CE = dyn_cast<CastExpr>(E)) { 2813 // We ignore integer <-> casts that are of the same width, ptr<->ptr and 2814 // ptr<->int casts of the same width. We also ignore all identity casts. 2815 Expr *SubExpr = CE->getSubExpr(); 2816 bool IsIdentityCast = 2817 Ctx.hasSameUnqualifiedType(E->getType(), SubExpr->getType()); 2818 bool IsSameWidthCast = 2819 (E->getType()->isPointerType() || E->getType()->isIntegralType(Ctx)) && 2820 (SubExpr->getType()->isPointerType() || 2821 SubExpr->getType()->isIntegralType(Ctx)) && 2822 (Ctx.getTypeSize(E->getType()) == Ctx.getTypeSize(SubExpr->getType())); 2823 2824 if (IsIdentityCast || IsSameWidthCast) 2825 return SubExpr; 2826 } 2827 2828 else if (auto *NTTP = dyn_cast<SubstNonTypeTemplateParmExpr>(E)) 2829 return NTTP->getReplacement(); 2830 2831 return E; 2832 } 2833 2834 static Expr *IgnoreExprNodesImpl(Expr *E) { return E; } 2835 template <typename FnTy, typename... FnTys> 2836 static Expr *IgnoreExprNodesImpl(Expr *E, FnTy &&Fn, FnTys &&... Fns) { 2837 return IgnoreExprNodesImpl(Fn(E), std::forward<FnTys>(Fns)...); 2838 } 2839 2840 /// Given an expression E and functions Fn_1,...,Fn_n : Expr * -> Expr *, 2841 /// Recursively apply each of the functions to E until reaching a fixed point. 2842 /// Note that a null E is valid; in this case nothing is done. 2843 template <typename... FnTys> 2844 static Expr *IgnoreExprNodes(Expr *E, FnTys &&... Fns) { 2845 Expr *LastE = nullptr; 2846 while (E != LastE) { 2847 LastE = E; 2848 E = IgnoreExprNodesImpl(E, std::forward<FnTys>(Fns)...); 2849 } 2850 return E; 2851 } 2852 2853 Expr *Expr::IgnoreImpCasts() { 2854 return IgnoreExprNodes(this, IgnoreImpCastsSingleStep); 2855 } 2856 2857 Expr *Expr::IgnoreCasts() { 2858 return IgnoreExprNodes(this, IgnoreCastsSingleStep); 2859 } 2860 2861 Expr *Expr::IgnoreImplicit() { 2862 return IgnoreExprNodes(this, IgnoreImplicitSingleStep); 2863 } 2864 2865 Expr *Expr::IgnoreImplicitAsWritten() { 2866 return IgnoreExprNodes(this, IgnoreImplicitAsWrittenSingleStep); 2867 } 2868 2869 Expr *Expr::IgnoreParens() { 2870 return IgnoreExprNodes(this, IgnoreParensSingleStep); 2871 } 2872 2873 Expr *Expr::IgnoreParenImpCasts() { 2874 return IgnoreExprNodes(this, IgnoreParensSingleStep, 2875 IgnoreImpCastsExtraSingleStep); 2876 } 2877 2878 Expr *Expr::IgnoreParenCasts() { 2879 return IgnoreExprNodes(this, IgnoreParensSingleStep, IgnoreCastsSingleStep); 2880 } 2881 2882 Expr *Expr::IgnoreConversionOperator() { 2883 if (auto *MCE = dyn_cast<CXXMemberCallExpr>(this)) { 2884 if (MCE->getMethodDecl() && isa<CXXConversionDecl>(MCE->getMethodDecl())) 2885 return MCE->getImplicitObjectArgument(); 2886 } 2887 return this; 2888 } 2889 2890 Expr *Expr::IgnoreParenLValueCasts() { 2891 return IgnoreExprNodes(this, IgnoreParensSingleStep, 2892 IgnoreLValueCastsSingleStep); 2893 } 2894 2895 Expr *Expr::ignoreParenBaseCasts() { 2896 return IgnoreExprNodes(this, IgnoreParensSingleStep, 2897 IgnoreBaseCastsSingleStep); 2898 } 2899 2900 Expr *Expr::IgnoreParenNoopCasts(const ASTContext &Ctx) { 2901 return IgnoreExprNodes(this, IgnoreParensSingleStep, [&Ctx](Expr *E) { 2902 return IgnoreNoopCastsSingleStep(Ctx, E); 2903 }); 2904 } 2905 2906 Expr *Expr::IgnoreUnlessSpelledInSource() { 2907 Expr *E = this; 2908 2909 Expr *LastE = nullptr; 2910 while (E != LastE) { 2911 LastE = E; 2912 E = IgnoreExprNodes(E, IgnoreImplicitSingleStep, 2913 IgnoreImpCastsExtraSingleStep, 2914 IgnoreParensOnlySingleStep); 2915 2916 auto SR = E->getSourceRange(); 2917 2918 if (auto *C = dyn_cast<CXXConstructExpr>(E)) { 2919 auto NumArgs = C->getNumArgs(); 2920 if (NumArgs == 1 || 2921 (NumArgs > 1 && isa<CXXDefaultArgExpr>(C->getArg(1)))) { 2922 Expr *A = C->getArg(0); 2923 if (A->getSourceRange() == SR || !isa<CXXTemporaryObjectExpr>(C)) 2924 E = A; 2925 } 2926 } 2927 2928 if (auto *C = dyn_cast<CXXMemberCallExpr>(E)) { 2929 Expr *ExprNode = C->getImplicitObjectArgument(); 2930 if (ExprNode->getSourceRange() == SR) { 2931 E = ExprNode; 2932 continue; 2933 } 2934 if (auto *PE = dyn_cast<ParenExpr>(ExprNode)) { 2935 if (PE->getSourceRange() == C->getSourceRange()) { 2936 E = PE; 2937 continue; 2938 } 2939 } 2940 ExprNode = ExprNode->IgnoreParenImpCasts(); 2941 if (ExprNode->getSourceRange() == SR) 2942 E = ExprNode; 2943 } 2944 } 2945 2946 return E; 2947 } 2948 2949 bool Expr::isDefaultArgument() const { 2950 const Expr *E = this; 2951 if (const MaterializeTemporaryExpr *M = dyn_cast<MaterializeTemporaryExpr>(E)) 2952 E = M->getSubExpr(); 2953 2954 while (const ImplicitCastExpr *ICE = dyn_cast<ImplicitCastExpr>(E)) 2955 E = ICE->getSubExprAsWritten(); 2956 2957 return isa<CXXDefaultArgExpr>(E); 2958 } 2959 2960 /// Skip over any no-op casts and any temporary-binding 2961 /// expressions. 2962 static const Expr *skipTemporaryBindingsNoOpCastsAndParens(const Expr *E) { 2963 if (const MaterializeTemporaryExpr *M = dyn_cast<MaterializeTemporaryExpr>(E)) 2964 E = M->getSubExpr(); 2965 2966 while (const ImplicitCastExpr *ICE = dyn_cast<ImplicitCastExpr>(E)) { 2967 if (ICE->getCastKind() == CK_NoOp) 2968 E = ICE->getSubExpr(); 2969 else 2970 break; 2971 } 2972 2973 while (const CXXBindTemporaryExpr *BE = dyn_cast<CXXBindTemporaryExpr>(E)) 2974 E = BE->getSubExpr(); 2975 2976 while (const ImplicitCastExpr *ICE = dyn_cast<ImplicitCastExpr>(E)) { 2977 if (ICE->getCastKind() == CK_NoOp) 2978 E = ICE->getSubExpr(); 2979 else 2980 break; 2981 } 2982 2983 return E->IgnoreParens(); 2984 } 2985 2986 /// isTemporaryObject - Determines if this expression produces a 2987 /// temporary of the given class type. 2988 bool Expr::isTemporaryObject(ASTContext &C, const CXXRecordDecl *TempTy) const { 2989 if (!C.hasSameUnqualifiedType(getType(), C.getTypeDeclType(TempTy))) 2990 return false; 2991 2992 const Expr *E = skipTemporaryBindingsNoOpCastsAndParens(this); 2993 2994 // Temporaries are by definition pr-values of class type. 2995 if (!E->Classify(C).isPRValue()) { 2996 // In this context, property reference is a message call and is pr-value. 2997 if (!isa<ObjCPropertyRefExpr>(E)) 2998 return false; 2999 } 3000 3001 // Black-list a few cases which yield pr-values of class type that don't 3002 // refer to temporaries of that type: 3003 3004 // - implicit derived-to-base conversions 3005 if (isa<ImplicitCastExpr>(E)) { 3006 switch (cast<ImplicitCastExpr>(E)->getCastKind()) { 3007 case CK_DerivedToBase: 3008 case CK_UncheckedDerivedToBase: 3009 return false; 3010 default: 3011 break; 3012 } 3013 } 3014 3015 // - member expressions (all) 3016 if (isa<MemberExpr>(E)) 3017 return false; 3018 3019 if (const BinaryOperator *BO = dyn_cast<BinaryOperator>(E)) 3020 if (BO->isPtrMemOp()) 3021 return false; 3022 3023 // - opaque values (all) 3024 if (isa<OpaqueValueExpr>(E)) 3025 return false; 3026 3027 return true; 3028 } 3029 3030 bool Expr::isImplicitCXXThis() const { 3031 const Expr *E = this; 3032 3033 // Strip away parentheses and casts we don't care about. 3034 while (true) { 3035 if (const ParenExpr *Paren = dyn_cast<ParenExpr>(E)) { 3036 E = Paren->getSubExpr(); 3037 continue; 3038 } 3039 3040 if (const ImplicitCastExpr *ICE = dyn_cast<ImplicitCastExpr>(E)) { 3041 if (ICE->getCastKind() == CK_NoOp || 3042 ICE->getCastKind() == CK_LValueToRValue || 3043 ICE->getCastKind() == CK_DerivedToBase || 3044 ICE->getCastKind() == CK_UncheckedDerivedToBase) { 3045 E = ICE->getSubExpr(); 3046 continue; 3047 } 3048 } 3049 3050 if (const UnaryOperator* UnOp = dyn_cast<UnaryOperator>(E)) { 3051 if (UnOp->getOpcode() == UO_Extension) { 3052 E = UnOp->getSubExpr(); 3053 continue; 3054 } 3055 } 3056 3057 if (const MaterializeTemporaryExpr *M 3058 = dyn_cast<MaterializeTemporaryExpr>(E)) { 3059 E = M->getSubExpr(); 3060 continue; 3061 } 3062 3063 break; 3064 } 3065 3066 if (const CXXThisExpr *This = dyn_cast<CXXThisExpr>(E)) 3067 return This->isImplicit(); 3068 3069 return false; 3070 } 3071 3072 /// hasAnyTypeDependentArguments - Determines if any of the expressions 3073 /// in Exprs is type-dependent. 3074 bool Expr::hasAnyTypeDependentArguments(ArrayRef<Expr *> Exprs) { 3075 for (unsigned I = 0; I < Exprs.size(); ++I) 3076 if (Exprs[I]->isTypeDependent()) 3077 return true; 3078 3079 return false; 3080 } 3081 3082 bool Expr::isConstantInitializer(ASTContext &Ctx, bool IsForRef, 3083 const Expr **Culprit) const { 3084 assert(!isValueDependent() && 3085 "Expression evaluator can't be called on a dependent expression."); 3086 3087 // This function is attempting whether an expression is an initializer 3088 // which can be evaluated at compile-time. It very closely parallels 3089 // ConstExprEmitter in CGExprConstant.cpp; if they don't match, it 3090 // will lead to unexpected results. Like ConstExprEmitter, it falls back 3091 // to isEvaluatable most of the time. 3092 // 3093 // If we ever capture reference-binding directly in the AST, we can 3094 // kill the second parameter. 3095 3096 if (IsForRef) { 3097 EvalResult Result; 3098 if (EvaluateAsLValue(Result, Ctx) && !Result.HasSideEffects) 3099 return true; 3100 if (Culprit) 3101 *Culprit = this; 3102 return false; 3103 } 3104 3105 switch (getStmtClass()) { 3106 default: break; 3107 case Stmt::ExprWithCleanupsClass: 3108 return cast<ExprWithCleanups>(this)->getSubExpr()->isConstantInitializer( 3109 Ctx, IsForRef, Culprit); 3110 case StringLiteralClass: 3111 case ObjCEncodeExprClass: 3112 return true; 3113 case CXXTemporaryObjectExprClass: 3114 case CXXConstructExprClass: { 3115 const CXXConstructExpr *CE = cast<CXXConstructExpr>(this); 3116 3117 if (CE->getConstructor()->isTrivial() && 3118 CE->getConstructor()->getParent()->hasTrivialDestructor()) { 3119 // Trivial default constructor 3120 if (!CE->getNumArgs()) return true; 3121 3122 // Trivial copy constructor 3123 assert(CE->getNumArgs() == 1 && "trivial ctor with > 1 argument"); 3124 return CE->getArg(0)->isConstantInitializer(Ctx, false, Culprit); 3125 } 3126 3127 break; 3128 } 3129 case ConstantExprClass: { 3130 // FIXME: We should be able to return "true" here, but it can lead to extra 3131 // error messages. E.g. in Sema/array-init.c. 3132 const Expr *Exp = cast<ConstantExpr>(this)->getSubExpr(); 3133 return Exp->isConstantInitializer(Ctx, false, Culprit); 3134 } 3135 case CompoundLiteralExprClass: { 3136 // This handles gcc's extension that allows global initializers like 3137 // "struct x {int x;} x = (struct x) {};". 3138 // FIXME: This accepts other cases it shouldn't! 3139 const Expr *Exp = cast<CompoundLiteralExpr>(this)->getInitializer(); 3140 return Exp->isConstantInitializer(Ctx, false, Culprit); 3141 } 3142 case DesignatedInitUpdateExprClass: { 3143 const DesignatedInitUpdateExpr *DIUE = cast<DesignatedInitUpdateExpr>(this); 3144 return DIUE->getBase()->isConstantInitializer(Ctx, false, Culprit) && 3145 DIUE->getUpdater()->isConstantInitializer(Ctx, false, Culprit); 3146 } 3147 case InitListExprClass: { 3148 const InitListExpr *ILE = cast<InitListExpr>(this); 3149 assert(ILE->isSemanticForm() && "InitListExpr must be in semantic form"); 3150 if (ILE->getType()->isArrayType()) { 3151 unsigned numInits = ILE->getNumInits(); 3152 for (unsigned i = 0; i < numInits; i++) { 3153 if (!ILE->getInit(i)->isConstantInitializer(Ctx, false, Culprit)) 3154 return false; 3155 } 3156 return true; 3157 } 3158 3159 if (ILE->getType()->isRecordType()) { 3160 unsigned ElementNo = 0; 3161 RecordDecl *RD = ILE->getType()->castAs<RecordType>()->getDecl(); 3162 for (const auto *Field : RD->fields()) { 3163 // If this is a union, skip all the fields that aren't being initialized. 3164 if (RD->isUnion() && ILE->getInitializedFieldInUnion() != Field) 3165 continue; 3166 3167 // Don't emit anonymous bitfields, they just affect layout. 3168 if (Field->isUnnamedBitfield()) 3169 continue; 3170 3171 if (ElementNo < ILE->getNumInits()) { 3172 const Expr *Elt = ILE->getInit(ElementNo++); 3173 if (Field->isBitField()) { 3174 // Bitfields have to evaluate to an integer. 3175 EvalResult Result; 3176 if (!Elt->EvaluateAsInt(Result, Ctx)) { 3177 if (Culprit) 3178 *Culprit = Elt; 3179 return false; 3180 } 3181 } else { 3182 bool RefType = Field->getType()->isReferenceType(); 3183 if (!Elt->isConstantInitializer(Ctx, RefType, Culprit)) 3184 return false; 3185 } 3186 } 3187 } 3188 return true; 3189 } 3190 3191 break; 3192 } 3193 case ImplicitValueInitExprClass: 3194 case NoInitExprClass: 3195 return true; 3196 case ParenExprClass: 3197 return cast<ParenExpr>(this)->getSubExpr() 3198 ->isConstantInitializer(Ctx, IsForRef, Culprit); 3199 case GenericSelectionExprClass: 3200 return cast<GenericSelectionExpr>(this)->getResultExpr() 3201 ->isConstantInitializer(Ctx, IsForRef, Culprit); 3202 case ChooseExprClass: 3203 if (cast<ChooseExpr>(this)->isConditionDependent()) { 3204 if (Culprit) 3205 *Culprit = this; 3206 return false; 3207 } 3208 return cast<ChooseExpr>(this)->getChosenSubExpr() 3209 ->isConstantInitializer(Ctx, IsForRef, Culprit); 3210 case UnaryOperatorClass: { 3211 const UnaryOperator* Exp = cast<UnaryOperator>(this); 3212 if (Exp->getOpcode() == UO_Extension) 3213 return Exp->getSubExpr()->isConstantInitializer(Ctx, false, Culprit); 3214 break; 3215 } 3216 case CXXFunctionalCastExprClass: 3217 case CXXStaticCastExprClass: 3218 case ImplicitCastExprClass: 3219 case CStyleCastExprClass: 3220 case ObjCBridgedCastExprClass: 3221 case CXXDynamicCastExprClass: 3222 case CXXReinterpretCastExprClass: 3223 case CXXAddrspaceCastExprClass: 3224 case CXXConstCastExprClass: { 3225 const CastExpr *CE = cast<CastExpr>(this); 3226 3227 // Handle misc casts we want to ignore. 3228 if (CE->getCastKind() == CK_NoOp || 3229 CE->getCastKind() == CK_LValueToRValue || 3230 CE->getCastKind() == CK_ToUnion || 3231 CE->getCastKind() == CK_ConstructorConversion || 3232 CE->getCastKind() == CK_NonAtomicToAtomic || 3233 CE->getCastKind() == CK_AtomicToNonAtomic || 3234 CE->getCastKind() == CK_IntToOCLSampler) 3235 return CE->getSubExpr()->isConstantInitializer(Ctx, false, Culprit); 3236 3237 break; 3238 } 3239 case MaterializeTemporaryExprClass: 3240 return cast<MaterializeTemporaryExpr>(this) 3241 ->getSubExpr() 3242 ->isConstantInitializer(Ctx, false, Culprit); 3243 3244 case SubstNonTypeTemplateParmExprClass: 3245 return cast<SubstNonTypeTemplateParmExpr>(this)->getReplacement() 3246 ->isConstantInitializer(Ctx, false, Culprit); 3247 case CXXDefaultArgExprClass: 3248 return cast<CXXDefaultArgExpr>(this)->getExpr() 3249 ->isConstantInitializer(Ctx, false, Culprit); 3250 case CXXDefaultInitExprClass: 3251 return cast<CXXDefaultInitExpr>(this)->getExpr() 3252 ->isConstantInitializer(Ctx, false, Culprit); 3253 } 3254 // Allow certain forms of UB in constant initializers: signed integer 3255 // overflow and floating-point division by zero. We'll give a warning on 3256 // these, but they're common enough that we have to accept them. 3257 if (isEvaluatable(Ctx, SE_AllowUndefinedBehavior)) 3258 return true; 3259 if (Culprit) 3260 *Culprit = this; 3261 return false; 3262 } 3263 3264 bool CallExpr::isBuiltinAssumeFalse(const ASTContext &Ctx) const { 3265 const FunctionDecl* FD = getDirectCallee(); 3266 if (!FD || (FD->getBuiltinID() != Builtin::BI__assume && 3267 FD->getBuiltinID() != Builtin::BI__builtin_assume)) 3268 return false; 3269 3270 const Expr* Arg = getArg(0); 3271 bool ArgVal; 3272 return !Arg->isValueDependent() && 3273 Arg->EvaluateAsBooleanCondition(ArgVal, Ctx) && !ArgVal; 3274 } 3275 3276 namespace { 3277 /// Look for any side effects within a Stmt. 3278 class SideEffectFinder : public ConstEvaluatedExprVisitor<SideEffectFinder> { 3279 typedef ConstEvaluatedExprVisitor<SideEffectFinder> Inherited; 3280 const bool IncludePossibleEffects; 3281 bool HasSideEffects; 3282 3283 public: 3284 explicit SideEffectFinder(const ASTContext &Context, bool IncludePossible) 3285 : Inherited(Context), 3286 IncludePossibleEffects(IncludePossible), HasSideEffects(false) { } 3287 3288 bool hasSideEffects() const { return HasSideEffects; } 3289 3290 void VisitDecl(const Decl *D) { 3291 if (!D) 3292 return; 3293 3294 // We assume the caller checks subexpressions (eg, the initializer, VLA 3295 // bounds) for side-effects on our behalf. 3296 if (auto *VD = dyn_cast<VarDecl>(D)) { 3297 // Registering a destructor is a side-effect. 3298 if (IncludePossibleEffects && VD->isThisDeclarationADefinition() && 3299 VD->needsDestruction(Context)) 3300 HasSideEffects = true; 3301 } 3302 } 3303 3304 void VisitDeclStmt(const DeclStmt *DS) { 3305 for (auto *D : DS->decls()) 3306 VisitDecl(D); 3307 Inherited::VisitDeclStmt(DS); 3308 } 3309 3310 void VisitExpr(const Expr *E) { 3311 if (!HasSideEffects && 3312 E->HasSideEffects(Context, IncludePossibleEffects)) 3313 HasSideEffects = true; 3314 } 3315 }; 3316 } 3317 3318 bool Expr::HasSideEffects(const ASTContext &Ctx, 3319 bool IncludePossibleEffects) const { 3320 // In circumstances where we care about definite side effects instead of 3321 // potential side effects, we want to ignore expressions that are part of a 3322 // macro expansion as a potential side effect. 3323 if (!IncludePossibleEffects && getExprLoc().isMacroID()) 3324 return false; 3325 3326 if (isInstantiationDependent()) 3327 return IncludePossibleEffects; 3328 3329 switch (getStmtClass()) { 3330 case NoStmtClass: 3331 #define ABSTRACT_STMT(Type) 3332 #define STMT(Type, Base) case Type##Class: 3333 #define EXPR(Type, Base) 3334 #include "clang/AST/StmtNodes.inc" 3335 llvm_unreachable("unexpected Expr kind"); 3336 3337 case DependentScopeDeclRefExprClass: 3338 case CXXUnresolvedConstructExprClass: 3339 case CXXDependentScopeMemberExprClass: 3340 case UnresolvedLookupExprClass: 3341 case UnresolvedMemberExprClass: 3342 case PackExpansionExprClass: 3343 case SubstNonTypeTemplateParmPackExprClass: 3344 case FunctionParmPackExprClass: 3345 case TypoExprClass: 3346 case RecoveryExprClass: 3347 case CXXFoldExprClass: 3348 llvm_unreachable("shouldn't see dependent / unresolved nodes here"); 3349 3350 case DeclRefExprClass: 3351 case ObjCIvarRefExprClass: 3352 case PredefinedExprClass: 3353 case IntegerLiteralClass: 3354 case FixedPointLiteralClass: 3355 case FloatingLiteralClass: 3356 case ImaginaryLiteralClass: 3357 case StringLiteralClass: 3358 case CharacterLiteralClass: 3359 case OffsetOfExprClass: 3360 case ImplicitValueInitExprClass: 3361 case UnaryExprOrTypeTraitExprClass: 3362 case AddrLabelExprClass: 3363 case GNUNullExprClass: 3364 case ArrayInitIndexExprClass: 3365 case NoInitExprClass: 3366 case CXXBoolLiteralExprClass: 3367 case CXXNullPtrLiteralExprClass: 3368 case CXXThisExprClass: 3369 case CXXScalarValueInitExprClass: 3370 case TypeTraitExprClass: 3371 case ArrayTypeTraitExprClass: 3372 case ExpressionTraitExprClass: 3373 case CXXNoexceptExprClass: 3374 case SizeOfPackExprClass: 3375 case ObjCStringLiteralClass: 3376 case ObjCEncodeExprClass: 3377 case ObjCBoolLiteralExprClass: 3378 case ObjCAvailabilityCheckExprClass: 3379 case CXXUuidofExprClass: 3380 case OpaqueValueExprClass: 3381 case SourceLocExprClass: 3382 case ConceptSpecializationExprClass: 3383 case RequiresExprClass: 3384 // These never have a side-effect. 3385 return false; 3386 3387 case ConstantExprClass: 3388 // FIXME: Move this into the "return false;" block above. 3389 return cast<ConstantExpr>(this)->getSubExpr()->HasSideEffects( 3390 Ctx, IncludePossibleEffects); 3391 3392 case CallExprClass: 3393 case CXXOperatorCallExprClass: 3394 case CXXMemberCallExprClass: 3395 case CUDAKernelCallExprClass: 3396 case UserDefinedLiteralClass: { 3397 // We don't know a call definitely has side effects, except for calls 3398 // to pure/const functions that definitely don't. 3399 // If the call itself is considered side-effect free, check the operands. 3400 const Decl *FD = cast<CallExpr>(this)->getCalleeDecl(); 3401 bool IsPure = FD && (FD->hasAttr<ConstAttr>() || FD->hasAttr<PureAttr>()); 3402 if (IsPure || !IncludePossibleEffects) 3403 break; 3404 return true; 3405 } 3406 3407 case BlockExprClass: 3408 case CXXBindTemporaryExprClass: 3409 if (!IncludePossibleEffects) 3410 break; 3411 return true; 3412 3413 case MSPropertyRefExprClass: 3414 case MSPropertySubscriptExprClass: 3415 case CompoundAssignOperatorClass: 3416 case VAArgExprClass: 3417 case AtomicExprClass: 3418 case CXXThrowExprClass: 3419 case CXXNewExprClass: 3420 case CXXDeleteExprClass: 3421 case CoawaitExprClass: 3422 case DependentCoawaitExprClass: 3423 case CoyieldExprClass: 3424 // These always have a side-effect. 3425 return true; 3426 3427 case StmtExprClass: { 3428 // StmtExprs have a side-effect if any substatement does. 3429 SideEffectFinder Finder(Ctx, IncludePossibleEffects); 3430 Finder.Visit(cast<StmtExpr>(this)->getSubStmt()); 3431 return Finder.hasSideEffects(); 3432 } 3433 3434 case ExprWithCleanupsClass: 3435 if (IncludePossibleEffects) 3436 if (cast<ExprWithCleanups>(this)->cleanupsHaveSideEffects()) 3437 return true; 3438 break; 3439 3440 case ParenExprClass: 3441 case ArraySubscriptExprClass: 3442 case OMPArraySectionExprClass: 3443 case OMPArrayShapingExprClass: 3444 case OMPIteratorExprClass: 3445 case MemberExprClass: 3446 case ConditionalOperatorClass: 3447 case BinaryConditionalOperatorClass: 3448 case CompoundLiteralExprClass: 3449 case ExtVectorElementExprClass: 3450 case DesignatedInitExprClass: 3451 case DesignatedInitUpdateExprClass: 3452 case ArrayInitLoopExprClass: 3453 case ParenListExprClass: 3454 case CXXPseudoDestructorExprClass: 3455 case CXXRewrittenBinaryOperatorClass: 3456 case CXXStdInitializerListExprClass: 3457 case SubstNonTypeTemplateParmExprClass: 3458 case MaterializeTemporaryExprClass: 3459 case ShuffleVectorExprClass: 3460 case ConvertVectorExprClass: 3461 case AsTypeExprClass: 3462 // These have a side-effect if any subexpression does. 3463 break; 3464 3465 case UnaryOperatorClass: 3466 if (cast<UnaryOperator>(this)->isIncrementDecrementOp()) 3467 return true; 3468 break; 3469 3470 case BinaryOperatorClass: 3471 if (cast<BinaryOperator>(this)->isAssignmentOp()) 3472 return true; 3473 break; 3474 3475 case InitListExprClass: 3476 // FIXME: The children for an InitListExpr doesn't include the array filler. 3477 if (const Expr *E = cast<InitListExpr>(this)->getArrayFiller()) 3478 if (E->HasSideEffects(Ctx, IncludePossibleEffects)) 3479 return true; 3480 break; 3481 3482 case GenericSelectionExprClass: 3483 return cast<GenericSelectionExpr>(this)->getResultExpr()-> 3484 HasSideEffects(Ctx, IncludePossibleEffects); 3485 3486 case ChooseExprClass: 3487 return cast<ChooseExpr>(this)->getChosenSubExpr()->HasSideEffects( 3488 Ctx, IncludePossibleEffects); 3489 3490 case CXXDefaultArgExprClass: 3491 return cast<CXXDefaultArgExpr>(this)->getExpr()->HasSideEffects( 3492 Ctx, IncludePossibleEffects); 3493 3494 case CXXDefaultInitExprClass: { 3495 const FieldDecl *FD = cast<CXXDefaultInitExpr>(this)->getField(); 3496 if (const Expr *E = FD->getInClassInitializer()) 3497 return E->HasSideEffects(Ctx, IncludePossibleEffects); 3498 // If we've not yet parsed the initializer, assume it has side-effects. 3499 return true; 3500 } 3501 3502 case CXXDynamicCastExprClass: { 3503 // A dynamic_cast expression has side-effects if it can throw. 3504 const CXXDynamicCastExpr *DCE = cast<CXXDynamicCastExpr>(this); 3505 if (DCE->getTypeAsWritten()->isReferenceType() && 3506 DCE->getCastKind() == CK_Dynamic) 3507 return true; 3508 } 3509 LLVM_FALLTHROUGH; 3510 case ImplicitCastExprClass: 3511 case CStyleCastExprClass: 3512 case CXXStaticCastExprClass: 3513 case CXXReinterpretCastExprClass: 3514 case CXXConstCastExprClass: 3515 case CXXAddrspaceCastExprClass: 3516 case CXXFunctionalCastExprClass: 3517 case BuiltinBitCastExprClass: { 3518 // While volatile reads are side-effecting in both C and C++, we treat them 3519 // as having possible (not definite) side-effects. This allows idiomatic 3520 // code to behave without warning, such as sizeof(*v) for a volatile- 3521 // qualified pointer. 3522 if (!IncludePossibleEffects) 3523 break; 3524 3525 const CastExpr *CE = cast<CastExpr>(this); 3526 if (CE->getCastKind() == CK_LValueToRValue && 3527 CE->getSubExpr()->getType().isVolatileQualified()) 3528 return true; 3529 break; 3530 } 3531 3532 case CXXTypeidExprClass: 3533 // typeid might throw if its subexpression is potentially-evaluated, so has 3534 // side-effects in that case whether or not its subexpression does. 3535 return cast<CXXTypeidExpr>(this)->isPotentiallyEvaluated(); 3536 3537 case CXXConstructExprClass: 3538 case CXXTemporaryObjectExprClass: { 3539 const CXXConstructExpr *CE = cast<CXXConstructExpr>(this); 3540 if (!CE->getConstructor()->isTrivial() && IncludePossibleEffects) 3541 return true; 3542 // A trivial constructor does not add any side-effects of its own. Just look 3543 // at its arguments. 3544 break; 3545 } 3546 3547 case CXXInheritedCtorInitExprClass: { 3548 const auto *ICIE = cast<CXXInheritedCtorInitExpr>(this); 3549 if (!ICIE->getConstructor()->isTrivial() && IncludePossibleEffects) 3550 return true; 3551 break; 3552 } 3553 3554 case LambdaExprClass: { 3555 const LambdaExpr *LE = cast<LambdaExpr>(this); 3556 for (Expr *E : LE->capture_inits()) 3557 if (E->HasSideEffects(Ctx, IncludePossibleEffects)) 3558 return true; 3559 return false; 3560 } 3561 3562 case PseudoObjectExprClass: { 3563 // Only look for side-effects in the semantic form, and look past 3564 // OpaqueValueExpr bindings in that form. 3565 const PseudoObjectExpr *PO = cast<PseudoObjectExpr>(this); 3566 for (PseudoObjectExpr::const_semantics_iterator I = PO->semantics_begin(), 3567 E = PO->semantics_end(); 3568 I != E; ++I) { 3569 const Expr *Subexpr = *I; 3570 if (const OpaqueValueExpr *OVE = dyn_cast<OpaqueValueExpr>(Subexpr)) 3571 Subexpr = OVE->getSourceExpr(); 3572 if (Subexpr->HasSideEffects(Ctx, IncludePossibleEffects)) 3573 return true; 3574 } 3575 return false; 3576 } 3577 3578 case ObjCBoxedExprClass: 3579 case ObjCArrayLiteralClass: 3580 case ObjCDictionaryLiteralClass: 3581 case ObjCSelectorExprClass: 3582 case ObjCProtocolExprClass: 3583 case ObjCIsaExprClass: 3584 case ObjCIndirectCopyRestoreExprClass: 3585 case ObjCSubscriptRefExprClass: 3586 case ObjCBridgedCastExprClass: 3587 case ObjCMessageExprClass: 3588 case ObjCPropertyRefExprClass: 3589 // FIXME: Classify these cases better. 3590 if (IncludePossibleEffects) 3591 return true; 3592 break; 3593 } 3594 3595 // Recurse to children. 3596 for (const Stmt *SubStmt : children()) 3597 if (SubStmt && 3598 cast<Expr>(SubStmt)->HasSideEffects(Ctx, IncludePossibleEffects)) 3599 return true; 3600 3601 return false; 3602 } 3603 3604 namespace { 3605 /// Look for a call to a non-trivial function within an expression. 3606 class NonTrivialCallFinder : public ConstEvaluatedExprVisitor<NonTrivialCallFinder> 3607 { 3608 typedef ConstEvaluatedExprVisitor<NonTrivialCallFinder> Inherited; 3609 3610 bool NonTrivial; 3611 3612 public: 3613 explicit NonTrivialCallFinder(const ASTContext &Context) 3614 : Inherited(Context), NonTrivial(false) { } 3615 3616 bool hasNonTrivialCall() const { return NonTrivial; } 3617 3618 void VisitCallExpr(const CallExpr *E) { 3619 if (const CXXMethodDecl *Method 3620 = dyn_cast_or_null<const CXXMethodDecl>(E->getCalleeDecl())) { 3621 if (Method->isTrivial()) { 3622 // Recurse to children of the call. 3623 Inherited::VisitStmt(E); 3624 return; 3625 } 3626 } 3627 3628 NonTrivial = true; 3629 } 3630 3631 void VisitCXXConstructExpr(const CXXConstructExpr *E) { 3632 if (E->getConstructor()->isTrivial()) { 3633 // Recurse to children of the call. 3634 Inherited::VisitStmt(E); 3635 return; 3636 } 3637 3638 NonTrivial = true; 3639 } 3640 3641 void VisitCXXBindTemporaryExpr(const CXXBindTemporaryExpr *E) { 3642 if (E->getTemporary()->getDestructor()->isTrivial()) { 3643 Inherited::VisitStmt(E); 3644 return; 3645 } 3646 3647 NonTrivial = true; 3648 } 3649 }; 3650 } 3651 3652 bool Expr::hasNonTrivialCall(const ASTContext &Ctx) const { 3653 NonTrivialCallFinder Finder(Ctx); 3654 Finder.Visit(this); 3655 return Finder.hasNonTrivialCall(); 3656 } 3657 3658 /// isNullPointerConstant - C99 6.3.2.3p3 - Return whether this is a null 3659 /// pointer constant or not, as well as the specific kind of constant detected. 3660 /// Null pointer constants can be integer constant expressions with the 3661 /// value zero, casts of zero to void*, nullptr (C++0X), or __null 3662 /// (a GNU extension). 3663 Expr::NullPointerConstantKind 3664 Expr::isNullPointerConstant(ASTContext &Ctx, 3665 NullPointerConstantValueDependence NPC) const { 3666 if (isValueDependent() && 3667 (!Ctx.getLangOpts().CPlusPlus11 || Ctx.getLangOpts().MSVCCompat)) { 3668 switch (NPC) { 3669 case NPC_NeverValueDependent: 3670 llvm_unreachable("Unexpected value dependent expression!"); 3671 case NPC_ValueDependentIsNull: 3672 if (isTypeDependent() || getType()->isIntegralType(Ctx)) 3673 return NPCK_ZeroExpression; 3674 else 3675 return NPCK_NotNull; 3676 3677 case NPC_ValueDependentIsNotNull: 3678 return NPCK_NotNull; 3679 } 3680 } 3681 3682 // Strip off a cast to void*, if it exists. Except in C++. 3683 if (const ExplicitCastExpr *CE = dyn_cast<ExplicitCastExpr>(this)) { 3684 if (!Ctx.getLangOpts().CPlusPlus) { 3685 // Check that it is a cast to void*. 3686 if (const PointerType *PT = CE->getType()->getAs<PointerType>()) { 3687 QualType Pointee = PT->getPointeeType(); 3688 Qualifiers Qs = Pointee.getQualifiers(); 3689 // Only (void*)0 or equivalent are treated as nullptr. If pointee type 3690 // has non-default address space it is not treated as nullptr. 3691 // (__generic void*)0 in OpenCL 2.0 should not be treated as nullptr 3692 // since it cannot be assigned to a pointer to constant address space. 3693 if ((Ctx.getLangOpts().OpenCLVersion >= 200 && 3694 Pointee.getAddressSpace() == LangAS::opencl_generic) || 3695 (Ctx.getLangOpts().OpenCL && 3696 Ctx.getLangOpts().OpenCLVersion < 200 && 3697 Pointee.getAddressSpace() == LangAS::opencl_private)) 3698 Qs.removeAddressSpace(); 3699 3700 if (Pointee->isVoidType() && Qs.empty() && // to void* 3701 CE->getSubExpr()->getType()->isIntegerType()) // from int 3702 return CE->getSubExpr()->isNullPointerConstant(Ctx, NPC); 3703 } 3704 } 3705 } else if (const ImplicitCastExpr *ICE = dyn_cast<ImplicitCastExpr>(this)) { 3706 // Ignore the ImplicitCastExpr type entirely. 3707 return ICE->getSubExpr()->isNullPointerConstant(Ctx, NPC); 3708 } else if (const ParenExpr *PE = dyn_cast<ParenExpr>(this)) { 3709 // Accept ((void*)0) as a null pointer constant, as many other 3710 // implementations do. 3711 return PE->getSubExpr()->isNullPointerConstant(Ctx, NPC); 3712 } else if (const GenericSelectionExpr *GE = 3713 dyn_cast<GenericSelectionExpr>(this)) { 3714 if (GE->isResultDependent()) 3715 return NPCK_NotNull; 3716 return GE->getResultExpr()->isNullPointerConstant(Ctx, NPC); 3717 } else if (const ChooseExpr *CE = dyn_cast<ChooseExpr>(this)) { 3718 if (CE->isConditionDependent()) 3719 return NPCK_NotNull; 3720 return CE->getChosenSubExpr()->isNullPointerConstant(Ctx, NPC); 3721 } else if (const CXXDefaultArgExpr *DefaultArg 3722 = dyn_cast<CXXDefaultArgExpr>(this)) { 3723 // See through default argument expressions. 3724 return DefaultArg->getExpr()->isNullPointerConstant(Ctx, NPC); 3725 } else if (const CXXDefaultInitExpr *DefaultInit 3726 = dyn_cast<CXXDefaultInitExpr>(this)) { 3727 // See through default initializer expressions. 3728 return DefaultInit->getExpr()->isNullPointerConstant(Ctx, NPC); 3729 } else if (isa<GNUNullExpr>(this)) { 3730 // The GNU __null extension is always a null pointer constant. 3731 return NPCK_GNUNull; 3732 } else if (const MaterializeTemporaryExpr *M 3733 = dyn_cast<MaterializeTemporaryExpr>(this)) { 3734 return M->getSubExpr()->isNullPointerConstant(Ctx, NPC); 3735 } else if (const OpaqueValueExpr *OVE = dyn_cast<OpaqueValueExpr>(this)) { 3736 if (const Expr *Source = OVE->getSourceExpr()) 3737 return Source->isNullPointerConstant(Ctx, NPC); 3738 } 3739 3740 // C++11 nullptr_t is always a null pointer constant. 3741 if (getType()->isNullPtrType()) 3742 return NPCK_CXX11_nullptr; 3743 3744 if (const RecordType *UT = getType()->getAsUnionType()) 3745 if (!Ctx.getLangOpts().CPlusPlus11 && 3746 UT && UT->getDecl()->hasAttr<TransparentUnionAttr>()) 3747 if (const CompoundLiteralExpr *CLE = dyn_cast<CompoundLiteralExpr>(this)){ 3748 const Expr *InitExpr = CLE->getInitializer(); 3749 if (const InitListExpr *ILE = dyn_cast<InitListExpr>(InitExpr)) 3750 return ILE->getInit(0)->isNullPointerConstant(Ctx, NPC); 3751 } 3752 // This expression must be an integer type. 3753 if (!getType()->isIntegerType() || 3754 (Ctx.getLangOpts().CPlusPlus && getType()->isEnumeralType())) 3755 return NPCK_NotNull; 3756 3757 if (Ctx.getLangOpts().CPlusPlus11) { 3758 // C++11 [conv.ptr]p1: A null pointer constant is an integer literal with 3759 // value zero or a prvalue of type std::nullptr_t. 3760 // Microsoft mode permits C++98 rules reflecting MSVC behavior. 3761 const IntegerLiteral *Lit = dyn_cast<IntegerLiteral>(this); 3762 if (Lit && !Lit->getValue()) 3763 return NPCK_ZeroLiteral; 3764 else if (!Ctx.getLangOpts().MSVCCompat || !isCXX98IntegralConstantExpr(Ctx)) 3765 return NPCK_NotNull; 3766 } else { 3767 // If we have an integer constant expression, we need to *evaluate* it and 3768 // test for the value 0. 3769 if (!isIntegerConstantExpr(Ctx)) 3770 return NPCK_NotNull; 3771 } 3772 3773 if (EvaluateKnownConstInt(Ctx) != 0) 3774 return NPCK_NotNull; 3775 3776 if (isa<IntegerLiteral>(this)) 3777 return NPCK_ZeroLiteral; 3778 return NPCK_ZeroExpression; 3779 } 3780 3781 /// If this expression is an l-value for an Objective C 3782 /// property, find the underlying property reference expression. 3783 const ObjCPropertyRefExpr *Expr::getObjCProperty() const { 3784 const Expr *E = this; 3785 while (true) { 3786 assert((E->getValueKind() == VK_LValue && 3787 E->getObjectKind() == OK_ObjCProperty) && 3788 "expression is not a property reference"); 3789 E = E->IgnoreParenCasts(); 3790 if (const BinaryOperator *BO = dyn_cast<BinaryOperator>(E)) { 3791 if (BO->getOpcode() == BO_Comma) { 3792 E = BO->getRHS(); 3793 continue; 3794 } 3795 } 3796 3797 break; 3798 } 3799 3800 return cast<ObjCPropertyRefExpr>(E); 3801 } 3802 3803 bool Expr::isObjCSelfExpr() const { 3804 const Expr *E = IgnoreParenImpCasts(); 3805 3806 const DeclRefExpr *DRE = dyn_cast<DeclRefExpr>(E); 3807 if (!DRE) 3808 return false; 3809 3810 const ImplicitParamDecl *Param = dyn_cast<ImplicitParamDecl>(DRE->getDecl()); 3811 if (!Param) 3812 return false; 3813 3814 const ObjCMethodDecl *M = dyn_cast<ObjCMethodDecl>(Param->getDeclContext()); 3815 if (!M) 3816 return false; 3817 3818 return M->getSelfDecl() == Param; 3819 } 3820 3821 FieldDecl *Expr::getSourceBitField() { 3822 Expr *E = this->IgnoreParens(); 3823 3824 while (ImplicitCastExpr *ICE = dyn_cast<ImplicitCastExpr>(E)) { 3825 if (ICE->getCastKind() == CK_LValueToRValue || 3826 (ICE->getValueKind() != VK_RValue && ICE->getCastKind() == CK_NoOp)) 3827 E = ICE->getSubExpr()->IgnoreParens(); 3828 else 3829 break; 3830 } 3831 3832 if (MemberExpr *MemRef = dyn_cast<MemberExpr>(E)) 3833 if (FieldDecl *Field = dyn_cast<FieldDecl>(MemRef->getMemberDecl())) 3834 if (Field->isBitField()) 3835 return Field; 3836 3837 if (ObjCIvarRefExpr *IvarRef = dyn_cast<ObjCIvarRefExpr>(E)) { 3838 FieldDecl *Ivar = IvarRef->getDecl(); 3839 if (Ivar->isBitField()) 3840 return Ivar; 3841 } 3842 3843 if (DeclRefExpr *DeclRef = dyn_cast<DeclRefExpr>(E)) { 3844 if (FieldDecl *Field = dyn_cast<FieldDecl>(DeclRef->getDecl())) 3845 if (Field->isBitField()) 3846 return Field; 3847 3848 if (BindingDecl *BD = dyn_cast<BindingDecl>(DeclRef->getDecl())) 3849 if (Expr *E = BD->getBinding()) 3850 return E->getSourceBitField(); 3851 } 3852 3853 if (BinaryOperator *BinOp = dyn_cast<BinaryOperator>(E)) { 3854 if (BinOp->isAssignmentOp() && BinOp->getLHS()) 3855 return BinOp->getLHS()->getSourceBitField(); 3856 3857 if (BinOp->getOpcode() == BO_Comma && BinOp->getRHS()) 3858 return BinOp->getRHS()->getSourceBitField(); 3859 } 3860 3861 if (UnaryOperator *UnOp = dyn_cast<UnaryOperator>(E)) 3862 if (UnOp->isPrefix() && UnOp->isIncrementDecrementOp()) 3863 return UnOp->getSubExpr()->getSourceBitField(); 3864 3865 return nullptr; 3866 } 3867 3868 bool Expr::refersToVectorElement() const { 3869 // FIXME: Why do we not just look at the ObjectKind here? 3870 const Expr *E = this->IgnoreParens(); 3871 3872 while (const ImplicitCastExpr *ICE = dyn_cast<ImplicitCastExpr>(E)) { 3873 if (ICE->getValueKind() != VK_RValue && 3874 ICE->getCastKind() == CK_NoOp) 3875 E = ICE->getSubExpr()->IgnoreParens(); 3876 else 3877 break; 3878 } 3879 3880 if (const ArraySubscriptExpr *ASE = dyn_cast<ArraySubscriptExpr>(E)) 3881 return ASE->getBase()->getType()->isVectorType(); 3882 3883 if (isa<ExtVectorElementExpr>(E)) 3884 return true; 3885 3886 if (auto *DRE = dyn_cast<DeclRefExpr>(E)) 3887 if (auto *BD = dyn_cast<BindingDecl>(DRE->getDecl())) 3888 if (auto *E = BD->getBinding()) 3889 return E->refersToVectorElement(); 3890 3891 return false; 3892 } 3893 3894 bool Expr::refersToGlobalRegisterVar() const { 3895 const Expr *E = this->IgnoreParenImpCasts(); 3896 3897 if (const DeclRefExpr *DRE = dyn_cast<DeclRefExpr>(E)) 3898 if (const auto *VD = dyn_cast<VarDecl>(DRE->getDecl())) 3899 if (VD->getStorageClass() == SC_Register && 3900 VD->hasAttr<AsmLabelAttr>() && !VD->isLocalVarDecl()) 3901 return true; 3902 3903 return false; 3904 } 3905 3906 bool Expr::isSameComparisonOperand(const Expr* E1, const Expr* E2) { 3907 E1 = E1->IgnoreParens(); 3908 E2 = E2->IgnoreParens(); 3909 3910 if (E1->getStmtClass() != E2->getStmtClass()) 3911 return false; 3912 3913 switch (E1->getStmtClass()) { 3914 default: 3915 return false; 3916 case CXXThisExprClass: 3917 return true; 3918 case DeclRefExprClass: { 3919 // DeclRefExpr without an ImplicitCastExpr can happen for integral 3920 // template parameters. 3921 const auto *DRE1 = cast<DeclRefExpr>(E1); 3922 const auto *DRE2 = cast<DeclRefExpr>(E2); 3923 return DRE1->isRValue() && DRE2->isRValue() && 3924 DRE1->getDecl() == DRE2->getDecl(); 3925 } 3926 case ImplicitCastExprClass: { 3927 // Peel off implicit casts. 3928 while (true) { 3929 const auto *ICE1 = dyn_cast<ImplicitCastExpr>(E1); 3930 const auto *ICE2 = dyn_cast<ImplicitCastExpr>(E2); 3931 if (!ICE1 || !ICE2) 3932 return false; 3933 if (ICE1->getCastKind() != ICE2->getCastKind()) 3934 return false; 3935 E1 = ICE1->getSubExpr()->IgnoreParens(); 3936 E2 = ICE2->getSubExpr()->IgnoreParens(); 3937 // The final cast must be one of these types. 3938 if (ICE1->getCastKind() == CK_LValueToRValue || 3939 ICE1->getCastKind() == CK_ArrayToPointerDecay || 3940 ICE1->getCastKind() == CK_FunctionToPointerDecay) { 3941 break; 3942 } 3943 } 3944 3945 const auto *DRE1 = dyn_cast<DeclRefExpr>(E1); 3946 const auto *DRE2 = dyn_cast<DeclRefExpr>(E2); 3947 if (DRE1 && DRE2) 3948 return declaresSameEntity(DRE1->getDecl(), DRE2->getDecl()); 3949 3950 const auto *Ivar1 = dyn_cast<ObjCIvarRefExpr>(E1); 3951 const auto *Ivar2 = dyn_cast<ObjCIvarRefExpr>(E2); 3952 if (Ivar1 && Ivar2) { 3953 return Ivar1->isFreeIvar() && Ivar2->isFreeIvar() && 3954 declaresSameEntity(Ivar1->getDecl(), Ivar2->getDecl()); 3955 } 3956 3957 const auto *Array1 = dyn_cast<ArraySubscriptExpr>(E1); 3958 const auto *Array2 = dyn_cast<ArraySubscriptExpr>(E2); 3959 if (Array1 && Array2) { 3960 if (!isSameComparisonOperand(Array1->getBase(), Array2->getBase())) 3961 return false; 3962 3963 auto Idx1 = Array1->getIdx(); 3964 auto Idx2 = Array2->getIdx(); 3965 const auto Integer1 = dyn_cast<IntegerLiteral>(Idx1); 3966 const auto Integer2 = dyn_cast<IntegerLiteral>(Idx2); 3967 if (Integer1 && Integer2) { 3968 if (!llvm::APInt::isSameValue(Integer1->getValue(), 3969 Integer2->getValue())) 3970 return false; 3971 } else { 3972 if (!isSameComparisonOperand(Idx1, Idx2)) 3973 return false; 3974 } 3975 3976 return true; 3977 } 3978 3979 // Walk the MemberExpr chain. 3980 while (isa<MemberExpr>(E1) && isa<MemberExpr>(E2)) { 3981 const auto *ME1 = cast<MemberExpr>(E1); 3982 const auto *ME2 = cast<MemberExpr>(E2); 3983 if (!declaresSameEntity(ME1->getMemberDecl(), ME2->getMemberDecl())) 3984 return false; 3985 if (const auto *D = dyn_cast<VarDecl>(ME1->getMemberDecl())) 3986 if (D->isStaticDataMember()) 3987 return true; 3988 E1 = ME1->getBase()->IgnoreParenImpCasts(); 3989 E2 = ME2->getBase()->IgnoreParenImpCasts(); 3990 } 3991 3992 if (isa<CXXThisExpr>(E1) && isa<CXXThisExpr>(E2)) 3993 return true; 3994 3995 // A static member variable can end the MemberExpr chain with either 3996 // a MemberExpr or a DeclRefExpr. 3997 auto getAnyDecl = [](const Expr *E) -> const ValueDecl * { 3998 if (const auto *DRE = dyn_cast<DeclRefExpr>(E)) 3999 return DRE->getDecl(); 4000 if (const auto *ME = dyn_cast<MemberExpr>(E)) 4001 return ME->getMemberDecl(); 4002 return nullptr; 4003 }; 4004 4005 const ValueDecl *VD1 = getAnyDecl(E1); 4006 const ValueDecl *VD2 = getAnyDecl(E2); 4007 return declaresSameEntity(VD1, VD2); 4008 } 4009 } 4010 } 4011 4012 /// isArrow - Return true if the base expression is a pointer to vector, 4013 /// return false if the base expression is a vector. 4014 bool ExtVectorElementExpr::isArrow() const { 4015 return getBase()->getType()->isPointerType(); 4016 } 4017 4018 unsigned ExtVectorElementExpr::getNumElements() const { 4019 if (const VectorType *VT = getType()->getAs<VectorType>()) 4020 return VT->getNumElements(); 4021 return 1; 4022 } 4023 4024 /// containsDuplicateElements - Return true if any element access is repeated. 4025 bool ExtVectorElementExpr::containsDuplicateElements() const { 4026 // FIXME: Refactor this code to an accessor on the AST node which returns the 4027 // "type" of component access, and share with code below and in Sema. 4028 StringRef Comp = Accessor->getName(); 4029 4030 // Halving swizzles do not contain duplicate elements. 4031 if (Comp == "hi" || Comp == "lo" || Comp == "even" || Comp == "odd") 4032 return false; 4033 4034 // Advance past s-char prefix on hex swizzles. 4035 if (Comp[0] == 's' || Comp[0] == 'S') 4036 Comp = Comp.substr(1); 4037 4038 for (unsigned i = 0, e = Comp.size(); i != e; ++i) 4039 if (Comp.substr(i + 1).find(Comp[i]) != StringRef::npos) 4040 return true; 4041 4042 return false; 4043 } 4044 4045 /// getEncodedElementAccess - We encode the fields as a llvm ConstantArray. 4046 void ExtVectorElementExpr::getEncodedElementAccess( 4047 SmallVectorImpl<uint32_t> &Elts) const { 4048 StringRef Comp = Accessor->getName(); 4049 bool isNumericAccessor = false; 4050 if (Comp[0] == 's' || Comp[0] == 'S') { 4051 Comp = Comp.substr(1); 4052 isNumericAccessor = true; 4053 } 4054 4055 bool isHi = Comp == "hi"; 4056 bool isLo = Comp == "lo"; 4057 bool isEven = Comp == "even"; 4058 bool isOdd = Comp == "odd"; 4059 4060 for (unsigned i = 0, e = getNumElements(); i != e; ++i) { 4061 uint64_t Index; 4062 4063 if (isHi) 4064 Index = e + i; 4065 else if (isLo) 4066 Index = i; 4067 else if (isEven) 4068 Index = 2 * i; 4069 else if (isOdd) 4070 Index = 2 * i + 1; 4071 else 4072 Index = ExtVectorType::getAccessorIdx(Comp[i], isNumericAccessor); 4073 4074 Elts.push_back(Index); 4075 } 4076 } 4077 4078 ShuffleVectorExpr::ShuffleVectorExpr(const ASTContext &C, ArrayRef<Expr *> args, 4079 QualType Type, SourceLocation BLoc, 4080 SourceLocation RP) 4081 : Expr(ShuffleVectorExprClass, Type, VK_RValue, OK_Ordinary), 4082 BuiltinLoc(BLoc), RParenLoc(RP), NumExprs(args.size()) { 4083 SubExprs = new (C) Stmt*[args.size()]; 4084 for (unsigned i = 0; i != args.size(); i++) 4085 SubExprs[i] = args[i]; 4086 4087 setDependence(computeDependence(this)); 4088 } 4089 4090 void ShuffleVectorExpr::setExprs(const ASTContext &C, ArrayRef<Expr *> Exprs) { 4091 if (SubExprs) C.Deallocate(SubExprs); 4092 4093 this->NumExprs = Exprs.size(); 4094 SubExprs = new (C) Stmt*[NumExprs]; 4095 memcpy(SubExprs, Exprs.data(), sizeof(Expr *) * Exprs.size()); 4096 } 4097 4098 GenericSelectionExpr::GenericSelectionExpr( 4099 const ASTContext &, SourceLocation GenericLoc, Expr *ControllingExpr, 4100 ArrayRef<TypeSourceInfo *> AssocTypes, ArrayRef<Expr *> AssocExprs, 4101 SourceLocation DefaultLoc, SourceLocation RParenLoc, 4102 bool ContainsUnexpandedParameterPack, unsigned ResultIndex) 4103 : Expr(GenericSelectionExprClass, AssocExprs[ResultIndex]->getType(), 4104 AssocExprs[ResultIndex]->getValueKind(), 4105 AssocExprs[ResultIndex]->getObjectKind()), 4106 NumAssocs(AssocExprs.size()), ResultIndex(ResultIndex), 4107 DefaultLoc(DefaultLoc), RParenLoc(RParenLoc) { 4108 assert(AssocTypes.size() == AssocExprs.size() && 4109 "Must have the same number of association expressions" 4110 " and TypeSourceInfo!"); 4111 assert(ResultIndex < NumAssocs && "ResultIndex is out-of-bounds!"); 4112 4113 GenericSelectionExprBits.GenericLoc = GenericLoc; 4114 getTrailingObjects<Stmt *>()[ControllingIndex] = ControllingExpr; 4115 std::copy(AssocExprs.begin(), AssocExprs.end(), 4116 getTrailingObjects<Stmt *>() + AssocExprStartIndex); 4117 std::copy(AssocTypes.begin(), AssocTypes.end(), 4118 getTrailingObjects<TypeSourceInfo *>()); 4119 4120 setDependence(computeDependence(this, ContainsUnexpandedParameterPack)); 4121 } 4122 4123 GenericSelectionExpr::GenericSelectionExpr( 4124 const ASTContext &Context, SourceLocation GenericLoc, Expr *ControllingExpr, 4125 ArrayRef<TypeSourceInfo *> AssocTypes, ArrayRef<Expr *> AssocExprs, 4126 SourceLocation DefaultLoc, SourceLocation RParenLoc, 4127 bool ContainsUnexpandedParameterPack) 4128 : Expr(GenericSelectionExprClass, Context.DependentTy, VK_RValue, 4129 OK_Ordinary), 4130 NumAssocs(AssocExprs.size()), ResultIndex(ResultDependentIndex), 4131 DefaultLoc(DefaultLoc), RParenLoc(RParenLoc) { 4132 assert(AssocTypes.size() == AssocExprs.size() && 4133 "Must have the same number of association expressions" 4134 " and TypeSourceInfo!"); 4135 4136 GenericSelectionExprBits.GenericLoc = GenericLoc; 4137 getTrailingObjects<Stmt *>()[ControllingIndex] = ControllingExpr; 4138 std::copy(AssocExprs.begin(), AssocExprs.end(), 4139 getTrailingObjects<Stmt *>() + AssocExprStartIndex); 4140 std::copy(AssocTypes.begin(), AssocTypes.end(), 4141 getTrailingObjects<TypeSourceInfo *>()); 4142 4143 setDependence(computeDependence(this, ContainsUnexpandedParameterPack)); 4144 } 4145 4146 GenericSelectionExpr::GenericSelectionExpr(EmptyShell Empty, unsigned NumAssocs) 4147 : Expr(GenericSelectionExprClass, Empty), NumAssocs(NumAssocs) {} 4148 4149 GenericSelectionExpr *GenericSelectionExpr::Create( 4150 const ASTContext &Context, SourceLocation GenericLoc, Expr *ControllingExpr, 4151 ArrayRef<TypeSourceInfo *> AssocTypes, ArrayRef<Expr *> AssocExprs, 4152 SourceLocation DefaultLoc, SourceLocation RParenLoc, 4153 bool ContainsUnexpandedParameterPack, unsigned ResultIndex) { 4154 unsigned NumAssocs = AssocExprs.size(); 4155 void *Mem = Context.Allocate( 4156 totalSizeToAlloc<Stmt *, TypeSourceInfo *>(1 + NumAssocs, NumAssocs), 4157 alignof(GenericSelectionExpr)); 4158 return new (Mem) GenericSelectionExpr( 4159 Context, GenericLoc, ControllingExpr, AssocTypes, AssocExprs, DefaultLoc, 4160 RParenLoc, ContainsUnexpandedParameterPack, ResultIndex); 4161 } 4162 4163 GenericSelectionExpr *GenericSelectionExpr::Create( 4164 const ASTContext &Context, SourceLocation GenericLoc, Expr *ControllingExpr, 4165 ArrayRef<TypeSourceInfo *> AssocTypes, ArrayRef<Expr *> AssocExprs, 4166 SourceLocation DefaultLoc, SourceLocation RParenLoc, 4167 bool ContainsUnexpandedParameterPack) { 4168 unsigned NumAssocs = AssocExprs.size(); 4169 void *Mem = Context.Allocate( 4170 totalSizeToAlloc<Stmt *, TypeSourceInfo *>(1 + NumAssocs, NumAssocs), 4171 alignof(GenericSelectionExpr)); 4172 return new (Mem) GenericSelectionExpr( 4173 Context, GenericLoc, ControllingExpr, AssocTypes, AssocExprs, DefaultLoc, 4174 RParenLoc, ContainsUnexpandedParameterPack); 4175 } 4176 4177 GenericSelectionExpr * 4178 GenericSelectionExpr::CreateEmpty(const ASTContext &Context, 4179 unsigned NumAssocs) { 4180 void *Mem = Context.Allocate( 4181 totalSizeToAlloc<Stmt *, TypeSourceInfo *>(1 + NumAssocs, NumAssocs), 4182 alignof(GenericSelectionExpr)); 4183 return new (Mem) GenericSelectionExpr(EmptyShell(), NumAssocs); 4184 } 4185 4186 //===----------------------------------------------------------------------===// 4187 // DesignatedInitExpr 4188 //===----------------------------------------------------------------------===// 4189 4190 IdentifierInfo *DesignatedInitExpr::Designator::getFieldName() const { 4191 assert(Kind == FieldDesignator && "Only valid on a field designator"); 4192 if (Field.NameOrField & 0x01) 4193 return reinterpret_cast<IdentifierInfo *>(Field.NameOrField&~0x01); 4194 else 4195 return getField()->getIdentifier(); 4196 } 4197 4198 DesignatedInitExpr::DesignatedInitExpr(const ASTContext &C, QualType Ty, 4199 llvm::ArrayRef<Designator> Designators, 4200 SourceLocation EqualOrColonLoc, 4201 bool GNUSyntax, 4202 ArrayRef<Expr *> IndexExprs, Expr *Init) 4203 : Expr(DesignatedInitExprClass, Ty, Init->getValueKind(), 4204 Init->getObjectKind()), 4205 EqualOrColonLoc(EqualOrColonLoc), GNUSyntax(GNUSyntax), 4206 NumDesignators(Designators.size()), NumSubExprs(IndexExprs.size() + 1) { 4207 this->Designators = new (C) Designator[NumDesignators]; 4208 4209 // Record the initializer itself. 4210 child_iterator Child = child_begin(); 4211 *Child++ = Init; 4212 4213 // Copy the designators and their subexpressions, computing 4214 // value-dependence along the way. 4215 unsigned IndexIdx = 0; 4216 for (unsigned I = 0; I != NumDesignators; ++I) { 4217 this->Designators[I] = Designators[I]; 4218 if (this->Designators[I].isArrayDesignator()) { 4219 // Copy the index expressions into permanent storage. 4220 *Child++ = IndexExprs[IndexIdx++]; 4221 } else if (this->Designators[I].isArrayRangeDesignator()) { 4222 // Copy the start/end expressions into permanent storage. 4223 *Child++ = IndexExprs[IndexIdx++]; 4224 *Child++ = IndexExprs[IndexIdx++]; 4225 } 4226 } 4227 4228 assert(IndexIdx == IndexExprs.size() && "Wrong number of index expressions"); 4229 setDependence(computeDependence(this)); 4230 } 4231 4232 DesignatedInitExpr * 4233 DesignatedInitExpr::Create(const ASTContext &C, 4234 llvm::ArrayRef<Designator> Designators, 4235 ArrayRef<Expr*> IndexExprs, 4236 SourceLocation ColonOrEqualLoc, 4237 bool UsesColonSyntax, Expr *Init) { 4238 void *Mem = C.Allocate(totalSizeToAlloc<Stmt *>(IndexExprs.size() + 1), 4239 alignof(DesignatedInitExpr)); 4240 return new (Mem) DesignatedInitExpr(C, C.VoidTy, Designators, 4241 ColonOrEqualLoc, UsesColonSyntax, 4242 IndexExprs, Init); 4243 } 4244 4245 DesignatedInitExpr *DesignatedInitExpr::CreateEmpty(const ASTContext &C, 4246 unsigned NumIndexExprs) { 4247 void *Mem = C.Allocate(totalSizeToAlloc<Stmt *>(NumIndexExprs + 1), 4248 alignof(DesignatedInitExpr)); 4249 return new (Mem) DesignatedInitExpr(NumIndexExprs + 1); 4250 } 4251 4252 void DesignatedInitExpr::setDesignators(const ASTContext &C, 4253 const Designator *Desigs, 4254 unsigned NumDesigs) { 4255 Designators = new (C) Designator[NumDesigs]; 4256 NumDesignators = NumDesigs; 4257 for (unsigned I = 0; I != NumDesigs; ++I) 4258 Designators[I] = Desigs[I]; 4259 } 4260 4261 SourceRange DesignatedInitExpr::getDesignatorsSourceRange() const { 4262 DesignatedInitExpr *DIE = const_cast<DesignatedInitExpr*>(this); 4263 if (size() == 1) 4264 return DIE->getDesignator(0)->getSourceRange(); 4265 return SourceRange(DIE->getDesignator(0)->getBeginLoc(), 4266 DIE->getDesignator(size() - 1)->getEndLoc()); 4267 } 4268 4269 SourceLocation DesignatedInitExpr::getBeginLoc() const { 4270 SourceLocation StartLoc; 4271 auto *DIE = const_cast<DesignatedInitExpr *>(this); 4272 Designator &First = *DIE->getDesignator(0); 4273 if (First.isFieldDesignator()) { 4274 if (GNUSyntax) 4275 StartLoc = SourceLocation::getFromRawEncoding(First.Field.FieldLoc); 4276 else 4277 StartLoc = SourceLocation::getFromRawEncoding(First.Field.DotLoc); 4278 } else 4279 StartLoc = 4280 SourceLocation::getFromRawEncoding(First.ArrayOrRange.LBracketLoc); 4281 return StartLoc; 4282 } 4283 4284 SourceLocation DesignatedInitExpr::getEndLoc() const { 4285 return getInit()->getEndLoc(); 4286 } 4287 4288 Expr *DesignatedInitExpr::getArrayIndex(const Designator& D) const { 4289 assert(D.Kind == Designator::ArrayDesignator && "Requires array designator"); 4290 return getSubExpr(D.ArrayOrRange.Index + 1); 4291 } 4292 4293 Expr *DesignatedInitExpr::getArrayRangeStart(const Designator &D) const { 4294 assert(D.Kind == Designator::ArrayRangeDesignator && 4295 "Requires array range designator"); 4296 return getSubExpr(D.ArrayOrRange.Index + 1); 4297 } 4298 4299 Expr *DesignatedInitExpr::getArrayRangeEnd(const Designator &D) const { 4300 assert(D.Kind == Designator::ArrayRangeDesignator && 4301 "Requires array range designator"); 4302 return getSubExpr(D.ArrayOrRange.Index + 2); 4303 } 4304 4305 /// Replaces the designator at index @p Idx with the series 4306 /// of designators in [First, Last). 4307 void DesignatedInitExpr::ExpandDesignator(const ASTContext &C, unsigned Idx, 4308 const Designator *First, 4309 const Designator *Last) { 4310 unsigned NumNewDesignators = Last - First; 4311 if (NumNewDesignators == 0) { 4312 std::copy_backward(Designators + Idx + 1, 4313 Designators + NumDesignators, 4314 Designators + Idx); 4315 --NumNewDesignators; 4316 return; 4317 } else if (NumNewDesignators == 1) { 4318 Designators[Idx] = *First; 4319 return; 4320 } 4321 4322 Designator *NewDesignators 4323 = new (C) Designator[NumDesignators - 1 + NumNewDesignators]; 4324 std::copy(Designators, Designators + Idx, NewDesignators); 4325 std::copy(First, Last, NewDesignators + Idx); 4326 std::copy(Designators + Idx + 1, Designators + NumDesignators, 4327 NewDesignators + Idx + NumNewDesignators); 4328 Designators = NewDesignators; 4329 NumDesignators = NumDesignators - 1 + NumNewDesignators; 4330 } 4331 4332 DesignatedInitUpdateExpr::DesignatedInitUpdateExpr(const ASTContext &C, 4333 SourceLocation lBraceLoc, 4334 Expr *baseExpr, 4335 SourceLocation rBraceLoc) 4336 : Expr(DesignatedInitUpdateExprClass, baseExpr->getType(), VK_RValue, 4337 OK_Ordinary) { 4338 BaseAndUpdaterExprs[0] = baseExpr; 4339 4340 InitListExpr *ILE = new (C) InitListExpr(C, lBraceLoc, None, rBraceLoc); 4341 ILE->setType(baseExpr->getType()); 4342 BaseAndUpdaterExprs[1] = ILE; 4343 4344 // FIXME: this is wrong, set it correctly. 4345 setDependence(ExprDependence::None); 4346 } 4347 4348 SourceLocation DesignatedInitUpdateExpr::getBeginLoc() const { 4349 return getBase()->getBeginLoc(); 4350 } 4351 4352 SourceLocation DesignatedInitUpdateExpr::getEndLoc() const { 4353 return getBase()->getEndLoc(); 4354 } 4355 4356 ParenListExpr::ParenListExpr(SourceLocation LParenLoc, ArrayRef<Expr *> Exprs, 4357 SourceLocation RParenLoc) 4358 : Expr(ParenListExprClass, QualType(), VK_RValue, OK_Ordinary), 4359 LParenLoc(LParenLoc), RParenLoc(RParenLoc) { 4360 ParenListExprBits.NumExprs = Exprs.size(); 4361 4362 for (unsigned I = 0, N = Exprs.size(); I != N; ++I) 4363 getTrailingObjects<Stmt *>()[I] = Exprs[I]; 4364 setDependence(computeDependence(this)); 4365 } 4366 4367 ParenListExpr::ParenListExpr(EmptyShell Empty, unsigned NumExprs) 4368 : Expr(ParenListExprClass, Empty) { 4369 ParenListExprBits.NumExprs = NumExprs; 4370 } 4371 4372 ParenListExpr *ParenListExpr::Create(const ASTContext &Ctx, 4373 SourceLocation LParenLoc, 4374 ArrayRef<Expr *> Exprs, 4375 SourceLocation RParenLoc) { 4376 void *Mem = Ctx.Allocate(totalSizeToAlloc<Stmt *>(Exprs.size()), 4377 alignof(ParenListExpr)); 4378 return new (Mem) ParenListExpr(LParenLoc, Exprs, RParenLoc); 4379 } 4380 4381 ParenListExpr *ParenListExpr::CreateEmpty(const ASTContext &Ctx, 4382 unsigned NumExprs) { 4383 void *Mem = 4384 Ctx.Allocate(totalSizeToAlloc<Stmt *>(NumExprs), alignof(ParenListExpr)); 4385 return new (Mem) ParenListExpr(EmptyShell(), NumExprs); 4386 } 4387 4388 BinaryOperator::BinaryOperator(const ASTContext &Ctx, Expr *lhs, Expr *rhs, 4389 Opcode opc, QualType ResTy, ExprValueKind VK, 4390 ExprObjectKind OK, SourceLocation opLoc, 4391 FPOptions FPFeatures) 4392 : Expr(BinaryOperatorClass, ResTy, VK, OK) { 4393 BinaryOperatorBits.Opc = opc; 4394 assert(!isCompoundAssignmentOp() && 4395 "Use CompoundAssignOperator for compound assignments"); 4396 BinaryOperatorBits.OpLoc = opLoc; 4397 SubExprs[LHS] = lhs; 4398 SubExprs[RHS] = rhs; 4399 BinaryOperatorBits.HasFPFeatures = 4400 FPFeatures.requiresTrailingStorage(Ctx.getLangOpts()); 4401 if (BinaryOperatorBits.HasFPFeatures) 4402 *getTrailingFPFeatures() = FPFeatures; 4403 setDependence(computeDependence(this)); 4404 } 4405 4406 BinaryOperator::BinaryOperator(const ASTContext &Ctx, Expr *lhs, Expr *rhs, 4407 Opcode opc, QualType ResTy, ExprValueKind VK, 4408 ExprObjectKind OK, SourceLocation opLoc, 4409 FPOptions FPFeatures, bool dead2) 4410 : Expr(CompoundAssignOperatorClass, ResTy, VK, OK) { 4411 BinaryOperatorBits.Opc = opc; 4412 assert(isCompoundAssignmentOp() && 4413 "Use CompoundAssignOperator for compound assignments"); 4414 BinaryOperatorBits.OpLoc = opLoc; 4415 SubExprs[LHS] = lhs; 4416 SubExprs[RHS] = rhs; 4417 BinaryOperatorBits.HasFPFeatures = 4418 FPFeatures.requiresTrailingStorage(Ctx.getLangOpts()); 4419 if (BinaryOperatorBits.HasFPFeatures) 4420 *getTrailingFPFeatures() = FPFeatures; 4421 setDependence(computeDependence(this)); 4422 } 4423 4424 BinaryOperator *BinaryOperator::CreateEmpty(const ASTContext &C, 4425 bool HasFPFeatures) { 4426 unsigned Extra = sizeOfTrailingObjects(HasFPFeatures); 4427 void *Mem = 4428 C.Allocate(sizeof(BinaryOperator) + Extra, alignof(BinaryOperator)); 4429 return new (Mem) BinaryOperator(EmptyShell()); 4430 } 4431 4432 BinaryOperator *BinaryOperator::Create(const ASTContext &C, Expr *lhs, 4433 Expr *rhs, Opcode opc, QualType ResTy, 4434 ExprValueKind VK, ExprObjectKind OK, 4435 SourceLocation opLoc, 4436 FPOptions FPFeatures) { 4437 bool HasFPFeatures = FPFeatures.requiresTrailingStorage(C.getLangOpts()); 4438 unsigned Extra = sizeOfTrailingObjects(HasFPFeatures); 4439 void *Mem = 4440 C.Allocate(sizeof(BinaryOperator) + Extra, alignof(BinaryOperator)); 4441 return new (Mem) 4442 BinaryOperator(C, lhs, rhs, opc, ResTy, VK, OK, opLoc, FPFeatures); 4443 } 4444 4445 CompoundAssignOperator * 4446 CompoundAssignOperator::CreateEmpty(const ASTContext &C, bool HasFPFeatures) { 4447 unsigned Extra = sizeOfTrailingObjects(HasFPFeatures); 4448 void *Mem = C.Allocate(sizeof(CompoundAssignOperator) + Extra, 4449 alignof(CompoundAssignOperator)); 4450 return new (Mem) CompoundAssignOperator(C, EmptyShell(), HasFPFeatures); 4451 } 4452 4453 CompoundAssignOperator *CompoundAssignOperator::Create( 4454 const ASTContext &C, Expr *lhs, Expr *rhs, Opcode opc, QualType ResTy, 4455 ExprValueKind VK, ExprObjectKind OK, SourceLocation opLoc, 4456 FPOptions FPFeatures, QualType CompLHSType, QualType CompResultType) { 4457 bool HasFPFeatures = FPFeatures.requiresTrailingStorage(C.getLangOpts()); 4458 unsigned Extra = sizeOfTrailingObjects(HasFPFeatures); 4459 void *Mem = C.Allocate(sizeof(CompoundAssignOperator) + Extra, 4460 alignof(CompoundAssignOperator)); 4461 return new (Mem) 4462 CompoundAssignOperator(C, lhs, rhs, opc, ResTy, VK, OK, opLoc, FPFeatures, 4463 CompLHSType, CompResultType); 4464 } 4465 4466 UnaryOperator *UnaryOperator::CreateEmpty(const ASTContext &C, 4467 bool hasFPFeatures) { 4468 void *Mem = C.Allocate(totalSizeToAlloc<FPOptions>(hasFPFeatures), 4469 alignof(UnaryOperator)); 4470 return new (Mem) UnaryOperator(hasFPFeatures, EmptyShell()); 4471 } 4472 4473 UnaryOperator::UnaryOperator(const ASTContext &Ctx, Expr *input, Opcode opc, 4474 QualType type, ExprValueKind VK, ExprObjectKind OK, 4475 SourceLocation l, bool CanOverflow, 4476 FPOptions FPFeatures) 4477 : Expr(UnaryOperatorClass, type, VK, OK), Val(input) { 4478 UnaryOperatorBits.Opc = opc; 4479 UnaryOperatorBits.CanOverflow = CanOverflow; 4480 UnaryOperatorBits.Loc = l; 4481 UnaryOperatorBits.HasFPFeatures = 4482 FPFeatures.requiresTrailingStorage(Ctx.getLangOpts()); 4483 setDependence(computeDependence(this)); 4484 } 4485 4486 UnaryOperator *UnaryOperator::Create(const ASTContext &C, Expr *input, 4487 Opcode opc, QualType type, 4488 ExprValueKind VK, ExprObjectKind OK, 4489 SourceLocation l, bool CanOverflow, 4490 FPOptions FPFeatures) { 4491 bool HasFPFeatures = FPFeatures.requiresTrailingStorage(C.getLangOpts()); 4492 unsigned Size = totalSizeToAlloc<FPOptions>(HasFPFeatures); 4493 void *Mem = C.Allocate(Size, alignof(UnaryOperator)); 4494 return new (Mem) 4495 UnaryOperator(C, input, opc, type, VK, OK, l, CanOverflow, FPFeatures); 4496 } 4497 4498 const OpaqueValueExpr *OpaqueValueExpr::findInCopyConstruct(const Expr *e) { 4499 if (const ExprWithCleanups *ewc = dyn_cast<ExprWithCleanups>(e)) 4500 e = ewc->getSubExpr(); 4501 if (const MaterializeTemporaryExpr *m = dyn_cast<MaterializeTemporaryExpr>(e)) 4502 e = m->getSubExpr(); 4503 e = cast<CXXConstructExpr>(e)->getArg(0); 4504 while (const ImplicitCastExpr *ice = dyn_cast<ImplicitCastExpr>(e)) 4505 e = ice->getSubExpr(); 4506 return cast<OpaqueValueExpr>(e); 4507 } 4508 4509 PseudoObjectExpr *PseudoObjectExpr::Create(const ASTContext &Context, 4510 EmptyShell sh, 4511 unsigned numSemanticExprs) { 4512 void *buffer = 4513 Context.Allocate(totalSizeToAlloc<Expr *>(1 + numSemanticExprs), 4514 alignof(PseudoObjectExpr)); 4515 return new(buffer) PseudoObjectExpr(sh, numSemanticExprs); 4516 } 4517 4518 PseudoObjectExpr::PseudoObjectExpr(EmptyShell shell, unsigned numSemanticExprs) 4519 : Expr(PseudoObjectExprClass, shell) { 4520 PseudoObjectExprBits.NumSubExprs = numSemanticExprs + 1; 4521 } 4522 4523 PseudoObjectExpr *PseudoObjectExpr::Create(const ASTContext &C, Expr *syntax, 4524 ArrayRef<Expr*> semantics, 4525 unsigned resultIndex) { 4526 assert(syntax && "no syntactic expression!"); 4527 assert(semantics.size() && "no semantic expressions!"); 4528 4529 QualType type; 4530 ExprValueKind VK; 4531 if (resultIndex == NoResult) { 4532 type = C.VoidTy; 4533 VK = VK_RValue; 4534 } else { 4535 assert(resultIndex < semantics.size()); 4536 type = semantics[resultIndex]->getType(); 4537 VK = semantics[resultIndex]->getValueKind(); 4538 assert(semantics[resultIndex]->getObjectKind() == OK_Ordinary); 4539 } 4540 4541 void *buffer = C.Allocate(totalSizeToAlloc<Expr *>(semantics.size() + 1), 4542 alignof(PseudoObjectExpr)); 4543 return new(buffer) PseudoObjectExpr(type, VK, syntax, semantics, 4544 resultIndex); 4545 } 4546 4547 PseudoObjectExpr::PseudoObjectExpr(QualType type, ExprValueKind VK, 4548 Expr *syntax, ArrayRef<Expr *> semantics, 4549 unsigned resultIndex) 4550 : Expr(PseudoObjectExprClass, type, VK, OK_Ordinary) { 4551 PseudoObjectExprBits.NumSubExprs = semantics.size() + 1; 4552 PseudoObjectExprBits.ResultIndex = resultIndex + 1; 4553 4554 for (unsigned i = 0, e = semantics.size() + 1; i != e; ++i) { 4555 Expr *E = (i == 0 ? syntax : semantics[i-1]); 4556 getSubExprsBuffer()[i] = E; 4557 4558 if (isa<OpaqueValueExpr>(E)) 4559 assert(cast<OpaqueValueExpr>(E)->getSourceExpr() != nullptr && 4560 "opaque-value semantic expressions for pseudo-object " 4561 "operations must have sources"); 4562 } 4563 4564 setDependence(computeDependence(this)); 4565 } 4566 4567 //===----------------------------------------------------------------------===// 4568 // Child Iterators for iterating over subexpressions/substatements 4569 //===----------------------------------------------------------------------===// 4570 4571 // UnaryExprOrTypeTraitExpr 4572 Stmt::child_range UnaryExprOrTypeTraitExpr::children() { 4573 const_child_range CCR = 4574 const_cast<const UnaryExprOrTypeTraitExpr *>(this)->children(); 4575 return child_range(cast_away_const(CCR.begin()), cast_away_const(CCR.end())); 4576 } 4577 4578 Stmt::const_child_range UnaryExprOrTypeTraitExpr::children() const { 4579 // If this is of a type and the type is a VLA type (and not a typedef), the 4580 // size expression of the VLA needs to be treated as an executable expression. 4581 // Why isn't this weirdness documented better in StmtIterator? 4582 if (isArgumentType()) { 4583 if (const VariableArrayType *T = 4584 dyn_cast<VariableArrayType>(getArgumentType().getTypePtr())) 4585 return const_child_range(const_child_iterator(T), const_child_iterator()); 4586 return const_child_range(const_child_iterator(), const_child_iterator()); 4587 } 4588 return const_child_range(&Argument.Ex, &Argument.Ex + 1); 4589 } 4590 4591 AtomicExpr::AtomicExpr(SourceLocation BLoc, ArrayRef<Expr *> args, QualType t, 4592 AtomicOp op, SourceLocation RP) 4593 : Expr(AtomicExprClass, t, VK_RValue, OK_Ordinary), 4594 NumSubExprs(args.size()), BuiltinLoc(BLoc), RParenLoc(RP), Op(op) { 4595 assert(args.size() == getNumSubExprs(op) && "wrong number of subexpressions"); 4596 for (unsigned i = 0; i != args.size(); i++) 4597 SubExprs[i] = args[i]; 4598 setDependence(computeDependence(this)); 4599 } 4600 4601 unsigned AtomicExpr::getNumSubExprs(AtomicOp Op) { 4602 switch (Op) { 4603 case AO__c11_atomic_init: 4604 case AO__opencl_atomic_init: 4605 case AO__c11_atomic_load: 4606 case AO__atomic_load_n: 4607 return 2; 4608 4609 case AO__opencl_atomic_load: 4610 case AO__c11_atomic_store: 4611 case AO__c11_atomic_exchange: 4612 case AO__atomic_load: 4613 case AO__atomic_store: 4614 case AO__atomic_store_n: 4615 case AO__atomic_exchange_n: 4616 case AO__c11_atomic_fetch_add: 4617 case AO__c11_atomic_fetch_sub: 4618 case AO__c11_atomic_fetch_and: 4619 case AO__c11_atomic_fetch_or: 4620 case AO__c11_atomic_fetch_xor: 4621 case AO__c11_atomic_fetch_max: 4622 case AO__c11_atomic_fetch_min: 4623 case AO__atomic_fetch_add: 4624 case AO__atomic_fetch_sub: 4625 case AO__atomic_fetch_and: 4626 case AO__atomic_fetch_or: 4627 case AO__atomic_fetch_xor: 4628 case AO__atomic_fetch_nand: 4629 case AO__atomic_add_fetch: 4630 case AO__atomic_sub_fetch: 4631 case AO__atomic_and_fetch: 4632 case AO__atomic_or_fetch: 4633 case AO__atomic_xor_fetch: 4634 case AO__atomic_nand_fetch: 4635 case AO__atomic_min_fetch: 4636 case AO__atomic_max_fetch: 4637 case AO__atomic_fetch_min: 4638 case AO__atomic_fetch_max: 4639 return 3; 4640 4641 case AO__opencl_atomic_store: 4642 case AO__opencl_atomic_exchange: 4643 case AO__opencl_atomic_fetch_add: 4644 case AO__opencl_atomic_fetch_sub: 4645 case AO__opencl_atomic_fetch_and: 4646 case AO__opencl_atomic_fetch_or: 4647 case AO__opencl_atomic_fetch_xor: 4648 case AO__opencl_atomic_fetch_min: 4649 case AO__opencl_atomic_fetch_max: 4650 case AO__atomic_exchange: 4651 return 4; 4652 4653 case AO__c11_atomic_compare_exchange_strong: 4654 case AO__c11_atomic_compare_exchange_weak: 4655 return 5; 4656 4657 case AO__opencl_atomic_compare_exchange_strong: 4658 case AO__opencl_atomic_compare_exchange_weak: 4659 case AO__atomic_compare_exchange: 4660 case AO__atomic_compare_exchange_n: 4661 return 6; 4662 } 4663 llvm_unreachable("unknown atomic op"); 4664 } 4665 4666 QualType AtomicExpr::getValueType() const { 4667 auto T = getPtr()->getType()->castAs<PointerType>()->getPointeeType(); 4668 if (auto AT = T->getAs<AtomicType>()) 4669 return AT->getValueType(); 4670 return T; 4671 } 4672 4673 QualType OMPArraySectionExpr::getBaseOriginalType(const Expr *Base) { 4674 unsigned ArraySectionCount = 0; 4675 while (auto *OASE = dyn_cast<OMPArraySectionExpr>(Base->IgnoreParens())) { 4676 Base = OASE->getBase(); 4677 ++ArraySectionCount; 4678 } 4679 while (auto *ASE = 4680 dyn_cast<ArraySubscriptExpr>(Base->IgnoreParenImpCasts())) { 4681 Base = ASE->getBase(); 4682 ++ArraySectionCount; 4683 } 4684 Base = Base->IgnoreParenImpCasts(); 4685 auto OriginalTy = Base->getType(); 4686 if (auto *DRE = dyn_cast<DeclRefExpr>(Base)) 4687 if (auto *PVD = dyn_cast<ParmVarDecl>(DRE->getDecl())) 4688 OriginalTy = PVD->getOriginalType().getNonReferenceType(); 4689 4690 for (unsigned Cnt = 0; Cnt < ArraySectionCount; ++Cnt) { 4691 if (OriginalTy->isAnyPointerType()) 4692 OriginalTy = OriginalTy->getPointeeType(); 4693 else { 4694 assert (OriginalTy->isArrayType()); 4695 OriginalTy = OriginalTy->castAsArrayTypeUnsafe()->getElementType(); 4696 } 4697 } 4698 return OriginalTy; 4699 } 4700 4701 RecoveryExpr::RecoveryExpr(ASTContext &Ctx, QualType T, SourceLocation BeginLoc, 4702 SourceLocation EndLoc, ArrayRef<Expr *> SubExprs) 4703 : Expr(RecoveryExprClass, T, VK_LValue, OK_Ordinary), BeginLoc(BeginLoc), 4704 EndLoc(EndLoc), NumExprs(SubExprs.size()) { 4705 assert(!T.isNull()); 4706 assert(llvm::all_of(SubExprs, [](Expr* E) { return E != nullptr; })); 4707 4708 llvm::copy(SubExprs, getTrailingObjects<Expr *>()); 4709 setDependence(computeDependence(this)); 4710 } 4711 4712 RecoveryExpr *RecoveryExpr::Create(ASTContext &Ctx, QualType T, 4713 SourceLocation BeginLoc, 4714 SourceLocation EndLoc, 4715 ArrayRef<Expr *> SubExprs) { 4716 void *Mem = Ctx.Allocate(totalSizeToAlloc<Expr *>(SubExprs.size()), 4717 alignof(RecoveryExpr)); 4718 return new (Mem) RecoveryExpr(Ctx, T, BeginLoc, EndLoc, SubExprs); 4719 } 4720 4721 RecoveryExpr *RecoveryExpr::CreateEmpty(ASTContext &Ctx, unsigned NumSubExprs) { 4722 void *Mem = Ctx.Allocate(totalSizeToAlloc<Expr *>(NumSubExprs), 4723 alignof(RecoveryExpr)); 4724 return new (Mem) RecoveryExpr(EmptyShell(), NumSubExprs); 4725 } 4726 4727 void OMPArrayShapingExpr::setDimensions(ArrayRef<Expr *> Dims) { 4728 assert( 4729 NumDims == Dims.size() && 4730 "Preallocated number of dimensions is different from the provided one."); 4731 llvm::copy(Dims, getTrailingObjects<Expr *>()); 4732 } 4733 4734 void OMPArrayShapingExpr::setBracketsRanges(ArrayRef<SourceRange> BR) { 4735 assert( 4736 NumDims == BR.size() && 4737 "Preallocated number of dimensions is different from the provided one."); 4738 llvm::copy(BR, getTrailingObjects<SourceRange>()); 4739 } 4740 4741 OMPArrayShapingExpr::OMPArrayShapingExpr(QualType ExprTy, Expr *Op, 4742 SourceLocation L, SourceLocation R, 4743 ArrayRef<Expr *> Dims) 4744 : Expr(OMPArrayShapingExprClass, ExprTy, VK_LValue, OK_Ordinary), LPLoc(L), 4745 RPLoc(R), NumDims(Dims.size()) { 4746 setBase(Op); 4747 setDimensions(Dims); 4748 setDependence(computeDependence(this)); 4749 } 4750 4751 OMPArrayShapingExpr * 4752 OMPArrayShapingExpr::Create(const ASTContext &Context, QualType T, Expr *Op, 4753 SourceLocation L, SourceLocation R, 4754 ArrayRef<Expr *> Dims, 4755 ArrayRef<SourceRange> BracketRanges) { 4756 assert(Dims.size() == BracketRanges.size() && 4757 "Different number of dimensions and brackets ranges."); 4758 void *Mem = Context.Allocate( 4759 totalSizeToAlloc<Expr *, SourceRange>(Dims.size() + 1, Dims.size()), 4760 alignof(OMPArrayShapingExpr)); 4761 auto *E = new (Mem) OMPArrayShapingExpr(T, Op, L, R, Dims); 4762 E->setBracketsRanges(BracketRanges); 4763 return E; 4764 } 4765 4766 OMPArrayShapingExpr *OMPArrayShapingExpr::CreateEmpty(const ASTContext &Context, 4767 unsigned NumDims) { 4768 void *Mem = Context.Allocate( 4769 totalSizeToAlloc<Expr *, SourceRange>(NumDims + 1, NumDims), 4770 alignof(OMPArrayShapingExpr)); 4771 return new (Mem) OMPArrayShapingExpr(EmptyShell(), NumDims); 4772 } 4773 4774 void OMPIteratorExpr::setIteratorDeclaration(unsigned I, Decl *D) { 4775 assert(I < NumIterators && 4776 "Idx is greater or equal the number of iterators definitions."); 4777 getTrailingObjects<Decl *>()[I] = D; 4778 } 4779 4780 void OMPIteratorExpr::setAssignmentLoc(unsigned I, SourceLocation Loc) { 4781 assert(I < NumIterators && 4782 "Idx is greater or equal the number of iterators definitions."); 4783 getTrailingObjects< 4784 SourceLocation>()[I * static_cast<int>(RangeLocOffset::Total) + 4785 static_cast<int>(RangeLocOffset::AssignLoc)] = Loc; 4786 } 4787 4788 void OMPIteratorExpr::setIteratorRange(unsigned I, Expr *Begin, 4789 SourceLocation ColonLoc, Expr *End, 4790 SourceLocation SecondColonLoc, 4791 Expr *Step) { 4792 assert(I < NumIterators && 4793 "Idx is greater or equal the number of iterators definitions."); 4794 getTrailingObjects<Expr *>()[I * static_cast<int>(RangeExprOffset::Total) + 4795 static_cast<int>(RangeExprOffset::Begin)] = 4796 Begin; 4797 getTrailingObjects<Expr *>()[I * static_cast<int>(RangeExprOffset::Total) + 4798 static_cast<int>(RangeExprOffset::End)] = End; 4799 getTrailingObjects<Expr *>()[I * static_cast<int>(RangeExprOffset::Total) + 4800 static_cast<int>(RangeExprOffset::Step)] = Step; 4801 getTrailingObjects< 4802 SourceLocation>()[I * static_cast<int>(RangeLocOffset::Total) + 4803 static_cast<int>(RangeLocOffset::FirstColonLoc)] = 4804 ColonLoc; 4805 getTrailingObjects< 4806 SourceLocation>()[I * static_cast<int>(RangeLocOffset::Total) + 4807 static_cast<int>(RangeLocOffset::SecondColonLoc)] = 4808 SecondColonLoc; 4809 } 4810 4811 Decl *OMPIteratorExpr::getIteratorDecl(unsigned I) { 4812 return getTrailingObjects<Decl *>()[I]; 4813 } 4814 4815 OMPIteratorExpr::IteratorRange OMPIteratorExpr::getIteratorRange(unsigned I) { 4816 IteratorRange Res; 4817 Res.Begin = 4818 getTrailingObjects<Expr *>()[I * static_cast<int>( 4819 RangeExprOffset::Total) + 4820 static_cast<int>(RangeExprOffset::Begin)]; 4821 Res.End = 4822 getTrailingObjects<Expr *>()[I * static_cast<int>( 4823 RangeExprOffset::Total) + 4824 static_cast<int>(RangeExprOffset::End)]; 4825 Res.Step = 4826 getTrailingObjects<Expr *>()[I * static_cast<int>( 4827 RangeExprOffset::Total) + 4828 static_cast<int>(RangeExprOffset::Step)]; 4829 return Res; 4830 } 4831 4832 SourceLocation OMPIteratorExpr::getAssignLoc(unsigned I) const { 4833 return getTrailingObjects< 4834 SourceLocation>()[I * static_cast<int>(RangeLocOffset::Total) + 4835 static_cast<int>(RangeLocOffset::AssignLoc)]; 4836 } 4837 4838 SourceLocation OMPIteratorExpr::getColonLoc(unsigned I) const { 4839 return getTrailingObjects< 4840 SourceLocation>()[I * static_cast<int>(RangeLocOffset::Total) + 4841 static_cast<int>(RangeLocOffset::FirstColonLoc)]; 4842 } 4843 4844 SourceLocation OMPIteratorExpr::getSecondColonLoc(unsigned I) const { 4845 return getTrailingObjects< 4846 SourceLocation>()[I * static_cast<int>(RangeLocOffset::Total) + 4847 static_cast<int>(RangeLocOffset::SecondColonLoc)]; 4848 } 4849 4850 void OMPIteratorExpr::setHelper(unsigned I, const OMPIteratorHelperData &D) { 4851 getTrailingObjects<OMPIteratorHelperData>()[I] = D; 4852 } 4853 4854 OMPIteratorHelperData &OMPIteratorExpr::getHelper(unsigned I) { 4855 return getTrailingObjects<OMPIteratorHelperData>()[I]; 4856 } 4857 4858 const OMPIteratorHelperData &OMPIteratorExpr::getHelper(unsigned I) const { 4859 return getTrailingObjects<OMPIteratorHelperData>()[I]; 4860 } 4861 4862 OMPIteratorExpr::OMPIteratorExpr( 4863 QualType ExprTy, SourceLocation IteratorKwLoc, SourceLocation L, 4864 SourceLocation R, ArrayRef<OMPIteratorExpr::IteratorDefinition> Data, 4865 ArrayRef<OMPIteratorHelperData> Helpers) 4866 : Expr(OMPIteratorExprClass, ExprTy, VK_LValue, OK_Ordinary), 4867 IteratorKwLoc(IteratorKwLoc), LPLoc(L), RPLoc(R), 4868 NumIterators(Data.size()) { 4869 for (unsigned I = 0, E = Data.size(); I < E; ++I) { 4870 const IteratorDefinition &D = Data[I]; 4871 setIteratorDeclaration(I, D.IteratorDecl); 4872 setAssignmentLoc(I, D.AssignmentLoc); 4873 setIteratorRange(I, D.Range.Begin, D.ColonLoc, D.Range.End, 4874 D.SecondColonLoc, D.Range.Step); 4875 setHelper(I, Helpers[I]); 4876 } 4877 setDependence(computeDependence(this)); 4878 } 4879 4880 OMPIteratorExpr * 4881 OMPIteratorExpr::Create(const ASTContext &Context, QualType T, 4882 SourceLocation IteratorKwLoc, SourceLocation L, 4883 SourceLocation R, 4884 ArrayRef<OMPIteratorExpr::IteratorDefinition> Data, 4885 ArrayRef<OMPIteratorHelperData> Helpers) { 4886 assert(Data.size() == Helpers.size() && 4887 "Data and helpers must have the same size."); 4888 void *Mem = Context.Allocate( 4889 totalSizeToAlloc<Decl *, Expr *, SourceLocation, OMPIteratorHelperData>( 4890 Data.size(), Data.size() * static_cast<int>(RangeExprOffset::Total), 4891 Data.size() * static_cast<int>(RangeLocOffset::Total), 4892 Helpers.size()), 4893 alignof(OMPIteratorExpr)); 4894 return new (Mem) OMPIteratorExpr(T, IteratorKwLoc, L, R, Data, Helpers); 4895 } 4896 4897 OMPIteratorExpr *OMPIteratorExpr::CreateEmpty(const ASTContext &Context, 4898 unsigned NumIterators) { 4899 void *Mem = Context.Allocate( 4900 totalSizeToAlloc<Decl *, Expr *, SourceLocation, OMPIteratorHelperData>( 4901 NumIterators, NumIterators * static_cast<int>(RangeExprOffset::Total), 4902 NumIterators * static_cast<int>(RangeLocOffset::Total), NumIterators), 4903 alignof(OMPIteratorExpr)); 4904 return new (Mem) OMPIteratorExpr(EmptyShell(), NumIterators); 4905 } 4906