1 //===--- ExprConstant.cpp - Expression Constant Evaluator -----------------===// 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 constant evaluator. 10 // 11 // Constant expression evaluation produces four main results: 12 // 13 // * A success/failure flag indicating whether constant folding was successful. 14 // This is the 'bool' return value used by most of the code in this file. A 15 // 'false' return value indicates that constant folding has failed, and any 16 // appropriate diagnostic has already been produced. 17 // 18 // * An evaluated result, valid only if constant folding has not failed. 19 // 20 // * A flag indicating if evaluation encountered (unevaluated) side-effects. 21 // These arise in cases such as (sideEffect(), 0) and (sideEffect() || 1), 22 // where it is possible to determine the evaluated result regardless. 23 // 24 // * A set of notes indicating why the evaluation was not a constant expression 25 // (under the C++11 / C++1y rules only, at the moment), or, if folding failed 26 // too, why the expression could not be folded. 27 // 28 // If we are checking for a potential constant expression, failure to constant 29 // fold a potential constant sub-expression will be indicated by a 'false' 30 // return value (the expression could not be folded) and no diagnostic (the 31 // expression is not necessarily non-constant). 32 // 33 //===----------------------------------------------------------------------===// 34 35 #include "Interp/Context.h" 36 #include "Interp/Frame.h" 37 #include "Interp/State.h" 38 #include "clang/AST/APValue.h" 39 #include "clang/AST/ASTContext.h" 40 #include "clang/AST/ASTDiagnostic.h" 41 #include "clang/AST/ASTLambda.h" 42 #include "clang/AST/Attr.h" 43 #include "clang/AST/CXXInheritance.h" 44 #include "clang/AST/CharUnits.h" 45 #include "clang/AST/CurrentSourceLocExprScope.h" 46 #include "clang/AST/Expr.h" 47 #include "clang/AST/OSLog.h" 48 #include "clang/AST/OptionalDiagnostic.h" 49 #include "clang/AST/RecordLayout.h" 50 #include "clang/AST/StmtVisitor.h" 51 #include "clang/AST/TypeLoc.h" 52 #include "clang/Basic/Builtins.h" 53 #include "clang/Basic/FixedPoint.h" 54 #include "clang/Basic/TargetInfo.h" 55 #include "llvm/ADT/Optional.h" 56 #include "llvm/ADT/SmallBitVector.h" 57 #include "llvm/Support/Debug.h" 58 #include "llvm/Support/SaveAndRestore.h" 59 #include "llvm/Support/raw_ostream.h" 60 #include <cstring> 61 #include <functional> 62 63 #define DEBUG_TYPE "exprconstant" 64 65 using namespace clang; 66 using llvm::APInt; 67 using llvm::APSInt; 68 using llvm::APFloat; 69 using llvm::Optional; 70 71 namespace { 72 struct LValue; 73 class CallStackFrame; 74 class EvalInfo; 75 76 using SourceLocExprScopeGuard = 77 CurrentSourceLocExprScope::SourceLocExprScopeGuard; 78 79 static QualType getType(APValue::LValueBase B) { 80 if (!B) return QualType(); 81 if (const ValueDecl *D = B.dyn_cast<const ValueDecl*>()) { 82 // FIXME: It's unclear where we're supposed to take the type from, and 83 // this actually matters for arrays of unknown bound. Eg: 84 // 85 // extern int arr[]; void f() { extern int arr[3]; }; 86 // constexpr int *p = &arr[1]; // valid? 87 // 88 // For now, we take the array bound from the most recent declaration. 89 for (auto *Redecl = cast<ValueDecl>(D->getMostRecentDecl()); Redecl; 90 Redecl = cast_or_null<ValueDecl>(Redecl->getPreviousDecl())) { 91 QualType T = Redecl->getType(); 92 if (!T->isIncompleteArrayType()) 93 return T; 94 } 95 return D->getType(); 96 } 97 98 if (B.is<TypeInfoLValue>()) 99 return B.getTypeInfoType(); 100 101 if (B.is<DynamicAllocLValue>()) 102 return B.getDynamicAllocType(); 103 104 const Expr *Base = B.get<const Expr*>(); 105 106 // For a materialized temporary, the type of the temporary we materialized 107 // may not be the type of the expression. 108 if (const MaterializeTemporaryExpr *MTE = 109 dyn_cast<MaterializeTemporaryExpr>(Base)) { 110 SmallVector<const Expr *, 2> CommaLHSs; 111 SmallVector<SubobjectAdjustment, 2> Adjustments; 112 const Expr *Temp = MTE->getSubExpr(); 113 const Expr *Inner = Temp->skipRValueSubobjectAdjustments(CommaLHSs, 114 Adjustments); 115 // Keep any cv-qualifiers from the reference if we generated a temporary 116 // for it directly. Otherwise use the type after adjustment. 117 if (!Adjustments.empty()) 118 return Inner->getType(); 119 } 120 121 return Base->getType(); 122 } 123 124 /// Get an LValue path entry, which is known to not be an array index, as a 125 /// field declaration. 126 static const FieldDecl *getAsField(APValue::LValuePathEntry E) { 127 return dyn_cast_or_null<FieldDecl>(E.getAsBaseOrMember().getPointer()); 128 } 129 /// Get an LValue path entry, which is known to not be an array index, as a 130 /// base class declaration. 131 static const CXXRecordDecl *getAsBaseClass(APValue::LValuePathEntry E) { 132 return dyn_cast_or_null<CXXRecordDecl>(E.getAsBaseOrMember().getPointer()); 133 } 134 /// Determine whether this LValue path entry for a base class names a virtual 135 /// base class. 136 static bool isVirtualBaseClass(APValue::LValuePathEntry E) { 137 return E.getAsBaseOrMember().getInt(); 138 } 139 140 /// Given an expression, determine the type used to store the result of 141 /// evaluating that expression. 142 static QualType getStorageType(const ASTContext &Ctx, const Expr *E) { 143 if (E->isRValue()) 144 return E->getType(); 145 return Ctx.getLValueReferenceType(E->getType()); 146 } 147 148 /// Given a CallExpr, try to get the alloc_size attribute. May return null. 149 static const AllocSizeAttr *getAllocSizeAttr(const CallExpr *CE) { 150 const FunctionDecl *Callee = CE->getDirectCallee(); 151 return Callee ? Callee->getAttr<AllocSizeAttr>() : nullptr; 152 } 153 154 /// Attempts to unwrap a CallExpr (with an alloc_size attribute) from an Expr. 155 /// This will look through a single cast. 156 /// 157 /// Returns null if we couldn't unwrap a function with alloc_size. 158 static const CallExpr *tryUnwrapAllocSizeCall(const Expr *E) { 159 if (!E->getType()->isPointerType()) 160 return nullptr; 161 162 E = E->IgnoreParens(); 163 // If we're doing a variable assignment from e.g. malloc(N), there will 164 // probably be a cast of some kind. In exotic cases, we might also see a 165 // top-level ExprWithCleanups. Ignore them either way. 166 if (const auto *FE = dyn_cast<FullExpr>(E)) 167 E = FE->getSubExpr()->IgnoreParens(); 168 169 if (const auto *Cast = dyn_cast<CastExpr>(E)) 170 E = Cast->getSubExpr()->IgnoreParens(); 171 172 if (const auto *CE = dyn_cast<CallExpr>(E)) 173 return getAllocSizeAttr(CE) ? CE : nullptr; 174 return nullptr; 175 } 176 177 /// Determines whether or not the given Base contains a call to a function 178 /// with the alloc_size attribute. 179 static bool isBaseAnAllocSizeCall(APValue::LValueBase Base) { 180 const auto *E = Base.dyn_cast<const Expr *>(); 181 return E && E->getType()->isPointerType() && tryUnwrapAllocSizeCall(E); 182 } 183 184 /// The bound to claim that an array of unknown bound has. 185 /// The value in MostDerivedArraySize is undefined in this case. So, set it 186 /// to an arbitrary value that's likely to loudly break things if it's used. 187 static const uint64_t AssumedSizeForUnsizedArray = 188 std::numeric_limits<uint64_t>::max() / 2; 189 190 /// Determines if an LValue with the given LValueBase will have an unsized 191 /// array in its designator. 192 /// Find the path length and type of the most-derived subobject in the given 193 /// path, and find the size of the containing array, if any. 194 static unsigned 195 findMostDerivedSubobject(ASTContext &Ctx, APValue::LValueBase Base, 196 ArrayRef<APValue::LValuePathEntry> Path, 197 uint64_t &ArraySize, QualType &Type, bool &IsArray, 198 bool &FirstEntryIsUnsizedArray) { 199 // This only accepts LValueBases from APValues, and APValues don't support 200 // arrays that lack size info. 201 assert(!isBaseAnAllocSizeCall(Base) && 202 "Unsized arrays shouldn't appear here"); 203 unsigned MostDerivedLength = 0; 204 Type = getType(Base); 205 206 for (unsigned I = 0, N = Path.size(); I != N; ++I) { 207 if (Type->isArrayType()) { 208 const ArrayType *AT = Ctx.getAsArrayType(Type); 209 Type = AT->getElementType(); 210 MostDerivedLength = I + 1; 211 IsArray = true; 212 213 if (auto *CAT = dyn_cast<ConstantArrayType>(AT)) { 214 ArraySize = CAT->getSize().getZExtValue(); 215 } else { 216 assert(I == 0 && "unexpected unsized array designator"); 217 FirstEntryIsUnsizedArray = true; 218 ArraySize = AssumedSizeForUnsizedArray; 219 } 220 } else if (Type->isAnyComplexType()) { 221 const ComplexType *CT = Type->castAs<ComplexType>(); 222 Type = CT->getElementType(); 223 ArraySize = 2; 224 MostDerivedLength = I + 1; 225 IsArray = true; 226 } else if (const FieldDecl *FD = getAsField(Path[I])) { 227 Type = FD->getType(); 228 ArraySize = 0; 229 MostDerivedLength = I + 1; 230 IsArray = false; 231 } else { 232 // Path[I] describes a base class. 233 ArraySize = 0; 234 IsArray = false; 235 } 236 } 237 return MostDerivedLength; 238 } 239 240 /// A path from a glvalue to a subobject of that glvalue. 241 struct SubobjectDesignator { 242 /// True if the subobject was named in a manner not supported by C++11. Such 243 /// lvalues can still be folded, but they are not core constant expressions 244 /// and we cannot perform lvalue-to-rvalue conversions on them. 245 unsigned Invalid : 1; 246 247 /// Is this a pointer one past the end of an object? 248 unsigned IsOnePastTheEnd : 1; 249 250 /// Indicator of whether the first entry is an unsized array. 251 unsigned FirstEntryIsAnUnsizedArray : 1; 252 253 /// Indicator of whether the most-derived object is an array element. 254 unsigned MostDerivedIsArrayElement : 1; 255 256 /// The length of the path to the most-derived object of which this is a 257 /// subobject. 258 unsigned MostDerivedPathLength : 28; 259 260 /// The size of the array of which the most-derived object is an element. 261 /// This will always be 0 if the most-derived object is not an array 262 /// element. 0 is not an indicator of whether or not the most-derived object 263 /// is an array, however, because 0-length arrays are allowed. 264 /// 265 /// If the current array is an unsized array, the value of this is 266 /// undefined. 267 uint64_t MostDerivedArraySize; 268 269 /// The type of the most derived object referred to by this address. 270 QualType MostDerivedType; 271 272 typedef APValue::LValuePathEntry PathEntry; 273 274 /// The entries on the path from the glvalue to the designated subobject. 275 SmallVector<PathEntry, 8> Entries; 276 277 SubobjectDesignator() : Invalid(true) {} 278 279 explicit SubobjectDesignator(QualType T) 280 : Invalid(false), IsOnePastTheEnd(false), 281 FirstEntryIsAnUnsizedArray(false), MostDerivedIsArrayElement(false), 282 MostDerivedPathLength(0), MostDerivedArraySize(0), 283 MostDerivedType(T) {} 284 285 SubobjectDesignator(ASTContext &Ctx, const APValue &V) 286 : Invalid(!V.isLValue() || !V.hasLValuePath()), IsOnePastTheEnd(false), 287 FirstEntryIsAnUnsizedArray(false), MostDerivedIsArrayElement(false), 288 MostDerivedPathLength(0), MostDerivedArraySize(0) { 289 assert(V.isLValue() && "Non-LValue used to make an LValue designator?"); 290 if (!Invalid) { 291 IsOnePastTheEnd = V.isLValueOnePastTheEnd(); 292 ArrayRef<PathEntry> VEntries = V.getLValuePath(); 293 Entries.insert(Entries.end(), VEntries.begin(), VEntries.end()); 294 if (V.getLValueBase()) { 295 bool IsArray = false; 296 bool FirstIsUnsizedArray = false; 297 MostDerivedPathLength = findMostDerivedSubobject( 298 Ctx, V.getLValueBase(), V.getLValuePath(), MostDerivedArraySize, 299 MostDerivedType, IsArray, FirstIsUnsizedArray); 300 MostDerivedIsArrayElement = IsArray; 301 FirstEntryIsAnUnsizedArray = FirstIsUnsizedArray; 302 } 303 } 304 } 305 306 void truncate(ASTContext &Ctx, APValue::LValueBase Base, 307 unsigned NewLength) { 308 if (Invalid) 309 return; 310 311 assert(Base && "cannot truncate path for null pointer"); 312 assert(NewLength <= Entries.size() && "not a truncation"); 313 314 if (NewLength == Entries.size()) 315 return; 316 Entries.resize(NewLength); 317 318 bool IsArray = false; 319 bool FirstIsUnsizedArray = false; 320 MostDerivedPathLength = findMostDerivedSubobject( 321 Ctx, Base, Entries, MostDerivedArraySize, MostDerivedType, IsArray, 322 FirstIsUnsizedArray); 323 MostDerivedIsArrayElement = IsArray; 324 FirstEntryIsAnUnsizedArray = FirstIsUnsizedArray; 325 } 326 327 void setInvalid() { 328 Invalid = true; 329 Entries.clear(); 330 } 331 332 /// Determine whether the most derived subobject is an array without a 333 /// known bound. 334 bool isMostDerivedAnUnsizedArray() const { 335 assert(!Invalid && "Calling this makes no sense on invalid designators"); 336 return Entries.size() == 1 && FirstEntryIsAnUnsizedArray; 337 } 338 339 /// Determine what the most derived array's size is. Results in an assertion 340 /// failure if the most derived array lacks a size. 341 uint64_t getMostDerivedArraySize() const { 342 assert(!isMostDerivedAnUnsizedArray() && "Unsized array has no size"); 343 return MostDerivedArraySize; 344 } 345 346 /// Determine whether this is a one-past-the-end pointer. 347 bool isOnePastTheEnd() const { 348 assert(!Invalid); 349 if (IsOnePastTheEnd) 350 return true; 351 if (!isMostDerivedAnUnsizedArray() && MostDerivedIsArrayElement && 352 Entries[MostDerivedPathLength - 1].getAsArrayIndex() == 353 MostDerivedArraySize) 354 return true; 355 return false; 356 } 357 358 /// Get the range of valid index adjustments in the form 359 /// {maximum value that can be subtracted from this pointer, 360 /// maximum value that can be added to this pointer} 361 std::pair<uint64_t, uint64_t> validIndexAdjustments() { 362 if (Invalid || isMostDerivedAnUnsizedArray()) 363 return {0, 0}; 364 365 // [expr.add]p4: For the purposes of these operators, a pointer to a 366 // nonarray object behaves the same as a pointer to the first element of 367 // an array of length one with the type of the object as its element type. 368 bool IsArray = MostDerivedPathLength == Entries.size() && 369 MostDerivedIsArrayElement; 370 uint64_t ArrayIndex = IsArray ? Entries.back().getAsArrayIndex() 371 : (uint64_t)IsOnePastTheEnd; 372 uint64_t ArraySize = 373 IsArray ? getMostDerivedArraySize() : (uint64_t)1; 374 return {ArrayIndex, ArraySize - ArrayIndex}; 375 } 376 377 /// Check that this refers to a valid subobject. 378 bool isValidSubobject() const { 379 if (Invalid) 380 return false; 381 return !isOnePastTheEnd(); 382 } 383 /// Check that this refers to a valid subobject, and if not, produce a 384 /// relevant diagnostic and set the designator as invalid. 385 bool checkSubobject(EvalInfo &Info, const Expr *E, CheckSubobjectKind CSK); 386 387 /// Get the type of the designated object. 388 QualType getType(ASTContext &Ctx) const { 389 assert(!Invalid && "invalid designator has no subobject type"); 390 return MostDerivedPathLength == Entries.size() 391 ? MostDerivedType 392 : Ctx.getRecordType(getAsBaseClass(Entries.back())); 393 } 394 395 /// Update this designator to refer to the first element within this array. 396 void addArrayUnchecked(const ConstantArrayType *CAT) { 397 Entries.push_back(PathEntry::ArrayIndex(0)); 398 399 // This is a most-derived object. 400 MostDerivedType = CAT->getElementType(); 401 MostDerivedIsArrayElement = true; 402 MostDerivedArraySize = CAT->getSize().getZExtValue(); 403 MostDerivedPathLength = Entries.size(); 404 } 405 /// Update this designator to refer to the first element within the array of 406 /// elements of type T. This is an array of unknown size. 407 void addUnsizedArrayUnchecked(QualType ElemTy) { 408 Entries.push_back(PathEntry::ArrayIndex(0)); 409 410 MostDerivedType = ElemTy; 411 MostDerivedIsArrayElement = true; 412 // The value in MostDerivedArraySize is undefined in this case. So, set it 413 // to an arbitrary value that's likely to loudly break things if it's 414 // used. 415 MostDerivedArraySize = AssumedSizeForUnsizedArray; 416 MostDerivedPathLength = Entries.size(); 417 } 418 /// Update this designator to refer to the given base or member of this 419 /// object. 420 void addDeclUnchecked(const Decl *D, bool Virtual = false) { 421 Entries.push_back(APValue::BaseOrMemberType(D, Virtual)); 422 423 // If this isn't a base class, it's a new most-derived object. 424 if (const FieldDecl *FD = dyn_cast<FieldDecl>(D)) { 425 MostDerivedType = FD->getType(); 426 MostDerivedIsArrayElement = false; 427 MostDerivedArraySize = 0; 428 MostDerivedPathLength = Entries.size(); 429 } 430 } 431 /// Update this designator to refer to the given complex component. 432 void addComplexUnchecked(QualType EltTy, bool Imag) { 433 Entries.push_back(PathEntry::ArrayIndex(Imag)); 434 435 // This is technically a most-derived object, though in practice this 436 // is unlikely to matter. 437 MostDerivedType = EltTy; 438 MostDerivedIsArrayElement = true; 439 MostDerivedArraySize = 2; 440 MostDerivedPathLength = Entries.size(); 441 } 442 void diagnoseUnsizedArrayPointerArithmetic(EvalInfo &Info, const Expr *E); 443 void diagnosePointerArithmetic(EvalInfo &Info, const Expr *E, 444 const APSInt &N); 445 /// Add N to the address of this subobject. 446 void adjustIndex(EvalInfo &Info, const Expr *E, APSInt N) { 447 if (Invalid || !N) return; 448 uint64_t TruncatedN = N.extOrTrunc(64).getZExtValue(); 449 if (isMostDerivedAnUnsizedArray()) { 450 diagnoseUnsizedArrayPointerArithmetic(Info, E); 451 // Can't verify -- trust that the user is doing the right thing (or if 452 // not, trust that the caller will catch the bad behavior). 453 // FIXME: Should we reject if this overflows, at least? 454 Entries.back() = PathEntry::ArrayIndex( 455 Entries.back().getAsArrayIndex() + TruncatedN); 456 return; 457 } 458 459 // [expr.add]p4: For the purposes of these operators, a pointer to a 460 // nonarray object behaves the same as a pointer to the first element of 461 // an array of length one with the type of the object as its element type. 462 bool IsArray = MostDerivedPathLength == Entries.size() && 463 MostDerivedIsArrayElement; 464 uint64_t ArrayIndex = IsArray ? Entries.back().getAsArrayIndex() 465 : (uint64_t)IsOnePastTheEnd; 466 uint64_t ArraySize = 467 IsArray ? getMostDerivedArraySize() : (uint64_t)1; 468 469 if (N < -(int64_t)ArrayIndex || N > ArraySize - ArrayIndex) { 470 // Calculate the actual index in a wide enough type, so we can include 471 // it in the note. 472 N = N.extend(std::max<unsigned>(N.getBitWidth() + 1, 65)); 473 (llvm::APInt&)N += ArrayIndex; 474 assert(N.ugt(ArraySize) && "bounds check failed for in-bounds index"); 475 diagnosePointerArithmetic(Info, E, N); 476 setInvalid(); 477 return; 478 } 479 480 ArrayIndex += TruncatedN; 481 assert(ArrayIndex <= ArraySize && 482 "bounds check succeeded for out-of-bounds index"); 483 484 if (IsArray) 485 Entries.back() = PathEntry::ArrayIndex(ArrayIndex); 486 else 487 IsOnePastTheEnd = (ArrayIndex != 0); 488 } 489 }; 490 491 /// A stack frame in the constexpr call stack. 492 class CallStackFrame : public interp::Frame { 493 public: 494 EvalInfo &Info; 495 496 /// Parent - The caller of this stack frame. 497 CallStackFrame *Caller; 498 499 /// Callee - The function which was called. 500 const FunctionDecl *Callee; 501 502 /// This - The binding for the this pointer in this call, if any. 503 const LValue *This; 504 505 /// Arguments - Parameter bindings for this function call, indexed by 506 /// parameters' function scope indices. 507 APValue *Arguments; 508 509 /// Source location information about the default argument or default 510 /// initializer expression we're evaluating, if any. 511 CurrentSourceLocExprScope CurSourceLocExprScope; 512 513 // Note that we intentionally use std::map here so that references to 514 // values are stable. 515 typedef std::pair<const void *, unsigned> MapKeyTy; 516 typedef std::map<MapKeyTy, APValue> MapTy; 517 /// Temporaries - Temporary lvalues materialized within this stack frame. 518 MapTy Temporaries; 519 520 /// CallLoc - The location of the call expression for this call. 521 SourceLocation CallLoc; 522 523 /// Index - The call index of this call. 524 unsigned Index; 525 526 /// The stack of integers for tracking version numbers for temporaries. 527 SmallVector<unsigned, 2> TempVersionStack = {1}; 528 unsigned CurTempVersion = TempVersionStack.back(); 529 530 unsigned getTempVersion() const { return TempVersionStack.back(); } 531 532 void pushTempVersion() { 533 TempVersionStack.push_back(++CurTempVersion); 534 } 535 536 void popTempVersion() { 537 TempVersionStack.pop_back(); 538 } 539 540 // FIXME: Adding this to every 'CallStackFrame' may have a nontrivial impact 541 // on the overall stack usage of deeply-recursing constexpr evaluations. 542 // (We should cache this map rather than recomputing it repeatedly.) 543 // But let's try this and see how it goes; we can look into caching the map 544 // as a later change. 545 546 /// LambdaCaptureFields - Mapping from captured variables/this to 547 /// corresponding data members in the closure class. 548 llvm::DenseMap<const VarDecl *, FieldDecl *> LambdaCaptureFields; 549 FieldDecl *LambdaThisCaptureField; 550 551 CallStackFrame(EvalInfo &Info, SourceLocation CallLoc, 552 const FunctionDecl *Callee, const LValue *This, 553 APValue *Arguments); 554 ~CallStackFrame(); 555 556 // Return the temporary for Key whose version number is Version. 557 APValue *getTemporary(const void *Key, unsigned Version) { 558 MapKeyTy KV(Key, Version); 559 auto LB = Temporaries.lower_bound(KV); 560 if (LB != Temporaries.end() && LB->first == KV) 561 return &LB->second; 562 // Pair (Key,Version) wasn't found in the map. Check that no elements 563 // in the map have 'Key' as their key. 564 assert((LB == Temporaries.end() || LB->first.first != Key) && 565 (LB == Temporaries.begin() || std::prev(LB)->first.first != Key) && 566 "Element with key 'Key' found in map"); 567 return nullptr; 568 } 569 570 // Return the current temporary for Key in the map. 571 APValue *getCurrentTemporary(const void *Key) { 572 auto UB = Temporaries.upper_bound(MapKeyTy(Key, UINT_MAX)); 573 if (UB != Temporaries.begin() && std::prev(UB)->first.first == Key) 574 return &std::prev(UB)->second; 575 return nullptr; 576 } 577 578 // Return the version number of the current temporary for Key. 579 unsigned getCurrentTemporaryVersion(const void *Key) const { 580 auto UB = Temporaries.upper_bound(MapKeyTy(Key, UINT_MAX)); 581 if (UB != Temporaries.begin() && std::prev(UB)->first.first == Key) 582 return std::prev(UB)->first.second; 583 return 0; 584 } 585 586 /// Allocate storage for an object of type T in this stack frame. 587 /// Populates LV with a handle to the created object. Key identifies 588 /// the temporary within the stack frame, and must not be reused without 589 /// bumping the temporary version number. 590 template<typename KeyT> 591 APValue &createTemporary(const KeyT *Key, QualType T, 592 bool IsLifetimeExtended, LValue &LV); 593 594 void describe(llvm::raw_ostream &OS) override; 595 596 Frame *getCaller() const override { return Caller; } 597 SourceLocation getCallLocation() const override { return CallLoc; } 598 const FunctionDecl *getCallee() const override { return Callee; } 599 600 bool isStdFunction() const { 601 for (const DeclContext *DC = Callee; DC; DC = DC->getParent()) 602 if (DC->isStdNamespace()) 603 return true; 604 return false; 605 } 606 }; 607 608 /// Temporarily override 'this'. 609 class ThisOverrideRAII { 610 public: 611 ThisOverrideRAII(CallStackFrame &Frame, const LValue *NewThis, bool Enable) 612 : Frame(Frame), OldThis(Frame.This) { 613 if (Enable) 614 Frame.This = NewThis; 615 } 616 ~ThisOverrideRAII() { 617 Frame.This = OldThis; 618 } 619 private: 620 CallStackFrame &Frame; 621 const LValue *OldThis; 622 }; 623 } 624 625 static bool HandleDestruction(EvalInfo &Info, const Expr *E, 626 const LValue &This, QualType ThisType); 627 static bool HandleDestruction(EvalInfo &Info, SourceLocation Loc, 628 APValue::LValueBase LVBase, APValue &Value, 629 QualType T); 630 631 namespace { 632 /// A cleanup, and a flag indicating whether it is lifetime-extended. 633 class Cleanup { 634 llvm::PointerIntPair<APValue*, 1, bool> Value; 635 APValue::LValueBase Base; 636 QualType T; 637 638 public: 639 Cleanup(APValue *Val, APValue::LValueBase Base, QualType T, 640 bool IsLifetimeExtended) 641 : Value(Val, IsLifetimeExtended), Base(Base), T(T) {} 642 643 bool isLifetimeExtended() const { return Value.getInt(); } 644 bool endLifetime(EvalInfo &Info, bool RunDestructors) { 645 if (RunDestructors) { 646 SourceLocation Loc; 647 if (const ValueDecl *VD = Base.dyn_cast<const ValueDecl*>()) 648 Loc = VD->getLocation(); 649 else if (const Expr *E = Base.dyn_cast<const Expr*>()) 650 Loc = E->getExprLoc(); 651 return HandleDestruction(Info, Loc, Base, *Value.getPointer(), T); 652 } 653 *Value.getPointer() = APValue(); 654 return true; 655 } 656 657 bool hasSideEffect() { 658 return T.isDestructedType(); 659 } 660 }; 661 662 /// A reference to an object whose construction we are currently evaluating. 663 struct ObjectUnderConstruction { 664 APValue::LValueBase Base; 665 ArrayRef<APValue::LValuePathEntry> Path; 666 friend bool operator==(const ObjectUnderConstruction &LHS, 667 const ObjectUnderConstruction &RHS) { 668 return LHS.Base == RHS.Base && LHS.Path == RHS.Path; 669 } 670 friend llvm::hash_code hash_value(const ObjectUnderConstruction &Obj) { 671 return llvm::hash_combine(Obj.Base, Obj.Path); 672 } 673 }; 674 enum class ConstructionPhase { 675 None, 676 Bases, 677 AfterBases, 678 AfterFields, 679 Destroying, 680 DestroyingBases 681 }; 682 } 683 684 namespace llvm { 685 template<> struct DenseMapInfo<ObjectUnderConstruction> { 686 using Base = DenseMapInfo<APValue::LValueBase>; 687 static ObjectUnderConstruction getEmptyKey() { 688 return {Base::getEmptyKey(), {}}; } 689 static ObjectUnderConstruction getTombstoneKey() { 690 return {Base::getTombstoneKey(), {}}; 691 } 692 static unsigned getHashValue(const ObjectUnderConstruction &Object) { 693 return hash_value(Object); 694 } 695 static bool isEqual(const ObjectUnderConstruction &LHS, 696 const ObjectUnderConstruction &RHS) { 697 return LHS == RHS; 698 } 699 }; 700 } 701 702 namespace { 703 /// A dynamically-allocated heap object. 704 struct DynAlloc { 705 /// The value of this heap-allocated object. 706 APValue Value; 707 /// The allocating expression; used for diagnostics. Either a CXXNewExpr 708 /// or a CallExpr (the latter is for direct calls to operator new inside 709 /// std::allocator<T>::allocate). 710 const Expr *AllocExpr = nullptr; 711 712 enum Kind { 713 New, 714 ArrayNew, 715 StdAllocator 716 }; 717 718 /// Get the kind of the allocation. This must match between allocation 719 /// and deallocation. 720 Kind getKind() const { 721 if (auto *NE = dyn_cast<CXXNewExpr>(AllocExpr)) 722 return NE->isArray() ? ArrayNew : New; 723 assert(isa<CallExpr>(AllocExpr)); 724 return StdAllocator; 725 } 726 }; 727 728 struct DynAllocOrder { 729 bool operator()(DynamicAllocLValue L, DynamicAllocLValue R) const { 730 return L.getIndex() < R.getIndex(); 731 } 732 }; 733 734 /// EvalInfo - This is a private struct used by the evaluator to capture 735 /// information about a subexpression as it is folded. It retains information 736 /// about the AST context, but also maintains information about the folded 737 /// expression. 738 /// 739 /// If an expression could be evaluated, it is still possible it is not a C 740 /// "integer constant expression" or constant expression. If not, this struct 741 /// captures information about how and why not. 742 /// 743 /// One bit of information passed *into* the request for constant folding 744 /// indicates whether the subexpression is "evaluated" or not according to C 745 /// rules. For example, the RHS of (0 && foo()) is not evaluated. We can 746 /// evaluate the expression regardless of what the RHS is, but C only allows 747 /// certain things in certain situations. 748 class EvalInfo : public interp::State { 749 public: 750 ASTContext &Ctx; 751 752 /// EvalStatus - Contains information about the evaluation. 753 Expr::EvalStatus &EvalStatus; 754 755 /// CurrentCall - The top of the constexpr call stack. 756 CallStackFrame *CurrentCall; 757 758 /// CallStackDepth - The number of calls in the call stack right now. 759 unsigned CallStackDepth; 760 761 /// NextCallIndex - The next call index to assign. 762 unsigned NextCallIndex; 763 764 /// StepsLeft - The remaining number of evaluation steps we're permitted 765 /// to perform. This is essentially a limit for the number of statements 766 /// we will evaluate. 767 unsigned StepsLeft; 768 769 /// Enable the experimental new constant interpreter. If an expression is 770 /// not supported by the interpreter, an error is triggered. 771 bool EnableNewConstInterp; 772 773 /// BottomFrame - The frame in which evaluation started. This must be 774 /// initialized after CurrentCall and CallStackDepth. 775 CallStackFrame BottomFrame; 776 777 /// A stack of values whose lifetimes end at the end of some surrounding 778 /// evaluation frame. 779 llvm::SmallVector<Cleanup, 16> CleanupStack; 780 781 /// EvaluatingDecl - This is the declaration whose initializer is being 782 /// evaluated, if any. 783 APValue::LValueBase EvaluatingDecl; 784 785 enum class EvaluatingDeclKind { 786 None, 787 /// We're evaluating the construction of EvaluatingDecl. 788 Ctor, 789 /// We're evaluating the destruction of EvaluatingDecl. 790 Dtor, 791 }; 792 EvaluatingDeclKind IsEvaluatingDecl = EvaluatingDeclKind::None; 793 794 /// EvaluatingDeclValue - This is the value being constructed for the 795 /// declaration whose initializer is being evaluated, if any. 796 APValue *EvaluatingDeclValue; 797 798 /// Set of objects that are currently being constructed. 799 llvm::DenseMap<ObjectUnderConstruction, ConstructionPhase> 800 ObjectsUnderConstruction; 801 802 /// Current heap allocations, along with the location where each was 803 /// allocated. We use std::map here because we need stable addresses 804 /// for the stored APValues. 805 std::map<DynamicAllocLValue, DynAlloc, DynAllocOrder> HeapAllocs; 806 807 /// The number of heap allocations performed so far in this evaluation. 808 unsigned NumHeapAllocs = 0; 809 810 struct EvaluatingConstructorRAII { 811 EvalInfo &EI; 812 ObjectUnderConstruction Object; 813 bool DidInsert; 814 EvaluatingConstructorRAII(EvalInfo &EI, ObjectUnderConstruction Object, 815 bool HasBases) 816 : EI(EI), Object(Object) { 817 DidInsert = 818 EI.ObjectsUnderConstruction 819 .insert({Object, HasBases ? ConstructionPhase::Bases 820 : ConstructionPhase::AfterBases}) 821 .second; 822 } 823 void finishedConstructingBases() { 824 EI.ObjectsUnderConstruction[Object] = ConstructionPhase::AfterBases; 825 } 826 void finishedConstructingFields() { 827 EI.ObjectsUnderConstruction[Object] = ConstructionPhase::AfterFields; 828 } 829 ~EvaluatingConstructorRAII() { 830 if (DidInsert) EI.ObjectsUnderConstruction.erase(Object); 831 } 832 }; 833 834 struct EvaluatingDestructorRAII { 835 EvalInfo &EI; 836 ObjectUnderConstruction Object; 837 bool DidInsert; 838 EvaluatingDestructorRAII(EvalInfo &EI, ObjectUnderConstruction Object) 839 : EI(EI), Object(Object) { 840 DidInsert = EI.ObjectsUnderConstruction 841 .insert({Object, ConstructionPhase::Destroying}) 842 .second; 843 } 844 void startedDestroyingBases() { 845 EI.ObjectsUnderConstruction[Object] = 846 ConstructionPhase::DestroyingBases; 847 } 848 ~EvaluatingDestructorRAII() { 849 if (DidInsert) 850 EI.ObjectsUnderConstruction.erase(Object); 851 } 852 }; 853 854 ConstructionPhase 855 isEvaluatingCtorDtor(APValue::LValueBase Base, 856 ArrayRef<APValue::LValuePathEntry> Path) { 857 return ObjectsUnderConstruction.lookup({Base, Path}); 858 } 859 860 /// If we're currently speculatively evaluating, the outermost call stack 861 /// depth at which we can mutate state, otherwise 0. 862 unsigned SpeculativeEvaluationDepth = 0; 863 864 /// The current array initialization index, if we're performing array 865 /// initialization. 866 uint64_t ArrayInitIndex = -1; 867 868 /// HasActiveDiagnostic - Was the previous diagnostic stored? If so, further 869 /// notes attached to it will also be stored, otherwise they will not be. 870 bool HasActiveDiagnostic; 871 872 /// Have we emitted a diagnostic explaining why we couldn't constant 873 /// fold (not just why it's not strictly a constant expression)? 874 bool HasFoldFailureDiagnostic; 875 876 /// Whether or not we're in a context where the front end requires a 877 /// constant value. 878 bool InConstantContext; 879 880 /// Whether we're checking that an expression is a potential constant 881 /// expression. If so, do not fail on constructs that could become constant 882 /// later on (such as a use of an undefined global). 883 bool CheckingPotentialConstantExpression = false; 884 885 /// Whether we're checking for an expression that has undefined behavior. 886 /// If so, we will produce warnings if we encounter an operation that is 887 /// always undefined. 888 bool CheckingForUndefinedBehavior = false; 889 890 enum EvaluationMode { 891 /// Evaluate as a constant expression. Stop if we find that the expression 892 /// is not a constant expression. 893 EM_ConstantExpression, 894 895 /// Evaluate as a constant expression. Stop if we find that the expression 896 /// is not a constant expression. Some expressions can be retried in the 897 /// optimizer if we don't constant fold them here, but in an unevaluated 898 /// context we try to fold them immediately since the optimizer never 899 /// gets a chance to look at it. 900 EM_ConstantExpressionUnevaluated, 901 902 /// Fold the expression to a constant. Stop if we hit a side-effect that 903 /// we can't model. 904 EM_ConstantFold, 905 906 /// Evaluate in any way we know how. Don't worry about side-effects that 907 /// can't be modeled. 908 EM_IgnoreSideEffects, 909 } EvalMode; 910 911 /// Are we checking whether the expression is a potential constant 912 /// expression? 913 bool checkingPotentialConstantExpression() const override { 914 return CheckingPotentialConstantExpression; 915 } 916 917 /// Are we checking an expression for overflow? 918 // FIXME: We should check for any kind of undefined or suspicious behavior 919 // in such constructs, not just overflow. 920 bool checkingForUndefinedBehavior() const override { 921 return CheckingForUndefinedBehavior; 922 } 923 924 EvalInfo(const ASTContext &C, Expr::EvalStatus &S, EvaluationMode Mode) 925 : Ctx(const_cast<ASTContext &>(C)), EvalStatus(S), CurrentCall(nullptr), 926 CallStackDepth(0), NextCallIndex(1), 927 StepsLeft(C.getLangOpts().ConstexprStepLimit), 928 EnableNewConstInterp(C.getLangOpts().EnableNewConstInterp), 929 BottomFrame(*this, SourceLocation(), nullptr, nullptr, nullptr), 930 EvaluatingDecl((const ValueDecl *)nullptr), 931 EvaluatingDeclValue(nullptr), HasActiveDiagnostic(false), 932 HasFoldFailureDiagnostic(false), InConstantContext(false), 933 EvalMode(Mode) {} 934 935 ~EvalInfo() { 936 discardCleanups(); 937 } 938 939 void setEvaluatingDecl(APValue::LValueBase Base, APValue &Value, 940 EvaluatingDeclKind EDK = EvaluatingDeclKind::Ctor) { 941 EvaluatingDecl = Base; 942 IsEvaluatingDecl = EDK; 943 EvaluatingDeclValue = &Value; 944 } 945 946 bool CheckCallLimit(SourceLocation Loc) { 947 // Don't perform any constexpr calls (other than the call we're checking) 948 // when checking a potential constant expression. 949 if (checkingPotentialConstantExpression() && CallStackDepth > 1) 950 return false; 951 if (NextCallIndex == 0) { 952 // NextCallIndex has wrapped around. 953 FFDiag(Loc, diag::note_constexpr_call_limit_exceeded); 954 return false; 955 } 956 if (CallStackDepth <= getLangOpts().ConstexprCallDepth) 957 return true; 958 FFDiag(Loc, diag::note_constexpr_depth_limit_exceeded) 959 << getLangOpts().ConstexprCallDepth; 960 return false; 961 } 962 963 std::pair<CallStackFrame *, unsigned> 964 getCallFrameAndDepth(unsigned CallIndex) { 965 assert(CallIndex && "no call index in getCallFrameAndDepth"); 966 // We will eventually hit BottomFrame, which has Index 1, so Frame can't 967 // be null in this loop. 968 unsigned Depth = CallStackDepth; 969 CallStackFrame *Frame = CurrentCall; 970 while (Frame->Index > CallIndex) { 971 Frame = Frame->Caller; 972 --Depth; 973 } 974 if (Frame->Index == CallIndex) 975 return {Frame, Depth}; 976 return {nullptr, 0}; 977 } 978 979 bool nextStep(const Stmt *S) { 980 if (!StepsLeft) { 981 FFDiag(S->getBeginLoc(), diag::note_constexpr_step_limit_exceeded); 982 return false; 983 } 984 --StepsLeft; 985 return true; 986 } 987 988 APValue *createHeapAlloc(const Expr *E, QualType T, LValue &LV); 989 990 Optional<DynAlloc*> lookupDynamicAlloc(DynamicAllocLValue DA) { 991 Optional<DynAlloc*> Result; 992 auto It = HeapAllocs.find(DA); 993 if (It != HeapAllocs.end()) 994 Result = &It->second; 995 return Result; 996 } 997 998 /// Information about a stack frame for std::allocator<T>::[de]allocate. 999 struct StdAllocatorCaller { 1000 unsigned FrameIndex; 1001 QualType ElemType; 1002 explicit operator bool() const { return FrameIndex != 0; }; 1003 }; 1004 1005 StdAllocatorCaller getStdAllocatorCaller(StringRef FnName) const { 1006 for (const CallStackFrame *Call = CurrentCall; Call != &BottomFrame; 1007 Call = Call->Caller) { 1008 const auto *MD = dyn_cast_or_null<CXXMethodDecl>(Call->Callee); 1009 if (!MD) 1010 continue; 1011 const IdentifierInfo *FnII = MD->getIdentifier(); 1012 if (!FnII || !FnII->isStr(FnName)) 1013 continue; 1014 1015 const auto *CTSD = 1016 dyn_cast<ClassTemplateSpecializationDecl>(MD->getParent()); 1017 if (!CTSD) 1018 continue; 1019 1020 const IdentifierInfo *ClassII = CTSD->getIdentifier(); 1021 const TemplateArgumentList &TAL = CTSD->getTemplateArgs(); 1022 if (CTSD->isInStdNamespace() && ClassII && 1023 ClassII->isStr("allocator") && TAL.size() >= 1 && 1024 TAL[0].getKind() == TemplateArgument::Type) 1025 return {Call->Index, TAL[0].getAsType()}; 1026 } 1027 1028 return {}; 1029 } 1030 1031 void performLifetimeExtension() { 1032 // Disable the cleanups for lifetime-extended temporaries. 1033 CleanupStack.erase( 1034 std::remove_if(CleanupStack.begin(), CleanupStack.end(), 1035 [](Cleanup &C) { return C.isLifetimeExtended(); }), 1036 CleanupStack.end()); 1037 } 1038 1039 /// Throw away any remaining cleanups at the end of evaluation. If any 1040 /// cleanups would have had a side-effect, note that as an unmodeled 1041 /// side-effect and return false. Otherwise, return true. 1042 bool discardCleanups() { 1043 for (Cleanup &C : CleanupStack) { 1044 if (C.hasSideEffect() && !noteSideEffect()) { 1045 CleanupStack.clear(); 1046 return false; 1047 } 1048 } 1049 CleanupStack.clear(); 1050 return true; 1051 } 1052 1053 private: 1054 interp::Frame *getCurrentFrame() override { return CurrentCall; } 1055 const interp::Frame *getBottomFrame() const override { return &BottomFrame; } 1056 1057 bool hasActiveDiagnostic() override { return HasActiveDiagnostic; } 1058 void setActiveDiagnostic(bool Flag) override { HasActiveDiagnostic = Flag; } 1059 1060 void setFoldFailureDiagnostic(bool Flag) override { 1061 HasFoldFailureDiagnostic = Flag; 1062 } 1063 1064 Expr::EvalStatus &getEvalStatus() const override { return EvalStatus; } 1065 1066 ASTContext &getCtx() const override { return Ctx; } 1067 1068 // If we have a prior diagnostic, it will be noting that the expression 1069 // isn't a constant expression. This diagnostic is more important, 1070 // unless we require this evaluation to produce a constant expression. 1071 // 1072 // FIXME: We might want to show both diagnostics to the user in 1073 // EM_ConstantFold mode. 1074 bool hasPriorDiagnostic() override { 1075 if (!EvalStatus.Diag->empty()) { 1076 switch (EvalMode) { 1077 case EM_ConstantFold: 1078 case EM_IgnoreSideEffects: 1079 if (!HasFoldFailureDiagnostic) 1080 break; 1081 // We've already failed to fold something. Keep that diagnostic. 1082 LLVM_FALLTHROUGH; 1083 case EM_ConstantExpression: 1084 case EM_ConstantExpressionUnevaluated: 1085 setActiveDiagnostic(false); 1086 return true; 1087 } 1088 } 1089 return false; 1090 } 1091 1092 unsigned getCallStackDepth() override { return CallStackDepth; } 1093 1094 public: 1095 /// Should we continue evaluation after encountering a side-effect that we 1096 /// couldn't model? 1097 bool keepEvaluatingAfterSideEffect() { 1098 switch (EvalMode) { 1099 case EM_IgnoreSideEffects: 1100 return true; 1101 1102 case EM_ConstantExpression: 1103 case EM_ConstantExpressionUnevaluated: 1104 case EM_ConstantFold: 1105 // By default, assume any side effect might be valid in some other 1106 // evaluation of this expression from a different context. 1107 return checkingPotentialConstantExpression() || 1108 checkingForUndefinedBehavior(); 1109 } 1110 llvm_unreachable("Missed EvalMode case"); 1111 } 1112 1113 /// Note that we have had a side-effect, and determine whether we should 1114 /// keep evaluating. 1115 bool noteSideEffect() { 1116 EvalStatus.HasSideEffects = true; 1117 return keepEvaluatingAfterSideEffect(); 1118 } 1119 1120 /// Should we continue evaluation after encountering undefined behavior? 1121 bool keepEvaluatingAfterUndefinedBehavior() { 1122 switch (EvalMode) { 1123 case EM_IgnoreSideEffects: 1124 case EM_ConstantFold: 1125 return true; 1126 1127 case EM_ConstantExpression: 1128 case EM_ConstantExpressionUnevaluated: 1129 return checkingForUndefinedBehavior(); 1130 } 1131 llvm_unreachable("Missed EvalMode case"); 1132 } 1133 1134 /// Note that we hit something that was technically undefined behavior, but 1135 /// that we can evaluate past it (such as signed overflow or floating-point 1136 /// division by zero.) 1137 bool noteUndefinedBehavior() override { 1138 EvalStatus.HasUndefinedBehavior = true; 1139 return keepEvaluatingAfterUndefinedBehavior(); 1140 } 1141 1142 /// Should we continue evaluation as much as possible after encountering a 1143 /// construct which can't be reduced to a value? 1144 bool keepEvaluatingAfterFailure() const override { 1145 if (!StepsLeft) 1146 return false; 1147 1148 switch (EvalMode) { 1149 case EM_ConstantExpression: 1150 case EM_ConstantExpressionUnevaluated: 1151 case EM_ConstantFold: 1152 case EM_IgnoreSideEffects: 1153 return checkingPotentialConstantExpression() || 1154 checkingForUndefinedBehavior(); 1155 } 1156 llvm_unreachable("Missed EvalMode case"); 1157 } 1158 1159 /// Notes that we failed to evaluate an expression that other expressions 1160 /// directly depend on, and determine if we should keep evaluating. This 1161 /// should only be called if we actually intend to keep evaluating. 1162 /// 1163 /// Call noteSideEffect() instead if we may be able to ignore the value that 1164 /// we failed to evaluate, e.g. if we failed to evaluate Foo() in: 1165 /// 1166 /// (Foo(), 1) // use noteSideEffect 1167 /// (Foo() || true) // use noteSideEffect 1168 /// Foo() + 1 // use noteFailure 1169 LLVM_NODISCARD bool noteFailure() { 1170 // Failure when evaluating some expression often means there is some 1171 // subexpression whose evaluation was skipped. Therefore, (because we 1172 // don't track whether we skipped an expression when unwinding after an 1173 // evaluation failure) every evaluation failure that bubbles up from a 1174 // subexpression implies that a side-effect has potentially happened. We 1175 // skip setting the HasSideEffects flag to true until we decide to 1176 // continue evaluating after that point, which happens here. 1177 bool KeepGoing = keepEvaluatingAfterFailure(); 1178 EvalStatus.HasSideEffects |= KeepGoing; 1179 return KeepGoing; 1180 } 1181 1182 class ArrayInitLoopIndex { 1183 EvalInfo &Info; 1184 uint64_t OuterIndex; 1185 1186 public: 1187 ArrayInitLoopIndex(EvalInfo &Info) 1188 : Info(Info), OuterIndex(Info.ArrayInitIndex) { 1189 Info.ArrayInitIndex = 0; 1190 } 1191 ~ArrayInitLoopIndex() { Info.ArrayInitIndex = OuterIndex; } 1192 1193 operator uint64_t&() { return Info.ArrayInitIndex; } 1194 }; 1195 }; 1196 1197 /// Object used to treat all foldable expressions as constant expressions. 1198 struct FoldConstant { 1199 EvalInfo &Info; 1200 bool Enabled; 1201 bool HadNoPriorDiags; 1202 EvalInfo::EvaluationMode OldMode; 1203 1204 explicit FoldConstant(EvalInfo &Info, bool Enabled) 1205 : Info(Info), 1206 Enabled(Enabled), 1207 HadNoPriorDiags(Info.EvalStatus.Diag && 1208 Info.EvalStatus.Diag->empty() && 1209 !Info.EvalStatus.HasSideEffects), 1210 OldMode(Info.EvalMode) { 1211 if (Enabled) 1212 Info.EvalMode = EvalInfo::EM_ConstantFold; 1213 } 1214 void keepDiagnostics() { Enabled = false; } 1215 ~FoldConstant() { 1216 if (Enabled && HadNoPriorDiags && !Info.EvalStatus.Diag->empty() && 1217 !Info.EvalStatus.HasSideEffects) 1218 Info.EvalStatus.Diag->clear(); 1219 Info.EvalMode = OldMode; 1220 } 1221 }; 1222 1223 /// RAII object used to set the current evaluation mode to ignore 1224 /// side-effects. 1225 struct IgnoreSideEffectsRAII { 1226 EvalInfo &Info; 1227 EvalInfo::EvaluationMode OldMode; 1228 explicit IgnoreSideEffectsRAII(EvalInfo &Info) 1229 : Info(Info), OldMode(Info.EvalMode) { 1230 Info.EvalMode = EvalInfo::EM_IgnoreSideEffects; 1231 } 1232 1233 ~IgnoreSideEffectsRAII() { Info.EvalMode = OldMode; } 1234 }; 1235 1236 /// RAII object used to optionally suppress diagnostics and side-effects from 1237 /// a speculative evaluation. 1238 class SpeculativeEvaluationRAII { 1239 EvalInfo *Info = nullptr; 1240 Expr::EvalStatus OldStatus; 1241 unsigned OldSpeculativeEvaluationDepth; 1242 1243 void moveFromAndCancel(SpeculativeEvaluationRAII &&Other) { 1244 Info = Other.Info; 1245 OldStatus = Other.OldStatus; 1246 OldSpeculativeEvaluationDepth = Other.OldSpeculativeEvaluationDepth; 1247 Other.Info = nullptr; 1248 } 1249 1250 void maybeRestoreState() { 1251 if (!Info) 1252 return; 1253 1254 Info->EvalStatus = OldStatus; 1255 Info->SpeculativeEvaluationDepth = OldSpeculativeEvaluationDepth; 1256 } 1257 1258 public: 1259 SpeculativeEvaluationRAII() = default; 1260 1261 SpeculativeEvaluationRAII( 1262 EvalInfo &Info, SmallVectorImpl<PartialDiagnosticAt> *NewDiag = nullptr) 1263 : Info(&Info), OldStatus(Info.EvalStatus), 1264 OldSpeculativeEvaluationDepth(Info.SpeculativeEvaluationDepth) { 1265 Info.EvalStatus.Diag = NewDiag; 1266 Info.SpeculativeEvaluationDepth = Info.CallStackDepth + 1; 1267 } 1268 1269 SpeculativeEvaluationRAII(const SpeculativeEvaluationRAII &Other) = delete; 1270 SpeculativeEvaluationRAII(SpeculativeEvaluationRAII &&Other) { 1271 moveFromAndCancel(std::move(Other)); 1272 } 1273 1274 SpeculativeEvaluationRAII &operator=(SpeculativeEvaluationRAII &&Other) { 1275 maybeRestoreState(); 1276 moveFromAndCancel(std::move(Other)); 1277 return *this; 1278 } 1279 1280 ~SpeculativeEvaluationRAII() { maybeRestoreState(); } 1281 }; 1282 1283 /// RAII object wrapping a full-expression or block scope, and handling 1284 /// the ending of the lifetime of temporaries created within it. 1285 template<bool IsFullExpression> 1286 class ScopeRAII { 1287 EvalInfo &Info; 1288 unsigned OldStackSize; 1289 public: 1290 ScopeRAII(EvalInfo &Info) 1291 : Info(Info), OldStackSize(Info.CleanupStack.size()) { 1292 // Push a new temporary version. This is needed to distinguish between 1293 // temporaries created in different iterations of a loop. 1294 Info.CurrentCall->pushTempVersion(); 1295 } 1296 bool destroy(bool RunDestructors = true) { 1297 bool OK = cleanup(Info, RunDestructors, OldStackSize); 1298 OldStackSize = -1U; 1299 return OK; 1300 } 1301 ~ScopeRAII() { 1302 if (OldStackSize != -1U) 1303 destroy(false); 1304 // Body moved to a static method to encourage the compiler to inline away 1305 // instances of this class. 1306 Info.CurrentCall->popTempVersion(); 1307 } 1308 private: 1309 static bool cleanup(EvalInfo &Info, bool RunDestructors, 1310 unsigned OldStackSize) { 1311 assert(OldStackSize <= Info.CleanupStack.size() && 1312 "running cleanups out of order?"); 1313 1314 // Run all cleanups for a block scope, and non-lifetime-extended cleanups 1315 // for a full-expression scope. 1316 bool Success = true; 1317 for (unsigned I = Info.CleanupStack.size(); I > OldStackSize; --I) { 1318 if (!(IsFullExpression && 1319 Info.CleanupStack[I - 1].isLifetimeExtended())) { 1320 if (!Info.CleanupStack[I - 1].endLifetime(Info, RunDestructors)) { 1321 Success = false; 1322 break; 1323 } 1324 } 1325 } 1326 1327 // Compact lifetime-extended cleanups. 1328 auto NewEnd = Info.CleanupStack.begin() + OldStackSize; 1329 if (IsFullExpression) 1330 NewEnd = 1331 std::remove_if(NewEnd, Info.CleanupStack.end(), 1332 [](Cleanup &C) { return !C.isLifetimeExtended(); }); 1333 Info.CleanupStack.erase(NewEnd, Info.CleanupStack.end()); 1334 return Success; 1335 } 1336 }; 1337 typedef ScopeRAII<false> BlockScopeRAII; 1338 typedef ScopeRAII<true> FullExpressionRAII; 1339 } 1340 1341 bool SubobjectDesignator::checkSubobject(EvalInfo &Info, const Expr *E, 1342 CheckSubobjectKind CSK) { 1343 if (Invalid) 1344 return false; 1345 if (isOnePastTheEnd()) { 1346 Info.CCEDiag(E, diag::note_constexpr_past_end_subobject) 1347 << CSK; 1348 setInvalid(); 1349 return false; 1350 } 1351 // Note, we do not diagnose if isMostDerivedAnUnsizedArray(), because there 1352 // must actually be at least one array element; even a VLA cannot have a 1353 // bound of zero. And if our index is nonzero, we already had a CCEDiag. 1354 return true; 1355 } 1356 1357 void SubobjectDesignator::diagnoseUnsizedArrayPointerArithmetic(EvalInfo &Info, 1358 const Expr *E) { 1359 Info.CCEDiag(E, diag::note_constexpr_unsized_array_indexed); 1360 // Do not set the designator as invalid: we can represent this situation, 1361 // and correct handling of __builtin_object_size requires us to do so. 1362 } 1363 1364 void SubobjectDesignator::diagnosePointerArithmetic(EvalInfo &Info, 1365 const Expr *E, 1366 const APSInt &N) { 1367 // If we're complaining, we must be able to statically determine the size of 1368 // the most derived array. 1369 if (MostDerivedPathLength == Entries.size() && MostDerivedIsArrayElement) 1370 Info.CCEDiag(E, diag::note_constexpr_array_index) 1371 << N << /*array*/ 0 1372 << static_cast<unsigned>(getMostDerivedArraySize()); 1373 else 1374 Info.CCEDiag(E, diag::note_constexpr_array_index) 1375 << N << /*non-array*/ 1; 1376 setInvalid(); 1377 } 1378 1379 CallStackFrame::CallStackFrame(EvalInfo &Info, SourceLocation CallLoc, 1380 const FunctionDecl *Callee, const LValue *This, 1381 APValue *Arguments) 1382 : Info(Info), Caller(Info.CurrentCall), Callee(Callee), This(This), 1383 Arguments(Arguments), CallLoc(CallLoc), Index(Info.NextCallIndex++) { 1384 Info.CurrentCall = this; 1385 ++Info.CallStackDepth; 1386 } 1387 1388 CallStackFrame::~CallStackFrame() { 1389 assert(Info.CurrentCall == this && "calls retired out of order"); 1390 --Info.CallStackDepth; 1391 Info.CurrentCall = Caller; 1392 } 1393 1394 static bool isRead(AccessKinds AK) { 1395 return AK == AK_Read || AK == AK_ReadObjectRepresentation; 1396 } 1397 1398 static bool isModification(AccessKinds AK) { 1399 switch (AK) { 1400 case AK_Read: 1401 case AK_ReadObjectRepresentation: 1402 case AK_MemberCall: 1403 case AK_DynamicCast: 1404 case AK_TypeId: 1405 return false; 1406 case AK_Assign: 1407 case AK_Increment: 1408 case AK_Decrement: 1409 case AK_Construct: 1410 case AK_Destroy: 1411 return true; 1412 } 1413 llvm_unreachable("unknown access kind"); 1414 } 1415 1416 static bool isAnyAccess(AccessKinds AK) { 1417 return isRead(AK) || isModification(AK); 1418 } 1419 1420 /// Is this an access per the C++ definition? 1421 static bool isFormalAccess(AccessKinds AK) { 1422 return isAnyAccess(AK) && AK != AK_Construct && AK != AK_Destroy; 1423 } 1424 1425 /// Is this kind of axcess valid on an indeterminate object value? 1426 static bool isValidIndeterminateAccess(AccessKinds AK) { 1427 switch (AK) { 1428 case AK_Read: 1429 case AK_Increment: 1430 case AK_Decrement: 1431 // These need the object's value. 1432 return false; 1433 1434 case AK_ReadObjectRepresentation: 1435 case AK_Assign: 1436 case AK_Construct: 1437 case AK_Destroy: 1438 // Construction and destruction don't need the value. 1439 return true; 1440 1441 case AK_MemberCall: 1442 case AK_DynamicCast: 1443 case AK_TypeId: 1444 // These aren't really meaningful on scalars. 1445 return true; 1446 } 1447 llvm_unreachable("unknown access kind"); 1448 } 1449 1450 namespace { 1451 struct ComplexValue { 1452 private: 1453 bool IsInt; 1454 1455 public: 1456 APSInt IntReal, IntImag; 1457 APFloat FloatReal, FloatImag; 1458 1459 ComplexValue() : FloatReal(APFloat::Bogus()), FloatImag(APFloat::Bogus()) {} 1460 1461 void makeComplexFloat() { IsInt = false; } 1462 bool isComplexFloat() const { return !IsInt; } 1463 APFloat &getComplexFloatReal() { return FloatReal; } 1464 APFloat &getComplexFloatImag() { return FloatImag; } 1465 1466 void makeComplexInt() { IsInt = true; } 1467 bool isComplexInt() const { return IsInt; } 1468 APSInt &getComplexIntReal() { return IntReal; } 1469 APSInt &getComplexIntImag() { return IntImag; } 1470 1471 void moveInto(APValue &v) const { 1472 if (isComplexFloat()) 1473 v = APValue(FloatReal, FloatImag); 1474 else 1475 v = APValue(IntReal, IntImag); 1476 } 1477 void setFrom(const APValue &v) { 1478 assert(v.isComplexFloat() || v.isComplexInt()); 1479 if (v.isComplexFloat()) { 1480 makeComplexFloat(); 1481 FloatReal = v.getComplexFloatReal(); 1482 FloatImag = v.getComplexFloatImag(); 1483 } else { 1484 makeComplexInt(); 1485 IntReal = v.getComplexIntReal(); 1486 IntImag = v.getComplexIntImag(); 1487 } 1488 } 1489 }; 1490 1491 struct LValue { 1492 APValue::LValueBase Base; 1493 CharUnits Offset; 1494 SubobjectDesignator Designator; 1495 bool IsNullPtr : 1; 1496 bool InvalidBase : 1; 1497 1498 const APValue::LValueBase getLValueBase() const { return Base; } 1499 CharUnits &getLValueOffset() { return Offset; } 1500 const CharUnits &getLValueOffset() const { return Offset; } 1501 SubobjectDesignator &getLValueDesignator() { return Designator; } 1502 const SubobjectDesignator &getLValueDesignator() const { return Designator;} 1503 bool isNullPointer() const { return IsNullPtr;} 1504 1505 unsigned getLValueCallIndex() const { return Base.getCallIndex(); } 1506 unsigned getLValueVersion() const { return Base.getVersion(); } 1507 1508 void moveInto(APValue &V) const { 1509 if (Designator.Invalid) 1510 V = APValue(Base, Offset, APValue::NoLValuePath(), IsNullPtr); 1511 else { 1512 assert(!InvalidBase && "APValues can't handle invalid LValue bases"); 1513 V = APValue(Base, Offset, Designator.Entries, 1514 Designator.IsOnePastTheEnd, IsNullPtr); 1515 } 1516 } 1517 void setFrom(ASTContext &Ctx, const APValue &V) { 1518 assert(V.isLValue() && "Setting LValue from a non-LValue?"); 1519 Base = V.getLValueBase(); 1520 Offset = V.getLValueOffset(); 1521 InvalidBase = false; 1522 Designator = SubobjectDesignator(Ctx, V); 1523 IsNullPtr = V.isNullPointer(); 1524 } 1525 1526 void set(APValue::LValueBase B, bool BInvalid = false) { 1527 #ifndef NDEBUG 1528 // We only allow a few types of invalid bases. Enforce that here. 1529 if (BInvalid) { 1530 const auto *E = B.get<const Expr *>(); 1531 assert((isa<MemberExpr>(E) || tryUnwrapAllocSizeCall(E)) && 1532 "Unexpected type of invalid base"); 1533 } 1534 #endif 1535 1536 Base = B; 1537 Offset = CharUnits::fromQuantity(0); 1538 InvalidBase = BInvalid; 1539 Designator = SubobjectDesignator(getType(B)); 1540 IsNullPtr = false; 1541 } 1542 1543 void setNull(ASTContext &Ctx, QualType PointerTy) { 1544 Base = (Expr *)nullptr; 1545 Offset = 1546 CharUnits::fromQuantity(Ctx.getTargetNullPointerValue(PointerTy)); 1547 InvalidBase = false; 1548 Designator = SubobjectDesignator(PointerTy->getPointeeType()); 1549 IsNullPtr = true; 1550 } 1551 1552 void setInvalid(APValue::LValueBase B, unsigned I = 0) { 1553 set(B, true); 1554 } 1555 1556 std::string toString(ASTContext &Ctx, QualType T) const { 1557 APValue Printable; 1558 moveInto(Printable); 1559 return Printable.getAsString(Ctx, T); 1560 } 1561 1562 private: 1563 // Check that this LValue is not based on a null pointer. If it is, produce 1564 // a diagnostic and mark the designator as invalid. 1565 template <typename GenDiagType> 1566 bool checkNullPointerDiagnosingWith(const GenDiagType &GenDiag) { 1567 if (Designator.Invalid) 1568 return false; 1569 if (IsNullPtr) { 1570 GenDiag(); 1571 Designator.setInvalid(); 1572 return false; 1573 } 1574 return true; 1575 } 1576 1577 public: 1578 bool checkNullPointer(EvalInfo &Info, const Expr *E, 1579 CheckSubobjectKind CSK) { 1580 return checkNullPointerDiagnosingWith([&Info, E, CSK] { 1581 Info.CCEDiag(E, diag::note_constexpr_null_subobject) << CSK; 1582 }); 1583 } 1584 1585 bool checkNullPointerForFoldAccess(EvalInfo &Info, const Expr *E, 1586 AccessKinds AK) { 1587 return checkNullPointerDiagnosingWith([&Info, E, AK] { 1588 Info.FFDiag(E, diag::note_constexpr_access_null) << AK; 1589 }); 1590 } 1591 1592 // Check this LValue refers to an object. If not, set the designator to be 1593 // invalid and emit a diagnostic. 1594 bool checkSubobject(EvalInfo &Info, const Expr *E, CheckSubobjectKind CSK) { 1595 return (CSK == CSK_ArrayToPointer || checkNullPointer(Info, E, CSK)) && 1596 Designator.checkSubobject(Info, E, CSK); 1597 } 1598 1599 void addDecl(EvalInfo &Info, const Expr *E, 1600 const Decl *D, bool Virtual = false) { 1601 if (checkSubobject(Info, E, isa<FieldDecl>(D) ? CSK_Field : CSK_Base)) 1602 Designator.addDeclUnchecked(D, Virtual); 1603 } 1604 void addUnsizedArray(EvalInfo &Info, const Expr *E, QualType ElemTy) { 1605 if (!Designator.Entries.empty()) { 1606 Info.CCEDiag(E, diag::note_constexpr_unsupported_unsized_array); 1607 Designator.setInvalid(); 1608 return; 1609 } 1610 if (checkSubobject(Info, E, CSK_ArrayToPointer)) { 1611 assert(getType(Base)->isPointerType() || getType(Base)->isArrayType()); 1612 Designator.FirstEntryIsAnUnsizedArray = true; 1613 Designator.addUnsizedArrayUnchecked(ElemTy); 1614 } 1615 } 1616 void addArray(EvalInfo &Info, const Expr *E, const ConstantArrayType *CAT) { 1617 if (checkSubobject(Info, E, CSK_ArrayToPointer)) 1618 Designator.addArrayUnchecked(CAT); 1619 } 1620 void addComplex(EvalInfo &Info, const Expr *E, QualType EltTy, bool Imag) { 1621 if (checkSubobject(Info, E, Imag ? CSK_Imag : CSK_Real)) 1622 Designator.addComplexUnchecked(EltTy, Imag); 1623 } 1624 void clearIsNullPointer() { 1625 IsNullPtr = false; 1626 } 1627 void adjustOffsetAndIndex(EvalInfo &Info, const Expr *E, 1628 const APSInt &Index, CharUnits ElementSize) { 1629 // An index of 0 has no effect. (In C, adding 0 to a null pointer is UB, 1630 // but we're not required to diagnose it and it's valid in C++.) 1631 if (!Index) 1632 return; 1633 1634 // Compute the new offset in the appropriate width, wrapping at 64 bits. 1635 // FIXME: When compiling for a 32-bit target, we should use 32-bit 1636 // offsets. 1637 uint64_t Offset64 = Offset.getQuantity(); 1638 uint64_t ElemSize64 = ElementSize.getQuantity(); 1639 uint64_t Index64 = Index.extOrTrunc(64).getZExtValue(); 1640 Offset = CharUnits::fromQuantity(Offset64 + ElemSize64 * Index64); 1641 1642 if (checkNullPointer(Info, E, CSK_ArrayIndex)) 1643 Designator.adjustIndex(Info, E, Index); 1644 clearIsNullPointer(); 1645 } 1646 void adjustOffset(CharUnits N) { 1647 Offset += N; 1648 if (N.getQuantity()) 1649 clearIsNullPointer(); 1650 } 1651 }; 1652 1653 struct MemberPtr { 1654 MemberPtr() {} 1655 explicit MemberPtr(const ValueDecl *Decl) : 1656 DeclAndIsDerivedMember(Decl, false), Path() {} 1657 1658 /// The member or (direct or indirect) field referred to by this member 1659 /// pointer, or 0 if this is a null member pointer. 1660 const ValueDecl *getDecl() const { 1661 return DeclAndIsDerivedMember.getPointer(); 1662 } 1663 /// Is this actually a member of some type derived from the relevant class? 1664 bool isDerivedMember() const { 1665 return DeclAndIsDerivedMember.getInt(); 1666 } 1667 /// Get the class which the declaration actually lives in. 1668 const CXXRecordDecl *getContainingRecord() const { 1669 return cast<CXXRecordDecl>( 1670 DeclAndIsDerivedMember.getPointer()->getDeclContext()); 1671 } 1672 1673 void moveInto(APValue &V) const { 1674 V = APValue(getDecl(), isDerivedMember(), Path); 1675 } 1676 void setFrom(const APValue &V) { 1677 assert(V.isMemberPointer()); 1678 DeclAndIsDerivedMember.setPointer(V.getMemberPointerDecl()); 1679 DeclAndIsDerivedMember.setInt(V.isMemberPointerToDerivedMember()); 1680 Path.clear(); 1681 ArrayRef<const CXXRecordDecl*> P = V.getMemberPointerPath(); 1682 Path.insert(Path.end(), P.begin(), P.end()); 1683 } 1684 1685 /// DeclAndIsDerivedMember - The member declaration, and a flag indicating 1686 /// whether the member is a member of some class derived from the class type 1687 /// of the member pointer. 1688 llvm::PointerIntPair<const ValueDecl*, 1, bool> DeclAndIsDerivedMember; 1689 /// Path - The path of base/derived classes from the member declaration's 1690 /// class (exclusive) to the class type of the member pointer (inclusive). 1691 SmallVector<const CXXRecordDecl*, 4> Path; 1692 1693 /// Perform a cast towards the class of the Decl (either up or down the 1694 /// hierarchy). 1695 bool castBack(const CXXRecordDecl *Class) { 1696 assert(!Path.empty()); 1697 const CXXRecordDecl *Expected; 1698 if (Path.size() >= 2) 1699 Expected = Path[Path.size() - 2]; 1700 else 1701 Expected = getContainingRecord(); 1702 if (Expected->getCanonicalDecl() != Class->getCanonicalDecl()) { 1703 // C++11 [expr.static.cast]p12: In a conversion from (D::*) to (B::*), 1704 // if B does not contain the original member and is not a base or 1705 // derived class of the class containing the original member, the result 1706 // of the cast is undefined. 1707 // C++11 [conv.mem]p2 does not cover this case for a cast from (B::*) to 1708 // (D::*). We consider that to be a language defect. 1709 return false; 1710 } 1711 Path.pop_back(); 1712 return true; 1713 } 1714 /// Perform a base-to-derived member pointer cast. 1715 bool castToDerived(const CXXRecordDecl *Derived) { 1716 if (!getDecl()) 1717 return true; 1718 if (!isDerivedMember()) { 1719 Path.push_back(Derived); 1720 return true; 1721 } 1722 if (!castBack(Derived)) 1723 return false; 1724 if (Path.empty()) 1725 DeclAndIsDerivedMember.setInt(false); 1726 return true; 1727 } 1728 /// Perform a derived-to-base member pointer cast. 1729 bool castToBase(const CXXRecordDecl *Base) { 1730 if (!getDecl()) 1731 return true; 1732 if (Path.empty()) 1733 DeclAndIsDerivedMember.setInt(true); 1734 if (isDerivedMember()) { 1735 Path.push_back(Base); 1736 return true; 1737 } 1738 return castBack(Base); 1739 } 1740 }; 1741 1742 /// Compare two member pointers, which are assumed to be of the same type. 1743 static bool operator==(const MemberPtr &LHS, const MemberPtr &RHS) { 1744 if (!LHS.getDecl() || !RHS.getDecl()) 1745 return !LHS.getDecl() && !RHS.getDecl(); 1746 if (LHS.getDecl()->getCanonicalDecl() != RHS.getDecl()->getCanonicalDecl()) 1747 return false; 1748 return LHS.Path == RHS.Path; 1749 } 1750 } 1751 1752 static bool Evaluate(APValue &Result, EvalInfo &Info, const Expr *E); 1753 static bool EvaluateInPlace(APValue &Result, EvalInfo &Info, 1754 const LValue &This, const Expr *E, 1755 bool AllowNonLiteralTypes = false); 1756 static bool EvaluateLValue(const Expr *E, LValue &Result, EvalInfo &Info, 1757 bool InvalidBaseOK = false); 1758 static bool EvaluatePointer(const Expr *E, LValue &Result, EvalInfo &Info, 1759 bool InvalidBaseOK = false); 1760 static bool EvaluateMemberPointer(const Expr *E, MemberPtr &Result, 1761 EvalInfo &Info); 1762 static bool EvaluateTemporary(const Expr *E, LValue &Result, EvalInfo &Info); 1763 static bool EvaluateInteger(const Expr *E, APSInt &Result, EvalInfo &Info); 1764 static bool EvaluateIntegerOrLValue(const Expr *E, APValue &Result, 1765 EvalInfo &Info); 1766 static bool EvaluateFloat(const Expr *E, APFloat &Result, EvalInfo &Info); 1767 static bool EvaluateComplex(const Expr *E, ComplexValue &Res, EvalInfo &Info); 1768 static bool EvaluateAtomic(const Expr *E, const LValue *This, APValue &Result, 1769 EvalInfo &Info); 1770 static bool EvaluateAsRValue(EvalInfo &Info, const Expr *E, APValue &Result); 1771 1772 /// Evaluate an integer or fixed point expression into an APResult. 1773 static bool EvaluateFixedPointOrInteger(const Expr *E, APFixedPoint &Result, 1774 EvalInfo &Info); 1775 1776 /// Evaluate only a fixed point expression into an APResult. 1777 static bool EvaluateFixedPoint(const Expr *E, APFixedPoint &Result, 1778 EvalInfo &Info); 1779 1780 //===----------------------------------------------------------------------===// 1781 // Misc utilities 1782 //===----------------------------------------------------------------------===// 1783 1784 /// Negate an APSInt in place, converting it to a signed form if necessary, and 1785 /// preserving its value (by extending by up to one bit as needed). 1786 static void negateAsSigned(APSInt &Int) { 1787 if (Int.isUnsigned() || Int.isMinSignedValue()) { 1788 Int = Int.extend(Int.getBitWidth() + 1); 1789 Int.setIsSigned(true); 1790 } 1791 Int = -Int; 1792 } 1793 1794 template<typename KeyT> 1795 APValue &CallStackFrame::createTemporary(const KeyT *Key, QualType T, 1796 bool IsLifetimeExtended, LValue &LV) { 1797 unsigned Version = getTempVersion(); 1798 APValue::LValueBase Base(Key, Index, Version); 1799 LV.set(Base); 1800 APValue &Result = Temporaries[MapKeyTy(Key, Version)]; 1801 assert(Result.isAbsent() && "temporary created multiple times"); 1802 1803 // If we're creating a temporary immediately in the operand of a speculative 1804 // evaluation, don't register a cleanup to be run outside the speculative 1805 // evaluation context, since we won't actually be able to initialize this 1806 // object. 1807 if (Index <= Info.SpeculativeEvaluationDepth) { 1808 if (T.isDestructedType()) 1809 Info.noteSideEffect(); 1810 } else { 1811 Info.CleanupStack.push_back(Cleanup(&Result, Base, T, IsLifetimeExtended)); 1812 } 1813 return Result; 1814 } 1815 1816 APValue *EvalInfo::createHeapAlloc(const Expr *E, QualType T, LValue &LV) { 1817 if (NumHeapAllocs > DynamicAllocLValue::getMaxIndex()) { 1818 FFDiag(E, diag::note_constexpr_heap_alloc_limit_exceeded); 1819 return nullptr; 1820 } 1821 1822 DynamicAllocLValue DA(NumHeapAllocs++); 1823 LV.set(APValue::LValueBase::getDynamicAlloc(DA, T)); 1824 auto Result = HeapAllocs.emplace(std::piecewise_construct, 1825 std::forward_as_tuple(DA), std::tuple<>()); 1826 assert(Result.second && "reused a heap alloc index?"); 1827 Result.first->second.AllocExpr = E; 1828 return &Result.first->second.Value; 1829 } 1830 1831 /// Produce a string describing the given constexpr call. 1832 void CallStackFrame::describe(raw_ostream &Out) { 1833 unsigned ArgIndex = 0; 1834 bool IsMemberCall = isa<CXXMethodDecl>(Callee) && 1835 !isa<CXXConstructorDecl>(Callee) && 1836 cast<CXXMethodDecl>(Callee)->isInstance(); 1837 1838 if (!IsMemberCall) 1839 Out << *Callee << '('; 1840 1841 if (This && IsMemberCall) { 1842 APValue Val; 1843 This->moveInto(Val); 1844 Val.printPretty(Out, Info.Ctx, 1845 This->Designator.MostDerivedType); 1846 // FIXME: Add parens around Val if needed. 1847 Out << "->" << *Callee << '('; 1848 IsMemberCall = false; 1849 } 1850 1851 for (FunctionDecl::param_const_iterator I = Callee->param_begin(), 1852 E = Callee->param_end(); I != E; ++I, ++ArgIndex) { 1853 if (ArgIndex > (unsigned)IsMemberCall) 1854 Out << ", "; 1855 1856 const ParmVarDecl *Param = *I; 1857 const APValue &Arg = Arguments[ArgIndex]; 1858 Arg.printPretty(Out, Info.Ctx, Param->getType()); 1859 1860 if (ArgIndex == 0 && IsMemberCall) 1861 Out << "->" << *Callee << '('; 1862 } 1863 1864 Out << ')'; 1865 } 1866 1867 /// Evaluate an expression to see if it had side-effects, and discard its 1868 /// result. 1869 /// \return \c true if the caller should keep evaluating. 1870 static bool EvaluateIgnoredValue(EvalInfo &Info, const Expr *E) { 1871 APValue Scratch; 1872 if (!Evaluate(Scratch, Info, E)) 1873 // We don't need the value, but we might have skipped a side effect here. 1874 return Info.noteSideEffect(); 1875 return true; 1876 } 1877 1878 /// Should this call expression be treated as a string literal? 1879 static bool IsStringLiteralCall(const CallExpr *E) { 1880 unsigned Builtin = E->getBuiltinCallee(); 1881 return (Builtin == Builtin::BI__builtin___CFStringMakeConstantString || 1882 Builtin == Builtin::BI__builtin___NSStringMakeConstantString); 1883 } 1884 1885 static bool IsGlobalLValue(APValue::LValueBase B) { 1886 // C++11 [expr.const]p3 An address constant expression is a prvalue core 1887 // constant expression of pointer type that evaluates to... 1888 1889 // ... a null pointer value, or a prvalue core constant expression of type 1890 // std::nullptr_t. 1891 if (!B) return true; 1892 1893 if (const ValueDecl *D = B.dyn_cast<const ValueDecl*>()) { 1894 // ... the address of an object with static storage duration, 1895 if (const VarDecl *VD = dyn_cast<VarDecl>(D)) 1896 return VD->hasGlobalStorage(); 1897 // ... the address of a function, 1898 return isa<FunctionDecl>(D); 1899 } 1900 1901 if (B.is<TypeInfoLValue>() || B.is<DynamicAllocLValue>()) 1902 return true; 1903 1904 const Expr *E = B.get<const Expr*>(); 1905 switch (E->getStmtClass()) { 1906 default: 1907 return false; 1908 case Expr::CompoundLiteralExprClass: { 1909 const CompoundLiteralExpr *CLE = cast<CompoundLiteralExpr>(E); 1910 return CLE->isFileScope() && CLE->isLValue(); 1911 } 1912 case Expr::MaterializeTemporaryExprClass: 1913 // A materialized temporary might have been lifetime-extended to static 1914 // storage duration. 1915 return cast<MaterializeTemporaryExpr>(E)->getStorageDuration() == SD_Static; 1916 // A string literal has static storage duration. 1917 case Expr::StringLiteralClass: 1918 case Expr::PredefinedExprClass: 1919 case Expr::ObjCStringLiteralClass: 1920 case Expr::ObjCEncodeExprClass: 1921 case Expr::CXXUuidofExprClass: 1922 return true; 1923 case Expr::ObjCBoxedExprClass: 1924 return cast<ObjCBoxedExpr>(E)->isExpressibleAsConstantInitializer(); 1925 case Expr::CallExprClass: 1926 return IsStringLiteralCall(cast<CallExpr>(E)); 1927 // For GCC compatibility, &&label has static storage duration. 1928 case Expr::AddrLabelExprClass: 1929 return true; 1930 // A Block literal expression may be used as the initialization value for 1931 // Block variables at global or local static scope. 1932 case Expr::BlockExprClass: 1933 return !cast<BlockExpr>(E)->getBlockDecl()->hasCaptures(); 1934 case Expr::ImplicitValueInitExprClass: 1935 // FIXME: 1936 // We can never form an lvalue with an implicit value initialization as its 1937 // base through expression evaluation, so these only appear in one case: the 1938 // implicit variable declaration we invent when checking whether a constexpr 1939 // constructor can produce a constant expression. We must assume that such 1940 // an expression might be a global lvalue. 1941 return true; 1942 } 1943 } 1944 1945 static const ValueDecl *GetLValueBaseDecl(const LValue &LVal) { 1946 return LVal.Base.dyn_cast<const ValueDecl*>(); 1947 } 1948 1949 static bool IsLiteralLValue(const LValue &Value) { 1950 if (Value.getLValueCallIndex()) 1951 return false; 1952 const Expr *E = Value.Base.dyn_cast<const Expr*>(); 1953 return E && !isa<MaterializeTemporaryExpr>(E); 1954 } 1955 1956 static bool IsWeakLValue(const LValue &Value) { 1957 const ValueDecl *Decl = GetLValueBaseDecl(Value); 1958 return Decl && Decl->isWeak(); 1959 } 1960 1961 static bool isZeroSized(const LValue &Value) { 1962 const ValueDecl *Decl = GetLValueBaseDecl(Value); 1963 if (Decl && isa<VarDecl>(Decl)) { 1964 QualType Ty = Decl->getType(); 1965 if (Ty->isArrayType()) 1966 return Ty->isIncompleteType() || 1967 Decl->getASTContext().getTypeSize(Ty) == 0; 1968 } 1969 return false; 1970 } 1971 1972 static bool HasSameBase(const LValue &A, const LValue &B) { 1973 if (!A.getLValueBase()) 1974 return !B.getLValueBase(); 1975 if (!B.getLValueBase()) 1976 return false; 1977 1978 if (A.getLValueBase().getOpaqueValue() != 1979 B.getLValueBase().getOpaqueValue()) { 1980 const Decl *ADecl = GetLValueBaseDecl(A); 1981 if (!ADecl) 1982 return false; 1983 const Decl *BDecl = GetLValueBaseDecl(B); 1984 if (!BDecl || ADecl->getCanonicalDecl() != BDecl->getCanonicalDecl()) 1985 return false; 1986 } 1987 1988 return IsGlobalLValue(A.getLValueBase()) || 1989 (A.getLValueCallIndex() == B.getLValueCallIndex() && 1990 A.getLValueVersion() == B.getLValueVersion()); 1991 } 1992 1993 static void NoteLValueLocation(EvalInfo &Info, APValue::LValueBase Base) { 1994 assert(Base && "no location for a null lvalue"); 1995 const ValueDecl *VD = Base.dyn_cast<const ValueDecl*>(); 1996 if (VD) 1997 Info.Note(VD->getLocation(), diag::note_declared_at); 1998 else if (const Expr *E = Base.dyn_cast<const Expr*>()) 1999 Info.Note(E->getExprLoc(), diag::note_constexpr_temporary_here); 2000 else if (DynamicAllocLValue DA = Base.dyn_cast<DynamicAllocLValue>()) { 2001 // FIXME: Produce a note for dangling pointers too. 2002 if (Optional<DynAlloc*> Alloc = Info.lookupDynamicAlloc(DA)) 2003 Info.Note((*Alloc)->AllocExpr->getExprLoc(), 2004 diag::note_constexpr_dynamic_alloc_here); 2005 } 2006 // We have no information to show for a typeid(T) object. 2007 } 2008 2009 enum class CheckEvaluationResultKind { 2010 ConstantExpression, 2011 FullyInitialized, 2012 }; 2013 2014 /// Materialized temporaries that we've already checked to determine if they're 2015 /// initializsed by a constant expression. 2016 using CheckedTemporaries = 2017 llvm::SmallPtrSet<const MaterializeTemporaryExpr *, 8>; 2018 2019 static bool CheckEvaluationResult(CheckEvaluationResultKind CERK, 2020 EvalInfo &Info, SourceLocation DiagLoc, 2021 QualType Type, const APValue &Value, 2022 Expr::ConstExprUsage Usage, 2023 SourceLocation SubobjectLoc, 2024 CheckedTemporaries &CheckedTemps); 2025 2026 /// Check that this reference or pointer core constant expression is a valid 2027 /// value for an address or reference constant expression. Return true if we 2028 /// can fold this expression, whether or not it's a constant expression. 2029 static bool CheckLValueConstantExpression(EvalInfo &Info, SourceLocation Loc, 2030 QualType Type, const LValue &LVal, 2031 Expr::ConstExprUsage Usage, 2032 CheckedTemporaries &CheckedTemps) { 2033 bool IsReferenceType = Type->isReferenceType(); 2034 2035 APValue::LValueBase Base = LVal.getLValueBase(); 2036 const SubobjectDesignator &Designator = LVal.getLValueDesignator(); 2037 2038 if (auto *VD = LVal.getLValueBase().dyn_cast<const ValueDecl *>()) { 2039 if (auto *FD = dyn_cast<FunctionDecl>(VD)) { 2040 if (FD->isConsteval()) { 2041 Info.FFDiag(Loc, diag::note_consteval_address_accessible) 2042 << !Type->isAnyPointerType(); 2043 Info.Note(FD->getLocation(), diag::note_declared_at); 2044 return false; 2045 } 2046 } 2047 } 2048 2049 // Check that the object is a global. Note that the fake 'this' object we 2050 // manufacture when checking potential constant expressions is conservatively 2051 // assumed to be global here. 2052 if (!IsGlobalLValue(Base)) { 2053 if (Info.getLangOpts().CPlusPlus11) { 2054 const ValueDecl *VD = Base.dyn_cast<const ValueDecl*>(); 2055 Info.FFDiag(Loc, diag::note_constexpr_non_global, 1) 2056 << IsReferenceType << !Designator.Entries.empty() 2057 << !!VD << VD; 2058 NoteLValueLocation(Info, Base); 2059 } else { 2060 Info.FFDiag(Loc); 2061 } 2062 // Don't allow references to temporaries to escape. 2063 return false; 2064 } 2065 assert((Info.checkingPotentialConstantExpression() || 2066 LVal.getLValueCallIndex() == 0) && 2067 "have call index for global lvalue"); 2068 2069 if (Base.is<DynamicAllocLValue>()) { 2070 Info.FFDiag(Loc, diag::note_constexpr_dynamic_alloc) 2071 << IsReferenceType << !Designator.Entries.empty(); 2072 NoteLValueLocation(Info, Base); 2073 return false; 2074 } 2075 2076 if (const ValueDecl *VD = Base.dyn_cast<const ValueDecl*>()) { 2077 if (const VarDecl *Var = dyn_cast<const VarDecl>(VD)) { 2078 // Check if this is a thread-local variable. 2079 if (Var->getTLSKind()) 2080 // FIXME: Diagnostic! 2081 return false; 2082 2083 // A dllimport variable never acts like a constant. 2084 if (Usage == Expr::EvaluateForCodeGen && Var->hasAttr<DLLImportAttr>()) 2085 // FIXME: Diagnostic! 2086 return false; 2087 } 2088 if (const auto *FD = dyn_cast<const FunctionDecl>(VD)) { 2089 // __declspec(dllimport) must be handled very carefully: 2090 // We must never initialize an expression with the thunk in C++. 2091 // Doing otherwise would allow the same id-expression to yield 2092 // different addresses for the same function in different translation 2093 // units. However, this means that we must dynamically initialize the 2094 // expression with the contents of the import address table at runtime. 2095 // 2096 // The C language has no notion of ODR; furthermore, it has no notion of 2097 // dynamic initialization. This means that we are permitted to 2098 // perform initialization with the address of the thunk. 2099 if (Info.getLangOpts().CPlusPlus && Usage == Expr::EvaluateForCodeGen && 2100 FD->hasAttr<DLLImportAttr>()) 2101 // FIXME: Diagnostic! 2102 return false; 2103 } 2104 } else if (const auto *MTE = dyn_cast_or_null<MaterializeTemporaryExpr>( 2105 Base.dyn_cast<const Expr *>())) { 2106 if (CheckedTemps.insert(MTE).second) { 2107 QualType TempType = getType(Base); 2108 if (TempType.isDestructedType()) { 2109 Info.FFDiag(MTE->getExprLoc(), 2110 diag::note_constexpr_unsupported_tempoarary_nontrivial_dtor) 2111 << TempType; 2112 return false; 2113 } 2114 2115 APValue *V = MTE->getOrCreateValue(false); 2116 assert(V && "evasluation result refers to uninitialised temporary"); 2117 if (!CheckEvaluationResult(CheckEvaluationResultKind::ConstantExpression, 2118 Info, MTE->getExprLoc(), TempType, *V, 2119 Usage, SourceLocation(), CheckedTemps)) 2120 return false; 2121 } 2122 } 2123 2124 // Allow address constant expressions to be past-the-end pointers. This is 2125 // an extension: the standard requires them to point to an object. 2126 if (!IsReferenceType) 2127 return true; 2128 2129 // A reference constant expression must refer to an object. 2130 if (!Base) { 2131 // FIXME: diagnostic 2132 Info.CCEDiag(Loc); 2133 return true; 2134 } 2135 2136 // Does this refer one past the end of some object? 2137 if (!Designator.Invalid && Designator.isOnePastTheEnd()) { 2138 const ValueDecl *VD = Base.dyn_cast<const ValueDecl*>(); 2139 Info.FFDiag(Loc, diag::note_constexpr_past_end, 1) 2140 << !Designator.Entries.empty() << !!VD << VD; 2141 NoteLValueLocation(Info, Base); 2142 } 2143 2144 return true; 2145 } 2146 2147 /// Member pointers are constant expressions unless they point to a 2148 /// non-virtual dllimport member function. 2149 static bool CheckMemberPointerConstantExpression(EvalInfo &Info, 2150 SourceLocation Loc, 2151 QualType Type, 2152 const APValue &Value, 2153 Expr::ConstExprUsage Usage) { 2154 const ValueDecl *Member = Value.getMemberPointerDecl(); 2155 const auto *FD = dyn_cast_or_null<CXXMethodDecl>(Member); 2156 if (!FD) 2157 return true; 2158 if (FD->isConsteval()) { 2159 Info.FFDiag(Loc, diag::note_consteval_address_accessible) << /*pointer*/ 0; 2160 Info.Note(FD->getLocation(), diag::note_declared_at); 2161 return false; 2162 } 2163 return Usage == Expr::EvaluateForMangling || FD->isVirtual() || 2164 !FD->hasAttr<DLLImportAttr>(); 2165 } 2166 2167 /// Check that this core constant expression is of literal type, and if not, 2168 /// produce an appropriate diagnostic. 2169 static bool CheckLiteralType(EvalInfo &Info, const Expr *E, 2170 const LValue *This = nullptr) { 2171 if (!E->isRValue() || E->getType()->isLiteralType(Info.Ctx)) 2172 return true; 2173 2174 // C++1y: A constant initializer for an object o [...] may also invoke 2175 // constexpr constructors for o and its subobjects even if those objects 2176 // are of non-literal class types. 2177 // 2178 // C++11 missed this detail for aggregates, so classes like this: 2179 // struct foo_t { union { int i; volatile int j; } u; }; 2180 // are not (obviously) initializable like so: 2181 // __attribute__((__require_constant_initialization__)) 2182 // static const foo_t x = {{0}}; 2183 // because "i" is a subobject with non-literal initialization (due to the 2184 // volatile member of the union). See: 2185 // http://www.open-std.org/jtc1/sc22/wg21/docs/cwg_active.html#1677 2186 // Therefore, we use the C++1y behavior. 2187 if (This && Info.EvaluatingDecl == This->getLValueBase()) 2188 return true; 2189 2190 // Prvalue constant expressions must be of literal types. 2191 if (Info.getLangOpts().CPlusPlus11) 2192 Info.FFDiag(E, diag::note_constexpr_nonliteral) 2193 << E->getType(); 2194 else 2195 Info.FFDiag(E, diag::note_invalid_subexpr_in_const_expr); 2196 return false; 2197 } 2198 2199 static bool CheckEvaluationResult(CheckEvaluationResultKind CERK, 2200 EvalInfo &Info, SourceLocation DiagLoc, 2201 QualType Type, const APValue &Value, 2202 Expr::ConstExprUsage Usage, 2203 SourceLocation SubobjectLoc, 2204 CheckedTemporaries &CheckedTemps) { 2205 if (!Value.hasValue()) { 2206 Info.FFDiag(DiagLoc, diag::note_constexpr_uninitialized) 2207 << true << Type; 2208 if (SubobjectLoc.isValid()) 2209 Info.Note(SubobjectLoc, diag::note_constexpr_subobject_declared_here); 2210 return false; 2211 } 2212 2213 // We allow _Atomic(T) to be initialized from anything that T can be 2214 // initialized from. 2215 if (const AtomicType *AT = Type->getAs<AtomicType>()) 2216 Type = AT->getValueType(); 2217 2218 // Core issue 1454: For a literal constant expression of array or class type, 2219 // each subobject of its value shall have been initialized by a constant 2220 // expression. 2221 if (Value.isArray()) { 2222 QualType EltTy = Type->castAsArrayTypeUnsafe()->getElementType(); 2223 for (unsigned I = 0, N = Value.getArrayInitializedElts(); I != N; ++I) { 2224 if (!CheckEvaluationResult(CERK, Info, DiagLoc, EltTy, 2225 Value.getArrayInitializedElt(I), Usage, 2226 SubobjectLoc, CheckedTemps)) 2227 return false; 2228 } 2229 if (!Value.hasArrayFiller()) 2230 return true; 2231 return CheckEvaluationResult(CERK, Info, DiagLoc, EltTy, 2232 Value.getArrayFiller(), Usage, SubobjectLoc, 2233 CheckedTemps); 2234 } 2235 if (Value.isUnion() && Value.getUnionField()) { 2236 return CheckEvaluationResult( 2237 CERK, Info, DiagLoc, Value.getUnionField()->getType(), 2238 Value.getUnionValue(), Usage, Value.getUnionField()->getLocation(), 2239 CheckedTemps); 2240 } 2241 if (Value.isStruct()) { 2242 RecordDecl *RD = Type->castAs<RecordType>()->getDecl(); 2243 if (const CXXRecordDecl *CD = dyn_cast<CXXRecordDecl>(RD)) { 2244 unsigned BaseIndex = 0; 2245 for (const CXXBaseSpecifier &BS : CD->bases()) { 2246 if (!CheckEvaluationResult(CERK, Info, DiagLoc, BS.getType(), 2247 Value.getStructBase(BaseIndex), Usage, 2248 BS.getBeginLoc(), CheckedTemps)) 2249 return false; 2250 ++BaseIndex; 2251 } 2252 } 2253 for (const auto *I : RD->fields()) { 2254 if (I->isUnnamedBitfield()) 2255 continue; 2256 2257 if (!CheckEvaluationResult(CERK, Info, DiagLoc, I->getType(), 2258 Value.getStructField(I->getFieldIndex()), 2259 Usage, I->getLocation(), CheckedTemps)) 2260 return false; 2261 } 2262 } 2263 2264 if (Value.isLValue() && 2265 CERK == CheckEvaluationResultKind::ConstantExpression) { 2266 LValue LVal; 2267 LVal.setFrom(Info.Ctx, Value); 2268 return CheckLValueConstantExpression(Info, DiagLoc, Type, LVal, Usage, 2269 CheckedTemps); 2270 } 2271 2272 if (Value.isMemberPointer() && 2273 CERK == CheckEvaluationResultKind::ConstantExpression) 2274 return CheckMemberPointerConstantExpression(Info, DiagLoc, Type, Value, Usage); 2275 2276 // Everything else is fine. 2277 return true; 2278 } 2279 2280 /// Check that this core constant expression value is a valid value for a 2281 /// constant expression. If not, report an appropriate diagnostic. Does not 2282 /// check that the expression is of literal type. 2283 static bool 2284 CheckConstantExpression(EvalInfo &Info, SourceLocation DiagLoc, QualType Type, 2285 const APValue &Value, 2286 Expr::ConstExprUsage Usage = Expr::EvaluateForCodeGen) { 2287 CheckedTemporaries CheckedTemps; 2288 return CheckEvaluationResult(CheckEvaluationResultKind::ConstantExpression, 2289 Info, DiagLoc, Type, Value, Usage, 2290 SourceLocation(), CheckedTemps); 2291 } 2292 2293 /// Check that this evaluated value is fully-initialized and can be loaded by 2294 /// an lvalue-to-rvalue conversion. 2295 static bool CheckFullyInitialized(EvalInfo &Info, SourceLocation DiagLoc, 2296 QualType Type, const APValue &Value) { 2297 CheckedTemporaries CheckedTemps; 2298 return CheckEvaluationResult( 2299 CheckEvaluationResultKind::FullyInitialized, Info, DiagLoc, Type, Value, 2300 Expr::EvaluateForCodeGen, SourceLocation(), CheckedTemps); 2301 } 2302 2303 /// Enforce C++2a [expr.const]/4.17, which disallows new-expressions unless 2304 /// "the allocated storage is deallocated within the evaluation". 2305 static bool CheckMemoryLeaks(EvalInfo &Info) { 2306 if (!Info.HeapAllocs.empty()) { 2307 // We can still fold to a constant despite a compile-time memory leak, 2308 // so long as the heap allocation isn't referenced in the result (we check 2309 // that in CheckConstantExpression). 2310 Info.CCEDiag(Info.HeapAllocs.begin()->second.AllocExpr, 2311 diag::note_constexpr_memory_leak) 2312 << unsigned(Info.HeapAllocs.size() - 1); 2313 } 2314 return true; 2315 } 2316 2317 static bool EvalPointerValueAsBool(const APValue &Value, bool &Result) { 2318 // A null base expression indicates a null pointer. These are always 2319 // evaluatable, and they are false unless the offset is zero. 2320 if (!Value.getLValueBase()) { 2321 Result = !Value.getLValueOffset().isZero(); 2322 return true; 2323 } 2324 2325 // We have a non-null base. These are generally known to be true, but if it's 2326 // a weak declaration it can be null at runtime. 2327 Result = true; 2328 const ValueDecl *Decl = Value.getLValueBase().dyn_cast<const ValueDecl*>(); 2329 return !Decl || !Decl->isWeak(); 2330 } 2331 2332 static bool HandleConversionToBool(const APValue &Val, bool &Result) { 2333 switch (Val.getKind()) { 2334 case APValue::None: 2335 case APValue::Indeterminate: 2336 return false; 2337 case APValue::Int: 2338 Result = Val.getInt().getBoolValue(); 2339 return true; 2340 case APValue::FixedPoint: 2341 Result = Val.getFixedPoint().getBoolValue(); 2342 return true; 2343 case APValue::Float: 2344 Result = !Val.getFloat().isZero(); 2345 return true; 2346 case APValue::ComplexInt: 2347 Result = Val.getComplexIntReal().getBoolValue() || 2348 Val.getComplexIntImag().getBoolValue(); 2349 return true; 2350 case APValue::ComplexFloat: 2351 Result = !Val.getComplexFloatReal().isZero() || 2352 !Val.getComplexFloatImag().isZero(); 2353 return true; 2354 case APValue::LValue: 2355 return EvalPointerValueAsBool(Val, Result); 2356 case APValue::MemberPointer: 2357 Result = Val.getMemberPointerDecl(); 2358 return true; 2359 case APValue::Vector: 2360 case APValue::Array: 2361 case APValue::Struct: 2362 case APValue::Union: 2363 case APValue::AddrLabelDiff: 2364 return false; 2365 } 2366 2367 llvm_unreachable("unknown APValue kind"); 2368 } 2369 2370 static bool EvaluateAsBooleanCondition(const Expr *E, bool &Result, 2371 EvalInfo &Info) { 2372 assert(E->isRValue() && "missing lvalue-to-rvalue conv in bool condition"); 2373 APValue Val; 2374 if (!Evaluate(Val, Info, E)) 2375 return false; 2376 return HandleConversionToBool(Val, Result); 2377 } 2378 2379 template<typename T> 2380 static bool HandleOverflow(EvalInfo &Info, const Expr *E, 2381 const T &SrcValue, QualType DestType) { 2382 Info.CCEDiag(E, diag::note_constexpr_overflow) 2383 << SrcValue << DestType; 2384 return Info.noteUndefinedBehavior(); 2385 } 2386 2387 static bool HandleFloatToIntCast(EvalInfo &Info, const Expr *E, 2388 QualType SrcType, const APFloat &Value, 2389 QualType DestType, APSInt &Result) { 2390 unsigned DestWidth = Info.Ctx.getIntWidth(DestType); 2391 // Determine whether we are converting to unsigned or signed. 2392 bool DestSigned = DestType->isSignedIntegerOrEnumerationType(); 2393 2394 Result = APSInt(DestWidth, !DestSigned); 2395 bool ignored; 2396 if (Value.convertToInteger(Result, llvm::APFloat::rmTowardZero, &ignored) 2397 & APFloat::opInvalidOp) 2398 return HandleOverflow(Info, E, Value, DestType); 2399 return true; 2400 } 2401 2402 static bool HandleFloatToFloatCast(EvalInfo &Info, const Expr *E, 2403 QualType SrcType, QualType DestType, 2404 APFloat &Result) { 2405 APFloat Value = Result; 2406 bool ignored; 2407 Result.convert(Info.Ctx.getFloatTypeSemantics(DestType), 2408 APFloat::rmNearestTiesToEven, &ignored); 2409 return true; 2410 } 2411 2412 static APSInt HandleIntToIntCast(EvalInfo &Info, const Expr *E, 2413 QualType DestType, QualType SrcType, 2414 const APSInt &Value) { 2415 unsigned DestWidth = Info.Ctx.getIntWidth(DestType); 2416 // Figure out if this is a truncate, extend or noop cast. 2417 // If the input is signed, do a sign extend, noop, or truncate. 2418 APSInt Result = Value.extOrTrunc(DestWidth); 2419 Result.setIsUnsigned(DestType->isUnsignedIntegerOrEnumerationType()); 2420 if (DestType->isBooleanType()) 2421 Result = Value.getBoolValue(); 2422 return Result; 2423 } 2424 2425 static bool HandleIntToFloatCast(EvalInfo &Info, const Expr *E, 2426 QualType SrcType, const APSInt &Value, 2427 QualType DestType, APFloat &Result) { 2428 Result = APFloat(Info.Ctx.getFloatTypeSemantics(DestType), 1); 2429 Result.convertFromAPInt(Value, Value.isSigned(), 2430 APFloat::rmNearestTiesToEven); 2431 return true; 2432 } 2433 2434 static bool truncateBitfieldValue(EvalInfo &Info, const Expr *E, 2435 APValue &Value, const FieldDecl *FD) { 2436 assert(FD->isBitField() && "truncateBitfieldValue on non-bitfield"); 2437 2438 if (!Value.isInt()) { 2439 // Trying to store a pointer-cast-to-integer into a bitfield. 2440 // FIXME: In this case, we should provide the diagnostic for casting 2441 // a pointer to an integer. 2442 assert(Value.isLValue() && "integral value neither int nor lvalue?"); 2443 Info.FFDiag(E); 2444 return false; 2445 } 2446 2447 APSInt &Int = Value.getInt(); 2448 unsigned OldBitWidth = Int.getBitWidth(); 2449 unsigned NewBitWidth = FD->getBitWidthValue(Info.Ctx); 2450 if (NewBitWidth < OldBitWidth) 2451 Int = Int.trunc(NewBitWidth).extend(OldBitWidth); 2452 return true; 2453 } 2454 2455 static bool EvalAndBitcastToAPInt(EvalInfo &Info, const Expr *E, 2456 llvm::APInt &Res) { 2457 APValue SVal; 2458 if (!Evaluate(SVal, Info, E)) 2459 return false; 2460 if (SVal.isInt()) { 2461 Res = SVal.getInt(); 2462 return true; 2463 } 2464 if (SVal.isFloat()) { 2465 Res = SVal.getFloat().bitcastToAPInt(); 2466 return true; 2467 } 2468 if (SVal.isVector()) { 2469 QualType VecTy = E->getType(); 2470 unsigned VecSize = Info.Ctx.getTypeSize(VecTy); 2471 QualType EltTy = VecTy->castAs<VectorType>()->getElementType(); 2472 unsigned EltSize = Info.Ctx.getTypeSize(EltTy); 2473 bool BigEndian = Info.Ctx.getTargetInfo().isBigEndian(); 2474 Res = llvm::APInt::getNullValue(VecSize); 2475 for (unsigned i = 0; i < SVal.getVectorLength(); i++) { 2476 APValue &Elt = SVal.getVectorElt(i); 2477 llvm::APInt EltAsInt; 2478 if (Elt.isInt()) { 2479 EltAsInt = Elt.getInt(); 2480 } else if (Elt.isFloat()) { 2481 EltAsInt = Elt.getFloat().bitcastToAPInt(); 2482 } else { 2483 // Don't try to handle vectors of anything other than int or float 2484 // (not sure if it's possible to hit this case). 2485 Info.FFDiag(E, diag::note_invalid_subexpr_in_const_expr); 2486 return false; 2487 } 2488 unsigned BaseEltSize = EltAsInt.getBitWidth(); 2489 if (BigEndian) 2490 Res |= EltAsInt.zextOrTrunc(VecSize).rotr(i*EltSize+BaseEltSize); 2491 else 2492 Res |= EltAsInt.zextOrTrunc(VecSize).rotl(i*EltSize); 2493 } 2494 return true; 2495 } 2496 // Give up if the input isn't an int, float, or vector. For example, we 2497 // reject "(v4i16)(intptr_t)&a". 2498 Info.FFDiag(E, diag::note_invalid_subexpr_in_const_expr); 2499 return false; 2500 } 2501 2502 /// Perform the given integer operation, which is known to need at most BitWidth 2503 /// bits, and check for overflow in the original type (if that type was not an 2504 /// unsigned type). 2505 template<typename Operation> 2506 static bool CheckedIntArithmetic(EvalInfo &Info, const Expr *E, 2507 const APSInt &LHS, const APSInt &RHS, 2508 unsigned BitWidth, Operation Op, 2509 APSInt &Result) { 2510 if (LHS.isUnsigned()) { 2511 Result = Op(LHS, RHS); 2512 return true; 2513 } 2514 2515 APSInt Value(Op(LHS.extend(BitWidth), RHS.extend(BitWidth)), false); 2516 Result = Value.trunc(LHS.getBitWidth()); 2517 if (Result.extend(BitWidth) != Value) { 2518 if (Info.checkingForUndefinedBehavior()) 2519 Info.Ctx.getDiagnostics().Report(E->getExprLoc(), 2520 diag::warn_integer_constant_overflow) 2521 << Result.toString(10) << E->getType(); 2522 else 2523 return HandleOverflow(Info, E, Value, E->getType()); 2524 } 2525 return true; 2526 } 2527 2528 /// Perform the given binary integer operation. 2529 static bool handleIntIntBinOp(EvalInfo &Info, const Expr *E, const APSInt &LHS, 2530 BinaryOperatorKind Opcode, APSInt RHS, 2531 APSInt &Result) { 2532 switch (Opcode) { 2533 default: 2534 Info.FFDiag(E); 2535 return false; 2536 case BO_Mul: 2537 return CheckedIntArithmetic(Info, E, LHS, RHS, LHS.getBitWidth() * 2, 2538 std::multiplies<APSInt>(), Result); 2539 case BO_Add: 2540 return CheckedIntArithmetic(Info, E, LHS, RHS, LHS.getBitWidth() + 1, 2541 std::plus<APSInt>(), Result); 2542 case BO_Sub: 2543 return CheckedIntArithmetic(Info, E, LHS, RHS, LHS.getBitWidth() + 1, 2544 std::minus<APSInt>(), Result); 2545 case BO_And: Result = LHS & RHS; return true; 2546 case BO_Xor: Result = LHS ^ RHS; return true; 2547 case BO_Or: Result = LHS | RHS; return true; 2548 case BO_Div: 2549 case BO_Rem: 2550 if (RHS == 0) { 2551 Info.FFDiag(E, diag::note_expr_divide_by_zero); 2552 return false; 2553 } 2554 Result = (Opcode == BO_Rem ? LHS % RHS : LHS / RHS); 2555 // Check for overflow case: INT_MIN / -1 or INT_MIN % -1. APSInt supports 2556 // this operation and gives the two's complement result. 2557 if (RHS.isNegative() && RHS.isAllOnesValue() && 2558 LHS.isSigned() && LHS.isMinSignedValue()) 2559 return HandleOverflow(Info, E, -LHS.extend(LHS.getBitWidth() + 1), 2560 E->getType()); 2561 return true; 2562 case BO_Shl: { 2563 if (Info.getLangOpts().OpenCL) 2564 // OpenCL 6.3j: shift values are effectively % word size of LHS. 2565 RHS &= APSInt(llvm::APInt(RHS.getBitWidth(), 2566 static_cast<uint64_t>(LHS.getBitWidth() - 1)), 2567 RHS.isUnsigned()); 2568 else if (RHS.isSigned() && RHS.isNegative()) { 2569 // During constant-folding, a negative shift is an opposite shift. Such 2570 // a shift is not a constant expression. 2571 Info.CCEDiag(E, diag::note_constexpr_negative_shift) << RHS; 2572 RHS = -RHS; 2573 goto shift_right; 2574 } 2575 shift_left: 2576 // C++11 [expr.shift]p1: Shift width must be less than the bit width of 2577 // the shifted type. 2578 unsigned SA = (unsigned) RHS.getLimitedValue(LHS.getBitWidth()-1); 2579 if (SA != RHS) { 2580 Info.CCEDiag(E, diag::note_constexpr_large_shift) 2581 << RHS << E->getType() << LHS.getBitWidth(); 2582 } else if (LHS.isSigned() && !Info.getLangOpts().CPlusPlus2a) { 2583 // C++11 [expr.shift]p2: A signed left shift must have a non-negative 2584 // operand, and must not overflow the corresponding unsigned type. 2585 // C++2a [expr.shift]p2: E1 << E2 is the unique value congruent to 2586 // E1 x 2^E2 module 2^N. 2587 if (LHS.isNegative()) 2588 Info.CCEDiag(E, diag::note_constexpr_lshift_of_negative) << LHS; 2589 else if (LHS.countLeadingZeros() < SA) 2590 Info.CCEDiag(E, diag::note_constexpr_lshift_discards); 2591 } 2592 Result = LHS << SA; 2593 return true; 2594 } 2595 case BO_Shr: { 2596 if (Info.getLangOpts().OpenCL) 2597 // OpenCL 6.3j: shift values are effectively % word size of LHS. 2598 RHS &= APSInt(llvm::APInt(RHS.getBitWidth(), 2599 static_cast<uint64_t>(LHS.getBitWidth() - 1)), 2600 RHS.isUnsigned()); 2601 else if (RHS.isSigned() && RHS.isNegative()) { 2602 // During constant-folding, a negative shift is an opposite shift. Such a 2603 // shift is not a constant expression. 2604 Info.CCEDiag(E, diag::note_constexpr_negative_shift) << RHS; 2605 RHS = -RHS; 2606 goto shift_left; 2607 } 2608 shift_right: 2609 // C++11 [expr.shift]p1: Shift width must be less than the bit width of the 2610 // shifted type. 2611 unsigned SA = (unsigned) RHS.getLimitedValue(LHS.getBitWidth()-1); 2612 if (SA != RHS) 2613 Info.CCEDiag(E, diag::note_constexpr_large_shift) 2614 << RHS << E->getType() << LHS.getBitWidth(); 2615 Result = LHS >> SA; 2616 return true; 2617 } 2618 2619 case BO_LT: Result = LHS < RHS; return true; 2620 case BO_GT: Result = LHS > RHS; return true; 2621 case BO_LE: Result = LHS <= RHS; return true; 2622 case BO_GE: Result = LHS >= RHS; return true; 2623 case BO_EQ: Result = LHS == RHS; return true; 2624 case BO_NE: Result = LHS != RHS; return true; 2625 case BO_Cmp: 2626 llvm_unreachable("BO_Cmp should be handled elsewhere"); 2627 } 2628 } 2629 2630 /// Perform the given binary floating-point operation, in-place, on LHS. 2631 static bool handleFloatFloatBinOp(EvalInfo &Info, const Expr *E, 2632 APFloat &LHS, BinaryOperatorKind Opcode, 2633 const APFloat &RHS) { 2634 switch (Opcode) { 2635 default: 2636 Info.FFDiag(E); 2637 return false; 2638 case BO_Mul: 2639 LHS.multiply(RHS, APFloat::rmNearestTiesToEven); 2640 break; 2641 case BO_Add: 2642 LHS.add(RHS, APFloat::rmNearestTiesToEven); 2643 break; 2644 case BO_Sub: 2645 LHS.subtract(RHS, APFloat::rmNearestTiesToEven); 2646 break; 2647 case BO_Div: 2648 // [expr.mul]p4: 2649 // If the second operand of / or % is zero the behavior is undefined. 2650 if (RHS.isZero()) 2651 Info.CCEDiag(E, diag::note_expr_divide_by_zero); 2652 LHS.divide(RHS, APFloat::rmNearestTiesToEven); 2653 break; 2654 } 2655 2656 // [expr.pre]p4: 2657 // If during the evaluation of an expression, the result is not 2658 // mathematically defined [...], the behavior is undefined. 2659 // FIXME: C++ rules require us to not conform to IEEE 754 here. 2660 if (LHS.isNaN()) { 2661 Info.CCEDiag(E, diag::note_constexpr_float_arithmetic) << LHS.isNaN(); 2662 return Info.noteUndefinedBehavior(); 2663 } 2664 return true; 2665 } 2666 2667 /// Cast an lvalue referring to a base subobject to a derived class, by 2668 /// truncating the lvalue's path to the given length. 2669 static bool CastToDerivedClass(EvalInfo &Info, const Expr *E, LValue &Result, 2670 const RecordDecl *TruncatedType, 2671 unsigned TruncatedElements) { 2672 SubobjectDesignator &D = Result.Designator; 2673 2674 // Check we actually point to a derived class object. 2675 if (TruncatedElements == D.Entries.size()) 2676 return true; 2677 assert(TruncatedElements >= D.MostDerivedPathLength && 2678 "not casting to a derived class"); 2679 if (!Result.checkSubobject(Info, E, CSK_Derived)) 2680 return false; 2681 2682 // Truncate the path to the subobject, and remove any derived-to-base offsets. 2683 const RecordDecl *RD = TruncatedType; 2684 for (unsigned I = TruncatedElements, N = D.Entries.size(); I != N; ++I) { 2685 if (RD->isInvalidDecl()) return false; 2686 const ASTRecordLayout &Layout = Info.Ctx.getASTRecordLayout(RD); 2687 const CXXRecordDecl *Base = getAsBaseClass(D.Entries[I]); 2688 if (isVirtualBaseClass(D.Entries[I])) 2689 Result.Offset -= Layout.getVBaseClassOffset(Base); 2690 else 2691 Result.Offset -= Layout.getBaseClassOffset(Base); 2692 RD = Base; 2693 } 2694 D.Entries.resize(TruncatedElements); 2695 return true; 2696 } 2697 2698 static bool HandleLValueDirectBase(EvalInfo &Info, const Expr *E, LValue &Obj, 2699 const CXXRecordDecl *Derived, 2700 const CXXRecordDecl *Base, 2701 const ASTRecordLayout *RL = nullptr) { 2702 if (!RL) { 2703 if (Derived->isInvalidDecl()) return false; 2704 RL = &Info.Ctx.getASTRecordLayout(Derived); 2705 } 2706 2707 Obj.getLValueOffset() += RL->getBaseClassOffset(Base); 2708 Obj.addDecl(Info, E, Base, /*Virtual*/ false); 2709 return true; 2710 } 2711 2712 static bool HandleLValueBase(EvalInfo &Info, const Expr *E, LValue &Obj, 2713 const CXXRecordDecl *DerivedDecl, 2714 const CXXBaseSpecifier *Base) { 2715 const CXXRecordDecl *BaseDecl = Base->getType()->getAsCXXRecordDecl(); 2716 2717 if (!Base->isVirtual()) 2718 return HandleLValueDirectBase(Info, E, Obj, DerivedDecl, BaseDecl); 2719 2720 SubobjectDesignator &D = Obj.Designator; 2721 if (D.Invalid) 2722 return false; 2723 2724 // Extract most-derived object and corresponding type. 2725 DerivedDecl = D.MostDerivedType->getAsCXXRecordDecl(); 2726 if (!CastToDerivedClass(Info, E, Obj, DerivedDecl, D.MostDerivedPathLength)) 2727 return false; 2728 2729 // Find the virtual base class. 2730 if (DerivedDecl->isInvalidDecl()) return false; 2731 const ASTRecordLayout &Layout = Info.Ctx.getASTRecordLayout(DerivedDecl); 2732 Obj.getLValueOffset() += Layout.getVBaseClassOffset(BaseDecl); 2733 Obj.addDecl(Info, E, BaseDecl, /*Virtual*/ true); 2734 return true; 2735 } 2736 2737 static bool HandleLValueBasePath(EvalInfo &Info, const CastExpr *E, 2738 QualType Type, LValue &Result) { 2739 for (CastExpr::path_const_iterator PathI = E->path_begin(), 2740 PathE = E->path_end(); 2741 PathI != PathE; ++PathI) { 2742 if (!HandleLValueBase(Info, E, Result, Type->getAsCXXRecordDecl(), 2743 *PathI)) 2744 return false; 2745 Type = (*PathI)->getType(); 2746 } 2747 return true; 2748 } 2749 2750 /// Cast an lvalue referring to a derived class to a known base subobject. 2751 static bool CastToBaseClass(EvalInfo &Info, const Expr *E, LValue &Result, 2752 const CXXRecordDecl *DerivedRD, 2753 const CXXRecordDecl *BaseRD) { 2754 CXXBasePaths Paths(/*FindAmbiguities=*/false, 2755 /*RecordPaths=*/true, /*DetectVirtual=*/false); 2756 if (!DerivedRD->isDerivedFrom(BaseRD, Paths)) 2757 llvm_unreachable("Class must be derived from the passed in base class!"); 2758 2759 for (CXXBasePathElement &Elem : Paths.front()) 2760 if (!HandleLValueBase(Info, E, Result, Elem.Class, Elem.Base)) 2761 return false; 2762 return true; 2763 } 2764 2765 /// Update LVal to refer to the given field, which must be a member of the type 2766 /// currently described by LVal. 2767 static bool HandleLValueMember(EvalInfo &Info, const Expr *E, LValue &LVal, 2768 const FieldDecl *FD, 2769 const ASTRecordLayout *RL = nullptr) { 2770 if (!RL) { 2771 if (FD->getParent()->isInvalidDecl()) return false; 2772 RL = &Info.Ctx.getASTRecordLayout(FD->getParent()); 2773 } 2774 2775 unsigned I = FD->getFieldIndex(); 2776 LVal.adjustOffset(Info.Ctx.toCharUnitsFromBits(RL->getFieldOffset(I))); 2777 LVal.addDecl(Info, E, FD); 2778 return true; 2779 } 2780 2781 /// Update LVal to refer to the given indirect field. 2782 static bool HandleLValueIndirectMember(EvalInfo &Info, const Expr *E, 2783 LValue &LVal, 2784 const IndirectFieldDecl *IFD) { 2785 for (const auto *C : IFD->chain()) 2786 if (!HandleLValueMember(Info, E, LVal, cast<FieldDecl>(C))) 2787 return false; 2788 return true; 2789 } 2790 2791 /// Get the size of the given type in char units. 2792 static bool HandleSizeof(EvalInfo &Info, SourceLocation Loc, 2793 QualType Type, CharUnits &Size) { 2794 // sizeof(void), __alignof__(void), sizeof(function) = 1 as a gcc 2795 // extension. 2796 if (Type->isVoidType() || Type->isFunctionType()) { 2797 Size = CharUnits::One(); 2798 return true; 2799 } 2800 2801 if (Type->isDependentType()) { 2802 Info.FFDiag(Loc); 2803 return false; 2804 } 2805 2806 if (!Type->isConstantSizeType()) { 2807 // sizeof(vla) is not a constantexpr: C99 6.5.3.4p2. 2808 // FIXME: Better diagnostic. 2809 Info.FFDiag(Loc); 2810 return false; 2811 } 2812 2813 Size = Info.Ctx.getTypeSizeInChars(Type); 2814 return true; 2815 } 2816 2817 /// Update a pointer value to model pointer arithmetic. 2818 /// \param Info - Information about the ongoing evaluation. 2819 /// \param E - The expression being evaluated, for diagnostic purposes. 2820 /// \param LVal - The pointer value to be updated. 2821 /// \param EltTy - The pointee type represented by LVal. 2822 /// \param Adjustment - The adjustment, in objects of type EltTy, to add. 2823 static bool HandleLValueArrayAdjustment(EvalInfo &Info, const Expr *E, 2824 LValue &LVal, QualType EltTy, 2825 APSInt Adjustment) { 2826 CharUnits SizeOfPointee; 2827 if (!HandleSizeof(Info, E->getExprLoc(), EltTy, SizeOfPointee)) 2828 return false; 2829 2830 LVal.adjustOffsetAndIndex(Info, E, Adjustment, SizeOfPointee); 2831 return true; 2832 } 2833 2834 static bool HandleLValueArrayAdjustment(EvalInfo &Info, const Expr *E, 2835 LValue &LVal, QualType EltTy, 2836 int64_t Adjustment) { 2837 return HandleLValueArrayAdjustment(Info, E, LVal, EltTy, 2838 APSInt::get(Adjustment)); 2839 } 2840 2841 /// Update an lvalue to refer to a component of a complex number. 2842 /// \param Info - Information about the ongoing evaluation. 2843 /// \param LVal - The lvalue to be updated. 2844 /// \param EltTy - The complex number's component type. 2845 /// \param Imag - False for the real component, true for the imaginary. 2846 static bool HandleLValueComplexElement(EvalInfo &Info, const Expr *E, 2847 LValue &LVal, QualType EltTy, 2848 bool Imag) { 2849 if (Imag) { 2850 CharUnits SizeOfComponent; 2851 if (!HandleSizeof(Info, E->getExprLoc(), EltTy, SizeOfComponent)) 2852 return false; 2853 LVal.Offset += SizeOfComponent; 2854 } 2855 LVal.addComplex(Info, E, EltTy, Imag); 2856 return true; 2857 } 2858 2859 /// Try to evaluate the initializer for a variable declaration. 2860 /// 2861 /// \param Info Information about the ongoing evaluation. 2862 /// \param E An expression to be used when printing diagnostics. 2863 /// \param VD The variable whose initializer should be obtained. 2864 /// \param Frame The frame in which the variable was created. Must be null 2865 /// if this variable is not local to the evaluation. 2866 /// \param Result Filled in with a pointer to the value of the variable. 2867 static bool evaluateVarDeclInit(EvalInfo &Info, const Expr *E, 2868 const VarDecl *VD, CallStackFrame *Frame, 2869 APValue *&Result, const LValue *LVal) { 2870 2871 // If this is a parameter to an active constexpr function call, perform 2872 // argument substitution. 2873 if (const ParmVarDecl *PVD = dyn_cast<ParmVarDecl>(VD)) { 2874 // Assume arguments of a potential constant expression are unknown 2875 // constant expressions. 2876 if (Info.checkingPotentialConstantExpression()) 2877 return false; 2878 if (!Frame || !Frame->Arguments) { 2879 Info.FFDiag(E, diag::note_invalid_subexpr_in_const_expr); 2880 return false; 2881 } 2882 Result = &Frame->Arguments[PVD->getFunctionScopeIndex()]; 2883 return true; 2884 } 2885 2886 // If this is a local variable, dig out its value. 2887 if (Frame) { 2888 Result = LVal ? Frame->getTemporary(VD, LVal->getLValueVersion()) 2889 : Frame->getCurrentTemporary(VD); 2890 if (!Result) { 2891 // Assume variables referenced within a lambda's call operator that were 2892 // not declared within the call operator are captures and during checking 2893 // of a potential constant expression, assume they are unknown constant 2894 // expressions. 2895 assert(isLambdaCallOperator(Frame->Callee) && 2896 (VD->getDeclContext() != Frame->Callee || VD->isInitCapture()) && 2897 "missing value for local variable"); 2898 if (Info.checkingPotentialConstantExpression()) 2899 return false; 2900 // FIXME: implement capture evaluation during constant expr evaluation. 2901 Info.FFDiag(E->getBeginLoc(), 2902 diag::note_unimplemented_constexpr_lambda_feature_ast) 2903 << "captures not currently allowed"; 2904 return false; 2905 } 2906 return true; 2907 } 2908 2909 // Dig out the initializer, and use the declaration which it's attached to. 2910 const Expr *Init = VD->getAnyInitializer(VD); 2911 if (!Init || Init->isValueDependent()) { 2912 // If we're checking a potential constant expression, the variable could be 2913 // initialized later. 2914 if (!Info.checkingPotentialConstantExpression()) 2915 Info.FFDiag(E, diag::note_invalid_subexpr_in_const_expr); 2916 return false; 2917 } 2918 2919 // If we're currently evaluating the initializer of this declaration, use that 2920 // in-flight value. 2921 if (Info.EvaluatingDecl.dyn_cast<const ValueDecl*>() == VD) { 2922 Result = Info.EvaluatingDeclValue; 2923 return true; 2924 } 2925 2926 // Never evaluate the initializer of a weak variable. We can't be sure that 2927 // this is the definition which will be used. 2928 if (VD->isWeak()) { 2929 Info.FFDiag(E, diag::note_invalid_subexpr_in_const_expr); 2930 return false; 2931 } 2932 2933 // Check that we can fold the initializer. In C++, we will have already done 2934 // this in the cases where it matters for conformance. 2935 SmallVector<PartialDiagnosticAt, 8> Notes; 2936 if (!VD->evaluateValue(Notes)) { 2937 Info.FFDiag(E, diag::note_constexpr_var_init_non_constant, 2938 Notes.size() + 1) << VD; 2939 Info.Note(VD->getLocation(), diag::note_declared_at); 2940 Info.addNotes(Notes); 2941 return false; 2942 } else if (!VD->checkInitIsICE()) { 2943 Info.CCEDiag(E, diag::note_constexpr_var_init_non_constant, 2944 Notes.size() + 1) << VD; 2945 Info.Note(VD->getLocation(), diag::note_declared_at); 2946 Info.addNotes(Notes); 2947 } 2948 2949 Result = VD->getEvaluatedValue(); 2950 return true; 2951 } 2952 2953 static bool IsConstNonVolatile(QualType T) { 2954 Qualifiers Quals = T.getQualifiers(); 2955 return Quals.hasConst() && !Quals.hasVolatile(); 2956 } 2957 2958 /// Get the base index of the given base class within an APValue representing 2959 /// the given derived class. 2960 static unsigned getBaseIndex(const CXXRecordDecl *Derived, 2961 const CXXRecordDecl *Base) { 2962 Base = Base->getCanonicalDecl(); 2963 unsigned Index = 0; 2964 for (CXXRecordDecl::base_class_const_iterator I = Derived->bases_begin(), 2965 E = Derived->bases_end(); I != E; ++I, ++Index) { 2966 if (I->getType()->getAsCXXRecordDecl()->getCanonicalDecl() == Base) 2967 return Index; 2968 } 2969 2970 llvm_unreachable("base class missing from derived class's bases list"); 2971 } 2972 2973 /// Extract the value of a character from a string literal. 2974 static APSInt extractStringLiteralCharacter(EvalInfo &Info, const Expr *Lit, 2975 uint64_t Index) { 2976 assert(!isa<SourceLocExpr>(Lit) && 2977 "SourceLocExpr should have already been converted to a StringLiteral"); 2978 2979 // FIXME: Support MakeStringConstant 2980 if (const auto *ObjCEnc = dyn_cast<ObjCEncodeExpr>(Lit)) { 2981 std::string Str; 2982 Info.Ctx.getObjCEncodingForType(ObjCEnc->getEncodedType(), Str); 2983 assert(Index <= Str.size() && "Index too large"); 2984 return APSInt::getUnsigned(Str.c_str()[Index]); 2985 } 2986 2987 if (auto PE = dyn_cast<PredefinedExpr>(Lit)) 2988 Lit = PE->getFunctionName(); 2989 const StringLiteral *S = cast<StringLiteral>(Lit); 2990 const ConstantArrayType *CAT = 2991 Info.Ctx.getAsConstantArrayType(S->getType()); 2992 assert(CAT && "string literal isn't an array"); 2993 QualType CharType = CAT->getElementType(); 2994 assert(CharType->isIntegerType() && "unexpected character type"); 2995 2996 APSInt Value(S->getCharByteWidth() * Info.Ctx.getCharWidth(), 2997 CharType->isUnsignedIntegerType()); 2998 if (Index < S->getLength()) 2999 Value = S->getCodeUnit(Index); 3000 return Value; 3001 } 3002 3003 // Expand a string literal into an array of characters. 3004 // 3005 // FIXME: This is inefficient; we should probably introduce something similar 3006 // to the LLVM ConstantDataArray to make this cheaper. 3007 static void expandStringLiteral(EvalInfo &Info, const StringLiteral *S, 3008 APValue &Result, 3009 QualType AllocType = QualType()) { 3010 const ConstantArrayType *CAT = Info.Ctx.getAsConstantArrayType( 3011 AllocType.isNull() ? S->getType() : AllocType); 3012 assert(CAT && "string literal isn't an array"); 3013 QualType CharType = CAT->getElementType(); 3014 assert(CharType->isIntegerType() && "unexpected character type"); 3015 3016 unsigned Elts = CAT->getSize().getZExtValue(); 3017 Result = APValue(APValue::UninitArray(), 3018 std::min(S->getLength(), Elts), Elts); 3019 APSInt Value(S->getCharByteWidth() * Info.Ctx.getCharWidth(), 3020 CharType->isUnsignedIntegerType()); 3021 if (Result.hasArrayFiller()) 3022 Result.getArrayFiller() = APValue(Value); 3023 for (unsigned I = 0, N = Result.getArrayInitializedElts(); I != N; ++I) { 3024 Value = S->getCodeUnit(I); 3025 Result.getArrayInitializedElt(I) = APValue(Value); 3026 } 3027 } 3028 3029 // Expand an array so that it has more than Index filled elements. 3030 static void expandArray(APValue &Array, unsigned Index) { 3031 unsigned Size = Array.getArraySize(); 3032 assert(Index < Size); 3033 3034 // Always at least double the number of elements for which we store a value. 3035 unsigned OldElts = Array.getArrayInitializedElts(); 3036 unsigned NewElts = std::max(Index+1, OldElts * 2); 3037 NewElts = std::min(Size, std::max(NewElts, 8u)); 3038 3039 // Copy the data across. 3040 APValue NewValue(APValue::UninitArray(), NewElts, Size); 3041 for (unsigned I = 0; I != OldElts; ++I) 3042 NewValue.getArrayInitializedElt(I).swap(Array.getArrayInitializedElt(I)); 3043 for (unsigned I = OldElts; I != NewElts; ++I) 3044 NewValue.getArrayInitializedElt(I) = Array.getArrayFiller(); 3045 if (NewValue.hasArrayFiller()) 3046 NewValue.getArrayFiller() = Array.getArrayFiller(); 3047 Array.swap(NewValue); 3048 } 3049 3050 /// Determine whether a type would actually be read by an lvalue-to-rvalue 3051 /// conversion. If it's of class type, we may assume that the copy operation 3052 /// is trivial. Note that this is never true for a union type with fields 3053 /// (because the copy always "reads" the active member) and always true for 3054 /// a non-class type. 3055 static bool isReadByLvalueToRvalueConversion(const CXXRecordDecl *RD); 3056 static bool isReadByLvalueToRvalueConversion(QualType T) { 3057 CXXRecordDecl *RD = T->getBaseElementTypeUnsafe()->getAsCXXRecordDecl(); 3058 return !RD || isReadByLvalueToRvalueConversion(RD); 3059 } 3060 static bool isReadByLvalueToRvalueConversion(const CXXRecordDecl *RD) { 3061 // FIXME: A trivial copy of a union copies the object representation, even if 3062 // the union is empty. 3063 if (RD->isUnion()) 3064 return !RD->field_empty(); 3065 if (RD->isEmpty()) 3066 return false; 3067 3068 for (auto *Field : RD->fields()) 3069 if (!Field->isUnnamedBitfield() && 3070 isReadByLvalueToRvalueConversion(Field->getType())) 3071 return true; 3072 3073 for (auto &BaseSpec : RD->bases()) 3074 if (isReadByLvalueToRvalueConversion(BaseSpec.getType())) 3075 return true; 3076 3077 return false; 3078 } 3079 3080 /// Diagnose an attempt to read from any unreadable field within the specified 3081 /// type, which might be a class type. 3082 static bool diagnoseMutableFields(EvalInfo &Info, const Expr *E, AccessKinds AK, 3083 QualType T) { 3084 CXXRecordDecl *RD = T->getBaseElementTypeUnsafe()->getAsCXXRecordDecl(); 3085 if (!RD) 3086 return false; 3087 3088 if (!RD->hasMutableFields()) 3089 return false; 3090 3091 for (auto *Field : RD->fields()) { 3092 // If we're actually going to read this field in some way, then it can't 3093 // be mutable. If we're in a union, then assigning to a mutable field 3094 // (even an empty one) can change the active member, so that's not OK. 3095 // FIXME: Add core issue number for the union case. 3096 if (Field->isMutable() && 3097 (RD->isUnion() || isReadByLvalueToRvalueConversion(Field->getType()))) { 3098 Info.FFDiag(E, diag::note_constexpr_access_mutable, 1) << AK << Field; 3099 Info.Note(Field->getLocation(), diag::note_declared_at); 3100 return true; 3101 } 3102 3103 if (diagnoseMutableFields(Info, E, AK, Field->getType())) 3104 return true; 3105 } 3106 3107 for (auto &BaseSpec : RD->bases()) 3108 if (diagnoseMutableFields(Info, E, AK, BaseSpec.getType())) 3109 return true; 3110 3111 // All mutable fields were empty, and thus not actually read. 3112 return false; 3113 } 3114 3115 static bool lifetimeStartedInEvaluation(EvalInfo &Info, 3116 APValue::LValueBase Base, 3117 bool MutableSubobject = false) { 3118 // A temporary we created. 3119 if (Base.getCallIndex()) 3120 return true; 3121 3122 auto *Evaluating = Info.EvaluatingDecl.dyn_cast<const ValueDecl*>(); 3123 if (!Evaluating) 3124 return false; 3125 3126 auto *BaseD = Base.dyn_cast<const ValueDecl*>(); 3127 3128 switch (Info.IsEvaluatingDecl) { 3129 case EvalInfo::EvaluatingDeclKind::None: 3130 return false; 3131 3132 case EvalInfo::EvaluatingDeclKind::Ctor: 3133 // The variable whose initializer we're evaluating. 3134 if (BaseD) 3135 return declaresSameEntity(Evaluating, BaseD); 3136 3137 // A temporary lifetime-extended by the variable whose initializer we're 3138 // evaluating. 3139 if (auto *BaseE = Base.dyn_cast<const Expr *>()) 3140 if (auto *BaseMTE = dyn_cast<MaterializeTemporaryExpr>(BaseE)) 3141 return declaresSameEntity(BaseMTE->getExtendingDecl(), Evaluating); 3142 return false; 3143 3144 case EvalInfo::EvaluatingDeclKind::Dtor: 3145 // C++2a [expr.const]p6: 3146 // [during constant destruction] the lifetime of a and its non-mutable 3147 // subobjects (but not its mutable subobjects) [are] considered to start 3148 // within e. 3149 // 3150 // FIXME: We can meaningfully extend this to cover non-const objects, but 3151 // we will need special handling: we should be able to access only 3152 // subobjects of such objects that are themselves declared const. 3153 if (!BaseD || 3154 !(BaseD->getType().isConstQualified() || 3155 BaseD->getType()->isReferenceType()) || 3156 MutableSubobject) 3157 return false; 3158 return declaresSameEntity(Evaluating, BaseD); 3159 } 3160 3161 llvm_unreachable("unknown evaluating decl kind"); 3162 } 3163 3164 namespace { 3165 /// A handle to a complete object (an object that is not a subobject of 3166 /// another object). 3167 struct CompleteObject { 3168 /// The identity of the object. 3169 APValue::LValueBase Base; 3170 /// The value of the complete object. 3171 APValue *Value; 3172 /// The type of the complete object. 3173 QualType Type; 3174 3175 CompleteObject() : Value(nullptr) {} 3176 CompleteObject(APValue::LValueBase Base, APValue *Value, QualType Type) 3177 : Base(Base), Value(Value), Type(Type) {} 3178 3179 bool mayAccessMutableMembers(EvalInfo &Info, AccessKinds AK) const { 3180 // If this isn't a "real" access (eg, if it's just accessing the type 3181 // info), allow it. We assume the type doesn't change dynamically for 3182 // subobjects of constexpr objects (even though we'd hit UB here if it 3183 // did). FIXME: Is this right? 3184 if (!isAnyAccess(AK)) 3185 return true; 3186 3187 // In C++14 onwards, it is permitted to read a mutable member whose 3188 // lifetime began within the evaluation. 3189 // FIXME: Should we also allow this in C++11? 3190 if (!Info.getLangOpts().CPlusPlus14) 3191 return false; 3192 return lifetimeStartedInEvaluation(Info, Base, /*MutableSubobject*/true); 3193 } 3194 3195 explicit operator bool() const { return !Type.isNull(); } 3196 }; 3197 } // end anonymous namespace 3198 3199 static QualType getSubobjectType(QualType ObjType, QualType SubobjType, 3200 bool IsMutable = false) { 3201 // C++ [basic.type.qualifier]p1: 3202 // - A const object is an object of type const T or a non-mutable subobject 3203 // of a const object. 3204 if (ObjType.isConstQualified() && !IsMutable) 3205 SubobjType.addConst(); 3206 // - A volatile object is an object of type const T or a subobject of a 3207 // volatile object. 3208 if (ObjType.isVolatileQualified()) 3209 SubobjType.addVolatile(); 3210 return SubobjType; 3211 } 3212 3213 /// Find the designated sub-object of an rvalue. 3214 template<typename SubobjectHandler> 3215 typename SubobjectHandler::result_type 3216 findSubobject(EvalInfo &Info, const Expr *E, const CompleteObject &Obj, 3217 const SubobjectDesignator &Sub, SubobjectHandler &handler) { 3218 if (Sub.Invalid) 3219 // A diagnostic will have already been produced. 3220 return handler.failed(); 3221 if (Sub.isOnePastTheEnd() || Sub.isMostDerivedAnUnsizedArray()) { 3222 if (Info.getLangOpts().CPlusPlus11) 3223 Info.FFDiag(E, Sub.isOnePastTheEnd() 3224 ? diag::note_constexpr_access_past_end 3225 : diag::note_constexpr_access_unsized_array) 3226 << handler.AccessKind; 3227 else 3228 Info.FFDiag(E); 3229 return handler.failed(); 3230 } 3231 3232 APValue *O = Obj.Value; 3233 QualType ObjType = Obj.Type; 3234 const FieldDecl *LastField = nullptr; 3235 const FieldDecl *VolatileField = nullptr; 3236 3237 // Walk the designator's path to find the subobject. 3238 for (unsigned I = 0, N = Sub.Entries.size(); /**/; ++I) { 3239 // Reading an indeterminate value is undefined, but assigning over one is OK. 3240 if ((O->isAbsent() && !(handler.AccessKind == AK_Construct && I == N)) || 3241 (O->isIndeterminate() && 3242 !isValidIndeterminateAccess(handler.AccessKind))) { 3243 if (!Info.checkingPotentialConstantExpression()) 3244 Info.FFDiag(E, diag::note_constexpr_access_uninit) 3245 << handler.AccessKind << O->isIndeterminate(); 3246 return handler.failed(); 3247 } 3248 3249 // C++ [class.ctor]p5, C++ [class.dtor]p5: 3250 // const and volatile semantics are not applied on an object under 3251 // {con,de}struction. 3252 if ((ObjType.isConstQualified() || ObjType.isVolatileQualified()) && 3253 ObjType->isRecordType() && 3254 Info.isEvaluatingCtorDtor( 3255 Obj.Base, llvm::makeArrayRef(Sub.Entries.begin(), 3256 Sub.Entries.begin() + I)) != 3257 ConstructionPhase::None) { 3258 ObjType = Info.Ctx.getCanonicalType(ObjType); 3259 ObjType.removeLocalConst(); 3260 ObjType.removeLocalVolatile(); 3261 } 3262 3263 // If this is our last pass, check that the final object type is OK. 3264 if (I == N || (I == N - 1 && ObjType->isAnyComplexType())) { 3265 // Accesses to volatile objects are prohibited. 3266 if (ObjType.isVolatileQualified() && isFormalAccess(handler.AccessKind)) { 3267 if (Info.getLangOpts().CPlusPlus) { 3268 int DiagKind; 3269 SourceLocation Loc; 3270 const NamedDecl *Decl = nullptr; 3271 if (VolatileField) { 3272 DiagKind = 2; 3273 Loc = VolatileField->getLocation(); 3274 Decl = VolatileField; 3275 } else if (auto *VD = Obj.Base.dyn_cast<const ValueDecl*>()) { 3276 DiagKind = 1; 3277 Loc = VD->getLocation(); 3278 Decl = VD; 3279 } else { 3280 DiagKind = 0; 3281 if (auto *E = Obj.Base.dyn_cast<const Expr *>()) 3282 Loc = E->getExprLoc(); 3283 } 3284 Info.FFDiag(E, diag::note_constexpr_access_volatile_obj, 1) 3285 << handler.AccessKind << DiagKind << Decl; 3286 Info.Note(Loc, diag::note_constexpr_volatile_here) << DiagKind; 3287 } else { 3288 Info.FFDiag(E, diag::note_invalid_subexpr_in_const_expr); 3289 } 3290 return handler.failed(); 3291 } 3292 3293 // If we are reading an object of class type, there may still be more 3294 // things we need to check: if there are any mutable subobjects, we 3295 // cannot perform this read. (This only happens when performing a trivial 3296 // copy or assignment.) 3297 if (ObjType->isRecordType() && 3298 !Obj.mayAccessMutableMembers(Info, handler.AccessKind) && 3299 diagnoseMutableFields(Info, E, handler.AccessKind, ObjType)) 3300 return handler.failed(); 3301 } 3302 3303 if (I == N) { 3304 if (!handler.found(*O, ObjType)) 3305 return false; 3306 3307 // If we modified a bit-field, truncate it to the right width. 3308 if (isModification(handler.AccessKind) && 3309 LastField && LastField->isBitField() && 3310 !truncateBitfieldValue(Info, E, *O, LastField)) 3311 return false; 3312 3313 return true; 3314 } 3315 3316 LastField = nullptr; 3317 if (ObjType->isArrayType()) { 3318 // Next subobject is an array element. 3319 const ConstantArrayType *CAT = Info.Ctx.getAsConstantArrayType(ObjType); 3320 assert(CAT && "vla in literal type?"); 3321 uint64_t Index = Sub.Entries[I].getAsArrayIndex(); 3322 if (CAT->getSize().ule(Index)) { 3323 // Note, it should not be possible to form a pointer with a valid 3324 // designator which points more than one past the end of the array. 3325 if (Info.getLangOpts().CPlusPlus11) 3326 Info.FFDiag(E, diag::note_constexpr_access_past_end) 3327 << handler.AccessKind; 3328 else 3329 Info.FFDiag(E); 3330 return handler.failed(); 3331 } 3332 3333 ObjType = CAT->getElementType(); 3334 3335 if (O->getArrayInitializedElts() > Index) 3336 O = &O->getArrayInitializedElt(Index); 3337 else if (!isRead(handler.AccessKind)) { 3338 expandArray(*O, Index); 3339 O = &O->getArrayInitializedElt(Index); 3340 } else 3341 O = &O->getArrayFiller(); 3342 } else if (ObjType->isAnyComplexType()) { 3343 // Next subobject is a complex number. 3344 uint64_t Index = Sub.Entries[I].getAsArrayIndex(); 3345 if (Index > 1) { 3346 if (Info.getLangOpts().CPlusPlus11) 3347 Info.FFDiag(E, diag::note_constexpr_access_past_end) 3348 << handler.AccessKind; 3349 else 3350 Info.FFDiag(E); 3351 return handler.failed(); 3352 } 3353 3354 ObjType = getSubobjectType( 3355 ObjType, ObjType->castAs<ComplexType>()->getElementType()); 3356 3357 assert(I == N - 1 && "extracting subobject of scalar?"); 3358 if (O->isComplexInt()) { 3359 return handler.found(Index ? O->getComplexIntImag() 3360 : O->getComplexIntReal(), ObjType); 3361 } else { 3362 assert(O->isComplexFloat()); 3363 return handler.found(Index ? O->getComplexFloatImag() 3364 : O->getComplexFloatReal(), ObjType); 3365 } 3366 } else if (const FieldDecl *Field = getAsField(Sub.Entries[I])) { 3367 if (Field->isMutable() && 3368 !Obj.mayAccessMutableMembers(Info, handler.AccessKind)) { 3369 Info.FFDiag(E, diag::note_constexpr_access_mutable, 1) 3370 << handler.AccessKind << Field; 3371 Info.Note(Field->getLocation(), diag::note_declared_at); 3372 return handler.failed(); 3373 } 3374 3375 // Next subobject is a class, struct or union field. 3376 RecordDecl *RD = ObjType->castAs<RecordType>()->getDecl(); 3377 if (RD->isUnion()) { 3378 const FieldDecl *UnionField = O->getUnionField(); 3379 if (!UnionField || 3380 UnionField->getCanonicalDecl() != Field->getCanonicalDecl()) { 3381 if (I == N - 1 && handler.AccessKind == AK_Construct) { 3382 // Placement new onto an inactive union member makes it active. 3383 O->setUnion(Field, APValue()); 3384 } else { 3385 // FIXME: If O->getUnionValue() is absent, report that there's no 3386 // active union member rather than reporting the prior active union 3387 // member. We'll need to fix nullptr_t to not use APValue() as its 3388 // representation first. 3389 Info.FFDiag(E, diag::note_constexpr_access_inactive_union_member) 3390 << handler.AccessKind << Field << !UnionField << UnionField; 3391 return handler.failed(); 3392 } 3393 } 3394 O = &O->getUnionValue(); 3395 } else 3396 O = &O->getStructField(Field->getFieldIndex()); 3397 3398 ObjType = getSubobjectType(ObjType, Field->getType(), Field->isMutable()); 3399 LastField = Field; 3400 if (Field->getType().isVolatileQualified()) 3401 VolatileField = Field; 3402 } else { 3403 // Next subobject is a base class. 3404 const CXXRecordDecl *Derived = ObjType->getAsCXXRecordDecl(); 3405 const CXXRecordDecl *Base = getAsBaseClass(Sub.Entries[I]); 3406 O = &O->getStructBase(getBaseIndex(Derived, Base)); 3407 3408 ObjType = getSubobjectType(ObjType, Info.Ctx.getRecordType(Base)); 3409 } 3410 } 3411 } 3412 3413 namespace { 3414 struct ExtractSubobjectHandler { 3415 EvalInfo &Info; 3416 const Expr *E; 3417 APValue &Result; 3418 const AccessKinds AccessKind; 3419 3420 typedef bool result_type; 3421 bool failed() { return false; } 3422 bool found(APValue &Subobj, QualType SubobjType) { 3423 Result = Subobj; 3424 if (AccessKind == AK_ReadObjectRepresentation) 3425 return true; 3426 return CheckFullyInitialized(Info, E->getExprLoc(), SubobjType, Result); 3427 } 3428 bool found(APSInt &Value, QualType SubobjType) { 3429 Result = APValue(Value); 3430 return true; 3431 } 3432 bool found(APFloat &Value, QualType SubobjType) { 3433 Result = APValue(Value); 3434 return true; 3435 } 3436 }; 3437 } // end anonymous namespace 3438 3439 /// Extract the designated sub-object of an rvalue. 3440 static bool extractSubobject(EvalInfo &Info, const Expr *E, 3441 const CompleteObject &Obj, 3442 const SubobjectDesignator &Sub, APValue &Result, 3443 AccessKinds AK = AK_Read) { 3444 assert(AK == AK_Read || AK == AK_ReadObjectRepresentation); 3445 ExtractSubobjectHandler Handler = {Info, E, Result, AK}; 3446 return findSubobject(Info, E, Obj, Sub, Handler); 3447 } 3448 3449 namespace { 3450 struct ModifySubobjectHandler { 3451 EvalInfo &Info; 3452 APValue &NewVal; 3453 const Expr *E; 3454 3455 typedef bool result_type; 3456 static const AccessKinds AccessKind = AK_Assign; 3457 3458 bool checkConst(QualType QT) { 3459 // Assigning to a const object has undefined behavior. 3460 if (QT.isConstQualified()) { 3461 Info.FFDiag(E, diag::note_constexpr_modify_const_type) << QT; 3462 return false; 3463 } 3464 return true; 3465 } 3466 3467 bool failed() { return false; } 3468 bool found(APValue &Subobj, QualType SubobjType) { 3469 if (!checkConst(SubobjType)) 3470 return false; 3471 // We've been given ownership of NewVal, so just swap it in. 3472 Subobj.swap(NewVal); 3473 return true; 3474 } 3475 bool found(APSInt &Value, QualType SubobjType) { 3476 if (!checkConst(SubobjType)) 3477 return false; 3478 if (!NewVal.isInt()) { 3479 // Maybe trying to write a cast pointer value into a complex? 3480 Info.FFDiag(E); 3481 return false; 3482 } 3483 Value = NewVal.getInt(); 3484 return true; 3485 } 3486 bool found(APFloat &Value, QualType SubobjType) { 3487 if (!checkConst(SubobjType)) 3488 return false; 3489 Value = NewVal.getFloat(); 3490 return true; 3491 } 3492 }; 3493 } // end anonymous namespace 3494 3495 const AccessKinds ModifySubobjectHandler::AccessKind; 3496 3497 /// Update the designated sub-object of an rvalue to the given value. 3498 static bool modifySubobject(EvalInfo &Info, const Expr *E, 3499 const CompleteObject &Obj, 3500 const SubobjectDesignator &Sub, 3501 APValue &NewVal) { 3502 ModifySubobjectHandler Handler = { Info, NewVal, E }; 3503 return findSubobject(Info, E, Obj, Sub, Handler); 3504 } 3505 3506 /// Find the position where two subobject designators diverge, or equivalently 3507 /// the length of the common initial subsequence. 3508 static unsigned FindDesignatorMismatch(QualType ObjType, 3509 const SubobjectDesignator &A, 3510 const SubobjectDesignator &B, 3511 bool &WasArrayIndex) { 3512 unsigned I = 0, N = std::min(A.Entries.size(), B.Entries.size()); 3513 for (/**/; I != N; ++I) { 3514 if (!ObjType.isNull() && 3515 (ObjType->isArrayType() || ObjType->isAnyComplexType())) { 3516 // Next subobject is an array element. 3517 if (A.Entries[I].getAsArrayIndex() != B.Entries[I].getAsArrayIndex()) { 3518 WasArrayIndex = true; 3519 return I; 3520 } 3521 if (ObjType->isAnyComplexType()) 3522 ObjType = ObjType->castAs<ComplexType>()->getElementType(); 3523 else 3524 ObjType = ObjType->castAsArrayTypeUnsafe()->getElementType(); 3525 } else { 3526 if (A.Entries[I].getAsBaseOrMember() != 3527 B.Entries[I].getAsBaseOrMember()) { 3528 WasArrayIndex = false; 3529 return I; 3530 } 3531 if (const FieldDecl *FD = getAsField(A.Entries[I])) 3532 // Next subobject is a field. 3533 ObjType = FD->getType(); 3534 else 3535 // Next subobject is a base class. 3536 ObjType = QualType(); 3537 } 3538 } 3539 WasArrayIndex = false; 3540 return I; 3541 } 3542 3543 /// Determine whether the given subobject designators refer to elements of the 3544 /// same array object. 3545 static bool AreElementsOfSameArray(QualType ObjType, 3546 const SubobjectDesignator &A, 3547 const SubobjectDesignator &B) { 3548 if (A.Entries.size() != B.Entries.size()) 3549 return false; 3550 3551 bool IsArray = A.MostDerivedIsArrayElement; 3552 if (IsArray && A.MostDerivedPathLength != A.Entries.size()) 3553 // A is a subobject of the array element. 3554 return false; 3555 3556 // If A (and B) designates an array element, the last entry will be the array 3557 // index. That doesn't have to match. Otherwise, we're in the 'implicit array 3558 // of length 1' case, and the entire path must match. 3559 bool WasArrayIndex; 3560 unsigned CommonLength = FindDesignatorMismatch(ObjType, A, B, WasArrayIndex); 3561 return CommonLength >= A.Entries.size() - IsArray; 3562 } 3563 3564 /// Find the complete object to which an LValue refers. 3565 static CompleteObject findCompleteObject(EvalInfo &Info, const Expr *E, 3566 AccessKinds AK, const LValue &LVal, 3567 QualType LValType) { 3568 if (LVal.InvalidBase) { 3569 Info.FFDiag(E); 3570 return CompleteObject(); 3571 } 3572 3573 if (!LVal.Base) { 3574 Info.FFDiag(E, diag::note_constexpr_access_null) << AK; 3575 return CompleteObject(); 3576 } 3577 3578 CallStackFrame *Frame = nullptr; 3579 unsigned Depth = 0; 3580 if (LVal.getLValueCallIndex()) { 3581 std::tie(Frame, Depth) = 3582 Info.getCallFrameAndDepth(LVal.getLValueCallIndex()); 3583 if (!Frame) { 3584 Info.FFDiag(E, diag::note_constexpr_lifetime_ended, 1) 3585 << AK << LVal.Base.is<const ValueDecl*>(); 3586 NoteLValueLocation(Info, LVal.Base); 3587 return CompleteObject(); 3588 } 3589 } 3590 3591 bool IsAccess = isAnyAccess(AK); 3592 3593 // C++11 DR1311: An lvalue-to-rvalue conversion on a volatile-qualified type 3594 // is not a constant expression (even if the object is non-volatile). We also 3595 // apply this rule to C++98, in order to conform to the expected 'volatile' 3596 // semantics. 3597 if (isFormalAccess(AK) && LValType.isVolatileQualified()) { 3598 if (Info.getLangOpts().CPlusPlus) 3599 Info.FFDiag(E, diag::note_constexpr_access_volatile_type) 3600 << AK << LValType; 3601 else 3602 Info.FFDiag(E); 3603 return CompleteObject(); 3604 } 3605 3606 // Compute value storage location and type of base object. 3607 APValue *BaseVal = nullptr; 3608 QualType BaseType = getType(LVal.Base); 3609 3610 if (const ConstantExpr *CE = 3611 dyn_cast_or_null<ConstantExpr>(LVal.Base.dyn_cast<const Expr *>())) { 3612 /// Nested immediate invocation have been previously removed so if we found 3613 /// a ConstantExpr it can only be the EvaluatingDecl. 3614 assert(CE->isImmediateInvocation() && CE == Info.EvaluatingDecl); 3615 (void)CE; 3616 BaseVal = Info.EvaluatingDeclValue; 3617 } else if (const ValueDecl *D = LVal.Base.dyn_cast<const ValueDecl *>()) { 3618 // In C++98, const, non-volatile integers initialized with ICEs are ICEs. 3619 // In C++11, constexpr, non-volatile variables initialized with constant 3620 // expressions are constant expressions too. Inside constexpr functions, 3621 // parameters are constant expressions even if they're non-const. 3622 // In C++1y, objects local to a constant expression (those with a Frame) are 3623 // both readable and writable inside constant expressions. 3624 // In C, such things can also be folded, although they are not ICEs. 3625 const VarDecl *VD = dyn_cast<VarDecl>(D); 3626 if (VD) { 3627 if (const VarDecl *VDef = VD->getDefinition(Info.Ctx)) 3628 VD = VDef; 3629 } 3630 if (!VD || VD->isInvalidDecl()) { 3631 Info.FFDiag(E); 3632 return CompleteObject(); 3633 } 3634 3635 // Unless we're looking at a local variable or argument in a constexpr call, 3636 // the variable we're reading must be const. 3637 if (!Frame) { 3638 if (Info.getLangOpts().CPlusPlus14 && 3639 lifetimeStartedInEvaluation(Info, LVal.Base)) { 3640 // OK, we can read and modify an object if we're in the process of 3641 // evaluating its initializer, because its lifetime began in this 3642 // evaluation. 3643 } else if (isModification(AK)) { 3644 // All the remaining cases do not permit modification of the object. 3645 Info.FFDiag(E, diag::note_constexpr_modify_global); 3646 return CompleteObject(); 3647 } else if (VD->isConstexpr()) { 3648 // OK, we can read this variable. 3649 } else if (BaseType->isIntegralOrEnumerationType()) { 3650 // In OpenCL if a variable is in constant address space it is a const 3651 // value. 3652 if (!(BaseType.isConstQualified() || 3653 (Info.getLangOpts().OpenCL && 3654 BaseType.getAddressSpace() == LangAS::opencl_constant))) { 3655 if (!IsAccess) 3656 return CompleteObject(LVal.getLValueBase(), nullptr, BaseType); 3657 if (Info.getLangOpts().CPlusPlus) { 3658 Info.FFDiag(E, diag::note_constexpr_ltor_non_const_int, 1) << VD; 3659 Info.Note(VD->getLocation(), diag::note_declared_at); 3660 } else { 3661 Info.FFDiag(E); 3662 } 3663 return CompleteObject(); 3664 } 3665 } else if (!IsAccess) { 3666 return CompleteObject(LVal.getLValueBase(), nullptr, BaseType); 3667 } else if (BaseType->isFloatingType() && BaseType.isConstQualified()) { 3668 // We support folding of const floating-point types, in order to make 3669 // static const data members of such types (supported as an extension) 3670 // more useful. 3671 if (Info.getLangOpts().CPlusPlus11) { 3672 Info.CCEDiag(E, diag::note_constexpr_ltor_non_constexpr, 1) << VD; 3673 Info.Note(VD->getLocation(), diag::note_declared_at); 3674 } else { 3675 Info.CCEDiag(E); 3676 } 3677 } else if (BaseType.isConstQualified() && VD->hasDefinition(Info.Ctx)) { 3678 Info.CCEDiag(E, diag::note_constexpr_ltor_non_constexpr) << VD; 3679 // Keep evaluating to see what we can do. 3680 } else { 3681 // FIXME: Allow folding of values of any literal type in all languages. 3682 if (Info.checkingPotentialConstantExpression() && 3683 VD->getType().isConstQualified() && !VD->hasDefinition(Info.Ctx)) { 3684 // The definition of this variable could be constexpr. We can't 3685 // access it right now, but may be able to in future. 3686 } else if (Info.getLangOpts().CPlusPlus11) { 3687 Info.FFDiag(E, diag::note_constexpr_ltor_non_constexpr, 1) << VD; 3688 Info.Note(VD->getLocation(), diag::note_declared_at); 3689 } else { 3690 Info.FFDiag(E); 3691 } 3692 return CompleteObject(); 3693 } 3694 } 3695 3696 if (!evaluateVarDeclInit(Info, E, VD, Frame, BaseVal, &LVal)) 3697 return CompleteObject(); 3698 } else if (DynamicAllocLValue DA = LVal.Base.dyn_cast<DynamicAllocLValue>()) { 3699 Optional<DynAlloc*> Alloc = Info.lookupDynamicAlloc(DA); 3700 if (!Alloc) { 3701 Info.FFDiag(E, diag::note_constexpr_access_deleted_object) << AK; 3702 return CompleteObject(); 3703 } 3704 return CompleteObject(LVal.Base, &(*Alloc)->Value, 3705 LVal.Base.getDynamicAllocType()); 3706 } else { 3707 const Expr *Base = LVal.Base.dyn_cast<const Expr*>(); 3708 3709 if (!Frame) { 3710 if (const MaterializeTemporaryExpr *MTE = 3711 dyn_cast_or_null<MaterializeTemporaryExpr>(Base)) { 3712 assert(MTE->getStorageDuration() == SD_Static && 3713 "should have a frame for a non-global materialized temporary"); 3714 3715 // Per C++1y [expr.const]p2: 3716 // an lvalue-to-rvalue conversion [is not allowed unless it applies to] 3717 // - a [...] glvalue of integral or enumeration type that refers to 3718 // a non-volatile const object [...] 3719 // [...] 3720 // - a [...] glvalue of literal type that refers to a non-volatile 3721 // object whose lifetime began within the evaluation of e. 3722 // 3723 // C++11 misses the 'began within the evaluation of e' check and 3724 // instead allows all temporaries, including things like: 3725 // int &&r = 1; 3726 // int x = ++r; 3727 // constexpr int k = r; 3728 // Therefore we use the C++14 rules in C++11 too. 3729 // 3730 // Note that temporaries whose lifetimes began while evaluating a 3731 // variable's constructor are not usable while evaluating the 3732 // corresponding destructor, not even if they're of const-qualified 3733 // types. 3734 if (!(BaseType.isConstQualified() && 3735 BaseType->isIntegralOrEnumerationType()) && 3736 !lifetimeStartedInEvaluation(Info, LVal.Base)) { 3737 if (!IsAccess) 3738 return CompleteObject(LVal.getLValueBase(), nullptr, BaseType); 3739 Info.FFDiag(E, diag::note_constexpr_access_static_temporary, 1) << AK; 3740 Info.Note(MTE->getExprLoc(), diag::note_constexpr_temporary_here); 3741 return CompleteObject(); 3742 } 3743 3744 BaseVal = MTE->getOrCreateValue(false); 3745 assert(BaseVal && "got reference to unevaluated temporary"); 3746 } else { 3747 if (!IsAccess) 3748 return CompleteObject(LVal.getLValueBase(), nullptr, BaseType); 3749 APValue Val; 3750 LVal.moveInto(Val); 3751 Info.FFDiag(E, diag::note_constexpr_access_unreadable_object) 3752 << AK 3753 << Val.getAsString(Info.Ctx, 3754 Info.Ctx.getLValueReferenceType(LValType)); 3755 NoteLValueLocation(Info, LVal.Base); 3756 return CompleteObject(); 3757 } 3758 } else { 3759 BaseVal = Frame->getTemporary(Base, LVal.Base.getVersion()); 3760 assert(BaseVal && "missing value for temporary"); 3761 } 3762 } 3763 3764 // In C++14, we can't safely access any mutable state when we might be 3765 // evaluating after an unmodeled side effect. 3766 // 3767 // FIXME: Not all local state is mutable. Allow local constant subobjects 3768 // to be read here (but take care with 'mutable' fields). 3769 if ((Frame && Info.getLangOpts().CPlusPlus14 && 3770 Info.EvalStatus.HasSideEffects) || 3771 (isModification(AK) && Depth < Info.SpeculativeEvaluationDepth)) 3772 return CompleteObject(); 3773 3774 return CompleteObject(LVal.getLValueBase(), BaseVal, BaseType); 3775 } 3776 3777 /// Perform an lvalue-to-rvalue conversion on the given glvalue. This 3778 /// can also be used for 'lvalue-to-lvalue' conversions for looking up the 3779 /// glvalue referred to by an entity of reference type. 3780 /// 3781 /// \param Info - Information about the ongoing evaluation. 3782 /// \param Conv - The expression for which we are performing the conversion. 3783 /// Used for diagnostics. 3784 /// \param Type - The type of the glvalue (before stripping cv-qualifiers in the 3785 /// case of a non-class type). 3786 /// \param LVal - The glvalue on which we are attempting to perform this action. 3787 /// \param RVal - The produced value will be placed here. 3788 /// \param WantObjectRepresentation - If true, we're looking for the object 3789 /// representation rather than the value, and in particular, 3790 /// there is no requirement that the result be fully initialized. 3791 static bool 3792 handleLValueToRValueConversion(EvalInfo &Info, const Expr *Conv, QualType Type, 3793 const LValue &LVal, APValue &RVal, 3794 bool WantObjectRepresentation = false) { 3795 if (LVal.Designator.Invalid) 3796 return false; 3797 3798 // Check for special cases where there is no existing APValue to look at. 3799 const Expr *Base = LVal.Base.dyn_cast<const Expr*>(); 3800 3801 AccessKinds AK = 3802 WantObjectRepresentation ? AK_ReadObjectRepresentation : AK_Read; 3803 3804 if (Base && !LVal.getLValueCallIndex() && !Type.isVolatileQualified()) { 3805 if (const CompoundLiteralExpr *CLE = dyn_cast<CompoundLiteralExpr>(Base)) { 3806 // In C99, a CompoundLiteralExpr is an lvalue, and we defer evaluating the 3807 // initializer until now for such expressions. Such an expression can't be 3808 // an ICE in C, so this only matters for fold. 3809 if (Type.isVolatileQualified()) { 3810 Info.FFDiag(Conv); 3811 return false; 3812 } 3813 APValue Lit; 3814 if (!Evaluate(Lit, Info, CLE->getInitializer())) 3815 return false; 3816 CompleteObject LitObj(LVal.Base, &Lit, Base->getType()); 3817 return extractSubobject(Info, Conv, LitObj, LVal.Designator, RVal, AK); 3818 } else if (isa<StringLiteral>(Base) || isa<PredefinedExpr>(Base)) { 3819 // Special-case character extraction so we don't have to construct an 3820 // APValue for the whole string. 3821 assert(LVal.Designator.Entries.size() <= 1 && 3822 "Can only read characters from string literals"); 3823 if (LVal.Designator.Entries.empty()) { 3824 // Fail for now for LValue to RValue conversion of an array. 3825 // (This shouldn't show up in C/C++, but it could be triggered by a 3826 // weird EvaluateAsRValue call from a tool.) 3827 Info.FFDiag(Conv); 3828 return false; 3829 } 3830 if (LVal.Designator.isOnePastTheEnd()) { 3831 if (Info.getLangOpts().CPlusPlus11) 3832 Info.FFDiag(Conv, diag::note_constexpr_access_past_end) << AK; 3833 else 3834 Info.FFDiag(Conv); 3835 return false; 3836 } 3837 uint64_t CharIndex = LVal.Designator.Entries[0].getAsArrayIndex(); 3838 RVal = APValue(extractStringLiteralCharacter(Info, Base, CharIndex)); 3839 return true; 3840 } 3841 } 3842 3843 CompleteObject Obj = findCompleteObject(Info, Conv, AK, LVal, Type); 3844 return Obj && extractSubobject(Info, Conv, Obj, LVal.Designator, RVal, AK); 3845 } 3846 3847 /// Perform an assignment of Val to LVal. Takes ownership of Val. 3848 static bool handleAssignment(EvalInfo &Info, const Expr *E, const LValue &LVal, 3849 QualType LValType, APValue &Val) { 3850 if (LVal.Designator.Invalid) 3851 return false; 3852 3853 if (!Info.getLangOpts().CPlusPlus14) { 3854 Info.FFDiag(E); 3855 return false; 3856 } 3857 3858 CompleteObject Obj = findCompleteObject(Info, E, AK_Assign, LVal, LValType); 3859 return Obj && modifySubobject(Info, E, Obj, LVal.Designator, Val); 3860 } 3861 3862 namespace { 3863 struct CompoundAssignSubobjectHandler { 3864 EvalInfo &Info; 3865 const Expr *E; 3866 QualType PromotedLHSType; 3867 BinaryOperatorKind Opcode; 3868 const APValue &RHS; 3869 3870 static const AccessKinds AccessKind = AK_Assign; 3871 3872 typedef bool result_type; 3873 3874 bool checkConst(QualType QT) { 3875 // Assigning to a const object has undefined behavior. 3876 if (QT.isConstQualified()) { 3877 Info.FFDiag(E, diag::note_constexpr_modify_const_type) << QT; 3878 return false; 3879 } 3880 return true; 3881 } 3882 3883 bool failed() { return false; } 3884 bool found(APValue &Subobj, QualType SubobjType) { 3885 switch (Subobj.getKind()) { 3886 case APValue::Int: 3887 return found(Subobj.getInt(), SubobjType); 3888 case APValue::Float: 3889 return found(Subobj.getFloat(), SubobjType); 3890 case APValue::ComplexInt: 3891 case APValue::ComplexFloat: 3892 // FIXME: Implement complex compound assignment. 3893 Info.FFDiag(E); 3894 return false; 3895 case APValue::LValue: 3896 return foundPointer(Subobj, SubobjType); 3897 default: 3898 // FIXME: can this happen? 3899 Info.FFDiag(E); 3900 return false; 3901 } 3902 } 3903 bool found(APSInt &Value, QualType SubobjType) { 3904 if (!checkConst(SubobjType)) 3905 return false; 3906 3907 if (!SubobjType->isIntegerType()) { 3908 // We don't support compound assignment on integer-cast-to-pointer 3909 // values. 3910 Info.FFDiag(E); 3911 return false; 3912 } 3913 3914 if (RHS.isInt()) { 3915 APSInt LHS = 3916 HandleIntToIntCast(Info, E, PromotedLHSType, SubobjType, Value); 3917 if (!handleIntIntBinOp(Info, E, LHS, Opcode, RHS.getInt(), LHS)) 3918 return false; 3919 Value = HandleIntToIntCast(Info, E, SubobjType, PromotedLHSType, LHS); 3920 return true; 3921 } else if (RHS.isFloat()) { 3922 APFloat FValue(0.0); 3923 return HandleIntToFloatCast(Info, E, SubobjType, Value, PromotedLHSType, 3924 FValue) && 3925 handleFloatFloatBinOp(Info, E, FValue, Opcode, RHS.getFloat()) && 3926 HandleFloatToIntCast(Info, E, PromotedLHSType, FValue, SubobjType, 3927 Value); 3928 } 3929 3930 Info.FFDiag(E); 3931 return false; 3932 } 3933 bool found(APFloat &Value, QualType SubobjType) { 3934 return checkConst(SubobjType) && 3935 HandleFloatToFloatCast(Info, E, SubobjType, PromotedLHSType, 3936 Value) && 3937 handleFloatFloatBinOp(Info, E, Value, Opcode, RHS.getFloat()) && 3938 HandleFloatToFloatCast(Info, E, PromotedLHSType, SubobjType, Value); 3939 } 3940 bool foundPointer(APValue &Subobj, QualType SubobjType) { 3941 if (!checkConst(SubobjType)) 3942 return false; 3943 3944 QualType PointeeType; 3945 if (const PointerType *PT = SubobjType->getAs<PointerType>()) 3946 PointeeType = PT->getPointeeType(); 3947 3948 if (PointeeType.isNull() || !RHS.isInt() || 3949 (Opcode != BO_Add && Opcode != BO_Sub)) { 3950 Info.FFDiag(E); 3951 return false; 3952 } 3953 3954 APSInt Offset = RHS.getInt(); 3955 if (Opcode == BO_Sub) 3956 negateAsSigned(Offset); 3957 3958 LValue LVal; 3959 LVal.setFrom(Info.Ctx, Subobj); 3960 if (!HandleLValueArrayAdjustment(Info, E, LVal, PointeeType, Offset)) 3961 return false; 3962 LVal.moveInto(Subobj); 3963 return true; 3964 } 3965 }; 3966 } // end anonymous namespace 3967 3968 const AccessKinds CompoundAssignSubobjectHandler::AccessKind; 3969 3970 /// Perform a compound assignment of LVal <op>= RVal. 3971 static bool handleCompoundAssignment( 3972 EvalInfo &Info, const Expr *E, 3973 const LValue &LVal, QualType LValType, QualType PromotedLValType, 3974 BinaryOperatorKind Opcode, const APValue &RVal) { 3975 if (LVal.Designator.Invalid) 3976 return false; 3977 3978 if (!Info.getLangOpts().CPlusPlus14) { 3979 Info.FFDiag(E); 3980 return false; 3981 } 3982 3983 CompleteObject Obj = findCompleteObject(Info, E, AK_Assign, LVal, LValType); 3984 CompoundAssignSubobjectHandler Handler = { Info, E, PromotedLValType, Opcode, 3985 RVal }; 3986 return Obj && findSubobject(Info, E, Obj, LVal.Designator, Handler); 3987 } 3988 3989 namespace { 3990 struct IncDecSubobjectHandler { 3991 EvalInfo &Info; 3992 const UnaryOperator *E; 3993 AccessKinds AccessKind; 3994 APValue *Old; 3995 3996 typedef bool result_type; 3997 3998 bool checkConst(QualType QT) { 3999 // Assigning to a const object has undefined behavior. 4000 if (QT.isConstQualified()) { 4001 Info.FFDiag(E, diag::note_constexpr_modify_const_type) << QT; 4002 return false; 4003 } 4004 return true; 4005 } 4006 4007 bool failed() { return false; } 4008 bool found(APValue &Subobj, QualType SubobjType) { 4009 // Stash the old value. Also clear Old, so we don't clobber it later 4010 // if we're post-incrementing a complex. 4011 if (Old) { 4012 *Old = Subobj; 4013 Old = nullptr; 4014 } 4015 4016 switch (Subobj.getKind()) { 4017 case APValue::Int: 4018 return found(Subobj.getInt(), SubobjType); 4019 case APValue::Float: 4020 return found(Subobj.getFloat(), SubobjType); 4021 case APValue::ComplexInt: 4022 return found(Subobj.getComplexIntReal(), 4023 SubobjType->castAs<ComplexType>()->getElementType() 4024 .withCVRQualifiers(SubobjType.getCVRQualifiers())); 4025 case APValue::ComplexFloat: 4026 return found(Subobj.getComplexFloatReal(), 4027 SubobjType->castAs<ComplexType>()->getElementType() 4028 .withCVRQualifiers(SubobjType.getCVRQualifiers())); 4029 case APValue::LValue: 4030 return foundPointer(Subobj, SubobjType); 4031 default: 4032 // FIXME: can this happen? 4033 Info.FFDiag(E); 4034 return false; 4035 } 4036 } 4037 bool found(APSInt &Value, QualType SubobjType) { 4038 if (!checkConst(SubobjType)) 4039 return false; 4040 4041 if (!SubobjType->isIntegerType()) { 4042 // We don't support increment / decrement on integer-cast-to-pointer 4043 // values. 4044 Info.FFDiag(E); 4045 return false; 4046 } 4047 4048 if (Old) *Old = APValue(Value); 4049 4050 // bool arithmetic promotes to int, and the conversion back to bool 4051 // doesn't reduce mod 2^n, so special-case it. 4052 if (SubobjType->isBooleanType()) { 4053 if (AccessKind == AK_Increment) 4054 Value = 1; 4055 else 4056 Value = !Value; 4057 return true; 4058 } 4059 4060 bool WasNegative = Value.isNegative(); 4061 if (AccessKind == AK_Increment) { 4062 ++Value; 4063 4064 if (!WasNegative && Value.isNegative() && E->canOverflow()) { 4065 APSInt ActualValue(Value, /*IsUnsigned*/true); 4066 return HandleOverflow(Info, E, ActualValue, SubobjType); 4067 } 4068 } else { 4069 --Value; 4070 4071 if (WasNegative && !Value.isNegative() && E->canOverflow()) { 4072 unsigned BitWidth = Value.getBitWidth(); 4073 APSInt ActualValue(Value.sext(BitWidth + 1), /*IsUnsigned*/false); 4074 ActualValue.setBit(BitWidth); 4075 return HandleOverflow(Info, E, ActualValue, SubobjType); 4076 } 4077 } 4078 return true; 4079 } 4080 bool found(APFloat &Value, QualType SubobjType) { 4081 if (!checkConst(SubobjType)) 4082 return false; 4083 4084 if (Old) *Old = APValue(Value); 4085 4086 APFloat One(Value.getSemantics(), 1); 4087 if (AccessKind == AK_Increment) 4088 Value.add(One, APFloat::rmNearestTiesToEven); 4089 else 4090 Value.subtract(One, APFloat::rmNearestTiesToEven); 4091 return true; 4092 } 4093 bool foundPointer(APValue &Subobj, QualType SubobjType) { 4094 if (!checkConst(SubobjType)) 4095 return false; 4096 4097 QualType PointeeType; 4098 if (const PointerType *PT = SubobjType->getAs<PointerType>()) 4099 PointeeType = PT->getPointeeType(); 4100 else { 4101 Info.FFDiag(E); 4102 return false; 4103 } 4104 4105 LValue LVal; 4106 LVal.setFrom(Info.Ctx, Subobj); 4107 if (!HandleLValueArrayAdjustment(Info, E, LVal, PointeeType, 4108 AccessKind == AK_Increment ? 1 : -1)) 4109 return false; 4110 LVal.moveInto(Subobj); 4111 return true; 4112 } 4113 }; 4114 } // end anonymous namespace 4115 4116 /// Perform an increment or decrement on LVal. 4117 static bool handleIncDec(EvalInfo &Info, const Expr *E, const LValue &LVal, 4118 QualType LValType, bool IsIncrement, APValue *Old) { 4119 if (LVal.Designator.Invalid) 4120 return false; 4121 4122 if (!Info.getLangOpts().CPlusPlus14) { 4123 Info.FFDiag(E); 4124 return false; 4125 } 4126 4127 AccessKinds AK = IsIncrement ? AK_Increment : AK_Decrement; 4128 CompleteObject Obj = findCompleteObject(Info, E, AK, LVal, LValType); 4129 IncDecSubobjectHandler Handler = {Info, cast<UnaryOperator>(E), AK, Old}; 4130 return Obj && findSubobject(Info, E, Obj, LVal.Designator, Handler); 4131 } 4132 4133 /// Build an lvalue for the object argument of a member function call. 4134 static bool EvaluateObjectArgument(EvalInfo &Info, const Expr *Object, 4135 LValue &This) { 4136 if (Object->getType()->isPointerType() && Object->isRValue()) 4137 return EvaluatePointer(Object, This, Info); 4138 4139 if (Object->isGLValue()) 4140 return EvaluateLValue(Object, This, Info); 4141 4142 if (Object->getType()->isLiteralType(Info.Ctx)) 4143 return EvaluateTemporary(Object, This, Info); 4144 4145 Info.FFDiag(Object, diag::note_constexpr_nonliteral) << Object->getType(); 4146 return false; 4147 } 4148 4149 /// HandleMemberPointerAccess - Evaluate a member access operation and build an 4150 /// lvalue referring to the result. 4151 /// 4152 /// \param Info - Information about the ongoing evaluation. 4153 /// \param LV - An lvalue referring to the base of the member pointer. 4154 /// \param RHS - The member pointer expression. 4155 /// \param IncludeMember - Specifies whether the member itself is included in 4156 /// the resulting LValue subobject designator. This is not possible when 4157 /// creating a bound member function. 4158 /// \return The field or method declaration to which the member pointer refers, 4159 /// or 0 if evaluation fails. 4160 static const ValueDecl *HandleMemberPointerAccess(EvalInfo &Info, 4161 QualType LVType, 4162 LValue &LV, 4163 const Expr *RHS, 4164 bool IncludeMember = true) { 4165 MemberPtr MemPtr; 4166 if (!EvaluateMemberPointer(RHS, MemPtr, Info)) 4167 return nullptr; 4168 4169 // C++11 [expr.mptr.oper]p6: If the second operand is the null pointer to 4170 // member value, the behavior is undefined. 4171 if (!MemPtr.getDecl()) { 4172 // FIXME: Specific diagnostic. 4173 Info.FFDiag(RHS); 4174 return nullptr; 4175 } 4176 4177 if (MemPtr.isDerivedMember()) { 4178 // This is a member of some derived class. Truncate LV appropriately. 4179 // The end of the derived-to-base path for the base object must match the 4180 // derived-to-base path for the member pointer. 4181 if (LV.Designator.MostDerivedPathLength + MemPtr.Path.size() > 4182 LV.Designator.Entries.size()) { 4183 Info.FFDiag(RHS); 4184 return nullptr; 4185 } 4186 unsigned PathLengthToMember = 4187 LV.Designator.Entries.size() - MemPtr.Path.size(); 4188 for (unsigned I = 0, N = MemPtr.Path.size(); I != N; ++I) { 4189 const CXXRecordDecl *LVDecl = getAsBaseClass( 4190 LV.Designator.Entries[PathLengthToMember + I]); 4191 const CXXRecordDecl *MPDecl = MemPtr.Path[I]; 4192 if (LVDecl->getCanonicalDecl() != MPDecl->getCanonicalDecl()) { 4193 Info.FFDiag(RHS); 4194 return nullptr; 4195 } 4196 } 4197 4198 // Truncate the lvalue to the appropriate derived class. 4199 if (!CastToDerivedClass(Info, RHS, LV, MemPtr.getContainingRecord(), 4200 PathLengthToMember)) 4201 return nullptr; 4202 } else if (!MemPtr.Path.empty()) { 4203 // Extend the LValue path with the member pointer's path. 4204 LV.Designator.Entries.reserve(LV.Designator.Entries.size() + 4205 MemPtr.Path.size() + IncludeMember); 4206 4207 // Walk down to the appropriate base class. 4208 if (const PointerType *PT = LVType->getAs<PointerType>()) 4209 LVType = PT->getPointeeType(); 4210 const CXXRecordDecl *RD = LVType->getAsCXXRecordDecl(); 4211 assert(RD && "member pointer access on non-class-type expression"); 4212 // The first class in the path is that of the lvalue. 4213 for (unsigned I = 1, N = MemPtr.Path.size(); I != N; ++I) { 4214 const CXXRecordDecl *Base = MemPtr.Path[N - I - 1]; 4215 if (!HandleLValueDirectBase(Info, RHS, LV, RD, Base)) 4216 return nullptr; 4217 RD = Base; 4218 } 4219 // Finally cast to the class containing the member. 4220 if (!HandleLValueDirectBase(Info, RHS, LV, RD, 4221 MemPtr.getContainingRecord())) 4222 return nullptr; 4223 } 4224 4225 // Add the member. Note that we cannot build bound member functions here. 4226 if (IncludeMember) { 4227 if (const FieldDecl *FD = dyn_cast<FieldDecl>(MemPtr.getDecl())) { 4228 if (!HandleLValueMember(Info, RHS, LV, FD)) 4229 return nullptr; 4230 } else if (const IndirectFieldDecl *IFD = 4231 dyn_cast<IndirectFieldDecl>(MemPtr.getDecl())) { 4232 if (!HandleLValueIndirectMember(Info, RHS, LV, IFD)) 4233 return nullptr; 4234 } else { 4235 llvm_unreachable("can't construct reference to bound member function"); 4236 } 4237 } 4238 4239 return MemPtr.getDecl(); 4240 } 4241 4242 static const ValueDecl *HandleMemberPointerAccess(EvalInfo &Info, 4243 const BinaryOperator *BO, 4244 LValue &LV, 4245 bool IncludeMember = true) { 4246 assert(BO->getOpcode() == BO_PtrMemD || BO->getOpcode() == BO_PtrMemI); 4247 4248 if (!EvaluateObjectArgument(Info, BO->getLHS(), LV)) { 4249 if (Info.noteFailure()) { 4250 MemberPtr MemPtr; 4251 EvaluateMemberPointer(BO->getRHS(), MemPtr, Info); 4252 } 4253 return nullptr; 4254 } 4255 4256 return HandleMemberPointerAccess(Info, BO->getLHS()->getType(), LV, 4257 BO->getRHS(), IncludeMember); 4258 } 4259 4260 /// HandleBaseToDerivedCast - Apply the given base-to-derived cast operation on 4261 /// the provided lvalue, which currently refers to the base object. 4262 static bool HandleBaseToDerivedCast(EvalInfo &Info, const CastExpr *E, 4263 LValue &Result) { 4264 SubobjectDesignator &D = Result.Designator; 4265 if (D.Invalid || !Result.checkNullPointer(Info, E, CSK_Derived)) 4266 return false; 4267 4268 QualType TargetQT = E->getType(); 4269 if (const PointerType *PT = TargetQT->getAs<PointerType>()) 4270 TargetQT = PT->getPointeeType(); 4271 4272 // Check this cast lands within the final derived-to-base subobject path. 4273 if (D.MostDerivedPathLength + E->path_size() > D.Entries.size()) { 4274 Info.CCEDiag(E, diag::note_constexpr_invalid_downcast) 4275 << D.MostDerivedType << TargetQT; 4276 return false; 4277 } 4278 4279 // Check the type of the final cast. We don't need to check the path, 4280 // since a cast can only be formed if the path is unique. 4281 unsigned NewEntriesSize = D.Entries.size() - E->path_size(); 4282 const CXXRecordDecl *TargetType = TargetQT->getAsCXXRecordDecl(); 4283 const CXXRecordDecl *FinalType; 4284 if (NewEntriesSize == D.MostDerivedPathLength) 4285 FinalType = D.MostDerivedType->getAsCXXRecordDecl(); 4286 else 4287 FinalType = getAsBaseClass(D.Entries[NewEntriesSize - 1]); 4288 if (FinalType->getCanonicalDecl() != TargetType->getCanonicalDecl()) { 4289 Info.CCEDiag(E, diag::note_constexpr_invalid_downcast) 4290 << D.MostDerivedType << TargetQT; 4291 return false; 4292 } 4293 4294 // Truncate the lvalue to the appropriate derived class. 4295 return CastToDerivedClass(Info, E, Result, TargetType, NewEntriesSize); 4296 } 4297 4298 /// Get the value to use for a default-initialized object of type T. 4299 static APValue getDefaultInitValue(QualType T) { 4300 if (auto *RD = T->getAsCXXRecordDecl()) { 4301 if (RD->isUnion()) 4302 return APValue((const FieldDecl*)nullptr); 4303 4304 APValue Struct(APValue::UninitStruct(), RD->getNumBases(), 4305 std::distance(RD->field_begin(), RD->field_end())); 4306 4307 unsigned Index = 0; 4308 for (CXXRecordDecl::base_class_const_iterator I = RD->bases_begin(), 4309 End = RD->bases_end(); I != End; ++I, ++Index) 4310 Struct.getStructBase(Index) = getDefaultInitValue(I->getType()); 4311 4312 for (const auto *I : RD->fields()) { 4313 if (I->isUnnamedBitfield()) 4314 continue; 4315 Struct.getStructField(I->getFieldIndex()) = 4316 getDefaultInitValue(I->getType()); 4317 } 4318 return Struct; 4319 } 4320 4321 if (auto *AT = 4322 dyn_cast_or_null<ConstantArrayType>(T->getAsArrayTypeUnsafe())) { 4323 APValue Array(APValue::UninitArray(), 0, AT->getSize().getZExtValue()); 4324 if (Array.hasArrayFiller()) 4325 Array.getArrayFiller() = getDefaultInitValue(AT->getElementType()); 4326 return Array; 4327 } 4328 4329 return APValue::IndeterminateValue(); 4330 } 4331 4332 namespace { 4333 enum EvalStmtResult { 4334 /// Evaluation failed. 4335 ESR_Failed, 4336 /// Hit a 'return' statement. 4337 ESR_Returned, 4338 /// Evaluation succeeded. 4339 ESR_Succeeded, 4340 /// Hit a 'continue' statement. 4341 ESR_Continue, 4342 /// Hit a 'break' statement. 4343 ESR_Break, 4344 /// Still scanning for 'case' or 'default' statement. 4345 ESR_CaseNotFound 4346 }; 4347 } 4348 4349 static bool EvaluateVarDecl(EvalInfo &Info, const VarDecl *VD) { 4350 // We don't need to evaluate the initializer for a static local. 4351 if (!VD->hasLocalStorage()) 4352 return true; 4353 4354 LValue Result; 4355 APValue &Val = 4356 Info.CurrentCall->createTemporary(VD, VD->getType(), true, Result); 4357 4358 const Expr *InitE = VD->getInit(); 4359 if (!InitE) { 4360 Val = getDefaultInitValue(VD->getType()); 4361 return true; 4362 } 4363 4364 if (InitE->isValueDependent()) 4365 return false; 4366 4367 if (!EvaluateInPlace(Val, Info, Result, InitE)) { 4368 // Wipe out any partially-computed value, to allow tracking that this 4369 // evaluation failed. 4370 Val = APValue(); 4371 return false; 4372 } 4373 4374 return true; 4375 } 4376 4377 static bool EvaluateDecl(EvalInfo &Info, const Decl *D) { 4378 bool OK = true; 4379 4380 if (const VarDecl *VD = dyn_cast<VarDecl>(D)) 4381 OK &= EvaluateVarDecl(Info, VD); 4382 4383 if (const DecompositionDecl *DD = dyn_cast<DecompositionDecl>(D)) 4384 for (auto *BD : DD->bindings()) 4385 if (auto *VD = BD->getHoldingVar()) 4386 OK &= EvaluateDecl(Info, VD); 4387 4388 return OK; 4389 } 4390 4391 4392 /// Evaluate a condition (either a variable declaration or an expression). 4393 static bool EvaluateCond(EvalInfo &Info, const VarDecl *CondDecl, 4394 const Expr *Cond, bool &Result) { 4395 FullExpressionRAII Scope(Info); 4396 if (CondDecl && !EvaluateDecl(Info, CondDecl)) 4397 return false; 4398 if (!EvaluateAsBooleanCondition(Cond, Result, Info)) 4399 return false; 4400 return Scope.destroy(); 4401 } 4402 4403 namespace { 4404 /// A location where the result (returned value) of evaluating a 4405 /// statement should be stored. 4406 struct StmtResult { 4407 /// The APValue that should be filled in with the returned value. 4408 APValue &Value; 4409 /// The location containing the result, if any (used to support RVO). 4410 const LValue *Slot; 4411 }; 4412 4413 struct TempVersionRAII { 4414 CallStackFrame &Frame; 4415 4416 TempVersionRAII(CallStackFrame &Frame) : Frame(Frame) { 4417 Frame.pushTempVersion(); 4418 } 4419 4420 ~TempVersionRAII() { 4421 Frame.popTempVersion(); 4422 } 4423 }; 4424 4425 } 4426 4427 static EvalStmtResult EvaluateStmt(StmtResult &Result, EvalInfo &Info, 4428 const Stmt *S, 4429 const SwitchCase *SC = nullptr); 4430 4431 /// Evaluate the body of a loop, and translate the result as appropriate. 4432 static EvalStmtResult EvaluateLoopBody(StmtResult &Result, EvalInfo &Info, 4433 const Stmt *Body, 4434 const SwitchCase *Case = nullptr) { 4435 BlockScopeRAII Scope(Info); 4436 4437 EvalStmtResult ESR = EvaluateStmt(Result, Info, Body, Case); 4438 if (ESR != ESR_Failed && ESR != ESR_CaseNotFound && !Scope.destroy()) 4439 ESR = ESR_Failed; 4440 4441 switch (ESR) { 4442 case ESR_Break: 4443 return ESR_Succeeded; 4444 case ESR_Succeeded: 4445 case ESR_Continue: 4446 return ESR_Continue; 4447 case ESR_Failed: 4448 case ESR_Returned: 4449 case ESR_CaseNotFound: 4450 return ESR; 4451 } 4452 llvm_unreachable("Invalid EvalStmtResult!"); 4453 } 4454 4455 /// Evaluate a switch statement. 4456 static EvalStmtResult EvaluateSwitch(StmtResult &Result, EvalInfo &Info, 4457 const SwitchStmt *SS) { 4458 BlockScopeRAII Scope(Info); 4459 4460 // Evaluate the switch condition. 4461 APSInt Value; 4462 { 4463 if (const Stmt *Init = SS->getInit()) { 4464 EvalStmtResult ESR = EvaluateStmt(Result, Info, Init); 4465 if (ESR != ESR_Succeeded) { 4466 if (ESR != ESR_Failed && !Scope.destroy()) 4467 ESR = ESR_Failed; 4468 return ESR; 4469 } 4470 } 4471 4472 FullExpressionRAII CondScope(Info); 4473 if (SS->getConditionVariable() && 4474 !EvaluateDecl(Info, SS->getConditionVariable())) 4475 return ESR_Failed; 4476 if (!EvaluateInteger(SS->getCond(), Value, Info)) 4477 return ESR_Failed; 4478 if (!CondScope.destroy()) 4479 return ESR_Failed; 4480 } 4481 4482 // Find the switch case corresponding to the value of the condition. 4483 // FIXME: Cache this lookup. 4484 const SwitchCase *Found = nullptr; 4485 for (const SwitchCase *SC = SS->getSwitchCaseList(); SC; 4486 SC = SC->getNextSwitchCase()) { 4487 if (isa<DefaultStmt>(SC)) { 4488 Found = SC; 4489 continue; 4490 } 4491 4492 const CaseStmt *CS = cast<CaseStmt>(SC); 4493 APSInt LHS = CS->getLHS()->EvaluateKnownConstInt(Info.Ctx); 4494 APSInt RHS = CS->getRHS() ? CS->getRHS()->EvaluateKnownConstInt(Info.Ctx) 4495 : LHS; 4496 if (LHS <= Value && Value <= RHS) { 4497 Found = SC; 4498 break; 4499 } 4500 } 4501 4502 if (!Found) 4503 return Scope.destroy() ? ESR_Succeeded : ESR_Failed; 4504 4505 // Search the switch body for the switch case and evaluate it from there. 4506 EvalStmtResult ESR = EvaluateStmt(Result, Info, SS->getBody(), Found); 4507 if (ESR != ESR_Failed && ESR != ESR_CaseNotFound && !Scope.destroy()) 4508 return ESR_Failed; 4509 4510 switch (ESR) { 4511 case ESR_Break: 4512 return ESR_Succeeded; 4513 case ESR_Succeeded: 4514 case ESR_Continue: 4515 case ESR_Failed: 4516 case ESR_Returned: 4517 return ESR; 4518 case ESR_CaseNotFound: 4519 // This can only happen if the switch case is nested within a statement 4520 // expression. We have no intention of supporting that. 4521 Info.FFDiag(Found->getBeginLoc(), 4522 diag::note_constexpr_stmt_expr_unsupported); 4523 return ESR_Failed; 4524 } 4525 llvm_unreachable("Invalid EvalStmtResult!"); 4526 } 4527 4528 // Evaluate a statement. 4529 static EvalStmtResult EvaluateStmt(StmtResult &Result, EvalInfo &Info, 4530 const Stmt *S, const SwitchCase *Case) { 4531 if (!Info.nextStep(S)) 4532 return ESR_Failed; 4533 4534 // If we're hunting down a 'case' or 'default' label, recurse through 4535 // substatements until we hit the label. 4536 if (Case) { 4537 switch (S->getStmtClass()) { 4538 case Stmt::CompoundStmtClass: 4539 // FIXME: Precompute which substatement of a compound statement we 4540 // would jump to, and go straight there rather than performing a 4541 // linear scan each time. 4542 case Stmt::LabelStmtClass: 4543 case Stmt::AttributedStmtClass: 4544 case Stmt::DoStmtClass: 4545 break; 4546 4547 case Stmt::CaseStmtClass: 4548 case Stmt::DefaultStmtClass: 4549 if (Case == S) 4550 Case = nullptr; 4551 break; 4552 4553 case Stmt::IfStmtClass: { 4554 // FIXME: Precompute which side of an 'if' we would jump to, and go 4555 // straight there rather than scanning both sides. 4556 const IfStmt *IS = cast<IfStmt>(S); 4557 4558 // Wrap the evaluation in a block scope, in case it's a DeclStmt 4559 // preceded by our switch label. 4560 BlockScopeRAII Scope(Info); 4561 4562 // Step into the init statement in case it brings an (uninitialized) 4563 // variable into scope. 4564 if (const Stmt *Init = IS->getInit()) { 4565 EvalStmtResult ESR = EvaluateStmt(Result, Info, Init, Case); 4566 if (ESR != ESR_CaseNotFound) { 4567 assert(ESR != ESR_Succeeded); 4568 return ESR; 4569 } 4570 } 4571 4572 // Condition variable must be initialized if it exists. 4573 // FIXME: We can skip evaluating the body if there's a condition 4574 // variable, as there can't be any case labels within it. 4575 // (The same is true for 'for' statements.) 4576 4577 EvalStmtResult ESR = EvaluateStmt(Result, Info, IS->getThen(), Case); 4578 if (ESR == ESR_Failed) 4579 return ESR; 4580 if (ESR != ESR_CaseNotFound) 4581 return Scope.destroy() ? ESR : ESR_Failed; 4582 if (!IS->getElse()) 4583 return ESR_CaseNotFound; 4584 4585 ESR = EvaluateStmt(Result, Info, IS->getElse(), Case); 4586 if (ESR == ESR_Failed) 4587 return ESR; 4588 if (ESR != ESR_CaseNotFound) 4589 return Scope.destroy() ? ESR : ESR_Failed; 4590 return ESR_CaseNotFound; 4591 } 4592 4593 case Stmt::WhileStmtClass: { 4594 EvalStmtResult ESR = 4595 EvaluateLoopBody(Result, Info, cast<WhileStmt>(S)->getBody(), Case); 4596 if (ESR != ESR_Continue) 4597 return ESR; 4598 break; 4599 } 4600 4601 case Stmt::ForStmtClass: { 4602 const ForStmt *FS = cast<ForStmt>(S); 4603 BlockScopeRAII Scope(Info); 4604 4605 // Step into the init statement in case it brings an (uninitialized) 4606 // variable into scope. 4607 if (const Stmt *Init = FS->getInit()) { 4608 EvalStmtResult ESR = EvaluateStmt(Result, Info, Init, Case); 4609 if (ESR != ESR_CaseNotFound) { 4610 assert(ESR != ESR_Succeeded); 4611 return ESR; 4612 } 4613 } 4614 4615 EvalStmtResult ESR = 4616 EvaluateLoopBody(Result, Info, FS->getBody(), Case); 4617 if (ESR != ESR_Continue) 4618 return ESR; 4619 if (FS->getInc()) { 4620 FullExpressionRAII IncScope(Info); 4621 if (!EvaluateIgnoredValue(Info, FS->getInc()) || !IncScope.destroy()) 4622 return ESR_Failed; 4623 } 4624 break; 4625 } 4626 4627 case Stmt::DeclStmtClass: { 4628 // Start the lifetime of any uninitialized variables we encounter. They 4629 // might be used by the selected branch of the switch. 4630 const DeclStmt *DS = cast<DeclStmt>(S); 4631 for (const auto *D : DS->decls()) { 4632 if (const auto *VD = dyn_cast<VarDecl>(D)) { 4633 if (VD->hasLocalStorage() && !VD->getInit()) 4634 if (!EvaluateVarDecl(Info, VD)) 4635 return ESR_Failed; 4636 // FIXME: If the variable has initialization that can't be jumped 4637 // over, bail out of any immediately-surrounding compound-statement 4638 // too. There can't be any case labels here. 4639 } 4640 } 4641 return ESR_CaseNotFound; 4642 } 4643 4644 default: 4645 return ESR_CaseNotFound; 4646 } 4647 } 4648 4649 switch (S->getStmtClass()) { 4650 default: 4651 if (const Expr *E = dyn_cast<Expr>(S)) { 4652 // Don't bother evaluating beyond an expression-statement which couldn't 4653 // be evaluated. 4654 // FIXME: Do we need the FullExpressionRAII object here? 4655 // VisitExprWithCleanups should create one when necessary. 4656 FullExpressionRAII Scope(Info); 4657 if (!EvaluateIgnoredValue(Info, E) || !Scope.destroy()) 4658 return ESR_Failed; 4659 return ESR_Succeeded; 4660 } 4661 4662 Info.FFDiag(S->getBeginLoc()); 4663 return ESR_Failed; 4664 4665 case Stmt::NullStmtClass: 4666 return ESR_Succeeded; 4667 4668 case Stmt::DeclStmtClass: { 4669 const DeclStmt *DS = cast<DeclStmt>(S); 4670 for (const auto *D : DS->decls()) { 4671 // Each declaration initialization is its own full-expression. 4672 FullExpressionRAII Scope(Info); 4673 if (!EvaluateDecl(Info, D) && !Info.noteFailure()) 4674 return ESR_Failed; 4675 if (!Scope.destroy()) 4676 return ESR_Failed; 4677 } 4678 return ESR_Succeeded; 4679 } 4680 4681 case Stmt::ReturnStmtClass: { 4682 const Expr *RetExpr = cast<ReturnStmt>(S)->getRetValue(); 4683 FullExpressionRAII Scope(Info); 4684 if (RetExpr && 4685 !(Result.Slot 4686 ? EvaluateInPlace(Result.Value, Info, *Result.Slot, RetExpr) 4687 : Evaluate(Result.Value, Info, RetExpr))) 4688 return ESR_Failed; 4689 return Scope.destroy() ? ESR_Returned : ESR_Failed; 4690 } 4691 4692 case Stmt::CompoundStmtClass: { 4693 BlockScopeRAII Scope(Info); 4694 4695 const CompoundStmt *CS = cast<CompoundStmt>(S); 4696 for (const auto *BI : CS->body()) { 4697 EvalStmtResult ESR = EvaluateStmt(Result, Info, BI, Case); 4698 if (ESR == ESR_Succeeded) 4699 Case = nullptr; 4700 else if (ESR != ESR_CaseNotFound) { 4701 if (ESR != ESR_Failed && !Scope.destroy()) 4702 return ESR_Failed; 4703 return ESR; 4704 } 4705 } 4706 if (Case) 4707 return ESR_CaseNotFound; 4708 return Scope.destroy() ? ESR_Succeeded : ESR_Failed; 4709 } 4710 4711 case Stmt::IfStmtClass: { 4712 const IfStmt *IS = cast<IfStmt>(S); 4713 4714 // Evaluate the condition, as either a var decl or as an expression. 4715 BlockScopeRAII Scope(Info); 4716 if (const Stmt *Init = IS->getInit()) { 4717 EvalStmtResult ESR = EvaluateStmt(Result, Info, Init); 4718 if (ESR != ESR_Succeeded) { 4719 if (ESR != ESR_Failed && !Scope.destroy()) 4720 return ESR_Failed; 4721 return ESR; 4722 } 4723 } 4724 bool Cond; 4725 if (!EvaluateCond(Info, IS->getConditionVariable(), IS->getCond(), Cond)) 4726 return ESR_Failed; 4727 4728 if (const Stmt *SubStmt = Cond ? IS->getThen() : IS->getElse()) { 4729 EvalStmtResult ESR = EvaluateStmt(Result, Info, SubStmt); 4730 if (ESR != ESR_Succeeded) { 4731 if (ESR != ESR_Failed && !Scope.destroy()) 4732 return ESR_Failed; 4733 return ESR; 4734 } 4735 } 4736 return Scope.destroy() ? ESR_Succeeded : ESR_Failed; 4737 } 4738 4739 case Stmt::WhileStmtClass: { 4740 const WhileStmt *WS = cast<WhileStmt>(S); 4741 while (true) { 4742 BlockScopeRAII Scope(Info); 4743 bool Continue; 4744 if (!EvaluateCond(Info, WS->getConditionVariable(), WS->getCond(), 4745 Continue)) 4746 return ESR_Failed; 4747 if (!Continue) 4748 break; 4749 4750 EvalStmtResult ESR = EvaluateLoopBody(Result, Info, WS->getBody()); 4751 if (ESR != ESR_Continue) { 4752 if (ESR != ESR_Failed && !Scope.destroy()) 4753 return ESR_Failed; 4754 return ESR; 4755 } 4756 if (!Scope.destroy()) 4757 return ESR_Failed; 4758 } 4759 return ESR_Succeeded; 4760 } 4761 4762 case Stmt::DoStmtClass: { 4763 const DoStmt *DS = cast<DoStmt>(S); 4764 bool Continue; 4765 do { 4766 EvalStmtResult ESR = EvaluateLoopBody(Result, Info, DS->getBody(), Case); 4767 if (ESR != ESR_Continue) 4768 return ESR; 4769 Case = nullptr; 4770 4771 FullExpressionRAII CondScope(Info); 4772 if (!EvaluateAsBooleanCondition(DS->getCond(), Continue, Info) || 4773 !CondScope.destroy()) 4774 return ESR_Failed; 4775 } while (Continue); 4776 return ESR_Succeeded; 4777 } 4778 4779 case Stmt::ForStmtClass: { 4780 const ForStmt *FS = cast<ForStmt>(S); 4781 BlockScopeRAII ForScope(Info); 4782 if (FS->getInit()) { 4783 EvalStmtResult ESR = EvaluateStmt(Result, Info, FS->getInit()); 4784 if (ESR != ESR_Succeeded) { 4785 if (ESR != ESR_Failed && !ForScope.destroy()) 4786 return ESR_Failed; 4787 return ESR; 4788 } 4789 } 4790 while (true) { 4791 BlockScopeRAII IterScope(Info); 4792 bool Continue = true; 4793 if (FS->getCond() && !EvaluateCond(Info, FS->getConditionVariable(), 4794 FS->getCond(), Continue)) 4795 return ESR_Failed; 4796 if (!Continue) 4797 break; 4798 4799 EvalStmtResult ESR = EvaluateLoopBody(Result, Info, FS->getBody()); 4800 if (ESR != ESR_Continue) { 4801 if (ESR != ESR_Failed && (!IterScope.destroy() || !ForScope.destroy())) 4802 return ESR_Failed; 4803 return ESR; 4804 } 4805 4806 if (FS->getInc()) { 4807 FullExpressionRAII IncScope(Info); 4808 if (!EvaluateIgnoredValue(Info, FS->getInc()) || !IncScope.destroy()) 4809 return ESR_Failed; 4810 } 4811 4812 if (!IterScope.destroy()) 4813 return ESR_Failed; 4814 } 4815 return ForScope.destroy() ? ESR_Succeeded : ESR_Failed; 4816 } 4817 4818 case Stmt::CXXForRangeStmtClass: { 4819 const CXXForRangeStmt *FS = cast<CXXForRangeStmt>(S); 4820 BlockScopeRAII Scope(Info); 4821 4822 // Evaluate the init-statement if present. 4823 if (FS->getInit()) { 4824 EvalStmtResult ESR = EvaluateStmt(Result, Info, FS->getInit()); 4825 if (ESR != ESR_Succeeded) { 4826 if (ESR != ESR_Failed && !Scope.destroy()) 4827 return ESR_Failed; 4828 return ESR; 4829 } 4830 } 4831 4832 // Initialize the __range variable. 4833 EvalStmtResult ESR = EvaluateStmt(Result, Info, FS->getRangeStmt()); 4834 if (ESR != ESR_Succeeded) { 4835 if (ESR != ESR_Failed && !Scope.destroy()) 4836 return ESR_Failed; 4837 return ESR; 4838 } 4839 4840 // Create the __begin and __end iterators. 4841 ESR = EvaluateStmt(Result, Info, FS->getBeginStmt()); 4842 if (ESR != ESR_Succeeded) { 4843 if (ESR != ESR_Failed && !Scope.destroy()) 4844 return ESR_Failed; 4845 return ESR; 4846 } 4847 ESR = EvaluateStmt(Result, Info, FS->getEndStmt()); 4848 if (ESR != ESR_Succeeded) { 4849 if (ESR != ESR_Failed && !Scope.destroy()) 4850 return ESR_Failed; 4851 return ESR; 4852 } 4853 4854 while (true) { 4855 // Condition: __begin != __end. 4856 { 4857 bool Continue = true; 4858 FullExpressionRAII CondExpr(Info); 4859 if (!EvaluateAsBooleanCondition(FS->getCond(), Continue, Info)) 4860 return ESR_Failed; 4861 if (!Continue) 4862 break; 4863 } 4864 4865 // User's variable declaration, initialized by *__begin. 4866 BlockScopeRAII InnerScope(Info); 4867 ESR = EvaluateStmt(Result, Info, FS->getLoopVarStmt()); 4868 if (ESR != ESR_Succeeded) { 4869 if (ESR != ESR_Failed && (!InnerScope.destroy() || !Scope.destroy())) 4870 return ESR_Failed; 4871 return ESR; 4872 } 4873 4874 // Loop body. 4875 ESR = EvaluateLoopBody(Result, Info, FS->getBody()); 4876 if (ESR != ESR_Continue) { 4877 if (ESR != ESR_Failed && (!InnerScope.destroy() || !Scope.destroy())) 4878 return ESR_Failed; 4879 return ESR; 4880 } 4881 4882 // Increment: ++__begin 4883 if (!EvaluateIgnoredValue(Info, FS->getInc())) 4884 return ESR_Failed; 4885 4886 if (!InnerScope.destroy()) 4887 return ESR_Failed; 4888 } 4889 4890 return Scope.destroy() ? ESR_Succeeded : ESR_Failed; 4891 } 4892 4893 case Stmt::SwitchStmtClass: 4894 return EvaluateSwitch(Result, Info, cast<SwitchStmt>(S)); 4895 4896 case Stmt::ContinueStmtClass: 4897 return ESR_Continue; 4898 4899 case Stmt::BreakStmtClass: 4900 return ESR_Break; 4901 4902 case Stmt::LabelStmtClass: 4903 return EvaluateStmt(Result, Info, cast<LabelStmt>(S)->getSubStmt(), Case); 4904 4905 case Stmt::AttributedStmtClass: 4906 // As a general principle, C++11 attributes can be ignored without 4907 // any semantic impact. 4908 return EvaluateStmt(Result, Info, cast<AttributedStmt>(S)->getSubStmt(), 4909 Case); 4910 4911 case Stmt::CaseStmtClass: 4912 case Stmt::DefaultStmtClass: 4913 return EvaluateStmt(Result, Info, cast<SwitchCase>(S)->getSubStmt(), Case); 4914 case Stmt::CXXTryStmtClass: 4915 // Evaluate try blocks by evaluating all sub statements. 4916 return EvaluateStmt(Result, Info, cast<CXXTryStmt>(S)->getTryBlock(), Case); 4917 } 4918 } 4919 4920 /// CheckTrivialDefaultConstructor - Check whether a constructor is a trivial 4921 /// default constructor. If so, we'll fold it whether or not it's marked as 4922 /// constexpr. If it is marked as constexpr, we will never implicitly define it, 4923 /// so we need special handling. 4924 static bool CheckTrivialDefaultConstructor(EvalInfo &Info, SourceLocation Loc, 4925 const CXXConstructorDecl *CD, 4926 bool IsValueInitialization) { 4927 if (!CD->isTrivial() || !CD->isDefaultConstructor()) 4928 return false; 4929 4930 // Value-initialization does not call a trivial default constructor, so such a 4931 // call is a core constant expression whether or not the constructor is 4932 // constexpr. 4933 if (!CD->isConstexpr() && !IsValueInitialization) { 4934 if (Info.getLangOpts().CPlusPlus11) { 4935 // FIXME: If DiagDecl is an implicitly-declared special member function, 4936 // we should be much more explicit about why it's not constexpr. 4937 Info.CCEDiag(Loc, diag::note_constexpr_invalid_function, 1) 4938 << /*IsConstexpr*/0 << /*IsConstructor*/1 << CD; 4939 Info.Note(CD->getLocation(), diag::note_declared_at); 4940 } else { 4941 Info.CCEDiag(Loc, diag::note_invalid_subexpr_in_const_expr); 4942 } 4943 } 4944 return true; 4945 } 4946 4947 /// CheckConstexprFunction - Check that a function can be called in a constant 4948 /// expression. 4949 static bool CheckConstexprFunction(EvalInfo &Info, SourceLocation CallLoc, 4950 const FunctionDecl *Declaration, 4951 const FunctionDecl *Definition, 4952 const Stmt *Body) { 4953 // Potential constant expressions can contain calls to declared, but not yet 4954 // defined, constexpr functions. 4955 if (Info.checkingPotentialConstantExpression() && !Definition && 4956 Declaration->isConstexpr()) 4957 return false; 4958 4959 // Bail out if the function declaration itself is invalid. We will 4960 // have produced a relevant diagnostic while parsing it, so just 4961 // note the problematic sub-expression. 4962 if (Declaration->isInvalidDecl()) { 4963 Info.FFDiag(CallLoc, diag::note_invalid_subexpr_in_const_expr); 4964 return false; 4965 } 4966 4967 // DR1872: An instantiated virtual constexpr function can't be called in a 4968 // constant expression (prior to C++20). We can still constant-fold such a 4969 // call. 4970 if (!Info.Ctx.getLangOpts().CPlusPlus2a && isa<CXXMethodDecl>(Declaration) && 4971 cast<CXXMethodDecl>(Declaration)->isVirtual()) 4972 Info.CCEDiag(CallLoc, diag::note_constexpr_virtual_call); 4973 4974 if (Definition && Definition->isInvalidDecl()) { 4975 Info.FFDiag(CallLoc, diag::note_invalid_subexpr_in_const_expr); 4976 return false; 4977 } 4978 4979 if (const auto *CtorDecl = dyn_cast_or_null<CXXConstructorDecl>(Definition)) { 4980 for (const auto *InitExpr : CtorDecl->inits()) { 4981 if (InitExpr->getInit() && InitExpr->getInit()->containsErrors()) 4982 return false; 4983 } 4984 } 4985 4986 // Can we evaluate this function call? 4987 if (Definition && Definition->isConstexpr() && Body) 4988 return true; 4989 4990 if (Info.getLangOpts().CPlusPlus11) { 4991 const FunctionDecl *DiagDecl = Definition ? Definition : Declaration; 4992 4993 // If this function is not constexpr because it is an inherited 4994 // non-constexpr constructor, diagnose that directly. 4995 auto *CD = dyn_cast<CXXConstructorDecl>(DiagDecl); 4996 if (CD && CD->isInheritingConstructor()) { 4997 auto *Inherited = CD->getInheritedConstructor().getConstructor(); 4998 if (!Inherited->isConstexpr()) 4999 DiagDecl = CD = Inherited; 5000 } 5001 5002 // FIXME: If DiagDecl is an implicitly-declared special member function 5003 // or an inheriting constructor, we should be much more explicit about why 5004 // it's not constexpr. 5005 if (CD && CD->isInheritingConstructor()) 5006 Info.FFDiag(CallLoc, diag::note_constexpr_invalid_inhctor, 1) 5007 << CD->getInheritedConstructor().getConstructor()->getParent(); 5008 else 5009 Info.FFDiag(CallLoc, diag::note_constexpr_invalid_function, 1) 5010 << DiagDecl->isConstexpr() << (bool)CD << DiagDecl; 5011 Info.Note(DiagDecl->getLocation(), diag::note_declared_at); 5012 } else { 5013 Info.FFDiag(CallLoc, diag::note_invalid_subexpr_in_const_expr); 5014 } 5015 return false; 5016 } 5017 5018 namespace { 5019 struct CheckDynamicTypeHandler { 5020 AccessKinds AccessKind; 5021 typedef bool result_type; 5022 bool failed() { return false; } 5023 bool found(APValue &Subobj, QualType SubobjType) { return true; } 5024 bool found(APSInt &Value, QualType SubobjType) { return true; } 5025 bool found(APFloat &Value, QualType SubobjType) { return true; } 5026 }; 5027 } // end anonymous namespace 5028 5029 /// Check that we can access the notional vptr of an object / determine its 5030 /// dynamic type. 5031 static bool checkDynamicType(EvalInfo &Info, const Expr *E, const LValue &This, 5032 AccessKinds AK, bool Polymorphic) { 5033 if (This.Designator.Invalid) 5034 return false; 5035 5036 CompleteObject Obj = findCompleteObject(Info, E, AK, This, QualType()); 5037 5038 if (!Obj) 5039 return false; 5040 5041 if (!Obj.Value) { 5042 // The object is not usable in constant expressions, so we can't inspect 5043 // its value to see if it's in-lifetime or what the active union members 5044 // are. We can still check for a one-past-the-end lvalue. 5045 if (This.Designator.isOnePastTheEnd() || 5046 This.Designator.isMostDerivedAnUnsizedArray()) { 5047 Info.FFDiag(E, This.Designator.isOnePastTheEnd() 5048 ? diag::note_constexpr_access_past_end 5049 : diag::note_constexpr_access_unsized_array) 5050 << AK; 5051 return false; 5052 } else if (Polymorphic) { 5053 // Conservatively refuse to perform a polymorphic operation if we would 5054 // not be able to read a notional 'vptr' value. 5055 APValue Val; 5056 This.moveInto(Val); 5057 QualType StarThisType = 5058 Info.Ctx.getLValueReferenceType(This.Designator.getType(Info.Ctx)); 5059 Info.FFDiag(E, diag::note_constexpr_polymorphic_unknown_dynamic_type) 5060 << AK << Val.getAsString(Info.Ctx, StarThisType); 5061 return false; 5062 } 5063 return true; 5064 } 5065 5066 CheckDynamicTypeHandler Handler{AK}; 5067 return Obj && findSubobject(Info, E, Obj, This.Designator, Handler); 5068 } 5069 5070 /// Check that the pointee of the 'this' pointer in a member function call is 5071 /// either within its lifetime or in its period of construction or destruction. 5072 static bool 5073 checkNonVirtualMemberCallThisPointer(EvalInfo &Info, const Expr *E, 5074 const LValue &This, 5075 const CXXMethodDecl *NamedMember) { 5076 return checkDynamicType( 5077 Info, E, This, 5078 isa<CXXDestructorDecl>(NamedMember) ? AK_Destroy : AK_MemberCall, false); 5079 } 5080 5081 struct DynamicType { 5082 /// The dynamic class type of the object. 5083 const CXXRecordDecl *Type; 5084 /// The corresponding path length in the lvalue. 5085 unsigned PathLength; 5086 }; 5087 5088 static const CXXRecordDecl *getBaseClassType(SubobjectDesignator &Designator, 5089 unsigned PathLength) { 5090 assert(PathLength >= Designator.MostDerivedPathLength && PathLength <= 5091 Designator.Entries.size() && "invalid path length"); 5092 return (PathLength == Designator.MostDerivedPathLength) 5093 ? Designator.MostDerivedType->getAsCXXRecordDecl() 5094 : getAsBaseClass(Designator.Entries[PathLength - 1]); 5095 } 5096 5097 /// Determine the dynamic type of an object. 5098 static Optional<DynamicType> ComputeDynamicType(EvalInfo &Info, const Expr *E, 5099 LValue &This, AccessKinds AK) { 5100 // If we don't have an lvalue denoting an object of class type, there is no 5101 // meaningful dynamic type. (We consider objects of non-class type to have no 5102 // dynamic type.) 5103 if (!checkDynamicType(Info, E, This, AK, true)) 5104 return None; 5105 5106 // Refuse to compute a dynamic type in the presence of virtual bases. This 5107 // shouldn't happen other than in constant-folding situations, since literal 5108 // types can't have virtual bases. 5109 // 5110 // Note that consumers of DynamicType assume that the type has no virtual 5111 // bases, and will need modifications if this restriction is relaxed. 5112 const CXXRecordDecl *Class = 5113 This.Designator.MostDerivedType->getAsCXXRecordDecl(); 5114 if (!Class || Class->getNumVBases()) { 5115 Info.FFDiag(E); 5116 return None; 5117 } 5118 5119 // FIXME: For very deep class hierarchies, it might be beneficial to use a 5120 // binary search here instead. But the overwhelmingly common case is that 5121 // we're not in the middle of a constructor, so it probably doesn't matter 5122 // in practice. 5123 ArrayRef<APValue::LValuePathEntry> Path = This.Designator.Entries; 5124 for (unsigned PathLength = This.Designator.MostDerivedPathLength; 5125 PathLength <= Path.size(); ++PathLength) { 5126 switch (Info.isEvaluatingCtorDtor(This.getLValueBase(), 5127 Path.slice(0, PathLength))) { 5128 case ConstructionPhase::Bases: 5129 case ConstructionPhase::DestroyingBases: 5130 // We're constructing or destroying a base class. This is not the dynamic 5131 // type. 5132 break; 5133 5134 case ConstructionPhase::None: 5135 case ConstructionPhase::AfterBases: 5136 case ConstructionPhase::AfterFields: 5137 case ConstructionPhase::Destroying: 5138 // We've finished constructing the base classes and not yet started 5139 // destroying them again, so this is the dynamic type. 5140 return DynamicType{getBaseClassType(This.Designator, PathLength), 5141 PathLength}; 5142 } 5143 } 5144 5145 // CWG issue 1517: we're constructing a base class of the object described by 5146 // 'This', so that object has not yet begun its period of construction and 5147 // any polymorphic operation on it results in undefined behavior. 5148 Info.FFDiag(E); 5149 return None; 5150 } 5151 5152 /// Perform virtual dispatch. 5153 static const CXXMethodDecl *HandleVirtualDispatch( 5154 EvalInfo &Info, const Expr *E, LValue &This, const CXXMethodDecl *Found, 5155 llvm::SmallVectorImpl<QualType> &CovariantAdjustmentPath) { 5156 Optional<DynamicType> DynType = ComputeDynamicType( 5157 Info, E, This, 5158 isa<CXXDestructorDecl>(Found) ? AK_Destroy : AK_MemberCall); 5159 if (!DynType) 5160 return nullptr; 5161 5162 // Find the final overrider. It must be declared in one of the classes on the 5163 // path from the dynamic type to the static type. 5164 // FIXME: If we ever allow literal types to have virtual base classes, that 5165 // won't be true. 5166 const CXXMethodDecl *Callee = Found; 5167 unsigned PathLength = DynType->PathLength; 5168 for (/**/; PathLength <= This.Designator.Entries.size(); ++PathLength) { 5169 const CXXRecordDecl *Class = getBaseClassType(This.Designator, PathLength); 5170 const CXXMethodDecl *Overrider = 5171 Found->getCorrespondingMethodDeclaredInClass(Class, false); 5172 if (Overrider) { 5173 Callee = Overrider; 5174 break; 5175 } 5176 } 5177 5178 // C++2a [class.abstract]p6: 5179 // the effect of making a virtual call to a pure virtual function [...] is 5180 // undefined 5181 if (Callee->isPure()) { 5182 Info.FFDiag(E, diag::note_constexpr_pure_virtual_call, 1) << Callee; 5183 Info.Note(Callee->getLocation(), diag::note_declared_at); 5184 return nullptr; 5185 } 5186 5187 // If necessary, walk the rest of the path to determine the sequence of 5188 // covariant adjustment steps to apply. 5189 if (!Info.Ctx.hasSameUnqualifiedType(Callee->getReturnType(), 5190 Found->getReturnType())) { 5191 CovariantAdjustmentPath.push_back(Callee->getReturnType()); 5192 for (unsigned CovariantPathLength = PathLength + 1; 5193 CovariantPathLength != This.Designator.Entries.size(); 5194 ++CovariantPathLength) { 5195 const CXXRecordDecl *NextClass = 5196 getBaseClassType(This.Designator, CovariantPathLength); 5197 const CXXMethodDecl *Next = 5198 Found->getCorrespondingMethodDeclaredInClass(NextClass, false); 5199 if (Next && !Info.Ctx.hasSameUnqualifiedType( 5200 Next->getReturnType(), CovariantAdjustmentPath.back())) 5201 CovariantAdjustmentPath.push_back(Next->getReturnType()); 5202 } 5203 if (!Info.Ctx.hasSameUnqualifiedType(Found->getReturnType(), 5204 CovariantAdjustmentPath.back())) 5205 CovariantAdjustmentPath.push_back(Found->getReturnType()); 5206 } 5207 5208 // Perform 'this' adjustment. 5209 if (!CastToDerivedClass(Info, E, This, Callee->getParent(), PathLength)) 5210 return nullptr; 5211 5212 return Callee; 5213 } 5214 5215 /// Perform the adjustment from a value returned by a virtual function to 5216 /// a value of the statically expected type, which may be a pointer or 5217 /// reference to a base class of the returned type. 5218 static bool HandleCovariantReturnAdjustment(EvalInfo &Info, const Expr *E, 5219 APValue &Result, 5220 ArrayRef<QualType> Path) { 5221 assert(Result.isLValue() && 5222 "unexpected kind of APValue for covariant return"); 5223 if (Result.isNullPointer()) 5224 return true; 5225 5226 LValue LVal; 5227 LVal.setFrom(Info.Ctx, Result); 5228 5229 const CXXRecordDecl *OldClass = Path[0]->getPointeeCXXRecordDecl(); 5230 for (unsigned I = 1; I != Path.size(); ++I) { 5231 const CXXRecordDecl *NewClass = Path[I]->getPointeeCXXRecordDecl(); 5232 assert(OldClass && NewClass && "unexpected kind of covariant return"); 5233 if (OldClass != NewClass && 5234 !CastToBaseClass(Info, E, LVal, OldClass, NewClass)) 5235 return false; 5236 OldClass = NewClass; 5237 } 5238 5239 LVal.moveInto(Result); 5240 return true; 5241 } 5242 5243 /// Determine whether \p Base, which is known to be a direct base class of 5244 /// \p Derived, is a public base class. 5245 static bool isBaseClassPublic(const CXXRecordDecl *Derived, 5246 const CXXRecordDecl *Base) { 5247 for (const CXXBaseSpecifier &BaseSpec : Derived->bases()) { 5248 auto *BaseClass = BaseSpec.getType()->getAsCXXRecordDecl(); 5249 if (BaseClass && declaresSameEntity(BaseClass, Base)) 5250 return BaseSpec.getAccessSpecifier() == AS_public; 5251 } 5252 llvm_unreachable("Base is not a direct base of Derived"); 5253 } 5254 5255 /// Apply the given dynamic cast operation on the provided lvalue. 5256 /// 5257 /// This implements the hard case of dynamic_cast, requiring a "runtime check" 5258 /// to find a suitable target subobject. 5259 static bool HandleDynamicCast(EvalInfo &Info, const ExplicitCastExpr *E, 5260 LValue &Ptr) { 5261 // We can't do anything with a non-symbolic pointer value. 5262 SubobjectDesignator &D = Ptr.Designator; 5263 if (D.Invalid) 5264 return false; 5265 5266 // C++ [expr.dynamic.cast]p6: 5267 // If v is a null pointer value, the result is a null pointer value. 5268 if (Ptr.isNullPointer() && !E->isGLValue()) 5269 return true; 5270 5271 // For all the other cases, we need the pointer to point to an object within 5272 // its lifetime / period of construction / destruction, and we need to know 5273 // its dynamic type. 5274 Optional<DynamicType> DynType = 5275 ComputeDynamicType(Info, E, Ptr, AK_DynamicCast); 5276 if (!DynType) 5277 return false; 5278 5279 // C++ [expr.dynamic.cast]p7: 5280 // If T is "pointer to cv void", then the result is a pointer to the most 5281 // derived object 5282 if (E->getType()->isVoidPointerType()) 5283 return CastToDerivedClass(Info, E, Ptr, DynType->Type, DynType->PathLength); 5284 5285 const CXXRecordDecl *C = E->getTypeAsWritten()->getPointeeCXXRecordDecl(); 5286 assert(C && "dynamic_cast target is not void pointer nor class"); 5287 CanQualType CQT = Info.Ctx.getCanonicalType(Info.Ctx.getRecordType(C)); 5288 5289 auto RuntimeCheckFailed = [&] (CXXBasePaths *Paths) { 5290 // C++ [expr.dynamic.cast]p9: 5291 if (!E->isGLValue()) { 5292 // The value of a failed cast to pointer type is the null pointer value 5293 // of the required result type. 5294 Ptr.setNull(Info.Ctx, E->getType()); 5295 return true; 5296 } 5297 5298 // A failed cast to reference type throws [...] std::bad_cast. 5299 unsigned DiagKind; 5300 if (!Paths && (declaresSameEntity(DynType->Type, C) || 5301 DynType->Type->isDerivedFrom(C))) 5302 DiagKind = 0; 5303 else if (!Paths || Paths->begin() == Paths->end()) 5304 DiagKind = 1; 5305 else if (Paths->isAmbiguous(CQT)) 5306 DiagKind = 2; 5307 else { 5308 assert(Paths->front().Access != AS_public && "why did the cast fail?"); 5309 DiagKind = 3; 5310 } 5311 Info.FFDiag(E, diag::note_constexpr_dynamic_cast_to_reference_failed) 5312 << DiagKind << Ptr.Designator.getType(Info.Ctx) 5313 << Info.Ctx.getRecordType(DynType->Type) 5314 << E->getType().getUnqualifiedType(); 5315 return false; 5316 }; 5317 5318 // Runtime check, phase 1: 5319 // Walk from the base subobject towards the derived object looking for the 5320 // target type. 5321 for (int PathLength = Ptr.Designator.Entries.size(); 5322 PathLength >= (int)DynType->PathLength; --PathLength) { 5323 const CXXRecordDecl *Class = getBaseClassType(Ptr.Designator, PathLength); 5324 if (declaresSameEntity(Class, C)) 5325 return CastToDerivedClass(Info, E, Ptr, Class, PathLength); 5326 // We can only walk across public inheritance edges. 5327 if (PathLength > (int)DynType->PathLength && 5328 !isBaseClassPublic(getBaseClassType(Ptr.Designator, PathLength - 1), 5329 Class)) 5330 return RuntimeCheckFailed(nullptr); 5331 } 5332 5333 // Runtime check, phase 2: 5334 // Search the dynamic type for an unambiguous public base of type C. 5335 CXXBasePaths Paths(/*FindAmbiguities=*/true, 5336 /*RecordPaths=*/true, /*DetectVirtual=*/false); 5337 if (DynType->Type->isDerivedFrom(C, Paths) && !Paths.isAmbiguous(CQT) && 5338 Paths.front().Access == AS_public) { 5339 // Downcast to the dynamic type... 5340 if (!CastToDerivedClass(Info, E, Ptr, DynType->Type, DynType->PathLength)) 5341 return false; 5342 // ... then upcast to the chosen base class subobject. 5343 for (CXXBasePathElement &Elem : Paths.front()) 5344 if (!HandleLValueBase(Info, E, Ptr, Elem.Class, Elem.Base)) 5345 return false; 5346 return true; 5347 } 5348 5349 // Otherwise, the runtime check fails. 5350 return RuntimeCheckFailed(&Paths); 5351 } 5352 5353 namespace { 5354 struct StartLifetimeOfUnionMemberHandler { 5355 EvalInfo &Info; 5356 const Expr *LHSExpr; 5357 const FieldDecl *Field; 5358 bool DuringInit; 5359 5360 static const AccessKinds AccessKind = AK_Assign; 5361 5362 typedef bool result_type; 5363 bool failed() { return false; } 5364 bool found(APValue &Subobj, QualType SubobjType) { 5365 // We are supposed to perform no initialization but begin the lifetime of 5366 // the object. We interpret that as meaning to do what default 5367 // initialization of the object would do if all constructors involved were 5368 // trivial: 5369 // * All base, non-variant member, and array element subobjects' lifetimes 5370 // begin 5371 // * No variant members' lifetimes begin 5372 // * All scalar subobjects whose lifetimes begin have indeterminate values 5373 assert(SubobjType->isUnionType()); 5374 if (declaresSameEntity(Subobj.getUnionField(), Field)) { 5375 // This union member is already active. If it's also in-lifetime, there's 5376 // nothing to do. 5377 if (Subobj.getUnionValue().hasValue()) 5378 return true; 5379 } else if (DuringInit) { 5380 // We're currently in the process of initializing a different union 5381 // member. If we carried on, that initialization would attempt to 5382 // store to an inactive union member, resulting in undefined behavior. 5383 Info.FFDiag(LHSExpr, 5384 diag::note_constexpr_union_member_change_during_init); 5385 return false; 5386 } 5387 5388 Subobj.setUnion(Field, getDefaultInitValue(Field->getType())); 5389 return true; 5390 } 5391 bool found(APSInt &Value, QualType SubobjType) { 5392 llvm_unreachable("wrong value kind for union object"); 5393 } 5394 bool found(APFloat &Value, QualType SubobjType) { 5395 llvm_unreachable("wrong value kind for union object"); 5396 } 5397 }; 5398 } // end anonymous namespace 5399 5400 const AccessKinds StartLifetimeOfUnionMemberHandler::AccessKind; 5401 5402 /// Handle a builtin simple-assignment or a call to a trivial assignment 5403 /// operator whose left-hand side might involve a union member access. If it 5404 /// does, implicitly start the lifetime of any accessed union elements per 5405 /// C++20 [class.union]5. 5406 static bool HandleUnionActiveMemberChange(EvalInfo &Info, const Expr *LHSExpr, 5407 const LValue &LHS) { 5408 if (LHS.InvalidBase || LHS.Designator.Invalid) 5409 return false; 5410 5411 llvm::SmallVector<std::pair<unsigned, const FieldDecl*>, 4> UnionPathLengths; 5412 // C++ [class.union]p5: 5413 // define the set S(E) of subexpressions of E as follows: 5414 unsigned PathLength = LHS.Designator.Entries.size(); 5415 for (const Expr *E = LHSExpr; E != nullptr;) { 5416 // -- If E is of the form A.B, S(E) contains the elements of S(A)... 5417 if (auto *ME = dyn_cast<MemberExpr>(E)) { 5418 auto *FD = dyn_cast<FieldDecl>(ME->getMemberDecl()); 5419 // Note that we can't implicitly start the lifetime of a reference, 5420 // so we don't need to proceed any further if we reach one. 5421 if (!FD || FD->getType()->isReferenceType()) 5422 break; 5423 5424 // ... and also contains A.B if B names a union member ... 5425 if (FD->getParent()->isUnion()) { 5426 // ... of a non-class, non-array type, or of a class type with a 5427 // trivial default constructor that is not deleted, or an array of 5428 // such types. 5429 auto *RD = 5430 FD->getType()->getBaseElementTypeUnsafe()->getAsCXXRecordDecl(); 5431 if (!RD || RD->hasTrivialDefaultConstructor()) 5432 UnionPathLengths.push_back({PathLength - 1, FD}); 5433 } 5434 5435 E = ME->getBase(); 5436 --PathLength; 5437 assert(declaresSameEntity(FD, 5438 LHS.Designator.Entries[PathLength] 5439 .getAsBaseOrMember().getPointer())); 5440 5441 // -- If E is of the form A[B] and is interpreted as a built-in array 5442 // subscripting operator, S(E) is [S(the array operand, if any)]. 5443 } else if (auto *ASE = dyn_cast<ArraySubscriptExpr>(E)) { 5444 // Step over an ArrayToPointerDecay implicit cast. 5445 auto *Base = ASE->getBase()->IgnoreImplicit(); 5446 if (!Base->getType()->isArrayType()) 5447 break; 5448 5449 E = Base; 5450 --PathLength; 5451 5452 } else if (auto *ICE = dyn_cast<ImplicitCastExpr>(E)) { 5453 // Step over a derived-to-base conversion. 5454 E = ICE->getSubExpr(); 5455 if (ICE->getCastKind() == CK_NoOp) 5456 continue; 5457 if (ICE->getCastKind() != CK_DerivedToBase && 5458 ICE->getCastKind() != CK_UncheckedDerivedToBase) 5459 break; 5460 // Walk path backwards as we walk up from the base to the derived class. 5461 for (const CXXBaseSpecifier *Elt : llvm::reverse(ICE->path())) { 5462 --PathLength; 5463 (void)Elt; 5464 assert(declaresSameEntity(Elt->getType()->getAsCXXRecordDecl(), 5465 LHS.Designator.Entries[PathLength] 5466 .getAsBaseOrMember().getPointer())); 5467 } 5468 5469 // -- Otherwise, S(E) is empty. 5470 } else { 5471 break; 5472 } 5473 } 5474 5475 // Common case: no unions' lifetimes are started. 5476 if (UnionPathLengths.empty()) 5477 return true; 5478 5479 // if modification of X [would access an inactive union member], an object 5480 // of the type of X is implicitly created 5481 CompleteObject Obj = 5482 findCompleteObject(Info, LHSExpr, AK_Assign, LHS, LHSExpr->getType()); 5483 if (!Obj) 5484 return false; 5485 for (std::pair<unsigned, const FieldDecl *> LengthAndField : 5486 llvm::reverse(UnionPathLengths)) { 5487 // Form a designator for the union object. 5488 SubobjectDesignator D = LHS.Designator; 5489 D.truncate(Info.Ctx, LHS.Base, LengthAndField.first); 5490 5491 bool DuringInit = Info.isEvaluatingCtorDtor(LHS.Base, D.Entries) == 5492 ConstructionPhase::AfterBases; 5493 StartLifetimeOfUnionMemberHandler StartLifetime{ 5494 Info, LHSExpr, LengthAndField.second, DuringInit}; 5495 if (!findSubobject(Info, LHSExpr, Obj, D, StartLifetime)) 5496 return false; 5497 } 5498 5499 return true; 5500 } 5501 5502 namespace { 5503 typedef SmallVector<APValue, 8> ArgVector; 5504 } 5505 5506 /// EvaluateArgs - Evaluate the arguments to a function call. 5507 static bool EvaluateArgs(ArrayRef<const Expr *> Args, ArgVector &ArgValues, 5508 EvalInfo &Info, const FunctionDecl *Callee) { 5509 bool Success = true; 5510 llvm::SmallBitVector ForbiddenNullArgs; 5511 if (Callee->hasAttr<NonNullAttr>()) { 5512 ForbiddenNullArgs.resize(Args.size()); 5513 for (const auto *Attr : Callee->specific_attrs<NonNullAttr>()) { 5514 if (!Attr->args_size()) { 5515 ForbiddenNullArgs.set(); 5516 break; 5517 } else 5518 for (auto Idx : Attr->args()) { 5519 unsigned ASTIdx = Idx.getASTIndex(); 5520 if (ASTIdx >= Args.size()) 5521 continue; 5522 ForbiddenNullArgs[ASTIdx] = 1; 5523 } 5524 } 5525 } 5526 // FIXME: This is the wrong evaluation order for an assignment operator 5527 // called via operator syntax. 5528 for (unsigned Idx = 0; Idx < Args.size(); Idx++) { 5529 if (!Evaluate(ArgValues[Idx], Info, Args[Idx])) { 5530 // If we're checking for a potential constant expression, evaluate all 5531 // initializers even if some of them fail. 5532 if (!Info.noteFailure()) 5533 return false; 5534 Success = false; 5535 } else if (!ForbiddenNullArgs.empty() && 5536 ForbiddenNullArgs[Idx] && 5537 ArgValues[Idx].isLValue() && 5538 ArgValues[Idx].isNullPointer()) { 5539 Info.CCEDiag(Args[Idx], diag::note_non_null_attribute_failed); 5540 if (!Info.noteFailure()) 5541 return false; 5542 Success = false; 5543 } 5544 } 5545 return Success; 5546 } 5547 5548 /// Evaluate a function call. 5549 static bool HandleFunctionCall(SourceLocation CallLoc, 5550 const FunctionDecl *Callee, const LValue *This, 5551 ArrayRef<const Expr*> Args, const Stmt *Body, 5552 EvalInfo &Info, APValue &Result, 5553 const LValue *ResultSlot) { 5554 ArgVector ArgValues(Args.size()); 5555 if (!EvaluateArgs(Args, ArgValues, Info, Callee)) 5556 return false; 5557 5558 if (!Info.CheckCallLimit(CallLoc)) 5559 return false; 5560 5561 CallStackFrame Frame(Info, CallLoc, Callee, This, ArgValues.data()); 5562 5563 // For a trivial copy or move assignment, perform an APValue copy. This is 5564 // essential for unions, where the operations performed by the assignment 5565 // operator cannot be represented as statements. 5566 // 5567 // Skip this for non-union classes with no fields; in that case, the defaulted 5568 // copy/move does not actually read the object. 5569 const CXXMethodDecl *MD = dyn_cast<CXXMethodDecl>(Callee); 5570 if (MD && MD->isDefaulted() && 5571 (MD->getParent()->isUnion() || 5572 (MD->isTrivial() && 5573 isReadByLvalueToRvalueConversion(MD->getParent())))) { 5574 assert(This && 5575 (MD->isCopyAssignmentOperator() || MD->isMoveAssignmentOperator())); 5576 LValue RHS; 5577 RHS.setFrom(Info.Ctx, ArgValues[0]); 5578 APValue RHSValue; 5579 if (!handleLValueToRValueConversion(Info, Args[0], Args[0]->getType(), RHS, 5580 RHSValue, MD->getParent()->isUnion())) 5581 return false; 5582 if (Info.getLangOpts().CPlusPlus2a && MD->isTrivial() && 5583 !HandleUnionActiveMemberChange(Info, Args[0], *This)) 5584 return false; 5585 if (!handleAssignment(Info, Args[0], *This, MD->getThisType(), 5586 RHSValue)) 5587 return false; 5588 This->moveInto(Result); 5589 return true; 5590 } else if (MD && isLambdaCallOperator(MD)) { 5591 // We're in a lambda; determine the lambda capture field maps unless we're 5592 // just constexpr checking a lambda's call operator. constexpr checking is 5593 // done before the captures have been added to the closure object (unless 5594 // we're inferring constexpr-ness), so we don't have access to them in this 5595 // case. But since we don't need the captures to constexpr check, we can 5596 // just ignore them. 5597 if (!Info.checkingPotentialConstantExpression()) 5598 MD->getParent()->getCaptureFields(Frame.LambdaCaptureFields, 5599 Frame.LambdaThisCaptureField); 5600 } 5601 5602 StmtResult Ret = {Result, ResultSlot}; 5603 EvalStmtResult ESR = EvaluateStmt(Ret, Info, Body); 5604 if (ESR == ESR_Succeeded) { 5605 if (Callee->getReturnType()->isVoidType()) 5606 return true; 5607 Info.FFDiag(Callee->getEndLoc(), diag::note_constexpr_no_return); 5608 } 5609 return ESR == ESR_Returned; 5610 } 5611 5612 /// Evaluate a constructor call. 5613 static bool HandleConstructorCall(const Expr *E, const LValue &This, 5614 APValue *ArgValues, 5615 const CXXConstructorDecl *Definition, 5616 EvalInfo &Info, APValue &Result) { 5617 SourceLocation CallLoc = E->getExprLoc(); 5618 if (!Info.CheckCallLimit(CallLoc)) 5619 return false; 5620 5621 const CXXRecordDecl *RD = Definition->getParent(); 5622 if (RD->getNumVBases()) { 5623 Info.FFDiag(CallLoc, diag::note_constexpr_virtual_base) << RD; 5624 return false; 5625 } 5626 5627 EvalInfo::EvaluatingConstructorRAII EvalObj( 5628 Info, 5629 ObjectUnderConstruction{This.getLValueBase(), This.Designator.Entries}, 5630 RD->getNumBases()); 5631 CallStackFrame Frame(Info, CallLoc, Definition, &This, ArgValues); 5632 5633 // FIXME: Creating an APValue just to hold a nonexistent return value is 5634 // wasteful. 5635 APValue RetVal; 5636 StmtResult Ret = {RetVal, nullptr}; 5637 5638 // If it's a delegating constructor, delegate. 5639 if (Definition->isDelegatingConstructor()) { 5640 CXXConstructorDecl::init_const_iterator I = Definition->init_begin(); 5641 { 5642 FullExpressionRAII InitScope(Info); 5643 if (!EvaluateInPlace(Result, Info, This, (*I)->getInit()) || 5644 !InitScope.destroy()) 5645 return false; 5646 } 5647 return EvaluateStmt(Ret, Info, Definition->getBody()) != ESR_Failed; 5648 } 5649 5650 // For a trivial copy or move constructor, perform an APValue copy. This is 5651 // essential for unions (or classes with anonymous union members), where the 5652 // operations performed by the constructor cannot be represented by 5653 // ctor-initializers. 5654 // 5655 // Skip this for empty non-union classes; we should not perform an 5656 // lvalue-to-rvalue conversion on them because their copy constructor does not 5657 // actually read them. 5658 if (Definition->isDefaulted() && Definition->isCopyOrMoveConstructor() && 5659 (Definition->getParent()->isUnion() || 5660 (Definition->isTrivial() && 5661 isReadByLvalueToRvalueConversion(Definition->getParent())))) { 5662 LValue RHS; 5663 RHS.setFrom(Info.Ctx, ArgValues[0]); 5664 return handleLValueToRValueConversion( 5665 Info, E, Definition->getParamDecl(0)->getType().getNonReferenceType(), 5666 RHS, Result, Definition->getParent()->isUnion()); 5667 } 5668 5669 // Reserve space for the struct members. 5670 if (!Result.hasValue()) { 5671 if (!RD->isUnion()) 5672 Result = APValue(APValue::UninitStruct(), RD->getNumBases(), 5673 std::distance(RD->field_begin(), RD->field_end())); 5674 else 5675 // A union starts with no active member. 5676 Result = APValue((const FieldDecl*)nullptr); 5677 } 5678 5679 if (RD->isInvalidDecl()) return false; 5680 const ASTRecordLayout &Layout = Info.Ctx.getASTRecordLayout(RD); 5681 5682 // A scope for temporaries lifetime-extended by reference members. 5683 BlockScopeRAII LifetimeExtendedScope(Info); 5684 5685 bool Success = true; 5686 unsigned BasesSeen = 0; 5687 #ifndef NDEBUG 5688 CXXRecordDecl::base_class_const_iterator BaseIt = RD->bases_begin(); 5689 #endif 5690 CXXRecordDecl::field_iterator FieldIt = RD->field_begin(); 5691 auto SkipToField = [&](FieldDecl *FD, bool Indirect) { 5692 // We might be initializing the same field again if this is an indirect 5693 // field initialization. 5694 if (FieldIt == RD->field_end() || 5695 FieldIt->getFieldIndex() > FD->getFieldIndex()) { 5696 assert(Indirect && "fields out of order?"); 5697 return; 5698 } 5699 5700 // Default-initialize any fields with no explicit initializer. 5701 for (; !declaresSameEntity(*FieldIt, FD); ++FieldIt) { 5702 assert(FieldIt != RD->field_end() && "missing field?"); 5703 if (!FieldIt->isUnnamedBitfield()) 5704 Result.getStructField(FieldIt->getFieldIndex()) = 5705 getDefaultInitValue(FieldIt->getType()); 5706 } 5707 ++FieldIt; 5708 }; 5709 for (const auto *I : Definition->inits()) { 5710 LValue Subobject = This; 5711 LValue SubobjectParent = This; 5712 APValue *Value = &Result; 5713 5714 // Determine the subobject to initialize. 5715 FieldDecl *FD = nullptr; 5716 if (I->isBaseInitializer()) { 5717 QualType BaseType(I->getBaseClass(), 0); 5718 #ifndef NDEBUG 5719 // Non-virtual base classes are initialized in the order in the class 5720 // definition. We have already checked for virtual base classes. 5721 assert(!BaseIt->isVirtual() && "virtual base for literal type"); 5722 assert(Info.Ctx.hasSameType(BaseIt->getType(), BaseType) && 5723 "base class initializers not in expected order"); 5724 ++BaseIt; 5725 #endif 5726 if (!HandleLValueDirectBase(Info, I->getInit(), Subobject, RD, 5727 BaseType->getAsCXXRecordDecl(), &Layout)) 5728 return false; 5729 Value = &Result.getStructBase(BasesSeen++); 5730 } else if ((FD = I->getMember())) { 5731 if (!HandleLValueMember(Info, I->getInit(), Subobject, FD, &Layout)) 5732 return false; 5733 if (RD->isUnion()) { 5734 Result = APValue(FD); 5735 Value = &Result.getUnionValue(); 5736 } else { 5737 SkipToField(FD, false); 5738 Value = &Result.getStructField(FD->getFieldIndex()); 5739 } 5740 } else if (IndirectFieldDecl *IFD = I->getIndirectMember()) { 5741 // Walk the indirect field decl's chain to find the object to initialize, 5742 // and make sure we've initialized every step along it. 5743 auto IndirectFieldChain = IFD->chain(); 5744 for (auto *C : IndirectFieldChain) { 5745 FD = cast<FieldDecl>(C); 5746 CXXRecordDecl *CD = cast<CXXRecordDecl>(FD->getParent()); 5747 // Switch the union field if it differs. This happens if we had 5748 // preceding zero-initialization, and we're now initializing a union 5749 // subobject other than the first. 5750 // FIXME: In this case, the values of the other subobjects are 5751 // specified, since zero-initialization sets all padding bits to zero. 5752 if (!Value->hasValue() || 5753 (Value->isUnion() && Value->getUnionField() != FD)) { 5754 if (CD->isUnion()) 5755 *Value = APValue(FD); 5756 else 5757 // FIXME: This immediately starts the lifetime of all members of an 5758 // anonymous struct. It would be preferable to strictly start member 5759 // lifetime in initialization order. 5760 *Value = getDefaultInitValue(Info.Ctx.getRecordType(CD)); 5761 } 5762 // Store Subobject as its parent before updating it for the last element 5763 // in the chain. 5764 if (C == IndirectFieldChain.back()) 5765 SubobjectParent = Subobject; 5766 if (!HandleLValueMember(Info, I->getInit(), Subobject, FD)) 5767 return false; 5768 if (CD->isUnion()) 5769 Value = &Value->getUnionValue(); 5770 else { 5771 if (C == IndirectFieldChain.front() && !RD->isUnion()) 5772 SkipToField(FD, true); 5773 Value = &Value->getStructField(FD->getFieldIndex()); 5774 } 5775 } 5776 } else { 5777 llvm_unreachable("unknown base initializer kind"); 5778 } 5779 5780 // Need to override This for implicit field initializers as in this case 5781 // This refers to innermost anonymous struct/union containing initializer, 5782 // not to currently constructed class. 5783 const Expr *Init = I->getInit(); 5784 ThisOverrideRAII ThisOverride(*Info.CurrentCall, &SubobjectParent, 5785 isa<CXXDefaultInitExpr>(Init)); 5786 FullExpressionRAII InitScope(Info); 5787 if (!EvaluateInPlace(*Value, Info, Subobject, Init) || 5788 (FD && FD->isBitField() && 5789 !truncateBitfieldValue(Info, Init, *Value, FD))) { 5790 // If we're checking for a potential constant expression, evaluate all 5791 // initializers even if some of them fail. 5792 if (!Info.noteFailure()) 5793 return false; 5794 Success = false; 5795 } 5796 5797 // This is the point at which the dynamic type of the object becomes this 5798 // class type. 5799 if (I->isBaseInitializer() && BasesSeen == RD->getNumBases()) 5800 EvalObj.finishedConstructingBases(); 5801 } 5802 5803 // Default-initialize any remaining fields. 5804 if (!RD->isUnion()) { 5805 for (; FieldIt != RD->field_end(); ++FieldIt) { 5806 if (!FieldIt->isUnnamedBitfield()) 5807 Result.getStructField(FieldIt->getFieldIndex()) = 5808 getDefaultInitValue(FieldIt->getType()); 5809 } 5810 } 5811 5812 EvalObj.finishedConstructingFields(); 5813 5814 return Success && 5815 EvaluateStmt(Ret, Info, Definition->getBody()) != ESR_Failed && 5816 LifetimeExtendedScope.destroy(); 5817 } 5818 5819 static bool HandleConstructorCall(const Expr *E, const LValue &This, 5820 ArrayRef<const Expr*> Args, 5821 const CXXConstructorDecl *Definition, 5822 EvalInfo &Info, APValue &Result) { 5823 ArgVector ArgValues(Args.size()); 5824 if (!EvaluateArgs(Args, ArgValues, Info, Definition)) 5825 return false; 5826 5827 return HandleConstructorCall(E, This, ArgValues.data(), Definition, 5828 Info, Result); 5829 } 5830 5831 static bool HandleDestructionImpl(EvalInfo &Info, SourceLocation CallLoc, 5832 const LValue &This, APValue &Value, 5833 QualType T) { 5834 // Objects can only be destroyed while they're within their lifetimes. 5835 // FIXME: We have no representation for whether an object of type nullptr_t 5836 // is in its lifetime; it usually doesn't matter. Perhaps we should model it 5837 // as indeterminate instead? 5838 if (Value.isAbsent() && !T->isNullPtrType()) { 5839 APValue Printable; 5840 This.moveInto(Printable); 5841 Info.FFDiag(CallLoc, diag::note_constexpr_destroy_out_of_lifetime) 5842 << Printable.getAsString(Info.Ctx, Info.Ctx.getLValueReferenceType(T)); 5843 return false; 5844 } 5845 5846 // Invent an expression for location purposes. 5847 // FIXME: We shouldn't need to do this. 5848 OpaqueValueExpr LocE(CallLoc, Info.Ctx.IntTy, VK_RValue); 5849 5850 // For arrays, destroy elements right-to-left. 5851 if (const ConstantArrayType *CAT = Info.Ctx.getAsConstantArrayType(T)) { 5852 uint64_t Size = CAT->getSize().getZExtValue(); 5853 QualType ElemT = CAT->getElementType(); 5854 5855 LValue ElemLV = This; 5856 ElemLV.addArray(Info, &LocE, CAT); 5857 if (!HandleLValueArrayAdjustment(Info, &LocE, ElemLV, ElemT, Size)) 5858 return false; 5859 5860 // Ensure that we have actual array elements available to destroy; the 5861 // destructors might mutate the value, so we can't run them on the array 5862 // filler. 5863 if (Size && Size > Value.getArrayInitializedElts()) 5864 expandArray(Value, Value.getArraySize() - 1); 5865 5866 for (; Size != 0; --Size) { 5867 APValue &Elem = Value.getArrayInitializedElt(Size - 1); 5868 if (!HandleLValueArrayAdjustment(Info, &LocE, ElemLV, ElemT, -1) || 5869 !HandleDestructionImpl(Info, CallLoc, ElemLV, Elem, ElemT)) 5870 return false; 5871 } 5872 5873 // End the lifetime of this array now. 5874 Value = APValue(); 5875 return true; 5876 } 5877 5878 const CXXRecordDecl *RD = T->getAsCXXRecordDecl(); 5879 if (!RD) { 5880 if (T.isDestructedType()) { 5881 Info.FFDiag(CallLoc, diag::note_constexpr_unsupported_destruction) << T; 5882 return false; 5883 } 5884 5885 Value = APValue(); 5886 return true; 5887 } 5888 5889 if (RD->getNumVBases()) { 5890 Info.FFDiag(CallLoc, diag::note_constexpr_virtual_base) << RD; 5891 return false; 5892 } 5893 5894 const CXXDestructorDecl *DD = RD->getDestructor(); 5895 if (!DD && !RD->hasTrivialDestructor()) { 5896 Info.FFDiag(CallLoc); 5897 return false; 5898 } 5899 5900 if (!DD || DD->isTrivial() || 5901 (RD->isAnonymousStructOrUnion() && RD->isUnion())) { 5902 // A trivial destructor just ends the lifetime of the object. Check for 5903 // this case before checking for a body, because we might not bother 5904 // building a body for a trivial destructor. Note that it doesn't matter 5905 // whether the destructor is constexpr in this case; all trivial 5906 // destructors are constexpr. 5907 // 5908 // If an anonymous union would be destroyed, some enclosing destructor must 5909 // have been explicitly defined, and the anonymous union destruction should 5910 // have no effect. 5911 Value = APValue(); 5912 return true; 5913 } 5914 5915 if (!Info.CheckCallLimit(CallLoc)) 5916 return false; 5917 5918 const FunctionDecl *Definition = nullptr; 5919 const Stmt *Body = DD->getBody(Definition); 5920 5921 if (!CheckConstexprFunction(Info, CallLoc, DD, Definition, Body)) 5922 return false; 5923 5924 CallStackFrame Frame(Info, CallLoc, Definition, &This, nullptr); 5925 5926 // We're now in the period of destruction of this object. 5927 unsigned BasesLeft = RD->getNumBases(); 5928 EvalInfo::EvaluatingDestructorRAII EvalObj( 5929 Info, 5930 ObjectUnderConstruction{This.getLValueBase(), This.Designator.Entries}); 5931 if (!EvalObj.DidInsert) { 5932 // C++2a [class.dtor]p19: 5933 // the behavior is undefined if the destructor is invoked for an object 5934 // whose lifetime has ended 5935 // (Note that formally the lifetime ends when the period of destruction 5936 // begins, even though certain uses of the object remain valid until the 5937 // period of destruction ends.) 5938 Info.FFDiag(CallLoc, diag::note_constexpr_double_destroy); 5939 return false; 5940 } 5941 5942 // FIXME: Creating an APValue just to hold a nonexistent return value is 5943 // wasteful. 5944 APValue RetVal; 5945 StmtResult Ret = {RetVal, nullptr}; 5946 if (EvaluateStmt(Ret, Info, Definition->getBody()) == ESR_Failed) 5947 return false; 5948 5949 // A union destructor does not implicitly destroy its members. 5950 if (RD->isUnion()) 5951 return true; 5952 5953 const ASTRecordLayout &Layout = Info.Ctx.getASTRecordLayout(RD); 5954 5955 // We don't have a good way to iterate fields in reverse, so collect all the 5956 // fields first and then walk them backwards. 5957 SmallVector<FieldDecl*, 16> Fields(RD->field_begin(), RD->field_end()); 5958 for (const FieldDecl *FD : llvm::reverse(Fields)) { 5959 if (FD->isUnnamedBitfield()) 5960 continue; 5961 5962 LValue Subobject = This; 5963 if (!HandleLValueMember(Info, &LocE, Subobject, FD, &Layout)) 5964 return false; 5965 5966 APValue *SubobjectValue = &Value.getStructField(FD->getFieldIndex()); 5967 if (!HandleDestructionImpl(Info, CallLoc, Subobject, *SubobjectValue, 5968 FD->getType())) 5969 return false; 5970 } 5971 5972 if (BasesLeft != 0) 5973 EvalObj.startedDestroyingBases(); 5974 5975 // Destroy base classes in reverse order. 5976 for (const CXXBaseSpecifier &Base : llvm::reverse(RD->bases())) { 5977 --BasesLeft; 5978 5979 QualType BaseType = Base.getType(); 5980 LValue Subobject = This; 5981 if (!HandleLValueDirectBase(Info, &LocE, Subobject, RD, 5982 BaseType->getAsCXXRecordDecl(), &Layout)) 5983 return false; 5984 5985 APValue *SubobjectValue = &Value.getStructBase(BasesLeft); 5986 if (!HandleDestructionImpl(Info, CallLoc, Subobject, *SubobjectValue, 5987 BaseType)) 5988 return false; 5989 } 5990 assert(BasesLeft == 0 && "NumBases was wrong?"); 5991 5992 // The period of destruction ends now. The object is gone. 5993 Value = APValue(); 5994 return true; 5995 } 5996 5997 namespace { 5998 struct DestroyObjectHandler { 5999 EvalInfo &Info; 6000 const Expr *E; 6001 const LValue &This; 6002 const AccessKinds AccessKind; 6003 6004 typedef bool result_type; 6005 bool failed() { return false; } 6006 bool found(APValue &Subobj, QualType SubobjType) { 6007 return HandleDestructionImpl(Info, E->getExprLoc(), This, Subobj, 6008 SubobjType); 6009 } 6010 bool found(APSInt &Value, QualType SubobjType) { 6011 Info.FFDiag(E, diag::note_constexpr_destroy_complex_elem); 6012 return false; 6013 } 6014 bool found(APFloat &Value, QualType SubobjType) { 6015 Info.FFDiag(E, diag::note_constexpr_destroy_complex_elem); 6016 return false; 6017 } 6018 }; 6019 } 6020 6021 /// Perform a destructor or pseudo-destructor call on the given object, which 6022 /// might in general not be a complete object. 6023 static bool HandleDestruction(EvalInfo &Info, const Expr *E, 6024 const LValue &This, QualType ThisType) { 6025 CompleteObject Obj = findCompleteObject(Info, E, AK_Destroy, This, ThisType); 6026 DestroyObjectHandler Handler = {Info, E, This, AK_Destroy}; 6027 return Obj && findSubobject(Info, E, Obj, This.Designator, Handler); 6028 } 6029 6030 /// Destroy and end the lifetime of the given complete object. 6031 static bool HandleDestruction(EvalInfo &Info, SourceLocation Loc, 6032 APValue::LValueBase LVBase, APValue &Value, 6033 QualType T) { 6034 // If we've had an unmodeled side-effect, we can't rely on mutable state 6035 // (such as the object we're about to destroy) being correct. 6036 if (Info.EvalStatus.HasSideEffects) 6037 return false; 6038 6039 LValue LV; 6040 LV.set({LVBase}); 6041 return HandleDestructionImpl(Info, Loc, LV, Value, T); 6042 } 6043 6044 /// Perform a call to 'perator new' or to `__builtin_operator_new'. 6045 static bool HandleOperatorNewCall(EvalInfo &Info, const CallExpr *E, 6046 LValue &Result) { 6047 if (Info.checkingPotentialConstantExpression() || 6048 Info.SpeculativeEvaluationDepth) 6049 return false; 6050 6051 // This is permitted only within a call to std::allocator<T>::allocate. 6052 auto Caller = Info.getStdAllocatorCaller("allocate"); 6053 if (!Caller) { 6054 Info.FFDiag(E->getExprLoc(), Info.getLangOpts().CPlusPlus2a 6055 ? diag::note_constexpr_new_untyped 6056 : diag::note_constexpr_new); 6057 return false; 6058 } 6059 6060 QualType ElemType = Caller.ElemType; 6061 if (ElemType->isIncompleteType() || ElemType->isFunctionType()) { 6062 Info.FFDiag(E->getExprLoc(), 6063 diag::note_constexpr_new_not_complete_object_type) 6064 << (ElemType->isIncompleteType() ? 0 : 1) << ElemType; 6065 return false; 6066 } 6067 6068 APSInt ByteSize; 6069 if (!EvaluateInteger(E->getArg(0), ByteSize, Info)) 6070 return false; 6071 bool IsNothrow = false; 6072 for (unsigned I = 1, N = E->getNumArgs(); I != N; ++I) { 6073 EvaluateIgnoredValue(Info, E->getArg(I)); 6074 IsNothrow |= E->getType()->isNothrowT(); 6075 } 6076 6077 CharUnits ElemSize; 6078 if (!HandleSizeof(Info, E->getExprLoc(), ElemType, ElemSize)) 6079 return false; 6080 APInt Size, Remainder; 6081 APInt ElemSizeAP(ByteSize.getBitWidth(), ElemSize.getQuantity()); 6082 APInt::udivrem(ByteSize, ElemSizeAP, Size, Remainder); 6083 if (Remainder != 0) { 6084 // This likely indicates a bug in the implementation of 'std::allocator'. 6085 Info.FFDiag(E->getExprLoc(), diag::note_constexpr_operator_new_bad_size) 6086 << ByteSize << APSInt(ElemSizeAP, true) << ElemType; 6087 return false; 6088 } 6089 6090 if (ByteSize.getActiveBits() > ConstantArrayType::getMaxSizeBits(Info.Ctx)) { 6091 if (IsNothrow) { 6092 Result.setNull(Info.Ctx, E->getType()); 6093 return true; 6094 } 6095 6096 Info.FFDiag(E, diag::note_constexpr_new_too_large) << APSInt(Size, true); 6097 return false; 6098 } 6099 6100 QualType AllocType = Info.Ctx.getConstantArrayType(ElemType, Size, nullptr, 6101 ArrayType::Normal, 0); 6102 APValue *Val = Info.createHeapAlloc(E, AllocType, Result); 6103 *Val = APValue(APValue::UninitArray(), 0, Size.getZExtValue()); 6104 Result.addArray(Info, E, cast<ConstantArrayType>(AllocType)); 6105 return true; 6106 } 6107 6108 static bool hasVirtualDestructor(QualType T) { 6109 if (CXXRecordDecl *RD = T->getAsCXXRecordDecl()) 6110 if (CXXDestructorDecl *DD = RD->getDestructor()) 6111 return DD->isVirtual(); 6112 return false; 6113 } 6114 6115 static const FunctionDecl *getVirtualOperatorDelete(QualType T) { 6116 if (CXXRecordDecl *RD = T->getAsCXXRecordDecl()) 6117 if (CXXDestructorDecl *DD = RD->getDestructor()) 6118 return DD->isVirtual() ? DD->getOperatorDelete() : nullptr; 6119 return nullptr; 6120 } 6121 6122 /// Check that the given object is a suitable pointer to a heap allocation that 6123 /// still exists and is of the right kind for the purpose of a deletion. 6124 /// 6125 /// On success, returns the heap allocation to deallocate. On failure, produces 6126 /// a diagnostic and returns None. 6127 static Optional<DynAlloc *> CheckDeleteKind(EvalInfo &Info, const Expr *E, 6128 const LValue &Pointer, 6129 DynAlloc::Kind DeallocKind) { 6130 auto PointerAsString = [&] { 6131 return Pointer.toString(Info.Ctx, Info.Ctx.VoidPtrTy); 6132 }; 6133 6134 DynamicAllocLValue DA = Pointer.Base.dyn_cast<DynamicAllocLValue>(); 6135 if (!DA) { 6136 Info.FFDiag(E, diag::note_constexpr_delete_not_heap_alloc) 6137 << PointerAsString(); 6138 if (Pointer.Base) 6139 NoteLValueLocation(Info, Pointer.Base); 6140 return None; 6141 } 6142 6143 Optional<DynAlloc *> Alloc = Info.lookupDynamicAlloc(DA); 6144 if (!Alloc) { 6145 Info.FFDiag(E, diag::note_constexpr_double_delete); 6146 return None; 6147 } 6148 6149 QualType AllocType = Pointer.Base.getDynamicAllocType(); 6150 if (DeallocKind != (*Alloc)->getKind()) { 6151 Info.FFDiag(E, diag::note_constexpr_new_delete_mismatch) 6152 << DeallocKind << (*Alloc)->getKind() << AllocType; 6153 NoteLValueLocation(Info, Pointer.Base); 6154 return None; 6155 } 6156 6157 bool Subobject = false; 6158 if (DeallocKind == DynAlloc::New) { 6159 Subobject = Pointer.Designator.MostDerivedPathLength != 0 || 6160 Pointer.Designator.isOnePastTheEnd(); 6161 } else { 6162 Subobject = Pointer.Designator.Entries.size() != 1 || 6163 Pointer.Designator.Entries[0].getAsArrayIndex() != 0; 6164 } 6165 if (Subobject) { 6166 Info.FFDiag(E, diag::note_constexpr_delete_subobject) 6167 << PointerAsString() << Pointer.Designator.isOnePastTheEnd(); 6168 return None; 6169 } 6170 6171 return Alloc; 6172 } 6173 6174 // Perform a call to 'operator delete' or '__builtin_operator_delete'. 6175 bool HandleOperatorDeleteCall(EvalInfo &Info, const CallExpr *E) { 6176 if (Info.checkingPotentialConstantExpression() || 6177 Info.SpeculativeEvaluationDepth) 6178 return false; 6179 6180 // This is permitted only within a call to std::allocator<T>::deallocate. 6181 if (!Info.getStdAllocatorCaller("deallocate")) { 6182 Info.FFDiag(E->getExprLoc()); 6183 return true; 6184 } 6185 6186 LValue Pointer; 6187 if (!EvaluatePointer(E->getArg(0), Pointer, Info)) 6188 return false; 6189 for (unsigned I = 1, N = E->getNumArgs(); I != N; ++I) 6190 EvaluateIgnoredValue(Info, E->getArg(I)); 6191 6192 if (Pointer.Designator.Invalid) 6193 return false; 6194 6195 // Deleting a null pointer has no effect. 6196 if (Pointer.isNullPointer()) 6197 return true; 6198 6199 if (!CheckDeleteKind(Info, E, Pointer, DynAlloc::StdAllocator)) 6200 return false; 6201 6202 Info.HeapAllocs.erase(Pointer.Base.get<DynamicAllocLValue>()); 6203 return true; 6204 } 6205 6206 //===----------------------------------------------------------------------===// 6207 // Generic Evaluation 6208 //===----------------------------------------------------------------------===// 6209 namespace { 6210 6211 class BitCastBuffer { 6212 // FIXME: We're going to need bit-level granularity when we support 6213 // bit-fields. 6214 // FIXME: Its possible under the C++ standard for 'char' to not be 8 bits, but 6215 // we don't support a host or target where that is the case. Still, we should 6216 // use a more generic type in case we ever do. 6217 SmallVector<Optional<unsigned char>, 32> Bytes; 6218 6219 static_assert(std::numeric_limits<unsigned char>::digits >= 8, 6220 "Need at least 8 bit unsigned char"); 6221 6222 bool TargetIsLittleEndian; 6223 6224 public: 6225 BitCastBuffer(CharUnits Width, bool TargetIsLittleEndian) 6226 : Bytes(Width.getQuantity()), 6227 TargetIsLittleEndian(TargetIsLittleEndian) {} 6228 6229 LLVM_NODISCARD 6230 bool readObject(CharUnits Offset, CharUnits Width, 6231 SmallVectorImpl<unsigned char> &Output) const { 6232 for (CharUnits I = Offset, E = Offset + Width; I != E; ++I) { 6233 // If a byte of an integer is uninitialized, then the whole integer is 6234 // uninitalized. 6235 if (!Bytes[I.getQuantity()]) 6236 return false; 6237 Output.push_back(*Bytes[I.getQuantity()]); 6238 } 6239 if (llvm::sys::IsLittleEndianHost != TargetIsLittleEndian) 6240 std::reverse(Output.begin(), Output.end()); 6241 return true; 6242 } 6243 6244 void writeObject(CharUnits Offset, SmallVectorImpl<unsigned char> &Input) { 6245 if (llvm::sys::IsLittleEndianHost != TargetIsLittleEndian) 6246 std::reverse(Input.begin(), Input.end()); 6247 6248 size_t Index = 0; 6249 for (unsigned char Byte : Input) { 6250 assert(!Bytes[Offset.getQuantity() + Index] && "overwriting a byte?"); 6251 Bytes[Offset.getQuantity() + Index] = Byte; 6252 ++Index; 6253 } 6254 } 6255 6256 size_t size() { return Bytes.size(); } 6257 }; 6258 6259 /// Traverse an APValue to produce an BitCastBuffer, emulating how the current 6260 /// target would represent the value at runtime. 6261 class APValueToBufferConverter { 6262 EvalInfo &Info; 6263 BitCastBuffer Buffer; 6264 const CastExpr *BCE; 6265 6266 APValueToBufferConverter(EvalInfo &Info, CharUnits ObjectWidth, 6267 const CastExpr *BCE) 6268 : Info(Info), 6269 Buffer(ObjectWidth, Info.Ctx.getTargetInfo().isLittleEndian()), 6270 BCE(BCE) {} 6271 6272 bool visit(const APValue &Val, QualType Ty) { 6273 return visit(Val, Ty, CharUnits::fromQuantity(0)); 6274 } 6275 6276 // Write out Val with type Ty into Buffer starting at Offset. 6277 bool visit(const APValue &Val, QualType Ty, CharUnits Offset) { 6278 assert((size_t)Offset.getQuantity() <= Buffer.size()); 6279 6280 // As a special case, nullptr_t has an indeterminate value. 6281 if (Ty->isNullPtrType()) 6282 return true; 6283 6284 // Dig through Src to find the byte at SrcOffset. 6285 switch (Val.getKind()) { 6286 case APValue::Indeterminate: 6287 case APValue::None: 6288 return true; 6289 6290 case APValue::Int: 6291 return visitInt(Val.getInt(), Ty, Offset); 6292 case APValue::Float: 6293 return visitFloat(Val.getFloat(), Ty, Offset); 6294 case APValue::Array: 6295 return visitArray(Val, Ty, Offset); 6296 case APValue::Struct: 6297 return visitRecord(Val, Ty, Offset); 6298 6299 case APValue::ComplexInt: 6300 case APValue::ComplexFloat: 6301 case APValue::Vector: 6302 case APValue::FixedPoint: 6303 // FIXME: We should support these. 6304 6305 case APValue::Union: 6306 case APValue::MemberPointer: 6307 case APValue::AddrLabelDiff: { 6308 Info.FFDiag(BCE->getBeginLoc(), 6309 diag::note_constexpr_bit_cast_unsupported_type) 6310 << Ty; 6311 return false; 6312 } 6313 6314 case APValue::LValue: 6315 llvm_unreachable("LValue subobject in bit_cast?"); 6316 } 6317 llvm_unreachable("Unhandled APValue::ValueKind"); 6318 } 6319 6320 bool visitRecord(const APValue &Val, QualType Ty, CharUnits Offset) { 6321 const RecordDecl *RD = Ty->getAsRecordDecl(); 6322 const ASTRecordLayout &Layout = Info.Ctx.getASTRecordLayout(RD); 6323 6324 // Visit the base classes. 6325 if (auto *CXXRD = dyn_cast<CXXRecordDecl>(RD)) { 6326 for (size_t I = 0, E = CXXRD->getNumBases(); I != E; ++I) { 6327 const CXXBaseSpecifier &BS = CXXRD->bases_begin()[I]; 6328 CXXRecordDecl *BaseDecl = BS.getType()->getAsCXXRecordDecl(); 6329 6330 if (!visitRecord(Val.getStructBase(I), BS.getType(), 6331 Layout.getBaseClassOffset(BaseDecl) + Offset)) 6332 return false; 6333 } 6334 } 6335 6336 // Visit the fields. 6337 unsigned FieldIdx = 0; 6338 for (FieldDecl *FD : RD->fields()) { 6339 if (FD->isBitField()) { 6340 Info.FFDiag(BCE->getBeginLoc(), 6341 diag::note_constexpr_bit_cast_unsupported_bitfield); 6342 return false; 6343 } 6344 6345 uint64_t FieldOffsetBits = Layout.getFieldOffset(FieldIdx); 6346 6347 assert(FieldOffsetBits % Info.Ctx.getCharWidth() == 0 && 6348 "only bit-fields can have sub-char alignment"); 6349 CharUnits FieldOffset = 6350 Info.Ctx.toCharUnitsFromBits(FieldOffsetBits) + Offset; 6351 QualType FieldTy = FD->getType(); 6352 if (!visit(Val.getStructField(FieldIdx), FieldTy, FieldOffset)) 6353 return false; 6354 ++FieldIdx; 6355 } 6356 6357 return true; 6358 } 6359 6360 bool visitArray(const APValue &Val, QualType Ty, CharUnits Offset) { 6361 const auto *CAT = 6362 dyn_cast_or_null<ConstantArrayType>(Ty->getAsArrayTypeUnsafe()); 6363 if (!CAT) 6364 return false; 6365 6366 CharUnits ElemWidth = Info.Ctx.getTypeSizeInChars(CAT->getElementType()); 6367 unsigned NumInitializedElts = Val.getArrayInitializedElts(); 6368 unsigned ArraySize = Val.getArraySize(); 6369 // First, initialize the initialized elements. 6370 for (unsigned I = 0; I != NumInitializedElts; ++I) { 6371 const APValue &SubObj = Val.getArrayInitializedElt(I); 6372 if (!visit(SubObj, CAT->getElementType(), Offset + I * ElemWidth)) 6373 return false; 6374 } 6375 6376 // Next, initialize the rest of the array using the filler. 6377 if (Val.hasArrayFiller()) { 6378 const APValue &Filler = Val.getArrayFiller(); 6379 for (unsigned I = NumInitializedElts; I != ArraySize; ++I) { 6380 if (!visit(Filler, CAT->getElementType(), Offset + I * ElemWidth)) 6381 return false; 6382 } 6383 } 6384 6385 return true; 6386 } 6387 6388 bool visitInt(const APSInt &Val, QualType Ty, CharUnits Offset) { 6389 CharUnits Width = Info.Ctx.getTypeSizeInChars(Ty); 6390 SmallVector<unsigned char, 8> Bytes(Width.getQuantity()); 6391 llvm::StoreIntToMemory(Val, &*Bytes.begin(), Width.getQuantity()); 6392 Buffer.writeObject(Offset, Bytes); 6393 return true; 6394 } 6395 6396 bool visitFloat(const APFloat &Val, QualType Ty, CharUnits Offset) { 6397 APSInt AsInt(Val.bitcastToAPInt()); 6398 return visitInt(AsInt, Ty, Offset); 6399 } 6400 6401 public: 6402 static Optional<BitCastBuffer> convert(EvalInfo &Info, const APValue &Src, 6403 const CastExpr *BCE) { 6404 CharUnits DstSize = Info.Ctx.getTypeSizeInChars(BCE->getType()); 6405 APValueToBufferConverter Converter(Info, DstSize, BCE); 6406 if (!Converter.visit(Src, BCE->getSubExpr()->getType())) 6407 return None; 6408 return Converter.Buffer; 6409 } 6410 }; 6411 6412 /// Write an BitCastBuffer into an APValue. 6413 class BufferToAPValueConverter { 6414 EvalInfo &Info; 6415 const BitCastBuffer &Buffer; 6416 const CastExpr *BCE; 6417 6418 BufferToAPValueConverter(EvalInfo &Info, const BitCastBuffer &Buffer, 6419 const CastExpr *BCE) 6420 : Info(Info), Buffer(Buffer), BCE(BCE) {} 6421 6422 // Emit an unsupported bit_cast type error. Sema refuses to build a bit_cast 6423 // with an invalid type, so anything left is a deficiency on our part (FIXME). 6424 // Ideally this will be unreachable. 6425 llvm::NoneType unsupportedType(QualType Ty) { 6426 Info.FFDiag(BCE->getBeginLoc(), 6427 diag::note_constexpr_bit_cast_unsupported_type) 6428 << Ty; 6429 return None; 6430 } 6431 6432 Optional<APValue> visit(const BuiltinType *T, CharUnits Offset, 6433 const EnumType *EnumSugar = nullptr) { 6434 if (T->isNullPtrType()) { 6435 uint64_t NullValue = Info.Ctx.getTargetNullPointerValue(QualType(T, 0)); 6436 return APValue((Expr *)nullptr, 6437 /*Offset=*/CharUnits::fromQuantity(NullValue), 6438 APValue::NoLValuePath{}, /*IsNullPtr=*/true); 6439 } 6440 6441 CharUnits SizeOf = Info.Ctx.getTypeSizeInChars(T); 6442 SmallVector<uint8_t, 8> Bytes; 6443 if (!Buffer.readObject(Offset, SizeOf, Bytes)) { 6444 // If this is std::byte or unsigned char, then its okay to store an 6445 // indeterminate value. 6446 bool IsStdByte = EnumSugar && EnumSugar->isStdByteType(); 6447 bool IsUChar = 6448 !EnumSugar && (T->isSpecificBuiltinType(BuiltinType::UChar) || 6449 T->isSpecificBuiltinType(BuiltinType::Char_U)); 6450 if (!IsStdByte && !IsUChar) { 6451 QualType DisplayType(EnumSugar ? (const Type *)EnumSugar : T, 0); 6452 Info.FFDiag(BCE->getExprLoc(), 6453 diag::note_constexpr_bit_cast_indet_dest) 6454 << DisplayType << Info.Ctx.getLangOpts().CharIsSigned; 6455 return None; 6456 } 6457 6458 return APValue::IndeterminateValue(); 6459 } 6460 6461 APSInt Val(SizeOf.getQuantity() * Info.Ctx.getCharWidth(), true); 6462 llvm::LoadIntFromMemory(Val, &*Bytes.begin(), Bytes.size()); 6463 6464 if (T->isIntegralOrEnumerationType()) { 6465 Val.setIsSigned(T->isSignedIntegerOrEnumerationType()); 6466 return APValue(Val); 6467 } 6468 6469 if (T->isRealFloatingType()) { 6470 const llvm::fltSemantics &Semantics = 6471 Info.Ctx.getFloatTypeSemantics(QualType(T, 0)); 6472 return APValue(APFloat(Semantics, Val)); 6473 } 6474 6475 return unsupportedType(QualType(T, 0)); 6476 } 6477 6478 Optional<APValue> visit(const RecordType *RTy, CharUnits Offset) { 6479 const RecordDecl *RD = RTy->getAsRecordDecl(); 6480 const ASTRecordLayout &Layout = Info.Ctx.getASTRecordLayout(RD); 6481 6482 unsigned NumBases = 0; 6483 if (auto *CXXRD = dyn_cast<CXXRecordDecl>(RD)) 6484 NumBases = CXXRD->getNumBases(); 6485 6486 APValue ResultVal(APValue::UninitStruct(), NumBases, 6487 std::distance(RD->field_begin(), RD->field_end())); 6488 6489 // Visit the base classes. 6490 if (auto *CXXRD = dyn_cast<CXXRecordDecl>(RD)) { 6491 for (size_t I = 0, E = CXXRD->getNumBases(); I != E; ++I) { 6492 const CXXBaseSpecifier &BS = CXXRD->bases_begin()[I]; 6493 CXXRecordDecl *BaseDecl = BS.getType()->getAsCXXRecordDecl(); 6494 if (BaseDecl->isEmpty() || 6495 Info.Ctx.getASTRecordLayout(BaseDecl).getNonVirtualSize().isZero()) 6496 continue; 6497 6498 Optional<APValue> SubObj = visitType( 6499 BS.getType(), Layout.getBaseClassOffset(BaseDecl) + Offset); 6500 if (!SubObj) 6501 return None; 6502 ResultVal.getStructBase(I) = *SubObj; 6503 } 6504 } 6505 6506 // Visit the fields. 6507 unsigned FieldIdx = 0; 6508 for (FieldDecl *FD : RD->fields()) { 6509 // FIXME: We don't currently support bit-fields. A lot of the logic for 6510 // this is in CodeGen, so we need to factor it around. 6511 if (FD->isBitField()) { 6512 Info.FFDiag(BCE->getBeginLoc(), 6513 diag::note_constexpr_bit_cast_unsupported_bitfield); 6514 return None; 6515 } 6516 6517 uint64_t FieldOffsetBits = Layout.getFieldOffset(FieldIdx); 6518 assert(FieldOffsetBits % Info.Ctx.getCharWidth() == 0); 6519 6520 CharUnits FieldOffset = 6521 CharUnits::fromQuantity(FieldOffsetBits / Info.Ctx.getCharWidth()) + 6522 Offset; 6523 QualType FieldTy = FD->getType(); 6524 Optional<APValue> SubObj = visitType(FieldTy, FieldOffset); 6525 if (!SubObj) 6526 return None; 6527 ResultVal.getStructField(FieldIdx) = *SubObj; 6528 ++FieldIdx; 6529 } 6530 6531 return ResultVal; 6532 } 6533 6534 Optional<APValue> visit(const EnumType *Ty, CharUnits Offset) { 6535 QualType RepresentationType = Ty->getDecl()->getIntegerType(); 6536 assert(!RepresentationType.isNull() && 6537 "enum forward decl should be caught by Sema"); 6538 const auto *AsBuiltin = 6539 RepresentationType.getCanonicalType()->castAs<BuiltinType>(); 6540 // Recurse into the underlying type. Treat std::byte transparently as 6541 // unsigned char. 6542 return visit(AsBuiltin, Offset, /*EnumTy=*/Ty); 6543 } 6544 6545 Optional<APValue> visit(const ConstantArrayType *Ty, CharUnits Offset) { 6546 size_t Size = Ty->getSize().getLimitedValue(); 6547 CharUnits ElementWidth = Info.Ctx.getTypeSizeInChars(Ty->getElementType()); 6548 6549 APValue ArrayValue(APValue::UninitArray(), Size, Size); 6550 for (size_t I = 0; I != Size; ++I) { 6551 Optional<APValue> ElementValue = 6552 visitType(Ty->getElementType(), Offset + I * ElementWidth); 6553 if (!ElementValue) 6554 return None; 6555 ArrayValue.getArrayInitializedElt(I) = std::move(*ElementValue); 6556 } 6557 6558 return ArrayValue; 6559 } 6560 6561 Optional<APValue> visit(const Type *Ty, CharUnits Offset) { 6562 return unsupportedType(QualType(Ty, 0)); 6563 } 6564 6565 Optional<APValue> visitType(QualType Ty, CharUnits Offset) { 6566 QualType Can = Ty.getCanonicalType(); 6567 6568 switch (Can->getTypeClass()) { 6569 #define TYPE(Class, Base) \ 6570 case Type::Class: \ 6571 return visit(cast<Class##Type>(Can.getTypePtr()), Offset); 6572 #define ABSTRACT_TYPE(Class, Base) 6573 #define NON_CANONICAL_TYPE(Class, Base) \ 6574 case Type::Class: \ 6575 llvm_unreachable("non-canonical type should be impossible!"); 6576 #define DEPENDENT_TYPE(Class, Base) \ 6577 case Type::Class: \ 6578 llvm_unreachable( \ 6579 "dependent types aren't supported in the constant evaluator!"); 6580 #define NON_CANONICAL_UNLESS_DEPENDENT(Class, Base) \ 6581 case Type::Class: \ 6582 llvm_unreachable("either dependent or not canonical!"); 6583 #include "clang/AST/TypeNodes.inc" 6584 } 6585 llvm_unreachable("Unhandled Type::TypeClass"); 6586 } 6587 6588 public: 6589 // Pull out a full value of type DstType. 6590 static Optional<APValue> convert(EvalInfo &Info, BitCastBuffer &Buffer, 6591 const CastExpr *BCE) { 6592 BufferToAPValueConverter Converter(Info, Buffer, BCE); 6593 return Converter.visitType(BCE->getType(), CharUnits::fromQuantity(0)); 6594 } 6595 }; 6596 6597 static bool checkBitCastConstexprEligibilityType(SourceLocation Loc, 6598 QualType Ty, EvalInfo *Info, 6599 const ASTContext &Ctx, 6600 bool CheckingDest) { 6601 Ty = Ty.getCanonicalType(); 6602 6603 auto diag = [&](int Reason) { 6604 if (Info) 6605 Info->FFDiag(Loc, diag::note_constexpr_bit_cast_invalid_type) 6606 << CheckingDest << (Reason == 4) << Reason; 6607 return false; 6608 }; 6609 auto note = [&](int Construct, QualType NoteTy, SourceLocation NoteLoc) { 6610 if (Info) 6611 Info->Note(NoteLoc, diag::note_constexpr_bit_cast_invalid_subtype) 6612 << NoteTy << Construct << Ty; 6613 return false; 6614 }; 6615 6616 if (Ty->isUnionType()) 6617 return diag(0); 6618 if (Ty->isPointerType()) 6619 return diag(1); 6620 if (Ty->isMemberPointerType()) 6621 return diag(2); 6622 if (Ty.isVolatileQualified()) 6623 return diag(3); 6624 6625 if (RecordDecl *Record = Ty->getAsRecordDecl()) { 6626 if (auto *CXXRD = dyn_cast<CXXRecordDecl>(Record)) { 6627 for (CXXBaseSpecifier &BS : CXXRD->bases()) 6628 if (!checkBitCastConstexprEligibilityType(Loc, BS.getType(), Info, Ctx, 6629 CheckingDest)) 6630 return note(1, BS.getType(), BS.getBeginLoc()); 6631 } 6632 for (FieldDecl *FD : Record->fields()) { 6633 if (FD->getType()->isReferenceType()) 6634 return diag(4); 6635 if (!checkBitCastConstexprEligibilityType(Loc, FD->getType(), Info, Ctx, 6636 CheckingDest)) 6637 return note(0, FD->getType(), FD->getBeginLoc()); 6638 } 6639 } 6640 6641 if (Ty->isArrayType() && 6642 !checkBitCastConstexprEligibilityType(Loc, Ctx.getBaseElementType(Ty), 6643 Info, Ctx, CheckingDest)) 6644 return false; 6645 6646 return true; 6647 } 6648 6649 static bool checkBitCastConstexprEligibility(EvalInfo *Info, 6650 const ASTContext &Ctx, 6651 const CastExpr *BCE) { 6652 bool DestOK = checkBitCastConstexprEligibilityType( 6653 BCE->getBeginLoc(), BCE->getType(), Info, Ctx, true); 6654 bool SourceOK = DestOK && checkBitCastConstexprEligibilityType( 6655 BCE->getBeginLoc(), 6656 BCE->getSubExpr()->getType(), Info, Ctx, false); 6657 return SourceOK; 6658 } 6659 6660 static bool handleLValueToRValueBitCast(EvalInfo &Info, APValue &DestValue, 6661 APValue &SourceValue, 6662 const CastExpr *BCE) { 6663 assert(CHAR_BIT == 8 && Info.Ctx.getTargetInfo().getCharWidth() == 8 && 6664 "no host or target supports non 8-bit chars"); 6665 assert(SourceValue.isLValue() && 6666 "LValueToRValueBitcast requires an lvalue operand!"); 6667 6668 if (!checkBitCastConstexprEligibility(&Info, Info.Ctx, BCE)) 6669 return false; 6670 6671 LValue SourceLValue; 6672 APValue SourceRValue; 6673 SourceLValue.setFrom(Info.Ctx, SourceValue); 6674 if (!handleLValueToRValueConversion( 6675 Info, BCE, BCE->getSubExpr()->getType().withConst(), SourceLValue, 6676 SourceRValue, /*WantObjectRepresentation=*/true)) 6677 return false; 6678 6679 // Read out SourceValue into a char buffer. 6680 Optional<BitCastBuffer> Buffer = 6681 APValueToBufferConverter::convert(Info, SourceRValue, BCE); 6682 if (!Buffer) 6683 return false; 6684 6685 // Write out the buffer into a new APValue. 6686 Optional<APValue> MaybeDestValue = 6687 BufferToAPValueConverter::convert(Info, *Buffer, BCE); 6688 if (!MaybeDestValue) 6689 return false; 6690 6691 DestValue = std::move(*MaybeDestValue); 6692 return true; 6693 } 6694 6695 template <class Derived> 6696 class ExprEvaluatorBase 6697 : public ConstStmtVisitor<Derived, bool> { 6698 private: 6699 Derived &getDerived() { return static_cast<Derived&>(*this); } 6700 bool DerivedSuccess(const APValue &V, const Expr *E) { 6701 return getDerived().Success(V, E); 6702 } 6703 bool DerivedZeroInitialization(const Expr *E) { 6704 return getDerived().ZeroInitialization(E); 6705 } 6706 6707 // Check whether a conditional operator with a non-constant condition is a 6708 // potential constant expression. If neither arm is a potential constant 6709 // expression, then the conditional operator is not either. 6710 template<typename ConditionalOperator> 6711 void CheckPotentialConstantConditional(const ConditionalOperator *E) { 6712 assert(Info.checkingPotentialConstantExpression()); 6713 6714 // Speculatively evaluate both arms. 6715 SmallVector<PartialDiagnosticAt, 8> Diag; 6716 { 6717 SpeculativeEvaluationRAII Speculate(Info, &Diag); 6718 StmtVisitorTy::Visit(E->getFalseExpr()); 6719 if (Diag.empty()) 6720 return; 6721 } 6722 6723 { 6724 SpeculativeEvaluationRAII Speculate(Info, &Diag); 6725 Diag.clear(); 6726 StmtVisitorTy::Visit(E->getTrueExpr()); 6727 if (Diag.empty()) 6728 return; 6729 } 6730 6731 Error(E, diag::note_constexpr_conditional_never_const); 6732 } 6733 6734 6735 template<typename ConditionalOperator> 6736 bool HandleConditionalOperator(const ConditionalOperator *E) { 6737 bool BoolResult; 6738 if (!EvaluateAsBooleanCondition(E->getCond(), BoolResult, Info)) { 6739 if (Info.checkingPotentialConstantExpression() && Info.noteFailure()) { 6740 CheckPotentialConstantConditional(E); 6741 return false; 6742 } 6743 if (Info.noteFailure()) { 6744 StmtVisitorTy::Visit(E->getTrueExpr()); 6745 StmtVisitorTy::Visit(E->getFalseExpr()); 6746 } 6747 return false; 6748 } 6749 6750 Expr *EvalExpr = BoolResult ? E->getTrueExpr() : E->getFalseExpr(); 6751 return StmtVisitorTy::Visit(EvalExpr); 6752 } 6753 6754 protected: 6755 EvalInfo &Info; 6756 typedef ConstStmtVisitor<Derived, bool> StmtVisitorTy; 6757 typedef ExprEvaluatorBase ExprEvaluatorBaseTy; 6758 6759 OptionalDiagnostic CCEDiag(const Expr *E, diag::kind D) { 6760 return Info.CCEDiag(E, D); 6761 } 6762 6763 bool ZeroInitialization(const Expr *E) { return Error(E); } 6764 6765 public: 6766 ExprEvaluatorBase(EvalInfo &Info) : Info(Info) {} 6767 6768 EvalInfo &getEvalInfo() { return Info; } 6769 6770 /// Report an evaluation error. This should only be called when an error is 6771 /// first discovered. When propagating an error, just return false. 6772 bool Error(const Expr *E, diag::kind D) { 6773 Info.FFDiag(E, D); 6774 return false; 6775 } 6776 bool Error(const Expr *E) { 6777 return Error(E, diag::note_invalid_subexpr_in_const_expr); 6778 } 6779 6780 bool VisitStmt(const Stmt *) { 6781 llvm_unreachable("Expression evaluator should not be called on stmts"); 6782 } 6783 bool VisitExpr(const Expr *E) { 6784 return Error(E); 6785 } 6786 6787 bool VisitConstantExpr(const ConstantExpr *E) { 6788 if (E->hasAPValueResult()) 6789 return DerivedSuccess(E->getAPValueResult(), E); 6790 6791 return StmtVisitorTy::Visit(E->getSubExpr()); 6792 } 6793 6794 bool VisitParenExpr(const ParenExpr *E) 6795 { return StmtVisitorTy::Visit(E->getSubExpr()); } 6796 bool VisitUnaryExtension(const UnaryOperator *E) 6797 { return StmtVisitorTy::Visit(E->getSubExpr()); } 6798 bool VisitUnaryPlus(const UnaryOperator *E) 6799 { return StmtVisitorTy::Visit(E->getSubExpr()); } 6800 bool VisitChooseExpr(const ChooseExpr *E) 6801 { return StmtVisitorTy::Visit(E->getChosenSubExpr()); } 6802 bool VisitGenericSelectionExpr(const GenericSelectionExpr *E) 6803 { return StmtVisitorTy::Visit(E->getResultExpr()); } 6804 bool VisitSubstNonTypeTemplateParmExpr(const SubstNonTypeTemplateParmExpr *E) 6805 { return StmtVisitorTy::Visit(E->getReplacement()); } 6806 bool VisitCXXDefaultArgExpr(const CXXDefaultArgExpr *E) { 6807 TempVersionRAII RAII(*Info.CurrentCall); 6808 SourceLocExprScopeGuard Guard(E, Info.CurrentCall->CurSourceLocExprScope); 6809 return StmtVisitorTy::Visit(E->getExpr()); 6810 } 6811 bool VisitCXXDefaultInitExpr(const CXXDefaultInitExpr *E) { 6812 TempVersionRAII RAII(*Info.CurrentCall); 6813 // The initializer may not have been parsed yet, or might be erroneous. 6814 if (!E->getExpr()) 6815 return Error(E); 6816 SourceLocExprScopeGuard Guard(E, Info.CurrentCall->CurSourceLocExprScope); 6817 return StmtVisitorTy::Visit(E->getExpr()); 6818 } 6819 6820 bool VisitExprWithCleanups(const ExprWithCleanups *E) { 6821 FullExpressionRAII Scope(Info); 6822 return StmtVisitorTy::Visit(E->getSubExpr()) && Scope.destroy(); 6823 } 6824 6825 // Temporaries are registered when created, so we don't care about 6826 // CXXBindTemporaryExpr. 6827 bool VisitCXXBindTemporaryExpr(const CXXBindTemporaryExpr *E) { 6828 return StmtVisitorTy::Visit(E->getSubExpr()); 6829 } 6830 6831 bool VisitCXXReinterpretCastExpr(const CXXReinterpretCastExpr *E) { 6832 CCEDiag(E, diag::note_constexpr_invalid_cast) << 0; 6833 return static_cast<Derived*>(this)->VisitCastExpr(E); 6834 } 6835 bool VisitCXXDynamicCastExpr(const CXXDynamicCastExpr *E) { 6836 if (!Info.Ctx.getLangOpts().CPlusPlus2a) 6837 CCEDiag(E, diag::note_constexpr_invalid_cast) << 1; 6838 return static_cast<Derived*>(this)->VisitCastExpr(E); 6839 } 6840 bool VisitBuiltinBitCastExpr(const BuiltinBitCastExpr *E) { 6841 return static_cast<Derived*>(this)->VisitCastExpr(E); 6842 } 6843 6844 bool VisitBinaryOperator(const BinaryOperator *E) { 6845 switch (E->getOpcode()) { 6846 default: 6847 return Error(E); 6848 6849 case BO_Comma: 6850 VisitIgnoredValue(E->getLHS()); 6851 return StmtVisitorTy::Visit(E->getRHS()); 6852 6853 case BO_PtrMemD: 6854 case BO_PtrMemI: { 6855 LValue Obj; 6856 if (!HandleMemberPointerAccess(Info, E, Obj)) 6857 return false; 6858 APValue Result; 6859 if (!handleLValueToRValueConversion(Info, E, E->getType(), Obj, Result)) 6860 return false; 6861 return DerivedSuccess(Result, E); 6862 } 6863 } 6864 } 6865 6866 bool VisitCXXRewrittenBinaryOperator(const CXXRewrittenBinaryOperator *E) { 6867 return StmtVisitorTy::Visit(E->getSemanticForm()); 6868 } 6869 6870 bool VisitBinaryConditionalOperator(const BinaryConditionalOperator *E) { 6871 // Evaluate and cache the common expression. We treat it as a temporary, 6872 // even though it's not quite the same thing. 6873 LValue CommonLV; 6874 if (!Evaluate(Info.CurrentCall->createTemporary( 6875 E->getOpaqueValue(), 6876 getStorageType(Info.Ctx, E->getOpaqueValue()), false, 6877 CommonLV), 6878 Info, E->getCommon())) 6879 return false; 6880 6881 return HandleConditionalOperator(E); 6882 } 6883 6884 bool VisitConditionalOperator(const ConditionalOperator *E) { 6885 bool IsBcpCall = false; 6886 // If the condition (ignoring parens) is a __builtin_constant_p call, 6887 // the result is a constant expression if it can be folded without 6888 // side-effects. This is an important GNU extension. See GCC PR38377 6889 // for discussion. 6890 if (const CallExpr *CallCE = 6891 dyn_cast<CallExpr>(E->getCond()->IgnoreParenCasts())) 6892 if (CallCE->getBuiltinCallee() == Builtin::BI__builtin_constant_p) 6893 IsBcpCall = true; 6894 6895 // Always assume __builtin_constant_p(...) ? ... : ... is a potential 6896 // constant expression; we can't check whether it's potentially foldable. 6897 // FIXME: We should instead treat __builtin_constant_p as non-constant if 6898 // it would return 'false' in this mode. 6899 if (Info.checkingPotentialConstantExpression() && IsBcpCall) 6900 return false; 6901 6902 FoldConstant Fold(Info, IsBcpCall); 6903 if (!HandleConditionalOperator(E)) { 6904 Fold.keepDiagnostics(); 6905 return false; 6906 } 6907 6908 return true; 6909 } 6910 6911 bool VisitOpaqueValueExpr(const OpaqueValueExpr *E) { 6912 if (APValue *Value = Info.CurrentCall->getCurrentTemporary(E)) 6913 return DerivedSuccess(*Value, E); 6914 6915 const Expr *Source = E->getSourceExpr(); 6916 if (!Source) 6917 return Error(E); 6918 if (Source == E) { // sanity checking. 6919 assert(0 && "OpaqueValueExpr recursively refers to itself"); 6920 return Error(E); 6921 } 6922 return StmtVisitorTy::Visit(Source); 6923 } 6924 6925 bool VisitPseudoObjectExpr(const PseudoObjectExpr *E) { 6926 for (const Expr *SemE : E->semantics()) { 6927 if (auto *OVE = dyn_cast<OpaqueValueExpr>(SemE)) { 6928 // FIXME: We can't handle the case where an OpaqueValueExpr is also the 6929 // result expression: there could be two different LValues that would 6930 // refer to the same object in that case, and we can't model that. 6931 if (SemE == E->getResultExpr()) 6932 return Error(E); 6933 6934 // Unique OVEs get evaluated if and when we encounter them when 6935 // emitting the rest of the semantic form, rather than eagerly. 6936 if (OVE->isUnique()) 6937 continue; 6938 6939 LValue LV; 6940 if (!Evaluate(Info.CurrentCall->createTemporary( 6941 OVE, getStorageType(Info.Ctx, OVE), false, LV), 6942 Info, OVE->getSourceExpr())) 6943 return false; 6944 } else if (SemE == E->getResultExpr()) { 6945 if (!StmtVisitorTy::Visit(SemE)) 6946 return false; 6947 } else { 6948 if (!EvaluateIgnoredValue(Info, SemE)) 6949 return false; 6950 } 6951 } 6952 return true; 6953 } 6954 6955 bool VisitCallExpr(const CallExpr *E) { 6956 APValue Result; 6957 if (!handleCallExpr(E, Result, nullptr)) 6958 return false; 6959 return DerivedSuccess(Result, E); 6960 } 6961 6962 bool handleCallExpr(const CallExpr *E, APValue &Result, 6963 const LValue *ResultSlot) { 6964 const Expr *Callee = E->getCallee()->IgnoreParens(); 6965 QualType CalleeType = Callee->getType(); 6966 6967 const FunctionDecl *FD = nullptr; 6968 LValue *This = nullptr, ThisVal; 6969 auto Args = llvm::makeArrayRef(E->getArgs(), E->getNumArgs()); 6970 bool HasQualifier = false; 6971 6972 // Extract function decl and 'this' pointer from the callee. 6973 if (CalleeType->isSpecificBuiltinType(BuiltinType::BoundMember)) { 6974 const CXXMethodDecl *Member = nullptr; 6975 if (const MemberExpr *ME = dyn_cast<MemberExpr>(Callee)) { 6976 // Explicit bound member calls, such as x.f() or p->g(); 6977 if (!EvaluateObjectArgument(Info, ME->getBase(), ThisVal)) 6978 return false; 6979 Member = dyn_cast<CXXMethodDecl>(ME->getMemberDecl()); 6980 if (!Member) 6981 return Error(Callee); 6982 This = &ThisVal; 6983 HasQualifier = ME->hasQualifier(); 6984 } else if (const BinaryOperator *BE = dyn_cast<BinaryOperator>(Callee)) { 6985 // Indirect bound member calls ('.*' or '->*'). 6986 const ValueDecl *D = 6987 HandleMemberPointerAccess(Info, BE, ThisVal, false); 6988 if (!D) 6989 return false; 6990 Member = dyn_cast<CXXMethodDecl>(D); 6991 if (!Member) 6992 return Error(Callee); 6993 This = &ThisVal; 6994 } else if (const auto *PDE = dyn_cast<CXXPseudoDestructorExpr>(Callee)) { 6995 if (!Info.getLangOpts().CPlusPlus2a) 6996 Info.CCEDiag(PDE, diag::note_constexpr_pseudo_destructor); 6997 return EvaluateObjectArgument(Info, PDE->getBase(), ThisVal) && 6998 HandleDestruction(Info, PDE, ThisVal, PDE->getDestroyedType()); 6999 } else 7000 return Error(Callee); 7001 FD = Member; 7002 } else if (CalleeType->isFunctionPointerType()) { 7003 LValue Call; 7004 if (!EvaluatePointer(Callee, Call, Info)) 7005 return false; 7006 7007 if (!Call.getLValueOffset().isZero()) 7008 return Error(Callee); 7009 FD = dyn_cast_or_null<FunctionDecl>( 7010 Call.getLValueBase().dyn_cast<const ValueDecl*>()); 7011 if (!FD) 7012 return Error(Callee); 7013 // Don't call function pointers which have been cast to some other type. 7014 // Per DR (no number yet), the caller and callee can differ in noexcept. 7015 if (!Info.Ctx.hasSameFunctionTypeIgnoringExceptionSpec( 7016 CalleeType->getPointeeType(), FD->getType())) { 7017 return Error(E); 7018 } 7019 7020 // Overloaded operator calls to member functions are represented as normal 7021 // calls with '*this' as the first argument. 7022 const CXXMethodDecl *MD = dyn_cast<CXXMethodDecl>(FD); 7023 if (MD && !MD->isStatic()) { 7024 // FIXME: When selecting an implicit conversion for an overloaded 7025 // operator delete, we sometimes try to evaluate calls to conversion 7026 // operators without a 'this' parameter! 7027 if (Args.empty()) 7028 return Error(E); 7029 7030 if (!EvaluateObjectArgument(Info, Args[0], ThisVal)) 7031 return false; 7032 This = &ThisVal; 7033 Args = Args.slice(1); 7034 } else if (MD && MD->isLambdaStaticInvoker()) { 7035 // Map the static invoker for the lambda back to the call operator. 7036 // Conveniently, we don't have to slice out the 'this' argument (as is 7037 // being done for the non-static case), since a static member function 7038 // doesn't have an implicit argument passed in. 7039 const CXXRecordDecl *ClosureClass = MD->getParent(); 7040 assert( 7041 ClosureClass->captures_begin() == ClosureClass->captures_end() && 7042 "Number of captures must be zero for conversion to function-ptr"); 7043 7044 const CXXMethodDecl *LambdaCallOp = 7045 ClosureClass->getLambdaCallOperator(); 7046 7047 // Set 'FD', the function that will be called below, to the call 7048 // operator. If the closure object represents a generic lambda, find 7049 // the corresponding specialization of the call operator. 7050 7051 if (ClosureClass->isGenericLambda()) { 7052 assert(MD->isFunctionTemplateSpecialization() && 7053 "A generic lambda's static-invoker function must be a " 7054 "template specialization"); 7055 const TemplateArgumentList *TAL = MD->getTemplateSpecializationArgs(); 7056 FunctionTemplateDecl *CallOpTemplate = 7057 LambdaCallOp->getDescribedFunctionTemplate(); 7058 void *InsertPos = nullptr; 7059 FunctionDecl *CorrespondingCallOpSpecialization = 7060 CallOpTemplate->findSpecialization(TAL->asArray(), InsertPos); 7061 assert(CorrespondingCallOpSpecialization && 7062 "We must always have a function call operator specialization " 7063 "that corresponds to our static invoker specialization"); 7064 FD = cast<CXXMethodDecl>(CorrespondingCallOpSpecialization); 7065 } else 7066 FD = LambdaCallOp; 7067 } else if (FD->isReplaceableGlobalAllocationFunction()) { 7068 if (FD->getDeclName().getCXXOverloadedOperator() == OO_New || 7069 FD->getDeclName().getCXXOverloadedOperator() == OO_Array_New) { 7070 LValue Ptr; 7071 if (!HandleOperatorNewCall(Info, E, Ptr)) 7072 return false; 7073 Ptr.moveInto(Result); 7074 return true; 7075 } else { 7076 return HandleOperatorDeleteCall(Info, E); 7077 } 7078 } 7079 } else 7080 return Error(E); 7081 7082 SmallVector<QualType, 4> CovariantAdjustmentPath; 7083 if (This) { 7084 auto *NamedMember = dyn_cast<CXXMethodDecl>(FD); 7085 if (NamedMember && NamedMember->isVirtual() && !HasQualifier) { 7086 // Perform virtual dispatch, if necessary. 7087 FD = HandleVirtualDispatch(Info, E, *This, NamedMember, 7088 CovariantAdjustmentPath); 7089 if (!FD) 7090 return false; 7091 } else { 7092 // Check that the 'this' pointer points to an object of the right type. 7093 // FIXME: If this is an assignment operator call, we may need to change 7094 // the active union member before we check this. 7095 if (!checkNonVirtualMemberCallThisPointer(Info, E, *This, NamedMember)) 7096 return false; 7097 } 7098 } 7099 7100 // Destructor calls are different enough that they have their own codepath. 7101 if (auto *DD = dyn_cast<CXXDestructorDecl>(FD)) { 7102 assert(This && "no 'this' pointer for destructor call"); 7103 return HandleDestruction(Info, E, *This, 7104 Info.Ctx.getRecordType(DD->getParent())); 7105 } 7106 7107 const FunctionDecl *Definition = nullptr; 7108 Stmt *Body = FD->getBody(Definition); 7109 7110 if (!CheckConstexprFunction(Info, E->getExprLoc(), FD, Definition, Body) || 7111 !HandleFunctionCall(E->getExprLoc(), Definition, This, Args, Body, Info, 7112 Result, ResultSlot)) 7113 return false; 7114 7115 if (!CovariantAdjustmentPath.empty() && 7116 !HandleCovariantReturnAdjustment(Info, E, Result, 7117 CovariantAdjustmentPath)) 7118 return false; 7119 7120 return true; 7121 } 7122 7123 bool VisitCompoundLiteralExpr(const CompoundLiteralExpr *E) { 7124 return StmtVisitorTy::Visit(E->getInitializer()); 7125 } 7126 bool VisitInitListExpr(const InitListExpr *E) { 7127 if (E->getNumInits() == 0) 7128 return DerivedZeroInitialization(E); 7129 if (E->getNumInits() == 1) 7130 return StmtVisitorTy::Visit(E->getInit(0)); 7131 return Error(E); 7132 } 7133 bool VisitImplicitValueInitExpr(const ImplicitValueInitExpr *E) { 7134 return DerivedZeroInitialization(E); 7135 } 7136 bool VisitCXXScalarValueInitExpr(const CXXScalarValueInitExpr *E) { 7137 return DerivedZeroInitialization(E); 7138 } 7139 bool VisitCXXNullPtrLiteralExpr(const CXXNullPtrLiteralExpr *E) { 7140 return DerivedZeroInitialization(E); 7141 } 7142 7143 /// A member expression where the object is a prvalue is itself a prvalue. 7144 bool VisitMemberExpr(const MemberExpr *E) { 7145 assert(!Info.Ctx.getLangOpts().CPlusPlus11 && 7146 "missing temporary materialization conversion"); 7147 assert(!E->isArrow() && "missing call to bound member function?"); 7148 7149 APValue Val; 7150 if (!Evaluate(Val, Info, E->getBase())) 7151 return false; 7152 7153 QualType BaseTy = E->getBase()->getType(); 7154 7155 const FieldDecl *FD = dyn_cast<FieldDecl>(E->getMemberDecl()); 7156 if (!FD) return Error(E); 7157 assert(!FD->getType()->isReferenceType() && "prvalue reference?"); 7158 assert(BaseTy->castAs<RecordType>()->getDecl()->getCanonicalDecl() == 7159 FD->getParent()->getCanonicalDecl() && "record / field mismatch"); 7160 7161 // Note: there is no lvalue base here. But this case should only ever 7162 // happen in C or in C++98, where we cannot be evaluating a constexpr 7163 // constructor, which is the only case the base matters. 7164 CompleteObject Obj(APValue::LValueBase(), &Val, BaseTy); 7165 SubobjectDesignator Designator(BaseTy); 7166 Designator.addDeclUnchecked(FD); 7167 7168 APValue Result; 7169 return extractSubobject(Info, E, Obj, Designator, Result) && 7170 DerivedSuccess(Result, E); 7171 } 7172 7173 bool VisitExtVectorElementExpr(const ExtVectorElementExpr *E) { 7174 APValue Val; 7175 if (!Evaluate(Val, Info, E->getBase())) 7176 return false; 7177 7178 if (Val.isVector()) { 7179 SmallVector<uint32_t, 4> Indices; 7180 E->getEncodedElementAccess(Indices); 7181 if (Indices.size() == 1) { 7182 // Return scalar. 7183 return DerivedSuccess(Val.getVectorElt(Indices[0]), E); 7184 } else { 7185 // Construct new APValue vector. 7186 SmallVector<APValue, 4> Elts; 7187 for (unsigned I = 0; I < Indices.size(); ++I) { 7188 Elts.push_back(Val.getVectorElt(Indices[I])); 7189 } 7190 APValue VecResult(Elts.data(), Indices.size()); 7191 return DerivedSuccess(VecResult, E); 7192 } 7193 } 7194 7195 return false; 7196 } 7197 7198 bool VisitCastExpr(const CastExpr *E) { 7199 switch (E->getCastKind()) { 7200 default: 7201 break; 7202 7203 case CK_AtomicToNonAtomic: { 7204 APValue AtomicVal; 7205 // This does not need to be done in place even for class/array types: 7206 // atomic-to-non-atomic conversion implies copying the object 7207 // representation. 7208 if (!Evaluate(AtomicVal, Info, E->getSubExpr())) 7209 return false; 7210 return DerivedSuccess(AtomicVal, E); 7211 } 7212 7213 case CK_NoOp: 7214 case CK_UserDefinedConversion: 7215 return StmtVisitorTy::Visit(E->getSubExpr()); 7216 7217 case CK_LValueToRValue: { 7218 LValue LVal; 7219 if (!EvaluateLValue(E->getSubExpr(), LVal, Info)) 7220 return false; 7221 APValue RVal; 7222 // Note, we use the subexpression's type in order to retain cv-qualifiers. 7223 if (!handleLValueToRValueConversion(Info, E, E->getSubExpr()->getType(), 7224 LVal, RVal)) 7225 return false; 7226 return DerivedSuccess(RVal, E); 7227 } 7228 case CK_LValueToRValueBitCast: { 7229 APValue DestValue, SourceValue; 7230 if (!Evaluate(SourceValue, Info, E->getSubExpr())) 7231 return false; 7232 if (!handleLValueToRValueBitCast(Info, DestValue, SourceValue, E)) 7233 return false; 7234 return DerivedSuccess(DestValue, E); 7235 } 7236 7237 case CK_AddressSpaceConversion: { 7238 APValue Value; 7239 if (!Evaluate(Value, Info, E->getSubExpr())) 7240 return false; 7241 return DerivedSuccess(Value, E); 7242 } 7243 } 7244 7245 return Error(E); 7246 } 7247 7248 bool VisitUnaryPostInc(const UnaryOperator *UO) { 7249 return VisitUnaryPostIncDec(UO); 7250 } 7251 bool VisitUnaryPostDec(const UnaryOperator *UO) { 7252 return VisitUnaryPostIncDec(UO); 7253 } 7254 bool VisitUnaryPostIncDec(const UnaryOperator *UO) { 7255 if (!Info.getLangOpts().CPlusPlus14 && !Info.keepEvaluatingAfterFailure()) 7256 return Error(UO); 7257 7258 LValue LVal; 7259 if (!EvaluateLValue(UO->getSubExpr(), LVal, Info)) 7260 return false; 7261 APValue RVal; 7262 if (!handleIncDec(this->Info, UO, LVal, UO->getSubExpr()->getType(), 7263 UO->isIncrementOp(), &RVal)) 7264 return false; 7265 return DerivedSuccess(RVal, UO); 7266 } 7267 7268 bool VisitStmtExpr(const StmtExpr *E) { 7269 // We will have checked the full-expressions inside the statement expression 7270 // when they were completed, and don't need to check them again now. 7271 if (Info.checkingForUndefinedBehavior()) 7272 return Error(E); 7273 7274 const CompoundStmt *CS = E->getSubStmt(); 7275 if (CS->body_empty()) 7276 return true; 7277 7278 BlockScopeRAII Scope(Info); 7279 for (CompoundStmt::const_body_iterator BI = CS->body_begin(), 7280 BE = CS->body_end(); 7281 /**/; ++BI) { 7282 if (BI + 1 == BE) { 7283 const Expr *FinalExpr = dyn_cast<Expr>(*BI); 7284 if (!FinalExpr) { 7285 Info.FFDiag((*BI)->getBeginLoc(), 7286 diag::note_constexpr_stmt_expr_unsupported); 7287 return false; 7288 } 7289 return this->Visit(FinalExpr) && Scope.destroy(); 7290 } 7291 7292 APValue ReturnValue; 7293 StmtResult Result = { ReturnValue, nullptr }; 7294 EvalStmtResult ESR = EvaluateStmt(Result, Info, *BI); 7295 if (ESR != ESR_Succeeded) { 7296 // FIXME: If the statement-expression terminated due to 'return', 7297 // 'break', or 'continue', it would be nice to propagate that to 7298 // the outer statement evaluation rather than bailing out. 7299 if (ESR != ESR_Failed) 7300 Info.FFDiag((*BI)->getBeginLoc(), 7301 diag::note_constexpr_stmt_expr_unsupported); 7302 return false; 7303 } 7304 } 7305 7306 llvm_unreachable("Return from function from the loop above."); 7307 } 7308 7309 /// Visit a value which is evaluated, but whose value is ignored. 7310 void VisitIgnoredValue(const Expr *E) { 7311 EvaluateIgnoredValue(Info, E); 7312 } 7313 7314 /// Potentially visit a MemberExpr's base expression. 7315 void VisitIgnoredBaseExpression(const Expr *E) { 7316 // While MSVC doesn't evaluate the base expression, it does diagnose the 7317 // presence of side-effecting behavior. 7318 if (Info.getLangOpts().MSVCCompat && !E->HasSideEffects(Info.Ctx)) 7319 return; 7320 VisitIgnoredValue(E); 7321 } 7322 }; 7323 7324 } // namespace 7325 7326 //===----------------------------------------------------------------------===// 7327 // Common base class for lvalue and temporary evaluation. 7328 //===----------------------------------------------------------------------===// 7329 namespace { 7330 template<class Derived> 7331 class LValueExprEvaluatorBase 7332 : public ExprEvaluatorBase<Derived> { 7333 protected: 7334 LValue &Result; 7335 bool InvalidBaseOK; 7336 typedef LValueExprEvaluatorBase LValueExprEvaluatorBaseTy; 7337 typedef ExprEvaluatorBase<Derived> ExprEvaluatorBaseTy; 7338 7339 bool Success(APValue::LValueBase B) { 7340 Result.set(B); 7341 return true; 7342 } 7343 7344 bool evaluatePointer(const Expr *E, LValue &Result) { 7345 return EvaluatePointer(E, Result, this->Info, InvalidBaseOK); 7346 } 7347 7348 public: 7349 LValueExprEvaluatorBase(EvalInfo &Info, LValue &Result, bool InvalidBaseOK) 7350 : ExprEvaluatorBaseTy(Info), Result(Result), 7351 InvalidBaseOK(InvalidBaseOK) {} 7352 7353 bool Success(const APValue &V, const Expr *E) { 7354 Result.setFrom(this->Info.Ctx, V); 7355 return true; 7356 } 7357 7358 bool VisitMemberExpr(const MemberExpr *E) { 7359 // Handle non-static data members. 7360 QualType BaseTy; 7361 bool EvalOK; 7362 if (E->isArrow()) { 7363 EvalOK = evaluatePointer(E->getBase(), Result); 7364 BaseTy = E->getBase()->getType()->castAs<PointerType>()->getPointeeType(); 7365 } else if (E->getBase()->isRValue()) { 7366 assert(E->getBase()->getType()->isRecordType()); 7367 EvalOK = EvaluateTemporary(E->getBase(), Result, this->Info); 7368 BaseTy = E->getBase()->getType(); 7369 } else { 7370 EvalOK = this->Visit(E->getBase()); 7371 BaseTy = E->getBase()->getType(); 7372 } 7373 if (!EvalOK) { 7374 if (!InvalidBaseOK) 7375 return false; 7376 Result.setInvalid(E); 7377 return true; 7378 } 7379 7380 const ValueDecl *MD = E->getMemberDecl(); 7381 if (const FieldDecl *FD = dyn_cast<FieldDecl>(E->getMemberDecl())) { 7382 assert(BaseTy->castAs<RecordType>()->getDecl()->getCanonicalDecl() == 7383 FD->getParent()->getCanonicalDecl() && "record / field mismatch"); 7384 (void)BaseTy; 7385 if (!HandleLValueMember(this->Info, E, Result, FD)) 7386 return false; 7387 } else if (const IndirectFieldDecl *IFD = dyn_cast<IndirectFieldDecl>(MD)) { 7388 if (!HandleLValueIndirectMember(this->Info, E, Result, IFD)) 7389 return false; 7390 } else 7391 return this->Error(E); 7392 7393 if (MD->getType()->isReferenceType()) { 7394 APValue RefValue; 7395 if (!handleLValueToRValueConversion(this->Info, E, MD->getType(), Result, 7396 RefValue)) 7397 return false; 7398 return Success(RefValue, E); 7399 } 7400 return true; 7401 } 7402 7403 bool VisitBinaryOperator(const BinaryOperator *E) { 7404 switch (E->getOpcode()) { 7405 default: 7406 return ExprEvaluatorBaseTy::VisitBinaryOperator(E); 7407 7408 case BO_PtrMemD: 7409 case BO_PtrMemI: 7410 return HandleMemberPointerAccess(this->Info, E, Result); 7411 } 7412 } 7413 7414 bool VisitCastExpr(const CastExpr *E) { 7415 switch (E->getCastKind()) { 7416 default: 7417 return ExprEvaluatorBaseTy::VisitCastExpr(E); 7418 7419 case CK_DerivedToBase: 7420 case CK_UncheckedDerivedToBase: 7421 if (!this->Visit(E->getSubExpr())) 7422 return false; 7423 7424 // Now figure out the necessary offset to add to the base LV to get from 7425 // the derived class to the base class. 7426 return HandleLValueBasePath(this->Info, E, E->getSubExpr()->getType(), 7427 Result); 7428 } 7429 } 7430 }; 7431 } 7432 7433 //===----------------------------------------------------------------------===// 7434 // LValue Evaluation 7435 // 7436 // This is used for evaluating lvalues (in C and C++), xvalues (in C++11), 7437 // function designators (in C), decl references to void objects (in C), and 7438 // temporaries (if building with -Wno-address-of-temporary). 7439 // 7440 // LValue evaluation produces values comprising a base expression of one of the 7441 // following types: 7442 // - Declarations 7443 // * VarDecl 7444 // * FunctionDecl 7445 // - Literals 7446 // * CompoundLiteralExpr in C (and in global scope in C++) 7447 // * StringLiteral 7448 // * PredefinedExpr 7449 // * ObjCStringLiteralExpr 7450 // * ObjCEncodeExpr 7451 // * AddrLabelExpr 7452 // * BlockExpr 7453 // * CallExpr for a MakeStringConstant builtin 7454 // - typeid(T) expressions, as TypeInfoLValues 7455 // - Locals and temporaries 7456 // * MaterializeTemporaryExpr 7457 // * Any Expr, with a CallIndex indicating the function in which the temporary 7458 // was evaluated, for cases where the MaterializeTemporaryExpr is missing 7459 // from the AST (FIXME). 7460 // * A MaterializeTemporaryExpr that has static storage duration, with no 7461 // CallIndex, for a lifetime-extended temporary. 7462 // * The ConstantExpr that is currently being evaluated during evaluation of an 7463 // immediate invocation. 7464 // plus an offset in bytes. 7465 //===----------------------------------------------------------------------===// 7466 namespace { 7467 class LValueExprEvaluator 7468 : public LValueExprEvaluatorBase<LValueExprEvaluator> { 7469 public: 7470 LValueExprEvaluator(EvalInfo &Info, LValue &Result, bool InvalidBaseOK) : 7471 LValueExprEvaluatorBaseTy(Info, Result, InvalidBaseOK) {} 7472 7473 bool VisitVarDecl(const Expr *E, const VarDecl *VD); 7474 bool VisitUnaryPreIncDec(const UnaryOperator *UO); 7475 7476 bool VisitDeclRefExpr(const DeclRefExpr *E); 7477 bool VisitPredefinedExpr(const PredefinedExpr *E) { return Success(E); } 7478 bool VisitMaterializeTemporaryExpr(const MaterializeTemporaryExpr *E); 7479 bool VisitCompoundLiteralExpr(const CompoundLiteralExpr *E); 7480 bool VisitMemberExpr(const MemberExpr *E); 7481 bool VisitStringLiteral(const StringLiteral *E) { return Success(E); } 7482 bool VisitObjCEncodeExpr(const ObjCEncodeExpr *E) { return Success(E); } 7483 bool VisitCXXTypeidExpr(const CXXTypeidExpr *E); 7484 bool VisitCXXUuidofExpr(const CXXUuidofExpr *E); 7485 bool VisitArraySubscriptExpr(const ArraySubscriptExpr *E); 7486 bool VisitUnaryDeref(const UnaryOperator *E); 7487 bool VisitUnaryReal(const UnaryOperator *E); 7488 bool VisitUnaryImag(const UnaryOperator *E); 7489 bool VisitUnaryPreInc(const UnaryOperator *UO) { 7490 return VisitUnaryPreIncDec(UO); 7491 } 7492 bool VisitUnaryPreDec(const UnaryOperator *UO) { 7493 return VisitUnaryPreIncDec(UO); 7494 } 7495 bool VisitBinAssign(const BinaryOperator *BO); 7496 bool VisitCompoundAssignOperator(const CompoundAssignOperator *CAO); 7497 7498 bool VisitCastExpr(const CastExpr *E) { 7499 switch (E->getCastKind()) { 7500 default: 7501 return LValueExprEvaluatorBaseTy::VisitCastExpr(E); 7502 7503 case CK_LValueBitCast: 7504 this->CCEDiag(E, diag::note_constexpr_invalid_cast) << 2; 7505 if (!Visit(E->getSubExpr())) 7506 return false; 7507 Result.Designator.setInvalid(); 7508 return true; 7509 7510 case CK_BaseToDerived: 7511 if (!Visit(E->getSubExpr())) 7512 return false; 7513 return HandleBaseToDerivedCast(Info, E, Result); 7514 7515 case CK_Dynamic: 7516 if (!Visit(E->getSubExpr())) 7517 return false; 7518 return HandleDynamicCast(Info, cast<ExplicitCastExpr>(E), Result); 7519 } 7520 } 7521 }; 7522 } // end anonymous namespace 7523 7524 /// Evaluate an expression as an lvalue. This can be legitimately called on 7525 /// expressions which are not glvalues, in three cases: 7526 /// * function designators in C, and 7527 /// * "extern void" objects 7528 /// * @selector() expressions in Objective-C 7529 static bool EvaluateLValue(const Expr *E, LValue &Result, EvalInfo &Info, 7530 bool InvalidBaseOK) { 7531 assert(E->isGLValue() || E->getType()->isFunctionType() || 7532 E->getType()->isVoidType() || isa<ObjCSelectorExpr>(E)); 7533 return LValueExprEvaluator(Info, Result, InvalidBaseOK).Visit(E); 7534 } 7535 7536 bool LValueExprEvaluator::VisitDeclRefExpr(const DeclRefExpr *E) { 7537 if (const FunctionDecl *FD = dyn_cast<FunctionDecl>(E->getDecl())) 7538 return Success(FD); 7539 if (const VarDecl *VD = dyn_cast<VarDecl>(E->getDecl())) 7540 return VisitVarDecl(E, VD); 7541 if (const BindingDecl *BD = dyn_cast<BindingDecl>(E->getDecl())) 7542 return Visit(BD->getBinding()); 7543 return Error(E); 7544 } 7545 7546 7547 bool LValueExprEvaluator::VisitVarDecl(const Expr *E, const VarDecl *VD) { 7548 7549 // If we are within a lambda's call operator, check whether the 'VD' referred 7550 // to within 'E' actually represents a lambda-capture that maps to a 7551 // data-member/field within the closure object, and if so, evaluate to the 7552 // field or what the field refers to. 7553 if (Info.CurrentCall && isLambdaCallOperator(Info.CurrentCall->Callee) && 7554 isa<DeclRefExpr>(E) && 7555 cast<DeclRefExpr>(E)->refersToEnclosingVariableOrCapture()) { 7556 // We don't always have a complete capture-map when checking or inferring if 7557 // the function call operator meets the requirements of a constexpr function 7558 // - but we don't need to evaluate the captures to determine constexprness 7559 // (dcl.constexpr C++17). 7560 if (Info.checkingPotentialConstantExpression()) 7561 return false; 7562 7563 if (auto *FD = Info.CurrentCall->LambdaCaptureFields.lookup(VD)) { 7564 // Start with 'Result' referring to the complete closure object... 7565 Result = *Info.CurrentCall->This; 7566 // ... then update it to refer to the field of the closure object 7567 // that represents the capture. 7568 if (!HandleLValueMember(Info, E, Result, FD)) 7569 return false; 7570 // And if the field is of reference type, update 'Result' to refer to what 7571 // the field refers to. 7572 if (FD->getType()->isReferenceType()) { 7573 APValue RVal; 7574 if (!handleLValueToRValueConversion(Info, E, FD->getType(), Result, 7575 RVal)) 7576 return false; 7577 Result.setFrom(Info.Ctx, RVal); 7578 } 7579 return true; 7580 } 7581 } 7582 CallStackFrame *Frame = nullptr; 7583 if (VD->hasLocalStorage() && Info.CurrentCall->Index > 1) { 7584 // Only if a local variable was declared in the function currently being 7585 // evaluated, do we expect to be able to find its value in the current 7586 // frame. (Otherwise it was likely declared in an enclosing context and 7587 // could either have a valid evaluatable value (for e.g. a constexpr 7588 // variable) or be ill-formed (and trigger an appropriate evaluation 7589 // diagnostic)). 7590 if (Info.CurrentCall->Callee && 7591 Info.CurrentCall->Callee->Equals(VD->getDeclContext())) { 7592 Frame = Info.CurrentCall; 7593 } 7594 } 7595 7596 if (!VD->getType()->isReferenceType()) { 7597 if (Frame) { 7598 Result.set({VD, Frame->Index, 7599 Info.CurrentCall->getCurrentTemporaryVersion(VD)}); 7600 return true; 7601 } 7602 return Success(VD); 7603 } 7604 7605 APValue *V; 7606 if (!evaluateVarDeclInit(Info, E, VD, Frame, V, nullptr)) 7607 return false; 7608 if (!V->hasValue()) { 7609 // FIXME: Is it possible for V to be indeterminate here? If so, we should 7610 // adjust the diagnostic to say that. 7611 if (!Info.checkingPotentialConstantExpression()) 7612 Info.FFDiag(E, diag::note_constexpr_use_uninit_reference); 7613 return false; 7614 } 7615 return Success(*V, E); 7616 } 7617 7618 bool LValueExprEvaluator::VisitMaterializeTemporaryExpr( 7619 const MaterializeTemporaryExpr *E) { 7620 // Walk through the expression to find the materialized temporary itself. 7621 SmallVector<const Expr *, 2> CommaLHSs; 7622 SmallVector<SubobjectAdjustment, 2> Adjustments; 7623 const Expr *Inner = 7624 E->getSubExpr()->skipRValueSubobjectAdjustments(CommaLHSs, Adjustments); 7625 7626 // If we passed any comma operators, evaluate their LHSs. 7627 for (unsigned I = 0, N = CommaLHSs.size(); I != N; ++I) 7628 if (!EvaluateIgnoredValue(Info, CommaLHSs[I])) 7629 return false; 7630 7631 // A materialized temporary with static storage duration can appear within the 7632 // result of a constant expression evaluation, so we need to preserve its 7633 // value for use outside this evaluation. 7634 APValue *Value; 7635 if (E->getStorageDuration() == SD_Static) { 7636 Value = E->getOrCreateValue(true); 7637 *Value = APValue(); 7638 Result.set(E); 7639 } else { 7640 Value = &Info.CurrentCall->createTemporary( 7641 E, E->getType(), E->getStorageDuration() == SD_Automatic, Result); 7642 } 7643 7644 QualType Type = Inner->getType(); 7645 7646 // Materialize the temporary itself. 7647 if (!EvaluateInPlace(*Value, Info, Result, Inner)) { 7648 *Value = APValue(); 7649 return false; 7650 } 7651 7652 // Adjust our lvalue to refer to the desired subobject. 7653 for (unsigned I = Adjustments.size(); I != 0; /**/) { 7654 --I; 7655 switch (Adjustments[I].Kind) { 7656 case SubobjectAdjustment::DerivedToBaseAdjustment: 7657 if (!HandleLValueBasePath(Info, Adjustments[I].DerivedToBase.BasePath, 7658 Type, Result)) 7659 return false; 7660 Type = Adjustments[I].DerivedToBase.BasePath->getType(); 7661 break; 7662 7663 case SubobjectAdjustment::FieldAdjustment: 7664 if (!HandleLValueMember(Info, E, Result, Adjustments[I].Field)) 7665 return false; 7666 Type = Adjustments[I].Field->getType(); 7667 break; 7668 7669 case SubobjectAdjustment::MemberPointerAdjustment: 7670 if (!HandleMemberPointerAccess(this->Info, Type, Result, 7671 Adjustments[I].Ptr.RHS)) 7672 return false; 7673 Type = Adjustments[I].Ptr.MPT->getPointeeType(); 7674 break; 7675 } 7676 } 7677 7678 return true; 7679 } 7680 7681 bool 7682 LValueExprEvaluator::VisitCompoundLiteralExpr(const CompoundLiteralExpr *E) { 7683 assert((!Info.getLangOpts().CPlusPlus || E->isFileScope()) && 7684 "lvalue compound literal in c++?"); 7685 // Defer visiting the literal until the lvalue-to-rvalue conversion. We can 7686 // only see this when folding in C, so there's no standard to follow here. 7687 return Success(E); 7688 } 7689 7690 bool LValueExprEvaluator::VisitCXXTypeidExpr(const CXXTypeidExpr *E) { 7691 TypeInfoLValue TypeInfo; 7692 7693 if (!E->isPotentiallyEvaluated()) { 7694 if (E->isTypeOperand()) 7695 TypeInfo = TypeInfoLValue(E->getTypeOperand(Info.Ctx).getTypePtr()); 7696 else 7697 TypeInfo = TypeInfoLValue(E->getExprOperand()->getType().getTypePtr()); 7698 } else { 7699 if (!Info.Ctx.getLangOpts().CPlusPlus2a) { 7700 Info.CCEDiag(E, diag::note_constexpr_typeid_polymorphic) 7701 << E->getExprOperand()->getType() 7702 << E->getExprOperand()->getSourceRange(); 7703 } 7704 7705 if (!Visit(E->getExprOperand())) 7706 return false; 7707 7708 Optional<DynamicType> DynType = 7709 ComputeDynamicType(Info, E, Result, AK_TypeId); 7710 if (!DynType) 7711 return false; 7712 7713 TypeInfo = 7714 TypeInfoLValue(Info.Ctx.getRecordType(DynType->Type).getTypePtr()); 7715 } 7716 7717 return Success(APValue::LValueBase::getTypeInfo(TypeInfo, E->getType())); 7718 } 7719 7720 bool LValueExprEvaluator::VisitCXXUuidofExpr(const CXXUuidofExpr *E) { 7721 return Success(E); 7722 } 7723 7724 bool LValueExprEvaluator::VisitMemberExpr(const MemberExpr *E) { 7725 // Handle static data members. 7726 if (const VarDecl *VD = dyn_cast<VarDecl>(E->getMemberDecl())) { 7727 VisitIgnoredBaseExpression(E->getBase()); 7728 return VisitVarDecl(E, VD); 7729 } 7730 7731 // Handle static member functions. 7732 if (const CXXMethodDecl *MD = dyn_cast<CXXMethodDecl>(E->getMemberDecl())) { 7733 if (MD->isStatic()) { 7734 VisitIgnoredBaseExpression(E->getBase()); 7735 return Success(MD); 7736 } 7737 } 7738 7739 // Handle non-static data members. 7740 return LValueExprEvaluatorBaseTy::VisitMemberExpr(E); 7741 } 7742 7743 bool LValueExprEvaluator::VisitArraySubscriptExpr(const ArraySubscriptExpr *E) { 7744 // FIXME: Deal with vectors as array subscript bases. 7745 if (E->getBase()->getType()->isVectorType()) 7746 return Error(E); 7747 7748 bool Success = true; 7749 if (!evaluatePointer(E->getBase(), Result)) { 7750 if (!Info.noteFailure()) 7751 return false; 7752 Success = false; 7753 } 7754 7755 APSInt Index; 7756 if (!EvaluateInteger(E->getIdx(), Index, Info)) 7757 return false; 7758 7759 return Success && 7760 HandleLValueArrayAdjustment(Info, E, Result, E->getType(), Index); 7761 } 7762 7763 bool LValueExprEvaluator::VisitUnaryDeref(const UnaryOperator *E) { 7764 return evaluatePointer(E->getSubExpr(), Result); 7765 } 7766 7767 bool LValueExprEvaluator::VisitUnaryReal(const UnaryOperator *E) { 7768 if (!Visit(E->getSubExpr())) 7769 return false; 7770 // __real is a no-op on scalar lvalues. 7771 if (E->getSubExpr()->getType()->isAnyComplexType()) 7772 HandleLValueComplexElement(Info, E, Result, E->getType(), false); 7773 return true; 7774 } 7775 7776 bool LValueExprEvaluator::VisitUnaryImag(const UnaryOperator *E) { 7777 assert(E->getSubExpr()->getType()->isAnyComplexType() && 7778 "lvalue __imag__ on scalar?"); 7779 if (!Visit(E->getSubExpr())) 7780 return false; 7781 HandleLValueComplexElement(Info, E, Result, E->getType(), true); 7782 return true; 7783 } 7784 7785 bool LValueExprEvaluator::VisitUnaryPreIncDec(const UnaryOperator *UO) { 7786 if (!Info.getLangOpts().CPlusPlus14 && !Info.keepEvaluatingAfterFailure()) 7787 return Error(UO); 7788 7789 if (!this->Visit(UO->getSubExpr())) 7790 return false; 7791 7792 return handleIncDec( 7793 this->Info, UO, Result, UO->getSubExpr()->getType(), 7794 UO->isIncrementOp(), nullptr); 7795 } 7796 7797 bool LValueExprEvaluator::VisitCompoundAssignOperator( 7798 const CompoundAssignOperator *CAO) { 7799 if (!Info.getLangOpts().CPlusPlus14 && !Info.keepEvaluatingAfterFailure()) 7800 return Error(CAO); 7801 7802 APValue RHS; 7803 7804 // The overall lvalue result is the result of evaluating the LHS. 7805 if (!this->Visit(CAO->getLHS())) { 7806 if (Info.noteFailure()) 7807 Evaluate(RHS, this->Info, CAO->getRHS()); 7808 return false; 7809 } 7810 7811 if (!Evaluate(RHS, this->Info, CAO->getRHS())) 7812 return false; 7813 7814 return handleCompoundAssignment( 7815 this->Info, CAO, 7816 Result, CAO->getLHS()->getType(), CAO->getComputationLHSType(), 7817 CAO->getOpForCompoundAssignment(CAO->getOpcode()), RHS); 7818 } 7819 7820 bool LValueExprEvaluator::VisitBinAssign(const BinaryOperator *E) { 7821 if (!Info.getLangOpts().CPlusPlus14 && !Info.keepEvaluatingAfterFailure()) 7822 return Error(E); 7823 7824 APValue NewVal; 7825 7826 if (!this->Visit(E->getLHS())) { 7827 if (Info.noteFailure()) 7828 Evaluate(NewVal, this->Info, E->getRHS()); 7829 return false; 7830 } 7831 7832 if (!Evaluate(NewVal, this->Info, E->getRHS())) 7833 return false; 7834 7835 if (Info.getLangOpts().CPlusPlus2a && 7836 !HandleUnionActiveMemberChange(Info, E->getLHS(), Result)) 7837 return false; 7838 7839 return handleAssignment(this->Info, E, Result, E->getLHS()->getType(), 7840 NewVal); 7841 } 7842 7843 //===----------------------------------------------------------------------===// 7844 // Pointer Evaluation 7845 //===----------------------------------------------------------------------===// 7846 7847 /// Attempts to compute the number of bytes available at the pointer 7848 /// returned by a function with the alloc_size attribute. Returns true if we 7849 /// were successful. Places an unsigned number into `Result`. 7850 /// 7851 /// This expects the given CallExpr to be a call to a function with an 7852 /// alloc_size attribute. 7853 static bool getBytesReturnedByAllocSizeCall(const ASTContext &Ctx, 7854 const CallExpr *Call, 7855 llvm::APInt &Result) { 7856 const AllocSizeAttr *AllocSize = getAllocSizeAttr(Call); 7857 7858 assert(AllocSize && AllocSize->getElemSizeParam().isValid()); 7859 unsigned SizeArgNo = AllocSize->getElemSizeParam().getASTIndex(); 7860 unsigned BitsInSizeT = Ctx.getTypeSize(Ctx.getSizeType()); 7861 if (Call->getNumArgs() <= SizeArgNo) 7862 return false; 7863 7864 auto EvaluateAsSizeT = [&](const Expr *E, APSInt &Into) { 7865 Expr::EvalResult ExprResult; 7866 if (!E->EvaluateAsInt(ExprResult, Ctx, Expr::SE_AllowSideEffects)) 7867 return false; 7868 Into = ExprResult.Val.getInt(); 7869 if (Into.isNegative() || !Into.isIntN(BitsInSizeT)) 7870 return false; 7871 Into = Into.zextOrSelf(BitsInSizeT); 7872 return true; 7873 }; 7874 7875 APSInt SizeOfElem; 7876 if (!EvaluateAsSizeT(Call->getArg(SizeArgNo), SizeOfElem)) 7877 return false; 7878 7879 if (!AllocSize->getNumElemsParam().isValid()) { 7880 Result = std::move(SizeOfElem); 7881 return true; 7882 } 7883 7884 APSInt NumberOfElems; 7885 unsigned NumArgNo = AllocSize->getNumElemsParam().getASTIndex(); 7886 if (!EvaluateAsSizeT(Call->getArg(NumArgNo), NumberOfElems)) 7887 return false; 7888 7889 bool Overflow; 7890 llvm::APInt BytesAvailable = SizeOfElem.umul_ov(NumberOfElems, Overflow); 7891 if (Overflow) 7892 return false; 7893 7894 Result = std::move(BytesAvailable); 7895 return true; 7896 } 7897 7898 /// Convenience function. LVal's base must be a call to an alloc_size 7899 /// function. 7900 static bool getBytesReturnedByAllocSizeCall(const ASTContext &Ctx, 7901 const LValue &LVal, 7902 llvm::APInt &Result) { 7903 assert(isBaseAnAllocSizeCall(LVal.getLValueBase()) && 7904 "Can't get the size of a non alloc_size function"); 7905 const auto *Base = LVal.getLValueBase().get<const Expr *>(); 7906 const CallExpr *CE = tryUnwrapAllocSizeCall(Base); 7907 return getBytesReturnedByAllocSizeCall(Ctx, CE, Result); 7908 } 7909 7910 /// Attempts to evaluate the given LValueBase as the result of a call to 7911 /// a function with the alloc_size attribute. If it was possible to do so, this 7912 /// function will return true, make Result's Base point to said function call, 7913 /// and mark Result's Base as invalid. 7914 static bool evaluateLValueAsAllocSize(EvalInfo &Info, APValue::LValueBase Base, 7915 LValue &Result) { 7916 if (Base.isNull()) 7917 return false; 7918 7919 // Because we do no form of static analysis, we only support const variables. 7920 // 7921 // Additionally, we can't support parameters, nor can we support static 7922 // variables (in the latter case, use-before-assign isn't UB; in the former, 7923 // we have no clue what they'll be assigned to). 7924 const auto *VD = 7925 dyn_cast_or_null<VarDecl>(Base.dyn_cast<const ValueDecl *>()); 7926 if (!VD || !VD->isLocalVarDecl() || !VD->getType().isConstQualified()) 7927 return false; 7928 7929 const Expr *Init = VD->getAnyInitializer(); 7930 if (!Init) 7931 return false; 7932 7933 const Expr *E = Init->IgnoreParens(); 7934 if (!tryUnwrapAllocSizeCall(E)) 7935 return false; 7936 7937 // Store E instead of E unwrapped so that the type of the LValue's base is 7938 // what the user wanted. 7939 Result.setInvalid(E); 7940 7941 QualType Pointee = E->getType()->castAs<PointerType>()->getPointeeType(); 7942 Result.addUnsizedArray(Info, E, Pointee); 7943 return true; 7944 } 7945 7946 namespace { 7947 class PointerExprEvaluator 7948 : public ExprEvaluatorBase<PointerExprEvaluator> { 7949 LValue &Result; 7950 bool InvalidBaseOK; 7951 7952 bool Success(const Expr *E) { 7953 Result.set(E); 7954 return true; 7955 } 7956 7957 bool evaluateLValue(const Expr *E, LValue &Result) { 7958 return EvaluateLValue(E, Result, Info, InvalidBaseOK); 7959 } 7960 7961 bool evaluatePointer(const Expr *E, LValue &Result) { 7962 return EvaluatePointer(E, Result, Info, InvalidBaseOK); 7963 } 7964 7965 bool visitNonBuiltinCallExpr(const CallExpr *E); 7966 public: 7967 7968 PointerExprEvaluator(EvalInfo &info, LValue &Result, bool InvalidBaseOK) 7969 : ExprEvaluatorBaseTy(info), Result(Result), 7970 InvalidBaseOK(InvalidBaseOK) {} 7971 7972 bool Success(const APValue &V, const Expr *E) { 7973 Result.setFrom(Info.Ctx, V); 7974 return true; 7975 } 7976 bool ZeroInitialization(const Expr *E) { 7977 Result.setNull(Info.Ctx, E->getType()); 7978 return true; 7979 } 7980 7981 bool VisitBinaryOperator(const BinaryOperator *E); 7982 bool VisitCastExpr(const CastExpr* E); 7983 bool VisitUnaryAddrOf(const UnaryOperator *E); 7984 bool VisitObjCStringLiteral(const ObjCStringLiteral *E) 7985 { return Success(E); } 7986 bool VisitObjCBoxedExpr(const ObjCBoxedExpr *E) { 7987 if (E->isExpressibleAsConstantInitializer()) 7988 return Success(E); 7989 if (Info.noteFailure()) 7990 EvaluateIgnoredValue(Info, E->getSubExpr()); 7991 return Error(E); 7992 } 7993 bool VisitAddrLabelExpr(const AddrLabelExpr *E) 7994 { return Success(E); } 7995 bool VisitCallExpr(const CallExpr *E); 7996 bool VisitBuiltinCallExpr(const CallExpr *E, unsigned BuiltinOp); 7997 bool VisitBlockExpr(const BlockExpr *E) { 7998 if (!E->getBlockDecl()->hasCaptures()) 7999 return Success(E); 8000 return Error(E); 8001 } 8002 bool VisitCXXThisExpr(const CXXThisExpr *E) { 8003 // Can't look at 'this' when checking a potential constant expression. 8004 if (Info.checkingPotentialConstantExpression()) 8005 return false; 8006 if (!Info.CurrentCall->This) { 8007 if (Info.getLangOpts().CPlusPlus11) 8008 Info.FFDiag(E, diag::note_constexpr_this) << E->isImplicit(); 8009 else 8010 Info.FFDiag(E); 8011 return false; 8012 } 8013 Result = *Info.CurrentCall->This; 8014 // If we are inside a lambda's call operator, the 'this' expression refers 8015 // to the enclosing '*this' object (either by value or reference) which is 8016 // either copied into the closure object's field that represents the '*this' 8017 // or refers to '*this'. 8018 if (isLambdaCallOperator(Info.CurrentCall->Callee)) { 8019 // Ensure we actually have captured 'this'. (an error will have 8020 // been previously reported if not). 8021 if (!Info.CurrentCall->LambdaThisCaptureField) 8022 return false; 8023 8024 // Update 'Result' to refer to the data member/field of the closure object 8025 // that represents the '*this' capture. 8026 if (!HandleLValueMember(Info, E, Result, 8027 Info.CurrentCall->LambdaThisCaptureField)) 8028 return false; 8029 // If we captured '*this' by reference, replace the field with its referent. 8030 if (Info.CurrentCall->LambdaThisCaptureField->getType() 8031 ->isPointerType()) { 8032 APValue RVal; 8033 if (!handleLValueToRValueConversion(Info, E, E->getType(), Result, 8034 RVal)) 8035 return false; 8036 8037 Result.setFrom(Info.Ctx, RVal); 8038 } 8039 } 8040 return true; 8041 } 8042 8043 bool VisitCXXNewExpr(const CXXNewExpr *E); 8044 8045 bool VisitSourceLocExpr(const SourceLocExpr *E) { 8046 assert(E->isStringType() && "SourceLocExpr isn't a pointer type?"); 8047 APValue LValResult = E->EvaluateInContext( 8048 Info.Ctx, Info.CurrentCall->CurSourceLocExprScope.getDefaultExpr()); 8049 Result.setFrom(Info.Ctx, LValResult); 8050 return true; 8051 } 8052 8053 // FIXME: Missing: @protocol, @selector 8054 }; 8055 } // end anonymous namespace 8056 8057 static bool EvaluatePointer(const Expr* E, LValue& Result, EvalInfo &Info, 8058 bool InvalidBaseOK) { 8059 assert(E->isRValue() && E->getType()->hasPointerRepresentation()); 8060 return PointerExprEvaluator(Info, Result, InvalidBaseOK).Visit(E); 8061 } 8062 8063 bool PointerExprEvaluator::VisitBinaryOperator(const BinaryOperator *E) { 8064 if (E->getOpcode() != BO_Add && 8065 E->getOpcode() != BO_Sub) 8066 return ExprEvaluatorBaseTy::VisitBinaryOperator(E); 8067 8068 const Expr *PExp = E->getLHS(); 8069 const Expr *IExp = E->getRHS(); 8070 if (IExp->getType()->isPointerType()) 8071 std::swap(PExp, IExp); 8072 8073 bool EvalPtrOK = evaluatePointer(PExp, Result); 8074 if (!EvalPtrOK && !Info.noteFailure()) 8075 return false; 8076 8077 llvm::APSInt Offset; 8078 if (!EvaluateInteger(IExp, Offset, Info) || !EvalPtrOK) 8079 return false; 8080 8081 if (E->getOpcode() == BO_Sub) 8082 negateAsSigned(Offset); 8083 8084 QualType Pointee = PExp->getType()->castAs<PointerType>()->getPointeeType(); 8085 return HandleLValueArrayAdjustment(Info, E, Result, Pointee, Offset); 8086 } 8087 8088 bool PointerExprEvaluator::VisitUnaryAddrOf(const UnaryOperator *E) { 8089 return evaluateLValue(E->getSubExpr(), Result); 8090 } 8091 8092 bool PointerExprEvaluator::VisitCastExpr(const CastExpr *E) { 8093 const Expr *SubExpr = E->getSubExpr(); 8094 8095 switch (E->getCastKind()) { 8096 default: 8097 break; 8098 case CK_BitCast: 8099 case CK_CPointerToObjCPointerCast: 8100 case CK_BlockPointerToObjCPointerCast: 8101 case CK_AnyPointerToBlockPointerCast: 8102 case CK_AddressSpaceConversion: 8103 if (!Visit(SubExpr)) 8104 return false; 8105 // Bitcasts to cv void* are static_casts, not reinterpret_casts, so are 8106 // permitted in constant expressions in C++11. Bitcasts from cv void* are 8107 // also static_casts, but we disallow them as a resolution to DR1312. 8108 if (!E->getType()->isVoidPointerType()) { 8109 if (!Result.InvalidBase && !Result.Designator.Invalid && 8110 !Result.IsNullPtr && 8111 Info.Ctx.hasSameUnqualifiedType(Result.Designator.getType(Info.Ctx), 8112 E->getType()->getPointeeType()) && 8113 Info.getStdAllocatorCaller("allocate")) { 8114 // Inside a call to std::allocator::allocate and friends, we permit 8115 // casting from void* back to cv1 T* for a pointer that points to a 8116 // cv2 T. 8117 } else { 8118 Result.Designator.setInvalid(); 8119 if (SubExpr->getType()->isVoidPointerType()) 8120 CCEDiag(E, diag::note_constexpr_invalid_cast) 8121 << 3 << SubExpr->getType(); 8122 else 8123 CCEDiag(E, diag::note_constexpr_invalid_cast) << 2; 8124 } 8125 } 8126 if (E->getCastKind() == CK_AddressSpaceConversion && Result.IsNullPtr) 8127 ZeroInitialization(E); 8128 return true; 8129 8130 case CK_DerivedToBase: 8131 case CK_UncheckedDerivedToBase: 8132 if (!evaluatePointer(E->getSubExpr(), Result)) 8133 return false; 8134 if (!Result.Base && Result.Offset.isZero()) 8135 return true; 8136 8137 // Now figure out the necessary offset to add to the base LV to get from 8138 // the derived class to the base class. 8139 return HandleLValueBasePath(Info, E, E->getSubExpr()->getType()-> 8140 castAs<PointerType>()->getPointeeType(), 8141 Result); 8142 8143 case CK_BaseToDerived: 8144 if (!Visit(E->getSubExpr())) 8145 return false; 8146 if (!Result.Base && Result.Offset.isZero()) 8147 return true; 8148 return HandleBaseToDerivedCast(Info, E, Result); 8149 8150 case CK_Dynamic: 8151 if (!Visit(E->getSubExpr())) 8152 return false; 8153 return HandleDynamicCast(Info, cast<ExplicitCastExpr>(E), Result); 8154 8155 case CK_NullToPointer: 8156 VisitIgnoredValue(E->getSubExpr()); 8157 return ZeroInitialization(E); 8158 8159 case CK_IntegralToPointer: { 8160 CCEDiag(E, diag::note_constexpr_invalid_cast) << 2; 8161 8162 APValue Value; 8163 if (!EvaluateIntegerOrLValue(SubExpr, Value, Info)) 8164 break; 8165 8166 if (Value.isInt()) { 8167 unsigned Size = Info.Ctx.getTypeSize(E->getType()); 8168 uint64_t N = Value.getInt().extOrTrunc(Size).getZExtValue(); 8169 Result.Base = (Expr*)nullptr; 8170 Result.InvalidBase = false; 8171 Result.Offset = CharUnits::fromQuantity(N); 8172 Result.Designator.setInvalid(); 8173 Result.IsNullPtr = false; 8174 return true; 8175 } else { 8176 // Cast is of an lvalue, no need to change value. 8177 Result.setFrom(Info.Ctx, Value); 8178 return true; 8179 } 8180 } 8181 8182 case CK_ArrayToPointerDecay: { 8183 if (SubExpr->isGLValue()) { 8184 if (!evaluateLValue(SubExpr, Result)) 8185 return false; 8186 } else { 8187 APValue &Value = Info.CurrentCall->createTemporary( 8188 SubExpr, SubExpr->getType(), false, Result); 8189 if (!EvaluateInPlace(Value, Info, Result, SubExpr)) 8190 return false; 8191 } 8192 // The result is a pointer to the first element of the array. 8193 auto *AT = Info.Ctx.getAsArrayType(SubExpr->getType()); 8194 if (auto *CAT = dyn_cast<ConstantArrayType>(AT)) 8195 Result.addArray(Info, E, CAT); 8196 else 8197 Result.addUnsizedArray(Info, E, AT->getElementType()); 8198 return true; 8199 } 8200 8201 case CK_FunctionToPointerDecay: 8202 return evaluateLValue(SubExpr, Result); 8203 8204 case CK_LValueToRValue: { 8205 LValue LVal; 8206 if (!evaluateLValue(E->getSubExpr(), LVal)) 8207 return false; 8208 8209 APValue RVal; 8210 // Note, we use the subexpression's type in order to retain cv-qualifiers. 8211 if (!handleLValueToRValueConversion(Info, E, E->getSubExpr()->getType(), 8212 LVal, RVal)) 8213 return InvalidBaseOK && 8214 evaluateLValueAsAllocSize(Info, LVal.Base, Result); 8215 return Success(RVal, E); 8216 } 8217 } 8218 8219 return ExprEvaluatorBaseTy::VisitCastExpr(E); 8220 } 8221 8222 static CharUnits GetAlignOfType(EvalInfo &Info, QualType T, 8223 UnaryExprOrTypeTrait ExprKind) { 8224 // C++ [expr.alignof]p3: 8225 // When alignof is applied to a reference type, the result is the 8226 // alignment of the referenced type. 8227 if (const ReferenceType *Ref = T->getAs<ReferenceType>()) 8228 T = Ref->getPointeeType(); 8229 8230 if (T.getQualifiers().hasUnaligned()) 8231 return CharUnits::One(); 8232 8233 const bool AlignOfReturnsPreferred = 8234 Info.Ctx.getLangOpts().getClangABICompat() <= LangOptions::ClangABI::Ver7; 8235 8236 // __alignof is defined to return the preferred alignment. 8237 // Before 8, clang returned the preferred alignment for alignof and _Alignof 8238 // as well. 8239 if (ExprKind == UETT_PreferredAlignOf || AlignOfReturnsPreferred) 8240 return Info.Ctx.toCharUnitsFromBits( 8241 Info.Ctx.getPreferredTypeAlign(T.getTypePtr())); 8242 // alignof and _Alignof are defined to return the ABI alignment. 8243 else if (ExprKind == UETT_AlignOf) 8244 return Info.Ctx.getTypeAlignInChars(T.getTypePtr()); 8245 else 8246 llvm_unreachable("GetAlignOfType on a non-alignment ExprKind"); 8247 } 8248 8249 static CharUnits GetAlignOfExpr(EvalInfo &Info, const Expr *E, 8250 UnaryExprOrTypeTrait ExprKind) { 8251 E = E->IgnoreParens(); 8252 8253 // The kinds of expressions that we have special-case logic here for 8254 // should be kept up to date with the special checks for those 8255 // expressions in Sema. 8256 8257 // alignof decl is always accepted, even if it doesn't make sense: we default 8258 // to 1 in those cases. 8259 if (const DeclRefExpr *DRE = dyn_cast<DeclRefExpr>(E)) 8260 return Info.Ctx.getDeclAlign(DRE->getDecl(), 8261 /*RefAsPointee*/true); 8262 8263 if (const MemberExpr *ME = dyn_cast<MemberExpr>(E)) 8264 return Info.Ctx.getDeclAlign(ME->getMemberDecl(), 8265 /*RefAsPointee*/true); 8266 8267 return GetAlignOfType(Info, E->getType(), ExprKind); 8268 } 8269 8270 static CharUnits getBaseAlignment(EvalInfo &Info, const LValue &Value) { 8271 if (const auto *VD = Value.Base.dyn_cast<const ValueDecl *>()) 8272 return Info.Ctx.getDeclAlign(VD); 8273 if (const auto *E = Value.Base.dyn_cast<const Expr *>()) 8274 return GetAlignOfExpr(Info, E, UETT_AlignOf); 8275 return GetAlignOfType(Info, Value.Base.getTypeInfoType(), UETT_AlignOf); 8276 } 8277 8278 /// Evaluate the value of the alignment argument to __builtin_align_{up,down}, 8279 /// __builtin_is_aligned and __builtin_assume_aligned. 8280 static bool getAlignmentArgument(const Expr *E, QualType ForType, 8281 EvalInfo &Info, APSInt &Alignment) { 8282 if (!EvaluateInteger(E, Alignment, Info)) 8283 return false; 8284 if (Alignment < 0 || !Alignment.isPowerOf2()) { 8285 Info.FFDiag(E, diag::note_constexpr_invalid_alignment) << Alignment; 8286 return false; 8287 } 8288 unsigned SrcWidth = Info.Ctx.getIntWidth(ForType); 8289 APSInt MaxValue(APInt::getOneBitSet(SrcWidth, SrcWidth - 1)); 8290 if (APSInt::compareValues(Alignment, MaxValue) > 0) { 8291 Info.FFDiag(E, diag::note_constexpr_alignment_too_big) 8292 << MaxValue << ForType << Alignment; 8293 return false; 8294 } 8295 // Ensure both alignment and source value have the same bit width so that we 8296 // don't assert when computing the resulting value. 8297 APSInt ExtAlignment = 8298 APSInt(Alignment.zextOrTrunc(SrcWidth), /*isUnsigned=*/true); 8299 assert(APSInt::compareValues(Alignment, ExtAlignment) == 0 && 8300 "Alignment should not be changed by ext/trunc"); 8301 Alignment = ExtAlignment; 8302 assert(Alignment.getBitWidth() == SrcWidth); 8303 return true; 8304 } 8305 8306 // To be clear: this happily visits unsupported builtins. Better name welcomed. 8307 bool PointerExprEvaluator::visitNonBuiltinCallExpr(const CallExpr *E) { 8308 if (ExprEvaluatorBaseTy::VisitCallExpr(E)) 8309 return true; 8310 8311 if (!(InvalidBaseOK && getAllocSizeAttr(E))) 8312 return false; 8313 8314 Result.setInvalid(E); 8315 QualType PointeeTy = E->getType()->castAs<PointerType>()->getPointeeType(); 8316 Result.addUnsizedArray(Info, E, PointeeTy); 8317 return true; 8318 } 8319 8320 bool PointerExprEvaluator::VisitCallExpr(const CallExpr *E) { 8321 if (IsStringLiteralCall(E)) 8322 return Success(E); 8323 8324 if (unsigned BuiltinOp = E->getBuiltinCallee()) 8325 return VisitBuiltinCallExpr(E, BuiltinOp); 8326 8327 return visitNonBuiltinCallExpr(E); 8328 } 8329 8330 // Determine if T is a character type for which we guarantee that 8331 // sizeof(T) == 1. 8332 static bool isOneByteCharacterType(QualType T) { 8333 return T->isCharType() || T->isChar8Type(); 8334 } 8335 8336 bool PointerExprEvaluator::VisitBuiltinCallExpr(const CallExpr *E, 8337 unsigned BuiltinOp) { 8338 switch (BuiltinOp) { 8339 case Builtin::BI__builtin_addressof: 8340 return evaluateLValue(E->getArg(0), Result); 8341 case Builtin::BI__builtin_assume_aligned: { 8342 // We need to be very careful here because: if the pointer does not have the 8343 // asserted alignment, then the behavior is undefined, and undefined 8344 // behavior is non-constant. 8345 if (!evaluatePointer(E->getArg(0), Result)) 8346 return false; 8347 8348 LValue OffsetResult(Result); 8349 APSInt Alignment; 8350 if (!getAlignmentArgument(E->getArg(1), E->getArg(0)->getType(), Info, 8351 Alignment)) 8352 return false; 8353 CharUnits Align = CharUnits::fromQuantity(Alignment.getZExtValue()); 8354 8355 if (E->getNumArgs() > 2) { 8356 APSInt Offset; 8357 if (!EvaluateInteger(E->getArg(2), Offset, Info)) 8358 return false; 8359 8360 int64_t AdditionalOffset = -Offset.getZExtValue(); 8361 OffsetResult.Offset += CharUnits::fromQuantity(AdditionalOffset); 8362 } 8363 8364 // If there is a base object, then it must have the correct alignment. 8365 if (OffsetResult.Base) { 8366 CharUnits BaseAlignment = getBaseAlignment(Info, OffsetResult); 8367 8368 if (BaseAlignment < Align) { 8369 Result.Designator.setInvalid(); 8370 // FIXME: Add support to Diagnostic for long / long long. 8371 CCEDiag(E->getArg(0), 8372 diag::note_constexpr_baa_insufficient_alignment) << 0 8373 << (unsigned)BaseAlignment.getQuantity() 8374 << (unsigned)Align.getQuantity(); 8375 return false; 8376 } 8377 } 8378 8379 // The offset must also have the correct alignment. 8380 if (OffsetResult.Offset.alignTo(Align) != OffsetResult.Offset) { 8381 Result.Designator.setInvalid(); 8382 8383 (OffsetResult.Base 8384 ? CCEDiag(E->getArg(0), 8385 diag::note_constexpr_baa_insufficient_alignment) << 1 8386 : CCEDiag(E->getArg(0), 8387 diag::note_constexpr_baa_value_insufficient_alignment)) 8388 << (int)OffsetResult.Offset.getQuantity() 8389 << (unsigned)Align.getQuantity(); 8390 return false; 8391 } 8392 8393 return true; 8394 } 8395 case Builtin::BI__builtin_align_up: 8396 case Builtin::BI__builtin_align_down: { 8397 if (!evaluatePointer(E->getArg(0), Result)) 8398 return false; 8399 APSInt Alignment; 8400 if (!getAlignmentArgument(E->getArg(1), E->getArg(0)->getType(), Info, 8401 Alignment)) 8402 return false; 8403 CharUnits BaseAlignment = getBaseAlignment(Info, Result); 8404 CharUnits PtrAlign = BaseAlignment.alignmentAtOffset(Result.Offset); 8405 // For align_up/align_down, we can return the same value if the alignment 8406 // is known to be greater or equal to the requested value. 8407 if (PtrAlign.getQuantity() >= Alignment) 8408 return true; 8409 8410 // The alignment could be greater than the minimum at run-time, so we cannot 8411 // infer much about the resulting pointer value. One case is possible: 8412 // For `_Alignas(32) char buf[N]; __builtin_align_down(&buf[idx], 32)` we 8413 // can infer the correct index if the requested alignment is smaller than 8414 // the base alignment so we can perform the computation on the offset. 8415 if (BaseAlignment.getQuantity() >= Alignment) { 8416 assert(Alignment.getBitWidth() <= 64 && 8417 "Cannot handle > 64-bit address-space"); 8418 uint64_t Alignment64 = Alignment.getZExtValue(); 8419 CharUnits NewOffset = CharUnits::fromQuantity( 8420 BuiltinOp == Builtin::BI__builtin_align_down 8421 ? llvm::alignDown(Result.Offset.getQuantity(), Alignment64) 8422 : llvm::alignTo(Result.Offset.getQuantity(), Alignment64)); 8423 Result.adjustOffset(NewOffset - Result.Offset); 8424 // TODO: diagnose out-of-bounds values/only allow for arrays? 8425 return true; 8426 } 8427 // Otherwise, we cannot constant-evaluate the result. 8428 Info.FFDiag(E->getArg(0), diag::note_constexpr_alignment_adjust) 8429 << Alignment; 8430 return false; 8431 } 8432 case Builtin::BI__builtin_operator_new: 8433 return HandleOperatorNewCall(Info, E, Result); 8434 case Builtin::BI__builtin_launder: 8435 return evaluatePointer(E->getArg(0), Result); 8436 case Builtin::BIstrchr: 8437 case Builtin::BIwcschr: 8438 case Builtin::BImemchr: 8439 case Builtin::BIwmemchr: 8440 if (Info.getLangOpts().CPlusPlus11) 8441 Info.CCEDiag(E, diag::note_constexpr_invalid_function) 8442 << /*isConstexpr*/0 << /*isConstructor*/0 8443 << (std::string("'") + Info.Ctx.BuiltinInfo.getName(BuiltinOp) + "'"); 8444 else 8445 Info.CCEDiag(E, diag::note_invalid_subexpr_in_const_expr); 8446 LLVM_FALLTHROUGH; 8447 case Builtin::BI__builtin_strchr: 8448 case Builtin::BI__builtin_wcschr: 8449 case Builtin::BI__builtin_memchr: 8450 case Builtin::BI__builtin_char_memchr: 8451 case Builtin::BI__builtin_wmemchr: { 8452 if (!Visit(E->getArg(0))) 8453 return false; 8454 APSInt Desired; 8455 if (!EvaluateInteger(E->getArg(1), Desired, Info)) 8456 return false; 8457 uint64_t MaxLength = uint64_t(-1); 8458 if (BuiltinOp != Builtin::BIstrchr && 8459 BuiltinOp != Builtin::BIwcschr && 8460 BuiltinOp != Builtin::BI__builtin_strchr && 8461 BuiltinOp != Builtin::BI__builtin_wcschr) { 8462 APSInt N; 8463 if (!EvaluateInteger(E->getArg(2), N, Info)) 8464 return false; 8465 MaxLength = N.getExtValue(); 8466 } 8467 // We cannot find the value if there are no candidates to match against. 8468 if (MaxLength == 0u) 8469 return ZeroInitialization(E); 8470 if (!Result.checkNullPointerForFoldAccess(Info, E, AK_Read) || 8471 Result.Designator.Invalid) 8472 return false; 8473 QualType CharTy = Result.Designator.getType(Info.Ctx); 8474 bool IsRawByte = BuiltinOp == Builtin::BImemchr || 8475 BuiltinOp == Builtin::BI__builtin_memchr; 8476 assert(IsRawByte || 8477 Info.Ctx.hasSameUnqualifiedType( 8478 CharTy, E->getArg(0)->getType()->getPointeeType())); 8479 // Pointers to const void may point to objects of incomplete type. 8480 if (IsRawByte && CharTy->isIncompleteType()) { 8481 Info.FFDiag(E, diag::note_constexpr_ltor_incomplete_type) << CharTy; 8482 return false; 8483 } 8484 // Give up on byte-oriented matching against multibyte elements. 8485 // FIXME: We can compare the bytes in the correct order. 8486 if (IsRawByte && !isOneByteCharacterType(CharTy)) { 8487 Info.FFDiag(E, diag::note_constexpr_memchr_unsupported) 8488 << (std::string("'") + Info.Ctx.BuiltinInfo.getName(BuiltinOp) + "'") 8489 << CharTy; 8490 return false; 8491 } 8492 // Figure out what value we're actually looking for (after converting to 8493 // the corresponding unsigned type if necessary). 8494 uint64_t DesiredVal; 8495 bool StopAtNull = false; 8496 switch (BuiltinOp) { 8497 case Builtin::BIstrchr: 8498 case Builtin::BI__builtin_strchr: 8499 // strchr compares directly to the passed integer, and therefore 8500 // always fails if given an int that is not a char. 8501 if (!APSInt::isSameValue(HandleIntToIntCast(Info, E, CharTy, 8502 E->getArg(1)->getType(), 8503 Desired), 8504 Desired)) 8505 return ZeroInitialization(E); 8506 StopAtNull = true; 8507 LLVM_FALLTHROUGH; 8508 case Builtin::BImemchr: 8509 case Builtin::BI__builtin_memchr: 8510 case Builtin::BI__builtin_char_memchr: 8511 // memchr compares by converting both sides to unsigned char. That's also 8512 // correct for strchr if we get this far (to cope with plain char being 8513 // unsigned in the strchr case). 8514 DesiredVal = Desired.trunc(Info.Ctx.getCharWidth()).getZExtValue(); 8515 break; 8516 8517 case Builtin::BIwcschr: 8518 case Builtin::BI__builtin_wcschr: 8519 StopAtNull = true; 8520 LLVM_FALLTHROUGH; 8521 case Builtin::BIwmemchr: 8522 case Builtin::BI__builtin_wmemchr: 8523 // wcschr and wmemchr are given a wchar_t to look for. Just use it. 8524 DesiredVal = Desired.getZExtValue(); 8525 break; 8526 } 8527 8528 for (; MaxLength; --MaxLength) { 8529 APValue Char; 8530 if (!handleLValueToRValueConversion(Info, E, CharTy, Result, Char) || 8531 !Char.isInt()) 8532 return false; 8533 if (Char.getInt().getZExtValue() == DesiredVal) 8534 return true; 8535 if (StopAtNull && !Char.getInt()) 8536 break; 8537 if (!HandleLValueArrayAdjustment(Info, E, Result, CharTy, 1)) 8538 return false; 8539 } 8540 // Not found: return nullptr. 8541 return ZeroInitialization(E); 8542 } 8543 8544 case Builtin::BImemcpy: 8545 case Builtin::BImemmove: 8546 case Builtin::BIwmemcpy: 8547 case Builtin::BIwmemmove: 8548 if (Info.getLangOpts().CPlusPlus11) 8549 Info.CCEDiag(E, diag::note_constexpr_invalid_function) 8550 << /*isConstexpr*/0 << /*isConstructor*/0 8551 << (std::string("'") + Info.Ctx.BuiltinInfo.getName(BuiltinOp) + "'"); 8552 else 8553 Info.CCEDiag(E, diag::note_invalid_subexpr_in_const_expr); 8554 LLVM_FALLTHROUGH; 8555 case Builtin::BI__builtin_memcpy: 8556 case Builtin::BI__builtin_memmove: 8557 case Builtin::BI__builtin_wmemcpy: 8558 case Builtin::BI__builtin_wmemmove: { 8559 bool WChar = BuiltinOp == Builtin::BIwmemcpy || 8560 BuiltinOp == Builtin::BIwmemmove || 8561 BuiltinOp == Builtin::BI__builtin_wmemcpy || 8562 BuiltinOp == Builtin::BI__builtin_wmemmove; 8563 bool Move = BuiltinOp == Builtin::BImemmove || 8564 BuiltinOp == Builtin::BIwmemmove || 8565 BuiltinOp == Builtin::BI__builtin_memmove || 8566 BuiltinOp == Builtin::BI__builtin_wmemmove; 8567 8568 // The result of mem* is the first argument. 8569 if (!Visit(E->getArg(0))) 8570 return false; 8571 LValue Dest = Result; 8572 8573 LValue Src; 8574 if (!EvaluatePointer(E->getArg(1), Src, Info)) 8575 return false; 8576 8577 APSInt N; 8578 if (!EvaluateInteger(E->getArg(2), N, Info)) 8579 return false; 8580 assert(!N.isSigned() && "memcpy and friends take an unsigned size"); 8581 8582 // If the size is zero, we treat this as always being a valid no-op. 8583 // (Even if one of the src and dest pointers is null.) 8584 if (!N) 8585 return true; 8586 8587 // Otherwise, if either of the operands is null, we can't proceed. Don't 8588 // try to determine the type of the copied objects, because there aren't 8589 // any. 8590 if (!Src.Base || !Dest.Base) { 8591 APValue Val; 8592 (!Src.Base ? Src : Dest).moveInto(Val); 8593 Info.FFDiag(E, diag::note_constexpr_memcpy_null) 8594 << Move << WChar << !!Src.Base 8595 << Val.getAsString(Info.Ctx, E->getArg(0)->getType()); 8596 return false; 8597 } 8598 if (Src.Designator.Invalid || Dest.Designator.Invalid) 8599 return false; 8600 8601 // We require that Src and Dest are both pointers to arrays of 8602 // trivially-copyable type. (For the wide version, the designator will be 8603 // invalid if the designated object is not a wchar_t.) 8604 QualType T = Dest.Designator.getType(Info.Ctx); 8605 QualType SrcT = Src.Designator.getType(Info.Ctx); 8606 if (!Info.Ctx.hasSameUnqualifiedType(T, SrcT)) { 8607 // FIXME: Consider using our bit_cast implementation to support this. 8608 Info.FFDiag(E, diag::note_constexpr_memcpy_type_pun) << Move << SrcT << T; 8609 return false; 8610 } 8611 if (T->isIncompleteType()) { 8612 Info.FFDiag(E, diag::note_constexpr_memcpy_incomplete_type) << Move << T; 8613 return false; 8614 } 8615 if (!T.isTriviallyCopyableType(Info.Ctx)) { 8616 Info.FFDiag(E, diag::note_constexpr_memcpy_nontrivial) << Move << T; 8617 return false; 8618 } 8619 8620 // Figure out how many T's we're copying. 8621 uint64_t TSize = Info.Ctx.getTypeSizeInChars(T).getQuantity(); 8622 if (!WChar) { 8623 uint64_t Remainder; 8624 llvm::APInt OrigN = N; 8625 llvm::APInt::udivrem(OrigN, TSize, N, Remainder); 8626 if (Remainder) { 8627 Info.FFDiag(E, diag::note_constexpr_memcpy_unsupported) 8628 << Move << WChar << 0 << T << OrigN.toString(10, /*Signed*/false) 8629 << (unsigned)TSize; 8630 return false; 8631 } 8632 } 8633 8634 // Check that the copying will remain within the arrays, just so that we 8635 // can give a more meaningful diagnostic. This implicitly also checks that 8636 // N fits into 64 bits. 8637 uint64_t RemainingSrcSize = Src.Designator.validIndexAdjustments().second; 8638 uint64_t RemainingDestSize = Dest.Designator.validIndexAdjustments().second; 8639 if (N.ugt(RemainingSrcSize) || N.ugt(RemainingDestSize)) { 8640 Info.FFDiag(E, diag::note_constexpr_memcpy_unsupported) 8641 << Move << WChar << (N.ugt(RemainingSrcSize) ? 1 : 2) << T 8642 << N.toString(10, /*Signed*/false); 8643 return false; 8644 } 8645 uint64_t NElems = N.getZExtValue(); 8646 uint64_t NBytes = NElems * TSize; 8647 8648 // Check for overlap. 8649 int Direction = 1; 8650 if (HasSameBase(Src, Dest)) { 8651 uint64_t SrcOffset = Src.getLValueOffset().getQuantity(); 8652 uint64_t DestOffset = Dest.getLValueOffset().getQuantity(); 8653 if (DestOffset >= SrcOffset && DestOffset - SrcOffset < NBytes) { 8654 // Dest is inside the source region. 8655 if (!Move) { 8656 Info.FFDiag(E, diag::note_constexpr_memcpy_overlap) << WChar; 8657 return false; 8658 } 8659 // For memmove and friends, copy backwards. 8660 if (!HandleLValueArrayAdjustment(Info, E, Src, T, NElems - 1) || 8661 !HandleLValueArrayAdjustment(Info, E, Dest, T, NElems - 1)) 8662 return false; 8663 Direction = -1; 8664 } else if (!Move && SrcOffset >= DestOffset && 8665 SrcOffset - DestOffset < NBytes) { 8666 // Src is inside the destination region for memcpy: invalid. 8667 Info.FFDiag(E, diag::note_constexpr_memcpy_overlap) << WChar; 8668 return false; 8669 } 8670 } 8671 8672 while (true) { 8673 APValue Val; 8674 // FIXME: Set WantObjectRepresentation to true if we're copying a 8675 // char-like type? 8676 if (!handleLValueToRValueConversion(Info, E, T, Src, Val) || 8677 !handleAssignment(Info, E, Dest, T, Val)) 8678 return false; 8679 // Do not iterate past the last element; if we're copying backwards, that 8680 // might take us off the start of the array. 8681 if (--NElems == 0) 8682 return true; 8683 if (!HandleLValueArrayAdjustment(Info, E, Src, T, Direction) || 8684 !HandleLValueArrayAdjustment(Info, E, Dest, T, Direction)) 8685 return false; 8686 } 8687 } 8688 8689 default: 8690 break; 8691 } 8692 8693 return visitNonBuiltinCallExpr(E); 8694 } 8695 8696 static bool EvaluateArrayNewInitList(EvalInfo &Info, LValue &This, 8697 APValue &Result, const InitListExpr *ILE, 8698 QualType AllocType); 8699 static bool EvaluateArrayNewConstructExpr(EvalInfo &Info, LValue &This, 8700 APValue &Result, 8701 const CXXConstructExpr *CCE, 8702 QualType AllocType); 8703 8704 bool PointerExprEvaluator::VisitCXXNewExpr(const CXXNewExpr *E) { 8705 if (!Info.getLangOpts().CPlusPlus2a) 8706 Info.CCEDiag(E, diag::note_constexpr_new); 8707 8708 // We cannot speculatively evaluate a delete expression. 8709 if (Info.SpeculativeEvaluationDepth) 8710 return false; 8711 8712 FunctionDecl *OperatorNew = E->getOperatorNew(); 8713 8714 bool IsNothrow = false; 8715 bool IsPlacement = false; 8716 if (OperatorNew->isReservedGlobalPlacementOperator() && 8717 Info.CurrentCall->isStdFunction() && !E->isArray()) { 8718 // FIXME Support array placement new. 8719 assert(E->getNumPlacementArgs() == 1); 8720 if (!EvaluatePointer(E->getPlacementArg(0), Result, Info)) 8721 return false; 8722 if (Result.Designator.Invalid) 8723 return false; 8724 IsPlacement = true; 8725 } else if (!OperatorNew->isReplaceableGlobalAllocationFunction()) { 8726 Info.FFDiag(E, diag::note_constexpr_new_non_replaceable) 8727 << isa<CXXMethodDecl>(OperatorNew) << OperatorNew; 8728 return false; 8729 } else if (E->getNumPlacementArgs()) { 8730 // The only new-placement list we support is of the form (std::nothrow). 8731 // 8732 // FIXME: There is no restriction on this, but it's not clear that any 8733 // other form makes any sense. We get here for cases such as: 8734 // 8735 // new (std::align_val_t{N}) X(int) 8736 // 8737 // (which should presumably be valid only if N is a multiple of 8738 // alignof(int), and in any case can't be deallocated unless N is 8739 // alignof(X) and X has new-extended alignment). 8740 if (E->getNumPlacementArgs() != 1 || 8741 !E->getPlacementArg(0)->getType()->isNothrowT()) 8742 return Error(E, diag::note_constexpr_new_placement); 8743 8744 LValue Nothrow; 8745 if (!EvaluateLValue(E->getPlacementArg(0), Nothrow, Info)) 8746 return false; 8747 IsNothrow = true; 8748 } 8749 8750 const Expr *Init = E->getInitializer(); 8751 const InitListExpr *ResizedArrayILE = nullptr; 8752 const CXXConstructExpr *ResizedArrayCCE = nullptr; 8753 8754 QualType AllocType = E->getAllocatedType(); 8755 if (Optional<const Expr*> ArraySize = E->getArraySize()) { 8756 const Expr *Stripped = *ArraySize; 8757 for (; auto *ICE = dyn_cast<ImplicitCastExpr>(Stripped); 8758 Stripped = ICE->getSubExpr()) 8759 if (ICE->getCastKind() != CK_NoOp && 8760 ICE->getCastKind() != CK_IntegralCast) 8761 break; 8762 8763 llvm::APSInt ArrayBound; 8764 if (!EvaluateInteger(Stripped, ArrayBound, Info)) 8765 return false; 8766 8767 // C++ [expr.new]p9: 8768 // The expression is erroneous if: 8769 // -- [...] its value before converting to size_t [or] applying the 8770 // second standard conversion sequence is less than zero 8771 if (ArrayBound.isSigned() && ArrayBound.isNegative()) { 8772 if (IsNothrow) 8773 return ZeroInitialization(E); 8774 8775 Info.FFDiag(*ArraySize, diag::note_constexpr_new_negative) 8776 << ArrayBound << (*ArraySize)->getSourceRange(); 8777 return false; 8778 } 8779 8780 // -- its value is such that the size of the allocated object would 8781 // exceed the implementation-defined limit 8782 if (ConstantArrayType::getNumAddressingBits(Info.Ctx, AllocType, 8783 ArrayBound) > 8784 ConstantArrayType::getMaxSizeBits(Info.Ctx)) { 8785 if (IsNothrow) 8786 return ZeroInitialization(E); 8787 8788 Info.FFDiag(*ArraySize, diag::note_constexpr_new_too_large) 8789 << ArrayBound << (*ArraySize)->getSourceRange(); 8790 return false; 8791 } 8792 8793 // -- the new-initializer is a braced-init-list and the number of 8794 // array elements for which initializers are provided [...] 8795 // exceeds the number of elements to initialize 8796 if (Init && !isa<CXXConstructExpr>(Init)) { 8797 auto *CAT = Info.Ctx.getAsConstantArrayType(Init->getType()); 8798 assert(CAT && "unexpected type for array initializer"); 8799 8800 unsigned Bits = 8801 std::max(CAT->getSize().getBitWidth(), ArrayBound.getBitWidth()); 8802 llvm::APInt InitBound = CAT->getSize().zextOrSelf(Bits); 8803 llvm::APInt AllocBound = ArrayBound.zextOrSelf(Bits); 8804 if (InitBound.ugt(AllocBound)) { 8805 if (IsNothrow) 8806 return ZeroInitialization(E); 8807 8808 Info.FFDiag(*ArraySize, diag::note_constexpr_new_too_small) 8809 << AllocBound.toString(10, /*Signed=*/false) 8810 << InitBound.toString(10, /*Signed=*/false) 8811 << (*ArraySize)->getSourceRange(); 8812 return false; 8813 } 8814 8815 // If the sizes differ, we must have an initializer list, and we need 8816 // special handling for this case when we initialize. 8817 if (InitBound != AllocBound) 8818 ResizedArrayILE = cast<InitListExpr>(Init); 8819 } else if (Init) { 8820 ResizedArrayCCE = cast<CXXConstructExpr>(Init); 8821 } 8822 8823 AllocType = Info.Ctx.getConstantArrayType(AllocType, ArrayBound, nullptr, 8824 ArrayType::Normal, 0); 8825 } else { 8826 assert(!AllocType->isArrayType() && 8827 "array allocation with non-array new"); 8828 } 8829 8830 APValue *Val; 8831 if (IsPlacement) { 8832 AccessKinds AK = AK_Construct; 8833 struct FindObjectHandler { 8834 EvalInfo &Info; 8835 const Expr *E; 8836 QualType AllocType; 8837 const AccessKinds AccessKind; 8838 APValue *Value; 8839 8840 typedef bool result_type; 8841 bool failed() { return false; } 8842 bool found(APValue &Subobj, QualType SubobjType) { 8843 // FIXME: Reject the cases where [basic.life]p8 would not permit the 8844 // old name of the object to be used to name the new object. 8845 if (!Info.Ctx.hasSameUnqualifiedType(SubobjType, AllocType)) { 8846 Info.FFDiag(E, diag::note_constexpr_placement_new_wrong_type) << 8847 SubobjType << AllocType; 8848 return false; 8849 } 8850 Value = &Subobj; 8851 return true; 8852 } 8853 bool found(APSInt &Value, QualType SubobjType) { 8854 Info.FFDiag(E, diag::note_constexpr_construct_complex_elem); 8855 return false; 8856 } 8857 bool found(APFloat &Value, QualType SubobjType) { 8858 Info.FFDiag(E, diag::note_constexpr_construct_complex_elem); 8859 return false; 8860 } 8861 } Handler = {Info, E, AllocType, AK, nullptr}; 8862 8863 CompleteObject Obj = findCompleteObject(Info, E, AK, Result, AllocType); 8864 if (!Obj || !findSubobject(Info, E, Obj, Result.Designator, Handler)) 8865 return false; 8866 8867 Val = Handler.Value; 8868 8869 // [basic.life]p1: 8870 // The lifetime of an object o of type T ends when [...] the storage 8871 // which the object occupies is [...] reused by an object that is not 8872 // nested within o (6.6.2). 8873 *Val = APValue(); 8874 } else { 8875 // Perform the allocation and obtain a pointer to the resulting object. 8876 Val = Info.createHeapAlloc(E, AllocType, Result); 8877 if (!Val) 8878 return false; 8879 } 8880 8881 if (ResizedArrayILE) { 8882 if (!EvaluateArrayNewInitList(Info, Result, *Val, ResizedArrayILE, 8883 AllocType)) 8884 return false; 8885 } else if (ResizedArrayCCE) { 8886 if (!EvaluateArrayNewConstructExpr(Info, Result, *Val, ResizedArrayCCE, 8887 AllocType)) 8888 return false; 8889 } else if (Init) { 8890 if (!EvaluateInPlace(*Val, Info, Result, Init)) 8891 return false; 8892 } else { 8893 *Val = getDefaultInitValue(AllocType); 8894 } 8895 8896 // Array new returns a pointer to the first element, not a pointer to the 8897 // array. 8898 if (auto *AT = AllocType->getAsArrayTypeUnsafe()) 8899 Result.addArray(Info, E, cast<ConstantArrayType>(AT)); 8900 8901 return true; 8902 } 8903 //===----------------------------------------------------------------------===// 8904 // Member Pointer Evaluation 8905 //===----------------------------------------------------------------------===// 8906 8907 namespace { 8908 class MemberPointerExprEvaluator 8909 : public ExprEvaluatorBase<MemberPointerExprEvaluator> { 8910 MemberPtr &Result; 8911 8912 bool Success(const ValueDecl *D) { 8913 Result = MemberPtr(D); 8914 return true; 8915 } 8916 public: 8917 8918 MemberPointerExprEvaluator(EvalInfo &Info, MemberPtr &Result) 8919 : ExprEvaluatorBaseTy(Info), Result(Result) {} 8920 8921 bool Success(const APValue &V, const Expr *E) { 8922 Result.setFrom(V); 8923 return true; 8924 } 8925 bool ZeroInitialization(const Expr *E) { 8926 return Success((const ValueDecl*)nullptr); 8927 } 8928 8929 bool VisitCastExpr(const CastExpr *E); 8930 bool VisitUnaryAddrOf(const UnaryOperator *E); 8931 }; 8932 } // end anonymous namespace 8933 8934 static bool EvaluateMemberPointer(const Expr *E, MemberPtr &Result, 8935 EvalInfo &Info) { 8936 assert(E->isRValue() && E->getType()->isMemberPointerType()); 8937 return MemberPointerExprEvaluator(Info, Result).Visit(E); 8938 } 8939 8940 bool MemberPointerExprEvaluator::VisitCastExpr(const CastExpr *E) { 8941 switch (E->getCastKind()) { 8942 default: 8943 return ExprEvaluatorBaseTy::VisitCastExpr(E); 8944 8945 case CK_NullToMemberPointer: 8946 VisitIgnoredValue(E->getSubExpr()); 8947 return ZeroInitialization(E); 8948 8949 case CK_BaseToDerivedMemberPointer: { 8950 if (!Visit(E->getSubExpr())) 8951 return false; 8952 if (E->path_empty()) 8953 return true; 8954 // Base-to-derived member pointer casts store the path in derived-to-base 8955 // order, so iterate backwards. The CXXBaseSpecifier also provides us with 8956 // the wrong end of the derived->base arc, so stagger the path by one class. 8957 typedef std::reverse_iterator<CastExpr::path_const_iterator> ReverseIter; 8958 for (ReverseIter PathI(E->path_end() - 1), PathE(E->path_begin()); 8959 PathI != PathE; ++PathI) { 8960 assert(!(*PathI)->isVirtual() && "memptr cast through vbase"); 8961 const CXXRecordDecl *Derived = (*PathI)->getType()->getAsCXXRecordDecl(); 8962 if (!Result.castToDerived(Derived)) 8963 return Error(E); 8964 } 8965 const Type *FinalTy = E->getType()->castAs<MemberPointerType>()->getClass(); 8966 if (!Result.castToDerived(FinalTy->getAsCXXRecordDecl())) 8967 return Error(E); 8968 return true; 8969 } 8970 8971 case CK_DerivedToBaseMemberPointer: 8972 if (!Visit(E->getSubExpr())) 8973 return false; 8974 for (CastExpr::path_const_iterator PathI = E->path_begin(), 8975 PathE = E->path_end(); PathI != PathE; ++PathI) { 8976 assert(!(*PathI)->isVirtual() && "memptr cast through vbase"); 8977 const CXXRecordDecl *Base = (*PathI)->getType()->getAsCXXRecordDecl(); 8978 if (!Result.castToBase(Base)) 8979 return Error(E); 8980 } 8981 return true; 8982 } 8983 } 8984 8985 bool MemberPointerExprEvaluator::VisitUnaryAddrOf(const UnaryOperator *E) { 8986 // C++11 [expr.unary.op]p3 has very strict rules on how the address of a 8987 // member can be formed. 8988 return Success(cast<DeclRefExpr>(E->getSubExpr())->getDecl()); 8989 } 8990 8991 //===----------------------------------------------------------------------===// 8992 // Record Evaluation 8993 //===----------------------------------------------------------------------===// 8994 8995 namespace { 8996 class RecordExprEvaluator 8997 : public ExprEvaluatorBase<RecordExprEvaluator> { 8998 const LValue &This; 8999 APValue &Result; 9000 public: 9001 9002 RecordExprEvaluator(EvalInfo &info, const LValue &This, APValue &Result) 9003 : ExprEvaluatorBaseTy(info), This(This), Result(Result) {} 9004 9005 bool Success(const APValue &V, const Expr *E) { 9006 Result = V; 9007 return true; 9008 } 9009 bool ZeroInitialization(const Expr *E) { 9010 return ZeroInitialization(E, E->getType()); 9011 } 9012 bool ZeroInitialization(const Expr *E, QualType T); 9013 9014 bool VisitCallExpr(const CallExpr *E) { 9015 return handleCallExpr(E, Result, &This); 9016 } 9017 bool VisitCastExpr(const CastExpr *E); 9018 bool VisitInitListExpr(const InitListExpr *E); 9019 bool VisitCXXConstructExpr(const CXXConstructExpr *E) { 9020 return VisitCXXConstructExpr(E, E->getType()); 9021 } 9022 bool VisitLambdaExpr(const LambdaExpr *E); 9023 bool VisitCXXInheritedCtorInitExpr(const CXXInheritedCtorInitExpr *E); 9024 bool VisitCXXConstructExpr(const CXXConstructExpr *E, QualType T); 9025 bool VisitCXXStdInitializerListExpr(const CXXStdInitializerListExpr *E); 9026 bool VisitBinCmp(const BinaryOperator *E); 9027 }; 9028 } 9029 9030 /// Perform zero-initialization on an object of non-union class type. 9031 /// C++11 [dcl.init]p5: 9032 /// To zero-initialize an object or reference of type T means: 9033 /// [...] 9034 /// -- if T is a (possibly cv-qualified) non-union class type, 9035 /// each non-static data member and each base-class subobject is 9036 /// zero-initialized 9037 static bool HandleClassZeroInitialization(EvalInfo &Info, const Expr *E, 9038 const RecordDecl *RD, 9039 const LValue &This, APValue &Result) { 9040 assert(!RD->isUnion() && "Expected non-union class type"); 9041 const CXXRecordDecl *CD = dyn_cast<CXXRecordDecl>(RD); 9042 Result = APValue(APValue::UninitStruct(), CD ? CD->getNumBases() : 0, 9043 std::distance(RD->field_begin(), RD->field_end())); 9044 9045 if (RD->isInvalidDecl()) return false; 9046 const ASTRecordLayout &Layout = Info.Ctx.getASTRecordLayout(RD); 9047 9048 if (CD) { 9049 unsigned Index = 0; 9050 for (CXXRecordDecl::base_class_const_iterator I = CD->bases_begin(), 9051 End = CD->bases_end(); I != End; ++I, ++Index) { 9052 const CXXRecordDecl *Base = I->getType()->getAsCXXRecordDecl(); 9053 LValue Subobject = This; 9054 if (!HandleLValueDirectBase(Info, E, Subobject, CD, Base, &Layout)) 9055 return false; 9056 if (!HandleClassZeroInitialization(Info, E, Base, Subobject, 9057 Result.getStructBase(Index))) 9058 return false; 9059 } 9060 } 9061 9062 for (const auto *I : RD->fields()) { 9063 // -- if T is a reference type, no initialization is performed. 9064 if (I->getType()->isReferenceType()) 9065 continue; 9066 9067 LValue Subobject = This; 9068 if (!HandleLValueMember(Info, E, Subobject, I, &Layout)) 9069 return false; 9070 9071 ImplicitValueInitExpr VIE(I->getType()); 9072 if (!EvaluateInPlace( 9073 Result.getStructField(I->getFieldIndex()), Info, Subobject, &VIE)) 9074 return false; 9075 } 9076 9077 return true; 9078 } 9079 9080 bool RecordExprEvaluator::ZeroInitialization(const Expr *E, QualType T) { 9081 const RecordDecl *RD = T->castAs<RecordType>()->getDecl(); 9082 if (RD->isInvalidDecl()) return false; 9083 if (RD->isUnion()) { 9084 // C++11 [dcl.init]p5: If T is a (possibly cv-qualified) union type, the 9085 // object's first non-static named data member is zero-initialized 9086 RecordDecl::field_iterator I = RD->field_begin(); 9087 if (I == RD->field_end()) { 9088 Result = APValue((const FieldDecl*)nullptr); 9089 return true; 9090 } 9091 9092 LValue Subobject = This; 9093 if (!HandleLValueMember(Info, E, Subobject, *I)) 9094 return false; 9095 Result = APValue(*I); 9096 ImplicitValueInitExpr VIE(I->getType()); 9097 return EvaluateInPlace(Result.getUnionValue(), Info, Subobject, &VIE); 9098 } 9099 9100 if (isa<CXXRecordDecl>(RD) && cast<CXXRecordDecl>(RD)->getNumVBases()) { 9101 Info.FFDiag(E, diag::note_constexpr_virtual_base) << RD; 9102 return false; 9103 } 9104 9105 return HandleClassZeroInitialization(Info, E, RD, This, Result); 9106 } 9107 9108 bool RecordExprEvaluator::VisitCastExpr(const CastExpr *E) { 9109 switch (E->getCastKind()) { 9110 default: 9111 return ExprEvaluatorBaseTy::VisitCastExpr(E); 9112 9113 case CK_ConstructorConversion: 9114 return Visit(E->getSubExpr()); 9115 9116 case CK_DerivedToBase: 9117 case CK_UncheckedDerivedToBase: { 9118 APValue DerivedObject; 9119 if (!Evaluate(DerivedObject, Info, E->getSubExpr())) 9120 return false; 9121 if (!DerivedObject.isStruct()) 9122 return Error(E->getSubExpr()); 9123 9124 // Derived-to-base rvalue conversion: just slice off the derived part. 9125 APValue *Value = &DerivedObject; 9126 const CXXRecordDecl *RD = E->getSubExpr()->getType()->getAsCXXRecordDecl(); 9127 for (CastExpr::path_const_iterator PathI = E->path_begin(), 9128 PathE = E->path_end(); PathI != PathE; ++PathI) { 9129 assert(!(*PathI)->isVirtual() && "record rvalue with virtual base"); 9130 const CXXRecordDecl *Base = (*PathI)->getType()->getAsCXXRecordDecl(); 9131 Value = &Value->getStructBase(getBaseIndex(RD, Base)); 9132 RD = Base; 9133 } 9134 Result = *Value; 9135 return true; 9136 } 9137 } 9138 } 9139 9140 bool RecordExprEvaluator::VisitInitListExpr(const InitListExpr *E) { 9141 if (E->isTransparent()) 9142 return Visit(E->getInit(0)); 9143 9144 const RecordDecl *RD = E->getType()->castAs<RecordType>()->getDecl(); 9145 if (RD->isInvalidDecl()) return false; 9146 const ASTRecordLayout &Layout = Info.Ctx.getASTRecordLayout(RD); 9147 auto *CXXRD = dyn_cast<CXXRecordDecl>(RD); 9148 9149 EvalInfo::EvaluatingConstructorRAII EvalObj( 9150 Info, 9151 ObjectUnderConstruction{This.getLValueBase(), This.Designator.Entries}, 9152 CXXRD && CXXRD->getNumBases()); 9153 9154 if (RD->isUnion()) { 9155 const FieldDecl *Field = E->getInitializedFieldInUnion(); 9156 Result = APValue(Field); 9157 if (!Field) 9158 return true; 9159 9160 // If the initializer list for a union does not contain any elements, the 9161 // first element of the union is value-initialized. 9162 // FIXME: The element should be initialized from an initializer list. 9163 // Is this difference ever observable for initializer lists which 9164 // we don't build? 9165 ImplicitValueInitExpr VIE(Field->getType()); 9166 const Expr *InitExpr = E->getNumInits() ? E->getInit(0) : &VIE; 9167 9168 LValue Subobject = This; 9169 if (!HandleLValueMember(Info, InitExpr, Subobject, Field, &Layout)) 9170 return false; 9171 9172 // Temporarily override This, in case there's a CXXDefaultInitExpr in here. 9173 ThisOverrideRAII ThisOverride(*Info.CurrentCall, &This, 9174 isa<CXXDefaultInitExpr>(InitExpr)); 9175 9176 return EvaluateInPlace(Result.getUnionValue(), Info, Subobject, InitExpr); 9177 } 9178 9179 if (!Result.hasValue()) 9180 Result = APValue(APValue::UninitStruct(), CXXRD ? CXXRD->getNumBases() : 0, 9181 std::distance(RD->field_begin(), RD->field_end())); 9182 unsigned ElementNo = 0; 9183 bool Success = true; 9184 9185 // Initialize base classes. 9186 if (CXXRD && CXXRD->getNumBases()) { 9187 for (const auto &Base : CXXRD->bases()) { 9188 assert(ElementNo < E->getNumInits() && "missing init for base class"); 9189 const Expr *Init = E->getInit(ElementNo); 9190 9191 LValue Subobject = This; 9192 if (!HandleLValueBase(Info, Init, Subobject, CXXRD, &Base)) 9193 return false; 9194 9195 APValue &FieldVal = Result.getStructBase(ElementNo); 9196 if (!EvaluateInPlace(FieldVal, Info, Subobject, Init)) { 9197 if (!Info.noteFailure()) 9198 return false; 9199 Success = false; 9200 } 9201 ++ElementNo; 9202 } 9203 9204 EvalObj.finishedConstructingBases(); 9205 } 9206 9207 // Initialize members. 9208 for (const auto *Field : RD->fields()) { 9209 // Anonymous bit-fields are not considered members of the class for 9210 // purposes of aggregate initialization. 9211 if (Field->isUnnamedBitfield()) 9212 continue; 9213 9214 LValue Subobject = This; 9215 9216 bool HaveInit = ElementNo < E->getNumInits(); 9217 9218 // FIXME: Diagnostics here should point to the end of the initializer 9219 // list, not the start. 9220 if (!HandleLValueMember(Info, HaveInit ? E->getInit(ElementNo) : E, 9221 Subobject, Field, &Layout)) 9222 return false; 9223 9224 // Perform an implicit value-initialization for members beyond the end of 9225 // the initializer list. 9226 ImplicitValueInitExpr VIE(HaveInit ? Info.Ctx.IntTy : Field->getType()); 9227 const Expr *Init = HaveInit ? E->getInit(ElementNo++) : &VIE; 9228 9229 // Temporarily override This, in case there's a CXXDefaultInitExpr in here. 9230 ThisOverrideRAII ThisOverride(*Info.CurrentCall, &This, 9231 isa<CXXDefaultInitExpr>(Init)); 9232 9233 APValue &FieldVal = Result.getStructField(Field->getFieldIndex()); 9234 if (!EvaluateInPlace(FieldVal, Info, Subobject, Init) || 9235 (Field->isBitField() && !truncateBitfieldValue(Info, Init, 9236 FieldVal, Field))) { 9237 if (!Info.noteFailure()) 9238 return false; 9239 Success = false; 9240 } 9241 } 9242 9243 EvalObj.finishedConstructingFields(); 9244 9245 return Success; 9246 } 9247 9248 bool RecordExprEvaluator::VisitCXXConstructExpr(const CXXConstructExpr *E, 9249 QualType T) { 9250 // Note that E's type is not necessarily the type of our class here; we might 9251 // be initializing an array element instead. 9252 const CXXConstructorDecl *FD = E->getConstructor(); 9253 if (FD->isInvalidDecl() || FD->getParent()->isInvalidDecl()) return false; 9254 9255 bool ZeroInit = E->requiresZeroInitialization(); 9256 if (CheckTrivialDefaultConstructor(Info, E->getExprLoc(), FD, ZeroInit)) { 9257 // If we've already performed zero-initialization, we're already done. 9258 if (Result.hasValue()) 9259 return true; 9260 9261 if (ZeroInit) 9262 return ZeroInitialization(E, T); 9263 9264 Result = getDefaultInitValue(T); 9265 return true; 9266 } 9267 9268 const FunctionDecl *Definition = nullptr; 9269 auto Body = FD->getBody(Definition); 9270 9271 if (!CheckConstexprFunction(Info, E->getExprLoc(), FD, Definition, Body)) 9272 return false; 9273 9274 // Avoid materializing a temporary for an elidable copy/move constructor. 9275 if (E->isElidable() && !ZeroInit) 9276 if (const MaterializeTemporaryExpr *ME 9277 = dyn_cast<MaterializeTemporaryExpr>(E->getArg(0))) 9278 return Visit(ME->getSubExpr()); 9279 9280 if (ZeroInit && !ZeroInitialization(E, T)) 9281 return false; 9282 9283 auto Args = llvm::makeArrayRef(E->getArgs(), E->getNumArgs()); 9284 return HandleConstructorCall(E, This, Args, 9285 cast<CXXConstructorDecl>(Definition), Info, 9286 Result); 9287 } 9288 9289 bool RecordExprEvaluator::VisitCXXInheritedCtorInitExpr( 9290 const CXXInheritedCtorInitExpr *E) { 9291 if (!Info.CurrentCall) { 9292 assert(Info.checkingPotentialConstantExpression()); 9293 return false; 9294 } 9295 9296 const CXXConstructorDecl *FD = E->getConstructor(); 9297 if (FD->isInvalidDecl() || FD->getParent()->isInvalidDecl()) 9298 return false; 9299 9300 const FunctionDecl *Definition = nullptr; 9301 auto Body = FD->getBody(Definition); 9302 9303 if (!CheckConstexprFunction(Info, E->getExprLoc(), FD, Definition, Body)) 9304 return false; 9305 9306 return HandleConstructorCall(E, This, Info.CurrentCall->Arguments, 9307 cast<CXXConstructorDecl>(Definition), Info, 9308 Result); 9309 } 9310 9311 bool RecordExprEvaluator::VisitCXXStdInitializerListExpr( 9312 const CXXStdInitializerListExpr *E) { 9313 const ConstantArrayType *ArrayType = 9314 Info.Ctx.getAsConstantArrayType(E->getSubExpr()->getType()); 9315 9316 LValue Array; 9317 if (!EvaluateLValue(E->getSubExpr(), Array, Info)) 9318 return false; 9319 9320 // Get a pointer to the first element of the array. 9321 Array.addArray(Info, E, ArrayType); 9322 9323 // FIXME: Perform the checks on the field types in SemaInit. 9324 RecordDecl *Record = E->getType()->castAs<RecordType>()->getDecl(); 9325 RecordDecl::field_iterator Field = Record->field_begin(); 9326 if (Field == Record->field_end()) 9327 return Error(E); 9328 9329 // Start pointer. 9330 if (!Field->getType()->isPointerType() || 9331 !Info.Ctx.hasSameType(Field->getType()->getPointeeType(), 9332 ArrayType->getElementType())) 9333 return Error(E); 9334 9335 // FIXME: What if the initializer_list type has base classes, etc? 9336 Result = APValue(APValue::UninitStruct(), 0, 2); 9337 Array.moveInto(Result.getStructField(0)); 9338 9339 if (++Field == Record->field_end()) 9340 return Error(E); 9341 9342 if (Field->getType()->isPointerType() && 9343 Info.Ctx.hasSameType(Field->getType()->getPointeeType(), 9344 ArrayType->getElementType())) { 9345 // End pointer. 9346 if (!HandleLValueArrayAdjustment(Info, E, Array, 9347 ArrayType->getElementType(), 9348 ArrayType->getSize().getZExtValue())) 9349 return false; 9350 Array.moveInto(Result.getStructField(1)); 9351 } else if (Info.Ctx.hasSameType(Field->getType(), Info.Ctx.getSizeType())) 9352 // Length. 9353 Result.getStructField(1) = APValue(APSInt(ArrayType->getSize())); 9354 else 9355 return Error(E); 9356 9357 if (++Field != Record->field_end()) 9358 return Error(E); 9359 9360 return true; 9361 } 9362 9363 bool RecordExprEvaluator::VisitLambdaExpr(const LambdaExpr *E) { 9364 const CXXRecordDecl *ClosureClass = E->getLambdaClass(); 9365 if (ClosureClass->isInvalidDecl()) 9366 return false; 9367 9368 const size_t NumFields = 9369 std::distance(ClosureClass->field_begin(), ClosureClass->field_end()); 9370 9371 assert(NumFields == (size_t)std::distance(E->capture_init_begin(), 9372 E->capture_init_end()) && 9373 "The number of lambda capture initializers should equal the number of " 9374 "fields within the closure type"); 9375 9376 Result = APValue(APValue::UninitStruct(), /*NumBases*/0, NumFields); 9377 // Iterate through all the lambda's closure object's fields and initialize 9378 // them. 9379 auto *CaptureInitIt = E->capture_init_begin(); 9380 const LambdaCapture *CaptureIt = ClosureClass->captures_begin(); 9381 bool Success = true; 9382 for (const auto *Field : ClosureClass->fields()) { 9383 assert(CaptureInitIt != E->capture_init_end()); 9384 // Get the initializer for this field 9385 Expr *const CurFieldInit = *CaptureInitIt++; 9386 9387 // If there is no initializer, either this is a VLA or an error has 9388 // occurred. 9389 if (!CurFieldInit) 9390 return Error(E); 9391 9392 APValue &FieldVal = Result.getStructField(Field->getFieldIndex()); 9393 if (!EvaluateInPlace(FieldVal, Info, This, CurFieldInit)) { 9394 if (!Info.keepEvaluatingAfterFailure()) 9395 return false; 9396 Success = false; 9397 } 9398 ++CaptureIt; 9399 } 9400 return Success; 9401 } 9402 9403 static bool EvaluateRecord(const Expr *E, const LValue &This, 9404 APValue &Result, EvalInfo &Info) { 9405 assert(E->isRValue() && E->getType()->isRecordType() && 9406 "can't evaluate expression as a record rvalue"); 9407 return RecordExprEvaluator(Info, This, Result).Visit(E); 9408 } 9409 9410 //===----------------------------------------------------------------------===// 9411 // Temporary Evaluation 9412 // 9413 // Temporaries are represented in the AST as rvalues, but generally behave like 9414 // lvalues. The full-object of which the temporary is a subobject is implicitly 9415 // materialized so that a reference can bind to it. 9416 //===----------------------------------------------------------------------===// 9417 namespace { 9418 class TemporaryExprEvaluator 9419 : public LValueExprEvaluatorBase<TemporaryExprEvaluator> { 9420 public: 9421 TemporaryExprEvaluator(EvalInfo &Info, LValue &Result) : 9422 LValueExprEvaluatorBaseTy(Info, Result, false) {} 9423 9424 /// Visit an expression which constructs the value of this temporary. 9425 bool VisitConstructExpr(const Expr *E) { 9426 APValue &Value = 9427 Info.CurrentCall->createTemporary(E, E->getType(), false, Result); 9428 return EvaluateInPlace(Value, Info, Result, E); 9429 } 9430 9431 bool VisitCastExpr(const CastExpr *E) { 9432 switch (E->getCastKind()) { 9433 default: 9434 return LValueExprEvaluatorBaseTy::VisitCastExpr(E); 9435 9436 case CK_ConstructorConversion: 9437 return VisitConstructExpr(E->getSubExpr()); 9438 } 9439 } 9440 bool VisitInitListExpr(const InitListExpr *E) { 9441 return VisitConstructExpr(E); 9442 } 9443 bool VisitCXXConstructExpr(const CXXConstructExpr *E) { 9444 return VisitConstructExpr(E); 9445 } 9446 bool VisitCallExpr(const CallExpr *E) { 9447 return VisitConstructExpr(E); 9448 } 9449 bool VisitCXXStdInitializerListExpr(const CXXStdInitializerListExpr *E) { 9450 return VisitConstructExpr(E); 9451 } 9452 bool VisitLambdaExpr(const LambdaExpr *E) { 9453 return VisitConstructExpr(E); 9454 } 9455 }; 9456 } // end anonymous namespace 9457 9458 /// Evaluate an expression of record type as a temporary. 9459 static bool EvaluateTemporary(const Expr *E, LValue &Result, EvalInfo &Info) { 9460 assert(E->isRValue() && E->getType()->isRecordType()); 9461 return TemporaryExprEvaluator(Info, Result).Visit(E); 9462 } 9463 9464 //===----------------------------------------------------------------------===// 9465 // Vector Evaluation 9466 //===----------------------------------------------------------------------===// 9467 9468 namespace { 9469 class VectorExprEvaluator 9470 : public ExprEvaluatorBase<VectorExprEvaluator> { 9471 APValue &Result; 9472 public: 9473 9474 VectorExprEvaluator(EvalInfo &info, APValue &Result) 9475 : ExprEvaluatorBaseTy(info), Result(Result) {} 9476 9477 bool Success(ArrayRef<APValue> V, const Expr *E) { 9478 assert(V.size() == E->getType()->castAs<VectorType>()->getNumElements()); 9479 // FIXME: remove this APValue copy. 9480 Result = APValue(V.data(), V.size()); 9481 return true; 9482 } 9483 bool Success(const APValue &V, const Expr *E) { 9484 assert(V.isVector()); 9485 Result = V; 9486 return true; 9487 } 9488 bool ZeroInitialization(const Expr *E); 9489 9490 bool VisitUnaryReal(const UnaryOperator *E) 9491 { return Visit(E->getSubExpr()); } 9492 bool VisitCastExpr(const CastExpr* E); 9493 bool VisitInitListExpr(const InitListExpr *E); 9494 bool VisitUnaryImag(const UnaryOperator *E); 9495 // FIXME: Missing: unary -, unary ~, binary add/sub/mul/div, 9496 // binary comparisons, binary and/or/xor, 9497 // conditional operator (for GNU conditional select), 9498 // shufflevector, ExtVectorElementExpr 9499 }; 9500 } // end anonymous namespace 9501 9502 static bool EvaluateVector(const Expr* E, APValue& Result, EvalInfo &Info) { 9503 assert(E->isRValue() && E->getType()->isVectorType() &&"not a vector rvalue"); 9504 return VectorExprEvaluator(Info, Result).Visit(E); 9505 } 9506 9507 bool VectorExprEvaluator::VisitCastExpr(const CastExpr *E) { 9508 const VectorType *VTy = E->getType()->castAs<VectorType>(); 9509 unsigned NElts = VTy->getNumElements(); 9510 9511 const Expr *SE = E->getSubExpr(); 9512 QualType SETy = SE->getType(); 9513 9514 switch (E->getCastKind()) { 9515 case CK_VectorSplat: { 9516 APValue Val = APValue(); 9517 if (SETy->isIntegerType()) { 9518 APSInt IntResult; 9519 if (!EvaluateInteger(SE, IntResult, Info)) 9520 return false; 9521 Val = APValue(std::move(IntResult)); 9522 } else if (SETy->isRealFloatingType()) { 9523 APFloat FloatResult(0.0); 9524 if (!EvaluateFloat(SE, FloatResult, Info)) 9525 return false; 9526 Val = APValue(std::move(FloatResult)); 9527 } else { 9528 return Error(E); 9529 } 9530 9531 // Splat and create vector APValue. 9532 SmallVector<APValue, 4> Elts(NElts, Val); 9533 return Success(Elts, E); 9534 } 9535 case CK_BitCast: { 9536 // Evaluate the operand into an APInt we can extract from. 9537 llvm::APInt SValInt; 9538 if (!EvalAndBitcastToAPInt(Info, SE, SValInt)) 9539 return false; 9540 // Extract the elements 9541 QualType EltTy = VTy->getElementType(); 9542 unsigned EltSize = Info.Ctx.getTypeSize(EltTy); 9543 bool BigEndian = Info.Ctx.getTargetInfo().isBigEndian(); 9544 SmallVector<APValue, 4> Elts; 9545 if (EltTy->isRealFloatingType()) { 9546 const llvm::fltSemantics &Sem = Info.Ctx.getFloatTypeSemantics(EltTy); 9547 unsigned FloatEltSize = EltSize; 9548 if (&Sem == &APFloat::x87DoubleExtended()) 9549 FloatEltSize = 80; 9550 for (unsigned i = 0; i < NElts; i++) { 9551 llvm::APInt Elt; 9552 if (BigEndian) 9553 Elt = SValInt.rotl(i*EltSize+FloatEltSize).trunc(FloatEltSize); 9554 else 9555 Elt = SValInt.rotr(i*EltSize).trunc(FloatEltSize); 9556 Elts.push_back(APValue(APFloat(Sem, Elt))); 9557 } 9558 } else if (EltTy->isIntegerType()) { 9559 for (unsigned i = 0; i < NElts; i++) { 9560 llvm::APInt Elt; 9561 if (BigEndian) 9562 Elt = SValInt.rotl(i*EltSize+EltSize).zextOrTrunc(EltSize); 9563 else 9564 Elt = SValInt.rotr(i*EltSize).zextOrTrunc(EltSize); 9565 Elts.push_back(APValue(APSInt(Elt, EltTy->isSignedIntegerType()))); 9566 } 9567 } else { 9568 return Error(E); 9569 } 9570 return Success(Elts, E); 9571 } 9572 default: 9573 return ExprEvaluatorBaseTy::VisitCastExpr(E); 9574 } 9575 } 9576 9577 bool 9578 VectorExprEvaluator::VisitInitListExpr(const InitListExpr *E) { 9579 const VectorType *VT = E->getType()->castAs<VectorType>(); 9580 unsigned NumInits = E->getNumInits(); 9581 unsigned NumElements = VT->getNumElements(); 9582 9583 QualType EltTy = VT->getElementType(); 9584 SmallVector<APValue, 4> Elements; 9585 9586 // The number of initializers can be less than the number of 9587 // vector elements. For OpenCL, this can be due to nested vector 9588 // initialization. For GCC compatibility, missing trailing elements 9589 // should be initialized with zeroes. 9590 unsigned CountInits = 0, CountElts = 0; 9591 while (CountElts < NumElements) { 9592 // Handle nested vector initialization. 9593 if (CountInits < NumInits 9594 && E->getInit(CountInits)->getType()->isVectorType()) { 9595 APValue v; 9596 if (!EvaluateVector(E->getInit(CountInits), v, Info)) 9597 return Error(E); 9598 unsigned vlen = v.getVectorLength(); 9599 for (unsigned j = 0; j < vlen; j++) 9600 Elements.push_back(v.getVectorElt(j)); 9601 CountElts += vlen; 9602 } else if (EltTy->isIntegerType()) { 9603 llvm::APSInt sInt(32); 9604 if (CountInits < NumInits) { 9605 if (!EvaluateInteger(E->getInit(CountInits), sInt, Info)) 9606 return false; 9607 } else // trailing integer zero. 9608 sInt = Info.Ctx.MakeIntValue(0, EltTy); 9609 Elements.push_back(APValue(sInt)); 9610 CountElts++; 9611 } else { 9612 llvm::APFloat f(0.0); 9613 if (CountInits < NumInits) { 9614 if (!EvaluateFloat(E->getInit(CountInits), f, Info)) 9615 return false; 9616 } else // trailing float zero. 9617 f = APFloat::getZero(Info.Ctx.getFloatTypeSemantics(EltTy)); 9618 Elements.push_back(APValue(f)); 9619 CountElts++; 9620 } 9621 CountInits++; 9622 } 9623 return Success(Elements, E); 9624 } 9625 9626 bool 9627 VectorExprEvaluator::ZeroInitialization(const Expr *E) { 9628 const auto *VT = E->getType()->castAs<VectorType>(); 9629 QualType EltTy = VT->getElementType(); 9630 APValue ZeroElement; 9631 if (EltTy->isIntegerType()) 9632 ZeroElement = APValue(Info.Ctx.MakeIntValue(0, EltTy)); 9633 else 9634 ZeroElement = 9635 APValue(APFloat::getZero(Info.Ctx.getFloatTypeSemantics(EltTy))); 9636 9637 SmallVector<APValue, 4> Elements(VT->getNumElements(), ZeroElement); 9638 return Success(Elements, E); 9639 } 9640 9641 bool VectorExprEvaluator::VisitUnaryImag(const UnaryOperator *E) { 9642 VisitIgnoredValue(E->getSubExpr()); 9643 return ZeroInitialization(E); 9644 } 9645 9646 //===----------------------------------------------------------------------===// 9647 // Array Evaluation 9648 //===----------------------------------------------------------------------===// 9649 9650 namespace { 9651 class ArrayExprEvaluator 9652 : public ExprEvaluatorBase<ArrayExprEvaluator> { 9653 const LValue &This; 9654 APValue &Result; 9655 public: 9656 9657 ArrayExprEvaluator(EvalInfo &Info, const LValue &This, APValue &Result) 9658 : ExprEvaluatorBaseTy(Info), This(This), Result(Result) {} 9659 9660 bool Success(const APValue &V, const Expr *E) { 9661 assert(V.isArray() && "expected array"); 9662 Result = V; 9663 return true; 9664 } 9665 9666 bool ZeroInitialization(const Expr *E) { 9667 const ConstantArrayType *CAT = 9668 Info.Ctx.getAsConstantArrayType(E->getType()); 9669 if (!CAT) 9670 return Error(E); 9671 9672 Result = APValue(APValue::UninitArray(), 0, 9673 CAT->getSize().getZExtValue()); 9674 if (!Result.hasArrayFiller()) return true; 9675 9676 // Zero-initialize all elements. 9677 LValue Subobject = This; 9678 Subobject.addArray(Info, E, CAT); 9679 ImplicitValueInitExpr VIE(CAT->getElementType()); 9680 return EvaluateInPlace(Result.getArrayFiller(), Info, Subobject, &VIE); 9681 } 9682 9683 bool VisitCallExpr(const CallExpr *E) { 9684 return handleCallExpr(E, Result, &This); 9685 } 9686 bool VisitInitListExpr(const InitListExpr *E, 9687 QualType AllocType = QualType()); 9688 bool VisitArrayInitLoopExpr(const ArrayInitLoopExpr *E); 9689 bool VisitCXXConstructExpr(const CXXConstructExpr *E); 9690 bool VisitCXXConstructExpr(const CXXConstructExpr *E, 9691 const LValue &Subobject, 9692 APValue *Value, QualType Type); 9693 bool VisitStringLiteral(const StringLiteral *E, 9694 QualType AllocType = QualType()) { 9695 expandStringLiteral(Info, E, Result, AllocType); 9696 return true; 9697 } 9698 }; 9699 } // end anonymous namespace 9700 9701 static bool EvaluateArray(const Expr *E, const LValue &This, 9702 APValue &Result, EvalInfo &Info) { 9703 assert(E->isRValue() && E->getType()->isArrayType() && "not an array rvalue"); 9704 return ArrayExprEvaluator(Info, This, Result).Visit(E); 9705 } 9706 9707 static bool EvaluateArrayNewInitList(EvalInfo &Info, LValue &This, 9708 APValue &Result, const InitListExpr *ILE, 9709 QualType AllocType) { 9710 assert(ILE->isRValue() && ILE->getType()->isArrayType() && 9711 "not an array rvalue"); 9712 return ArrayExprEvaluator(Info, This, Result) 9713 .VisitInitListExpr(ILE, AllocType); 9714 } 9715 9716 static bool EvaluateArrayNewConstructExpr(EvalInfo &Info, LValue &This, 9717 APValue &Result, 9718 const CXXConstructExpr *CCE, 9719 QualType AllocType) { 9720 assert(CCE->isRValue() && CCE->getType()->isArrayType() && 9721 "not an array rvalue"); 9722 return ArrayExprEvaluator(Info, This, Result) 9723 .VisitCXXConstructExpr(CCE, This, &Result, AllocType); 9724 } 9725 9726 // Return true iff the given array filler may depend on the element index. 9727 static bool MaybeElementDependentArrayFiller(const Expr *FillerExpr) { 9728 // For now, just whitelist non-class value-initialization and initialization 9729 // lists comprised of them. 9730 if (isa<ImplicitValueInitExpr>(FillerExpr)) 9731 return false; 9732 if (const InitListExpr *ILE = dyn_cast<InitListExpr>(FillerExpr)) { 9733 for (unsigned I = 0, E = ILE->getNumInits(); I != E; ++I) { 9734 if (MaybeElementDependentArrayFiller(ILE->getInit(I))) 9735 return true; 9736 } 9737 return false; 9738 } 9739 return true; 9740 } 9741 9742 bool ArrayExprEvaluator::VisitInitListExpr(const InitListExpr *E, 9743 QualType AllocType) { 9744 const ConstantArrayType *CAT = Info.Ctx.getAsConstantArrayType( 9745 AllocType.isNull() ? E->getType() : AllocType); 9746 if (!CAT) 9747 return Error(E); 9748 9749 // C++11 [dcl.init.string]p1: A char array [...] can be initialized by [...] 9750 // an appropriately-typed string literal enclosed in braces. 9751 if (E->isStringLiteralInit()) { 9752 auto *SL = dyn_cast<StringLiteral>(E->getInit(0)->IgnoreParens()); 9753 // FIXME: Support ObjCEncodeExpr here once we support it in 9754 // ArrayExprEvaluator generally. 9755 if (!SL) 9756 return Error(E); 9757 return VisitStringLiteral(SL, AllocType); 9758 } 9759 9760 bool Success = true; 9761 9762 assert((!Result.isArray() || Result.getArrayInitializedElts() == 0) && 9763 "zero-initialized array shouldn't have any initialized elts"); 9764 APValue Filler; 9765 if (Result.isArray() && Result.hasArrayFiller()) 9766 Filler = Result.getArrayFiller(); 9767 9768 unsigned NumEltsToInit = E->getNumInits(); 9769 unsigned NumElts = CAT->getSize().getZExtValue(); 9770 const Expr *FillerExpr = E->hasArrayFiller() ? E->getArrayFiller() : nullptr; 9771 9772 // If the initializer might depend on the array index, run it for each 9773 // array element. 9774 if (NumEltsToInit != NumElts && MaybeElementDependentArrayFiller(FillerExpr)) 9775 NumEltsToInit = NumElts; 9776 9777 LLVM_DEBUG(llvm::dbgs() << "The number of elements to initialize: " 9778 << NumEltsToInit << ".\n"); 9779 9780 Result = APValue(APValue::UninitArray(), NumEltsToInit, NumElts); 9781 9782 // If the array was previously zero-initialized, preserve the 9783 // zero-initialized values. 9784 if (Filler.hasValue()) { 9785 for (unsigned I = 0, E = Result.getArrayInitializedElts(); I != E; ++I) 9786 Result.getArrayInitializedElt(I) = Filler; 9787 if (Result.hasArrayFiller()) 9788 Result.getArrayFiller() = Filler; 9789 } 9790 9791 LValue Subobject = This; 9792 Subobject.addArray(Info, E, CAT); 9793 for (unsigned Index = 0; Index != NumEltsToInit; ++Index) { 9794 const Expr *Init = 9795 Index < E->getNumInits() ? E->getInit(Index) : FillerExpr; 9796 if (!EvaluateInPlace(Result.getArrayInitializedElt(Index), 9797 Info, Subobject, Init) || 9798 !HandleLValueArrayAdjustment(Info, Init, Subobject, 9799 CAT->getElementType(), 1)) { 9800 if (!Info.noteFailure()) 9801 return false; 9802 Success = false; 9803 } 9804 } 9805 9806 if (!Result.hasArrayFiller()) 9807 return Success; 9808 9809 // If we get here, we have a trivial filler, which we can just evaluate 9810 // once and splat over the rest of the array elements. 9811 assert(FillerExpr && "no array filler for incomplete init list"); 9812 return EvaluateInPlace(Result.getArrayFiller(), Info, Subobject, 9813 FillerExpr) && Success; 9814 } 9815 9816 bool ArrayExprEvaluator::VisitArrayInitLoopExpr(const ArrayInitLoopExpr *E) { 9817 LValue CommonLV; 9818 if (E->getCommonExpr() && 9819 !Evaluate(Info.CurrentCall->createTemporary( 9820 E->getCommonExpr(), 9821 getStorageType(Info.Ctx, E->getCommonExpr()), false, 9822 CommonLV), 9823 Info, E->getCommonExpr()->getSourceExpr())) 9824 return false; 9825 9826 auto *CAT = cast<ConstantArrayType>(E->getType()->castAsArrayTypeUnsafe()); 9827 9828 uint64_t Elements = CAT->getSize().getZExtValue(); 9829 Result = APValue(APValue::UninitArray(), Elements, Elements); 9830 9831 LValue Subobject = This; 9832 Subobject.addArray(Info, E, CAT); 9833 9834 bool Success = true; 9835 for (EvalInfo::ArrayInitLoopIndex Index(Info); Index != Elements; ++Index) { 9836 if (!EvaluateInPlace(Result.getArrayInitializedElt(Index), 9837 Info, Subobject, E->getSubExpr()) || 9838 !HandleLValueArrayAdjustment(Info, E, Subobject, 9839 CAT->getElementType(), 1)) { 9840 if (!Info.noteFailure()) 9841 return false; 9842 Success = false; 9843 } 9844 } 9845 9846 return Success; 9847 } 9848 9849 bool ArrayExprEvaluator::VisitCXXConstructExpr(const CXXConstructExpr *E) { 9850 return VisitCXXConstructExpr(E, This, &Result, E->getType()); 9851 } 9852 9853 bool ArrayExprEvaluator::VisitCXXConstructExpr(const CXXConstructExpr *E, 9854 const LValue &Subobject, 9855 APValue *Value, 9856 QualType Type) { 9857 bool HadZeroInit = Value->hasValue(); 9858 9859 if (const ConstantArrayType *CAT = Info.Ctx.getAsConstantArrayType(Type)) { 9860 unsigned N = CAT->getSize().getZExtValue(); 9861 9862 // Preserve the array filler if we had prior zero-initialization. 9863 APValue Filler = 9864 HadZeroInit && Value->hasArrayFiller() ? Value->getArrayFiller() 9865 : APValue(); 9866 9867 *Value = APValue(APValue::UninitArray(), N, N); 9868 9869 if (HadZeroInit) 9870 for (unsigned I = 0; I != N; ++I) 9871 Value->getArrayInitializedElt(I) = Filler; 9872 9873 // Initialize the elements. 9874 LValue ArrayElt = Subobject; 9875 ArrayElt.addArray(Info, E, CAT); 9876 for (unsigned I = 0; I != N; ++I) 9877 if (!VisitCXXConstructExpr(E, ArrayElt, &Value->getArrayInitializedElt(I), 9878 CAT->getElementType()) || 9879 !HandleLValueArrayAdjustment(Info, E, ArrayElt, 9880 CAT->getElementType(), 1)) 9881 return false; 9882 9883 return true; 9884 } 9885 9886 if (!Type->isRecordType()) 9887 return Error(E); 9888 9889 return RecordExprEvaluator(Info, Subobject, *Value) 9890 .VisitCXXConstructExpr(E, Type); 9891 } 9892 9893 //===----------------------------------------------------------------------===// 9894 // Integer Evaluation 9895 // 9896 // As a GNU extension, we support casting pointers to sufficiently-wide integer 9897 // types and back in constant folding. Integer values are thus represented 9898 // either as an integer-valued APValue, or as an lvalue-valued APValue. 9899 //===----------------------------------------------------------------------===// 9900 9901 namespace { 9902 class IntExprEvaluator 9903 : public ExprEvaluatorBase<IntExprEvaluator> { 9904 APValue &Result; 9905 public: 9906 IntExprEvaluator(EvalInfo &info, APValue &result) 9907 : ExprEvaluatorBaseTy(info), Result(result) {} 9908 9909 bool Success(const llvm::APSInt &SI, const Expr *E, APValue &Result) { 9910 assert(E->getType()->isIntegralOrEnumerationType() && 9911 "Invalid evaluation result."); 9912 assert(SI.isSigned() == E->getType()->isSignedIntegerOrEnumerationType() && 9913 "Invalid evaluation result."); 9914 assert(SI.getBitWidth() == Info.Ctx.getIntWidth(E->getType()) && 9915 "Invalid evaluation result."); 9916 Result = APValue(SI); 9917 return true; 9918 } 9919 bool Success(const llvm::APSInt &SI, const Expr *E) { 9920 return Success(SI, E, Result); 9921 } 9922 9923 bool Success(const llvm::APInt &I, const Expr *E, APValue &Result) { 9924 assert(E->getType()->isIntegralOrEnumerationType() && 9925 "Invalid evaluation result."); 9926 assert(I.getBitWidth() == Info.Ctx.getIntWidth(E->getType()) && 9927 "Invalid evaluation result."); 9928 Result = APValue(APSInt(I)); 9929 Result.getInt().setIsUnsigned( 9930 E->getType()->isUnsignedIntegerOrEnumerationType()); 9931 return true; 9932 } 9933 bool Success(const llvm::APInt &I, const Expr *E) { 9934 return Success(I, E, Result); 9935 } 9936 9937 bool Success(uint64_t Value, const Expr *E, APValue &Result) { 9938 assert(E->getType()->isIntegralOrEnumerationType() && 9939 "Invalid evaluation result."); 9940 Result = APValue(Info.Ctx.MakeIntValue(Value, E->getType())); 9941 return true; 9942 } 9943 bool Success(uint64_t Value, const Expr *E) { 9944 return Success(Value, E, Result); 9945 } 9946 9947 bool Success(CharUnits Size, const Expr *E) { 9948 return Success(Size.getQuantity(), E); 9949 } 9950 9951 bool Success(const APValue &V, const Expr *E) { 9952 if (V.isLValue() || V.isAddrLabelDiff() || V.isIndeterminate()) { 9953 Result = V; 9954 return true; 9955 } 9956 return Success(V.getInt(), E); 9957 } 9958 9959 bool ZeroInitialization(const Expr *E) { return Success(0, E); } 9960 9961 //===--------------------------------------------------------------------===// 9962 // Visitor Methods 9963 //===--------------------------------------------------------------------===// 9964 9965 bool VisitConstantExpr(const ConstantExpr *E); 9966 9967 bool VisitIntegerLiteral(const IntegerLiteral *E) { 9968 return Success(E->getValue(), E); 9969 } 9970 bool VisitCharacterLiteral(const CharacterLiteral *E) { 9971 return Success(E->getValue(), E); 9972 } 9973 9974 bool CheckReferencedDecl(const Expr *E, const Decl *D); 9975 bool VisitDeclRefExpr(const DeclRefExpr *E) { 9976 if (CheckReferencedDecl(E, E->getDecl())) 9977 return true; 9978 9979 return ExprEvaluatorBaseTy::VisitDeclRefExpr(E); 9980 } 9981 bool VisitMemberExpr(const MemberExpr *E) { 9982 if (CheckReferencedDecl(E, E->getMemberDecl())) { 9983 VisitIgnoredBaseExpression(E->getBase()); 9984 return true; 9985 } 9986 9987 return ExprEvaluatorBaseTy::VisitMemberExpr(E); 9988 } 9989 9990 bool VisitCallExpr(const CallExpr *E); 9991 bool VisitBuiltinCallExpr(const CallExpr *E, unsigned BuiltinOp); 9992 bool VisitBinaryOperator(const BinaryOperator *E); 9993 bool VisitOffsetOfExpr(const OffsetOfExpr *E); 9994 bool VisitUnaryOperator(const UnaryOperator *E); 9995 9996 bool VisitCastExpr(const CastExpr* E); 9997 bool VisitUnaryExprOrTypeTraitExpr(const UnaryExprOrTypeTraitExpr *E); 9998 9999 bool VisitCXXBoolLiteralExpr(const CXXBoolLiteralExpr *E) { 10000 return Success(E->getValue(), E); 10001 } 10002 10003 bool VisitObjCBoolLiteralExpr(const ObjCBoolLiteralExpr *E) { 10004 return Success(E->getValue(), E); 10005 } 10006 10007 bool VisitArrayInitIndexExpr(const ArrayInitIndexExpr *E) { 10008 if (Info.ArrayInitIndex == uint64_t(-1)) { 10009 // We were asked to evaluate this subexpression independent of the 10010 // enclosing ArrayInitLoopExpr. We can't do that. 10011 Info.FFDiag(E); 10012 return false; 10013 } 10014 return Success(Info.ArrayInitIndex, E); 10015 } 10016 10017 // Note, GNU defines __null as an integer, not a pointer. 10018 bool VisitGNUNullExpr(const GNUNullExpr *E) { 10019 return ZeroInitialization(E); 10020 } 10021 10022 bool VisitTypeTraitExpr(const TypeTraitExpr *E) { 10023 return Success(E->getValue(), E); 10024 } 10025 10026 bool VisitArrayTypeTraitExpr(const ArrayTypeTraitExpr *E) { 10027 return Success(E->getValue(), E); 10028 } 10029 10030 bool VisitExpressionTraitExpr(const ExpressionTraitExpr *E) { 10031 return Success(E->getValue(), E); 10032 } 10033 10034 bool VisitUnaryReal(const UnaryOperator *E); 10035 bool VisitUnaryImag(const UnaryOperator *E); 10036 10037 bool VisitCXXNoexceptExpr(const CXXNoexceptExpr *E); 10038 bool VisitSizeOfPackExpr(const SizeOfPackExpr *E); 10039 bool VisitSourceLocExpr(const SourceLocExpr *E); 10040 bool VisitConceptSpecializationExpr(const ConceptSpecializationExpr *E); 10041 bool VisitRequiresExpr(const RequiresExpr *E); 10042 // FIXME: Missing: array subscript of vector, member of vector 10043 }; 10044 10045 class FixedPointExprEvaluator 10046 : public ExprEvaluatorBase<FixedPointExprEvaluator> { 10047 APValue &Result; 10048 10049 public: 10050 FixedPointExprEvaluator(EvalInfo &info, APValue &result) 10051 : ExprEvaluatorBaseTy(info), Result(result) {} 10052 10053 bool Success(const llvm::APInt &I, const Expr *E) { 10054 return Success( 10055 APFixedPoint(I, Info.Ctx.getFixedPointSemantics(E->getType())), E); 10056 } 10057 10058 bool Success(uint64_t Value, const Expr *E) { 10059 return Success( 10060 APFixedPoint(Value, Info.Ctx.getFixedPointSemantics(E->getType())), E); 10061 } 10062 10063 bool Success(const APValue &V, const Expr *E) { 10064 return Success(V.getFixedPoint(), E); 10065 } 10066 10067 bool Success(const APFixedPoint &V, const Expr *E) { 10068 assert(E->getType()->isFixedPointType() && "Invalid evaluation result."); 10069 assert(V.getWidth() == Info.Ctx.getIntWidth(E->getType()) && 10070 "Invalid evaluation result."); 10071 Result = APValue(V); 10072 return true; 10073 } 10074 10075 //===--------------------------------------------------------------------===// 10076 // Visitor Methods 10077 //===--------------------------------------------------------------------===// 10078 10079 bool VisitFixedPointLiteral(const FixedPointLiteral *E) { 10080 return Success(E->getValue(), E); 10081 } 10082 10083 bool VisitCastExpr(const CastExpr *E); 10084 bool VisitUnaryOperator(const UnaryOperator *E); 10085 bool VisitBinaryOperator(const BinaryOperator *E); 10086 }; 10087 } // end anonymous namespace 10088 10089 /// EvaluateIntegerOrLValue - Evaluate an rvalue integral-typed expression, and 10090 /// produce either the integer value or a pointer. 10091 /// 10092 /// GCC has a heinous extension which folds casts between pointer types and 10093 /// pointer-sized integral types. We support this by allowing the evaluation of 10094 /// an integer rvalue to produce a pointer (represented as an lvalue) instead. 10095 /// Some simple arithmetic on such values is supported (they are treated much 10096 /// like char*). 10097 static bool EvaluateIntegerOrLValue(const Expr *E, APValue &Result, 10098 EvalInfo &Info) { 10099 assert(E->isRValue() && E->getType()->isIntegralOrEnumerationType()); 10100 return IntExprEvaluator(Info, Result).Visit(E); 10101 } 10102 10103 static bool EvaluateInteger(const Expr *E, APSInt &Result, EvalInfo &Info) { 10104 APValue Val; 10105 if (!EvaluateIntegerOrLValue(E, Val, Info)) 10106 return false; 10107 if (!Val.isInt()) { 10108 // FIXME: It would be better to produce the diagnostic for casting 10109 // a pointer to an integer. 10110 Info.FFDiag(E, diag::note_invalid_subexpr_in_const_expr); 10111 return false; 10112 } 10113 Result = Val.getInt(); 10114 return true; 10115 } 10116 10117 bool IntExprEvaluator::VisitSourceLocExpr(const SourceLocExpr *E) { 10118 APValue Evaluated = E->EvaluateInContext( 10119 Info.Ctx, Info.CurrentCall->CurSourceLocExprScope.getDefaultExpr()); 10120 return Success(Evaluated, E); 10121 } 10122 10123 static bool EvaluateFixedPoint(const Expr *E, APFixedPoint &Result, 10124 EvalInfo &Info) { 10125 if (E->getType()->isFixedPointType()) { 10126 APValue Val; 10127 if (!FixedPointExprEvaluator(Info, Val).Visit(E)) 10128 return false; 10129 if (!Val.isFixedPoint()) 10130 return false; 10131 10132 Result = Val.getFixedPoint(); 10133 return true; 10134 } 10135 return false; 10136 } 10137 10138 static bool EvaluateFixedPointOrInteger(const Expr *E, APFixedPoint &Result, 10139 EvalInfo &Info) { 10140 if (E->getType()->isIntegerType()) { 10141 auto FXSema = Info.Ctx.getFixedPointSemantics(E->getType()); 10142 APSInt Val; 10143 if (!EvaluateInteger(E, Val, Info)) 10144 return false; 10145 Result = APFixedPoint(Val, FXSema); 10146 return true; 10147 } else if (E->getType()->isFixedPointType()) { 10148 return EvaluateFixedPoint(E, Result, Info); 10149 } 10150 return false; 10151 } 10152 10153 /// Check whether the given declaration can be directly converted to an integral 10154 /// rvalue. If not, no diagnostic is produced; there are other things we can 10155 /// try. 10156 bool IntExprEvaluator::CheckReferencedDecl(const Expr* E, const Decl* D) { 10157 // Enums are integer constant exprs. 10158 if (const EnumConstantDecl *ECD = dyn_cast<EnumConstantDecl>(D)) { 10159 // Check for signedness/width mismatches between E type and ECD value. 10160 bool SameSign = (ECD->getInitVal().isSigned() 10161 == E->getType()->isSignedIntegerOrEnumerationType()); 10162 bool SameWidth = (ECD->getInitVal().getBitWidth() 10163 == Info.Ctx.getIntWidth(E->getType())); 10164 if (SameSign && SameWidth) 10165 return Success(ECD->getInitVal(), E); 10166 else { 10167 // Get rid of mismatch (otherwise Success assertions will fail) 10168 // by computing a new value matching the type of E. 10169 llvm::APSInt Val = ECD->getInitVal(); 10170 if (!SameSign) 10171 Val.setIsSigned(!ECD->getInitVal().isSigned()); 10172 if (!SameWidth) 10173 Val = Val.extOrTrunc(Info.Ctx.getIntWidth(E->getType())); 10174 return Success(Val, E); 10175 } 10176 } 10177 return false; 10178 } 10179 10180 /// Values returned by __builtin_classify_type, chosen to match the values 10181 /// produced by GCC's builtin. 10182 enum class GCCTypeClass { 10183 None = -1, 10184 Void = 0, 10185 Integer = 1, 10186 // GCC reserves 2 for character types, but instead classifies them as 10187 // integers. 10188 Enum = 3, 10189 Bool = 4, 10190 Pointer = 5, 10191 // GCC reserves 6 for references, but appears to never use it (because 10192 // expressions never have reference type, presumably). 10193 PointerToDataMember = 7, 10194 RealFloat = 8, 10195 Complex = 9, 10196 // GCC reserves 10 for functions, but does not use it since GCC version 6 due 10197 // to decay to pointer. (Prior to version 6 it was only used in C++ mode). 10198 // GCC claims to reserve 11 for pointers to member functions, but *actually* 10199 // uses 12 for that purpose, same as for a class or struct. Maybe it 10200 // internally implements a pointer to member as a struct? Who knows. 10201 PointerToMemberFunction = 12, // Not a bug, see above. 10202 ClassOrStruct = 12, 10203 Union = 13, 10204 // GCC reserves 14 for arrays, but does not use it since GCC version 6 due to 10205 // decay to pointer. (Prior to version 6 it was only used in C++ mode). 10206 // GCC reserves 15 for strings, but actually uses 5 (pointer) for string 10207 // literals. 10208 }; 10209 10210 /// EvaluateBuiltinClassifyType - Evaluate __builtin_classify_type the same way 10211 /// as GCC. 10212 static GCCTypeClass 10213 EvaluateBuiltinClassifyType(QualType T, const LangOptions &LangOpts) { 10214 assert(!T->isDependentType() && "unexpected dependent type"); 10215 10216 QualType CanTy = T.getCanonicalType(); 10217 const BuiltinType *BT = dyn_cast<BuiltinType>(CanTy); 10218 10219 switch (CanTy->getTypeClass()) { 10220 #define TYPE(ID, BASE) 10221 #define DEPENDENT_TYPE(ID, BASE) case Type::ID: 10222 #define NON_CANONICAL_TYPE(ID, BASE) case Type::ID: 10223 #define NON_CANONICAL_UNLESS_DEPENDENT_TYPE(ID, BASE) case Type::ID: 10224 #include "clang/AST/TypeNodes.inc" 10225 case Type::Auto: 10226 case Type::DeducedTemplateSpecialization: 10227 llvm_unreachable("unexpected non-canonical or dependent type"); 10228 10229 case Type::Builtin: 10230 switch (BT->getKind()) { 10231 #define BUILTIN_TYPE(ID, SINGLETON_ID) 10232 #define SIGNED_TYPE(ID, SINGLETON_ID) \ 10233 case BuiltinType::ID: return GCCTypeClass::Integer; 10234 #define FLOATING_TYPE(ID, SINGLETON_ID) \ 10235 case BuiltinType::ID: return GCCTypeClass::RealFloat; 10236 #define PLACEHOLDER_TYPE(ID, SINGLETON_ID) \ 10237 case BuiltinType::ID: break; 10238 #include "clang/AST/BuiltinTypes.def" 10239 case BuiltinType::Void: 10240 return GCCTypeClass::Void; 10241 10242 case BuiltinType::Bool: 10243 return GCCTypeClass::Bool; 10244 10245 case BuiltinType::Char_U: 10246 case BuiltinType::UChar: 10247 case BuiltinType::WChar_U: 10248 case BuiltinType::Char8: 10249 case BuiltinType::Char16: 10250 case BuiltinType::Char32: 10251 case BuiltinType::UShort: 10252 case BuiltinType::UInt: 10253 case BuiltinType::ULong: 10254 case BuiltinType::ULongLong: 10255 case BuiltinType::UInt128: 10256 return GCCTypeClass::Integer; 10257 10258 case BuiltinType::UShortAccum: 10259 case BuiltinType::UAccum: 10260 case BuiltinType::ULongAccum: 10261 case BuiltinType::UShortFract: 10262 case BuiltinType::UFract: 10263 case BuiltinType::ULongFract: 10264 case BuiltinType::SatUShortAccum: 10265 case BuiltinType::SatUAccum: 10266 case BuiltinType::SatULongAccum: 10267 case BuiltinType::SatUShortFract: 10268 case BuiltinType::SatUFract: 10269 case BuiltinType::SatULongFract: 10270 return GCCTypeClass::None; 10271 10272 case BuiltinType::NullPtr: 10273 10274 case BuiltinType::ObjCId: 10275 case BuiltinType::ObjCClass: 10276 case BuiltinType::ObjCSel: 10277 #define IMAGE_TYPE(ImgType, Id, SingletonId, Access, Suffix) \ 10278 case BuiltinType::Id: 10279 #include "clang/Basic/OpenCLImageTypes.def" 10280 #define EXT_OPAQUE_TYPE(ExtType, Id, Ext) \ 10281 case BuiltinType::Id: 10282 #include "clang/Basic/OpenCLExtensionTypes.def" 10283 case BuiltinType::OCLSampler: 10284 case BuiltinType::OCLEvent: 10285 case BuiltinType::OCLClkEvent: 10286 case BuiltinType::OCLQueue: 10287 case BuiltinType::OCLReserveID: 10288 #define SVE_TYPE(Name, Id, SingletonId) \ 10289 case BuiltinType::Id: 10290 #include "clang/Basic/AArch64SVEACLETypes.def" 10291 return GCCTypeClass::None; 10292 10293 case BuiltinType::Dependent: 10294 llvm_unreachable("unexpected dependent type"); 10295 }; 10296 llvm_unreachable("unexpected placeholder type"); 10297 10298 case Type::Enum: 10299 return LangOpts.CPlusPlus ? GCCTypeClass::Enum : GCCTypeClass::Integer; 10300 10301 case Type::Pointer: 10302 case Type::ConstantArray: 10303 case Type::VariableArray: 10304 case Type::IncompleteArray: 10305 case Type::FunctionNoProto: 10306 case Type::FunctionProto: 10307 return GCCTypeClass::Pointer; 10308 10309 case Type::MemberPointer: 10310 return CanTy->isMemberDataPointerType() 10311 ? GCCTypeClass::PointerToDataMember 10312 : GCCTypeClass::PointerToMemberFunction; 10313 10314 case Type::Complex: 10315 return GCCTypeClass::Complex; 10316 10317 case Type::Record: 10318 return CanTy->isUnionType() ? GCCTypeClass::Union 10319 : GCCTypeClass::ClassOrStruct; 10320 10321 case Type::Atomic: 10322 // GCC classifies _Atomic T the same as T. 10323 return EvaluateBuiltinClassifyType( 10324 CanTy->castAs<AtomicType>()->getValueType(), LangOpts); 10325 10326 case Type::BlockPointer: 10327 case Type::Vector: 10328 case Type::ExtVector: 10329 case Type::ObjCObject: 10330 case Type::ObjCInterface: 10331 case Type::ObjCObjectPointer: 10332 case Type::Pipe: 10333 // GCC classifies vectors as None. We follow its lead and classify all 10334 // other types that don't fit into the regular classification the same way. 10335 return GCCTypeClass::None; 10336 10337 case Type::LValueReference: 10338 case Type::RValueReference: 10339 llvm_unreachable("invalid type for expression"); 10340 } 10341 10342 llvm_unreachable("unexpected type class"); 10343 } 10344 10345 /// EvaluateBuiltinClassifyType - Evaluate __builtin_classify_type the same way 10346 /// as GCC. 10347 static GCCTypeClass 10348 EvaluateBuiltinClassifyType(const CallExpr *E, const LangOptions &LangOpts) { 10349 // If no argument was supplied, default to None. This isn't 10350 // ideal, however it is what gcc does. 10351 if (E->getNumArgs() == 0) 10352 return GCCTypeClass::None; 10353 10354 // FIXME: Bizarrely, GCC treats a call with more than one argument as not 10355 // being an ICE, but still folds it to a constant using the type of the first 10356 // argument. 10357 return EvaluateBuiltinClassifyType(E->getArg(0)->getType(), LangOpts); 10358 } 10359 10360 /// EvaluateBuiltinConstantPForLValue - Determine the result of 10361 /// __builtin_constant_p when applied to the given pointer. 10362 /// 10363 /// A pointer is only "constant" if it is null (or a pointer cast to integer) 10364 /// or it points to the first character of a string literal. 10365 static bool EvaluateBuiltinConstantPForLValue(const APValue &LV) { 10366 APValue::LValueBase Base = LV.getLValueBase(); 10367 if (Base.isNull()) { 10368 // A null base is acceptable. 10369 return true; 10370 } else if (const Expr *E = Base.dyn_cast<const Expr *>()) { 10371 if (!isa<StringLiteral>(E)) 10372 return false; 10373 return LV.getLValueOffset().isZero(); 10374 } else if (Base.is<TypeInfoLValue>()) { 10375 // Surprisingly, GCC considers __builtin_constant_p(&typeid(int)) to 10376 // evaluate to true. 10377 return true; 10378 } else { 10379 // Any other base is not constant enough for GCC. 10380 return false; 10381 } 10382 } 10383 10384 /// EvaluateBuiltinConstantP - Evaluate __builtin_constant_p as similarly to 10385 /// GCC as we can manage. 10386 static bool EvaluateBuiltinConstantP(EvalInfo &Info, const Expr *Arg) { 10387 // This evaluation is not permitted to have side-effects, so evaluate it in 10388 // a speculative evaluation context. 10389 SpeculativeEvaluationRAII SpeculativeEval(Info); 10390 10391 // Constant-folding is always enabled for the operand of __builtin_constant_p 10392 // (even when the enclosing evaluation context otherwise requires a strict 10393 // language-specific constant expression). 10394 FoldConstant Fold(Info, true); 10395 10396 QualType ArgType = Arg->getType(); 10397 10398 // __builtin_constant_p always has one operand. The rules which gcc follows 10399 // are not precisely documented, but are as follows: 10400 // 10401 // - If the operand is of integral, floating, complex or enumeration type, 10402 // and can be folded to a known value of that type, it returns 1. 10403 // - If the operand can be folded to a pointer to the first character 10404 // of a string literal (or such a pointer cast to an integral type) 10405 // or to a null pointer or an integer cast to a pointer, it returns 1. 10406 // 10407 // Otherwise, it returns 0. 10408 // 10409 // FIXME: GCC also intends to return 1 for literals of aggregate types, but 10410 // its support for this did not work prior to GCC 9 and is not yet well 10411 // understood. 10412 if (ArgType->isIntegralOrEnumerationType() || ArgType->isFloatingType() || 10413 ArgType->isAnyComplexType() || ArgType->isPointerType() || 10414 ArgType->isNullPtrType()) { 10415 APValue V; 10416 if (!::EvaluateAsRValue(Info, Arg, V)) { 10417 Fold.keepDiagnostics(); 10418 return false; 10419 } 10420 10421 // For a pointer (possibly cast to integer), there are special rules. 10422 if (V.getKind() == APValue::LValue) 10423 return EvaluateBuiltinConstantPForLValue(V); 10424 10425 // Otherwise, any constant value is good enough. 10426 return V.hasValue(); 10427 } 10428 10429 // Anything else isn't considered to be sufficiently constant. 10430 return false; 10431 } 10432 10433 /// Retrieves the "underlying object type" of the given expression, 10434 /// as used by __builtin_object_size. 10435 static QualType getObjectType(APValue::LValueBase B) { 10436 if (const ValueDecl *D = B.dyn_cast<const ValueDecl*>()) { 10437 if (const VarDecl *VD = dyn_cast<VarDecl>(D)) 10438 return VD->getType(); 10439 } else if (const Expr *E = B.dyn_cast<const Expr*>()) { 10440 if (isa<CompoundLiteralExpr>(E)) 10441 return E->getType(); 10442 } else if (B.is<TypeInfoLValue>()) { 10443 return B.getTypeInfoType(); 10444 } else if (B.is<DynamicAllocLValue>()) { 10445 return B.getDynamicAllocType(); 10446 } 10447 10448 return QualType(); 10449 } 10450 10451 /// A more selective version of E->IgnoreParenCasts for 10452 /// tryEvaluateBuiltinObjectSize. This ignores some casts/parens that serve only 10453 /// to change the type of E. 10454 /// Ex. For E = `(short*)((char*)(&foo))`, returns `&foo` 10455 /// 10456 /// Always returns an RValue with a pointer representation. 10457 static const Expr *ignorePointerCastsAndParens(const Expr *E) { 10458 assert(E->isRValue() && E->getType()->hasPointerRepresentation()); 10459 10460 auto *NoParens = E->IgnoreParens(); 10461 auto *Cast = dyn_cast<CastExpr>(NoParens); 10462 if (Cast == nullptr) 10463 return NoParens; 10464 10465 // We only conservatively allow a few kinds of casts, because this code is 10466 // inherently a simple solution that seeks to support the common case. 10467 auto CastKind = Cast->getCastKind(); 10468 if (CastKind != CK_NoOp && CastKind != CK_BitCast && 10469 CastKind != CK_AddressSpaceConversion) 10470 return NoParens; 10471 10472 auto *SubExpr = Cast->getSubExpr(); 10473 if (!SubExpr->getType()->hasPointerRepresentation() || !SubExpr->isRValue()) 10474 return NoParens; 10475 return ignorePointerCastsAndParens(SubExpr); 10476 } 10477 10478 /// Checks to see if the given LValue's Designator is at the end of the LValue's 10479 /// record layout. e.g. 10480 /// struct { struct { int a, b; } fst, snd; } obj; 10481 /// obj.fst // no 10482 /// obj.snd // yes 10483 /// obj.fst.a // no 10484 /// obj.fst.b // no 10485 /// obj.snd.a // no 10486 /// obj.snd.b // yes 10487 /// 10488 /// Please note: this function is specialized for how __builtin_object_size 10489 /// views "objects". 10490 /// 10491 /// If this encounters an invalid RecordDecl or otherwise cannot determine the 10492 /// correct result, it will always return true. 10493 static bool isDesignatorAtObjectEnd(const ASTContext &Ctx, const LValue &LVal) { 10494 assert(!LVal.Designator.Invalid); 10495 10496 auto IsLastOrInvalidFieldDecl = [&Ctx](const FieldDecl *FD, bool &Invalid) { 10497 const RecordDecl *Parent = FD->getParent(); 10498 Invalid = Parent->isInvalidDecl(); 10499 if (Invalid || Parent->isUnion()) 10500 return true; 10501 const ASTRecordLayout &Layout = Ctx.getASTRecordLayout(Parent); 10502 return FD->getFieldIndex() + 1 == Layout.getFieldCount(); 10503 }; 10504 10505 auto &Base = LVal.getLValueBase(); 10506 if (auto *ME = dyn_cast_or_null<MemberExpr>(Base.dyn_cast<const Expr *>())) { 10507 if (auto *FD = dyn_cast<FieldDecl>(ME->getMemberDecl())) { 10508 bool Invalid; 10509 if (!IsLastOrInvalidFieldDecl(FD, Invalid)) 10510 return Invalid; 10511 } else if (auto *IFD = dyn_cast<IndirectFieldDecl>(ME->getMemberDecl())) { 10512 for (auto *FD : IFD->chain()) { 10513 bool Invalid; 10514 if (!IsLastOrInvalidFieldDecl(cast<FieldDecl>(FD), Invalid)) 10515 return Invalid; 10516 } 10517 } 10518 } 10519 10520 unsigned I = 0; 10521 QualType BaseType = getType(Base); 10522 if (LVal.Designator.FirstEntryIsAnUnsizedArray) { 10523 // If we don't know the array bound, conservatively assume we're looking at 10524 // the final array element. 10525 ++I; 10526 if (BaseType->isIncompleteArrayType()) 10527 BaseType = Ctx.getAsArrayType(BaseType)->getElementType(); 10528 else 10529 BaseType = BaseType->castAs<PointerType>()->getPointeeType(); 10530 } 10531 10532 for (unsigned E = LVal.Designator.Entries.size(); I != E; ++I) { 10533 const auto &Entry = LVal.Designator.Entries[I]; 10534 if (BaseType->isArrayType()) { 10535 // Because __builtin_object_size treats arrays as objects, we can ignore 10536 // the index iff this is the last array in the Designator. 10537 if (I + 1 == E) 10538 return true; 10539 const auto *CAT = cast<ConstantArrayType>(Ctx.getAsArrayType(BaseType)); 10540 uint64_t Index = Entry.getAsArrayIndex(); 10541 if (Index + 1 != CAT->getSize()) 10542 return false; 10543 BaseType = CAT->getElementType(); 10544 } else if (BaseType->isAnyComplexType()) { 10545 const auto *CT = BaseType->castAs<ComplexType>(); 10546 uint64_t Index = Entry.getAsArrayIndex(); 10547 if (Index != 1) 10548 return false; 10549 BaseType = CT->getElementType(); 10550 } else if (auto *FD = getAsField(Entry)) { 10551 bool Invalid; 10552 if (!IsLastOrInvalidFieldDecl(FD, Invalid)) 10553 return Invalid; 10554 BaseType = FD->getType(); 10555 } else { 10556 assert(getAsBaseClass(Entry) && "Expecting cast to a base class"); 10557 return false; 10558 } 10559 } 10560 return true; 10561 } 10562 10563 /// Tests to see if the LValue has a user-specified designator (that isn't 10564 /// necessarily valid). Note that this always returns 'true' if the LValue has 10565 /// an unsized array as its first designator entry, because there's currently no 10566 /// way to tell if the user typed *foo or foo[0]. 10567 static bool refersToCompleteObject(const LValue &LVal) { 10568 if (LVal.Designator.Invalid) 10569 return false; 10570 10571 if (!LVal.Designator.Entries.empty()) 10572 return LVal.Designator.isMostDerivedAnUnsizedArray(); 10573 10574 if (!LVal.InvalidBase) 10575 return true; 10576 10577 // If `E` is a MemberExpr, then the first part of the designator is hiding in 10578 // the LValueBase. 10579 const auto *E = LVal.Base.dyn_cast<const Expr *>(); 10580 return !E || !isa<MemberExpr>(E); 10581 } 10582 10583 /// Attempts to detect a user writing into a piece of memory that's impossible 10584 /// to figure out the size of by just using types. 10585 static bool isUserWritingOffTheEnd(const ASTContext &Ctx, const LValue &LVal) { 10586 const SubobjectDesignator &Designator = LVal.Designator; 10587 // Notes: 10588 // - Users can only write off of the end when we have an invalid base. Invalid 10589 // bases imply we don't know where the memory came from. 10590 // - We used to be a bit more aggressive here; we'd only be conservative if 10591 // the array at the end was flexible, or if it had 0 or 1 elements. This 10592 // broke some common standard library extensions (PR30346), but was 10593 // otherwise seemingly fine. It may be useful to reintroduce this behavior 10594 // with some sort of whitelist. OTOH, it seems that GCC is always 10595 // conservative with the last element in structs (if it's an array), so our 10596 // current behavior is more compatible than a whitelisting approach would 10597 // be. 10598 return LVal.InvalidBase && 10599 Designator.Entries.size() == Designator.MostDerivedPathLength && 10600 Designator.MostDerivedIsArrayElement && 10601 isDesignatorAtObjectEnd(Ctx, LVal); 10602 } 10603 10604 /// Converts the given APInt to CharUnits, assuming the APInt is unsigned. 10605 /// Fails if the conversion would cause loss of precision. 10606 static bool convertUnsignedAPIntToCharUnits(const llvm::APInt &Int, 10607 CharUnits &Result) { 10608 auto CharUnitsMax = std::numeric_limits<CharUnits::QuantityType>::max(); 10609 if (Int.ugt(CharUnitsMax)) 10610 return false; 10611 Result = CharUnits::fromQuantity(Int.getZExtValue()); 10612 return true; 10613 } 10614 10615 /// Helper for tryEvaluateBuiltinObjectSize -- Given an LValue, this will 10616 /// determine how many bytes exist from the beginning of the object to either 10617 /// the end of the current subobject, or the end of the object itself, depending 10618 /// on what the LValue looks like + the value of Type. 10619 /// 10620 /// If this returns false, the value of Result is undefined. 10621 static bool determineEndOffset(EvalInfo &Info, SourceLocation ExprLoc, 10622 unsigned Type, const LValue &LVal, 10623 CharUnits &EndOffset) { 10624 bool DetermineForCompleteObject = refersToCompleteObject(LVal); 10625 10626 auto CheckedHandleSizeof = [&](QualType Ty, CharUnits &Result) { 10627 if (Ty.isNull() || Ty->isIncompleteType() || Ty->isFunctionType()) 10628 return false; 10629 return HandleSizeof(Info, ExprLoc, Ty, Result); 10630 }; 10631 10632 // We want to evaluate the size of the entire object. This is a valid fallback 10633 // for when Type=1 and the designator is invalid, because we're asked for an 10634 // upper-bound. 10635 if (!(Type & 1) || LVal.Designator.Invalid || DetermineForCompleteObject) { 10636 // Type=3 wants a lower bound, so we can't fall back to this. 10637 if (Type == 3 && !DetermineForCompleteObject) 10638 return false; 10639 10640 llvm::APInt APEndOffset; 10641 if (isBaseAnAllocSizeCall(LVal.getLValueBase()) && 10642 getBytesReturnedByAllocSizeCall(Info.Ctx, LVal, APEndOffset)) 10643 return convertUnsignedAPIntToCharUnits(APEndOffset, EndOffset); 10644 10645 if (LVal.InvalidBase) 10646 return false; 10647 10648 QualType BaseTy = getObjectType(LVal.getLValueBase()); 10649 return CheckedHandleSizeof(BaseTy, EndOffset); 10650 } 10651 10652 // We want to evaluate the size of a subobject. 10653 const SubobjectDesignator &Designator = LVal.Designator; 10654 10655 // The following is a moderately common idiom in C: 10656 // 10657 // struct Foo { int a; char c[1]; }; 10658 // struct Foo *F = (struct Foo *)malloc(sizeof(struct Foo) + strlen(Bar)); 10659 // strcpy(&F->c[0], Bar); 10660 // 10661 // In order to not break too much legacy code, we need to support it. 10662 if (isUserWritingOffTheEnd(Info.Ctx, LVal)) { 10663 // If we can resolve this to an alloc_size call, we can hand that back, 10664 // because we know for certain how many bytes there are to write to. 10665 llvm::APInt APEndOffset; 10666 if (isBaseAnAllocSizeCall(LVal.getLValueBase()) && 10667 getBytesReturnedByAllocSizeCall(Info.Ctx, LVal, APEndOffset)) 10668 return convertUnsignedAPIntToCharUnits(APEndOffset, EndOffset); 10669 10670 // If we cannot determine the size of the initial allocation, then we can't 10671 // given an accurate upper-bound. However, we are still able to give 10672 // conservative lower-bounds for Type=3. 10673 if (Type == 1) 10674 return false; 10675 } 10676 10677 CharUnits BytesPerElem; 10678 if (!CheckedHandleSizeof(Designator.MostDerivedType, BytesPerElem)) 10679 return false; 10680 10681 // According to the GCC documentation, we want the size of the subobject 10682 // denoted by the pointer. But that's not quite right -- what we actually 10683 // want is the size of the immediately-enclosing array, if there is one. 10684 int64_t ElemsRemaining; 10685 if (Designator.MostDerivedIsArrayElement && 10686 Designator.Entries.size() == Designator.MostDerivedPathLength) { 10687 uint64_t ArraySize = Designator.getMostDerivedArraySize(); 10688 uint64_t ArrayIndex = Designator.Entries.back().getAsArrayIndex(); 10689 ElemsRemaining = ArraySize <= ArrayIndex ? 0 : ArraySize - ArrayIndex; 10690 } else { 10691 ElemsRemaining = Designator.isOnePastTheEnd() ? 0 : 1; 10692 } 10693 10694 EndOffset = LVal.getLValueOffset() + BytesPerElem * ElemsRemaining; 10695 return true; 10696 } 10697 10698 /// Tries to evaluate the __builtin_object_size for @p E. If successful, 10699 /// returns true and stores the result in @p Size. 10700 /// 10701 /// If @p WasError is non-null, this will report whether the failure to evaluate 10702 /// is to be treated as an Error in IntExprEvaluator. 10703 static bool tryEvaluateBuiltinObjectSize(const Expr *E, unsigned Type, 10704 EvalInfo &Info, uint64_t &Size) { 10705 // Determine the denoted object. 10706 LValue LVal; 10707 { 10708 // The operand of __builtin_object_size is never evaluated for side-effects. 10709 // If there are any, but we can determine the pointed-to object anyway, then 10710 // ignore the side-effects. 10711 SpeculativeEvaluationRAII SpeculativeEval(Info); 10712 IgnoreSideEffectsRAII Fold(Info); 10713 10714 if (E->isGLValue()) { 10715 // It's possible for us to be given GLValues if we're called via 10716 // Expr::tryEvaluateObjectSize. 10717 APValue RVal; 10718 if (!EvaluateAsRValue(Info, E, RVal)) 10719 return false; 10720 LVal.setFrom(Info.Ctx, RVal); 10721 } else if (!EvaluatePointer(ignorePointerCastsAndParens(E), LVal, Info, 10722 /*InvalidBaseOK=*/true)) 10723 return false; 10724 } 10725 10726 // If we point to before the start of the object, there are no accessible 10727 // bytes. 10728 if (LVal.getLValueOffset().isNegative()) { 10729 Size = 0; 10730 return true; 10731 } 10732 10733 CharUnits EndOffset; 10734 if (!determineEndOffset(Info, E->getExprLoc(), Type, LVal, EndOffset)) 10735 return false; 10736 10737 // If we've fallen outside of the end offset, just pretend there's nothing to 10738 // write to/read from. 10739 if (EndOffset <= LVal.getLValueOffset()) 10740 Size = 0; 10741 else 10742 Size = (EndOffset - LVal.getLValueOffset()).getQuantity(); 10743 return true; 10744 } 10745 10746 bool IntExprEvaluator::VisitConstantExpr(const ConstantExpr *E) { 10747 llvm::SaveAndRestore<bool> InConstantContext(Info.InConstantContext, true); 10748 if (E->getResultAPValueKind() != APValue::None) 10749 return Success(E->getAPValueResult(), E); 10750 return ExprEvaluatorBaseTy::VisitConstantExpr(E); 10751 } 10752 10753 bool IntExprEvaluator::VisitCallExpr(const CallExpr *E) { 10754 if (unsigned BuiltinOp = E->getBuiltinCallee()) 10755 return VisitBuiltinCallExpr(E, BuiltinOp); 10756 10757 return ExprEvaluatorBaseTy::VisitCallExpr(E); 10758 } 10759 10760 static bool getBuiltinAlignArguments(const CallExpr *E, EvalInfo &Info, 10761 APValue &Val, APSInt &Alignment) { 10762 QualType SrcTy = E->getArg(0)->getType(); 10763 if (!getAlignmentArgument(E->getArg(1), SrcTy, Info, Alignment)) 10764 return false; 10765 // Even though we are evaluating integer expressions we could get a pointer 10766 // argument for the __builtin_is_aligned() case. 10767 if (SrcTy->isPointerType()) { 10768 LValue Ptr; 10769 if (!EvaluatePointer(E->getArg(0), Ptr, Info)) 10770 return false; 10771 Ptr.moveInto(Val); 10772 } else if (!SrcTy->isIntegralOrEnumerationType()) { 10773 Info.FFDiag(E->getArg(0)); 10774 return false; 10775 } else { 10776 APSInt SrcInt; 10777 if (!EvaluateInteger(E->getArg(0), SrcInt, Info)) 10778 return false; 10779 assert(SrcInt.getBitWidth() >= Alignment.getBitWidth() && 10780 "Bit widths must be the same"); 10781 Val = APValue(SrcInt); 10782 } 10783 assert(Val.hasValue()); 10784 return true; 10785 } 10786 10787 bool IntExprEvaluator::VisitBuiltinCallExpr(const CallExpr *E, 10788 unsigned BuiltinOp) { 10789 switch (BuiltinOp) { 10790 default: 10791 return ExprEvaluatorBaseTy::VisitCallExpr(E); 10792 10793 case Builtin::BI__builtin_dynamic_object_size: 10794 case Builtin::BI__builtin_object_size: { 10795 // The type was checked when we built the expression. 10796 unsigned Type = 10797 E->getArg(1)->EvaluateKnownConstInt(Info.Ctx).getZExtValue(); 10798 assert(Type <= 3 && "unexpected type"); 10799 10800 uint64_t Size; 10801 if (tryEvaluateBuiltinObjectSize(E->getArg(0), Type, Info, Size)) 10802 return Success(Size, E); 10803 10804 if (E->getArg(0)->HasSideEffects(Info.Ctx)) 10805 return Success((Type & 2) ? 0 : -1, E); 10806 10807 // Expression had no side effects, but we couldn't statically determine the 10808 // size of the referenced object. 10809 switch (Info.EvalMode) { 10810 case EvalInfo::EM_ConstantExpression: 10811 case EvalInfo::EM_ConstantFold: 10812 case EvalInfo::EM_IgnoreSideEffects: 10813 // Leave it to IR generation. 10814 return Error(E); 10815 case EvalInfo::EM_ConstantExpressionUnevaluated: 10816 // Reduce it to a constant now. 10817 return Success((Type & 2) ? 0 : -1, E); 10818 } 10819 10820 llvm_unreachable("unexpected EvalMode"); 10821 } 10822 10823 case Builtin::BI__builtin_os_log_format_buffer_size: { 10824 analyze_os_log::OSLogBufferLayout Layout; 10825 analyze_os_log::computeOSLogBufferLayout(Info.Ctx, E, Layout); 10826 return Success(Layout.size().getQuantity(), E); 10827 } 10828 10829 case Builtin::BI__builtin_is_aligned: { 10830 APValue Src; 10831 APSInt Alignment; 10832 if (!getBuiltinAlignArguments(E, Info, Src, Alignment)) 10833 return false; 10834 if (Src.isLValue()) { 10835 // If we evaluated a pointer, check the minimum known alignment. 10836 LValue Ptr; 10837 Ptr.setFrom(Info.Ctx, Src); 10838 CharUnits BaseAlignment = getBaseAlignment(Info, Ptr); 10839 CharUnits PtrAlign = BaseAlignment.alignmentAtOffset(Ptr.Offset); 10840 // We can return true if the known alignment at the computed offset is 10841 // greater than the requested alignment. 10842 assert(PtrAlign.isPowerOfTwo()); 10843 assert(Alignment.isPowerOf2()); 10844 if (PtrAlign.getQuantity() >= Alignment) 10845 return Success(1, E); 10846 // If the alignment is not known to be sufficient, some cases could still 10847 // be aligned at run time. However, if the requested alignment is less or 10848 // equal to the base alignment and the offset is not aligned, we know that 10849 // the run-time value can never be aligned. 10850 if (BaseAlignment.getQuantity() >= Alignment && 10851 PtrAlign.getQuantity() < Alignment) 10852 return Success(0, E); 10853 // Otherwise we can't infer whether the value is sufficiently aligned. 10854 // TODO: __builtin_is_aligned(__builtin_align_{down,up{(expr, N), N) 10855 // in cases where we can't fully evaluate the pointer. 10856 Info.FFDiag(E->getArg(0), diag::note_constexpr_alignment_compute) 10857 << Alignment; 10858 return false; 10859 } 10860 assert(Src.isInt()); 10861 return Success((Src.getInt() & (Alignment - 1)) == 0 ? 1 : 0, E); 10862 } 10863 case Builtin::BI__builtin_align_up: { 10864 APValue Src; 10865 APSInt Alignment; 10866 if (!getBuiltinAlignArguments(E, Info, Src, Alignment)) 10867 return false; 10868 if (!Src.isInt()) 10869 return Error(E); 10870 APSInt AlignedVal = 10871 APSInt((Src.getInt() + (Alignment - 1)) & ~(Alignment - 1), 10872 Src.getInt().isUnsigned()); 10873 assert(AlignedVal.getBitWidth() == Src.getInt().getBitWidth()); 10874 return Success(AlignedVal, E); 10875 } 10876 case Builtin::BI__builtin_align_down: { 10877 APValue Src; 10878 APSInt Alignment; 10879 if (!getBuiltinAlignArguments(E, Info, Src, Alignment)) 10880 return false; 10881 if (!Src.isInt()) 10882 return Error(E); 10883 APSInt AlignedVal = 10884 APSInt(Src.getInt() & ~(Alignment - 1), Src.getInt().isUnsigned()); 10885 assert(AlignedVal.getBitWidth() == Src.getInt().getBitWidth()); 10886 return Success(AlignedVal, E); 10887 } 10888 10889 case Builtin::BI__builtin_bswap16: 10890 case Builtin::BI__builtin_bswap32: 10891 case Builtin::BI__builtin_bswap64: { 10892 APSInt Val; 10893 if (!EvaluateInteger(E->getArg(0), Val, Info)) 10894 return false; 10895 10896 return Success(Val.byteSwap(), E); 10897 } 10898 10899 case Builtin::BI__builtin_classify_type: 10900 return Success((int)EvaluateBuiltinClassifyType(E, Info.getLangOpts()), E); 10901 10902 case Builtin::BI__builtin_clrsb: 10903 case Builtin::BI__builtin_clrsbl: 10904 case Builtin::BI__builtin_clrsbll: { 10905 APSInt Val; 10906 if (!EvaluateInteger(E->getArg(0), Val, Info)) 10907 return false; 10908 10909 return Success(Val.getBitWidth() - Val.getMinSignedBits(), E); 10910 } 10911 10912 case Builtin::BI__builtin_clz: 10913 case Builtin::BI__builtin_clzl: 10914 case Builtin::BI__builtin_clzll: 10915 case Builtin::BI__builtin_clzs: { 10916 APSInt Val; 10917 if (!EvaluateInteger(E->getArg(0), Val, Info)) 10918 return false; 10919 if (!Val) 10920 return Error(E); 10921 10922 return Success(Val.countLeadingZeros(), E); 10923 } 10924 10925 case Builtin::BI__builtin_constant_p: { 10926 const Expr *Arg = E->getArg(0); 10927 if (EvaluateBuiltinConstantP(Info, Arg)) 10928 return Success(true, E); 10929 if (Info.InConstantContext || Arg->HasSideEffects(Info.Ctx)) { 10930 // Outside a constant context, eagerly evaluate to false in the presence 10931 // of side-effects in order to avoid -Wunsequenced false-positives in 10932 // a branch on __builtin_constant_p(expr). 10933 return Success(false, E); 10934 } 10935 Info.FFDiag(E, diag::note_invalid_subexpr_in_const_expr); 10936 return false; 10937 } 10938 10939 case Builtin::BI__builtin_is_constant_evaluated: { 10940 const auto *Callee = Info.CurrentCall->getCallee(); 10941 if (Info.InConstantContext && !Info.CheckingPotentialConstantExpression && 10942 (Info.CallStackDepth == 1 || 10943 (Info.CallStackDepth == 2 && Callee->isInStdNamespace() && 10944 Callee->getIdentifier() && 10945 Callee->getIdentifier()->isStr("is_constant_evaluated")))) { 10946 // FIXME: Find a better way to avoid duplicated diagnostics. 10947 if (Info.EvalStatus.Diag) 10948 Info.report((Info.CallStackDepth == 1) ? E->getExprLoc() 10949 : Info.CurrentCall->CallLoc, 10950 diag::warn_is_constant_evaluated_always_true_constexpr) 10951 << (Info.CallStackDepth == 1 ? "__builtin_is_constant_evaluated" 10952 : "std::is_constant_evaluated"); 10953 } 10954 10955 return Success(Info.InConstantContext, E); 10956 } 10957 10958 case Builtin::BI__builtin_ctz: 10959 case Builtin::BI__builtin_ctzl: 10960 case Builtin::BI__builtin_ctzll: 10961 case Builtin::BI__builtin_ctzs: { 10962 APSInt Val; 10963 if (!EvaluateInteger(E->getArg(0), Val, Info)) 10964 return false; 10965 if (!Val) 10966 return Error(E); 10967 10968 return Success(Val.countTrailingZeros(), E); 10969 } 10970 10971 case Builtin::BI__builtin_eh_return_data_regno: { 10972 int Operand = E->getArg(0)->EvaluateKnownConstInt(Info.Ctx).getZExtValue(); 10973 Operand = Info.Ctx.getTargetInfo().getEHDataRegisterNumber(Operand); 10974 return Success(Operand, E); 10975 } 10976 10977 case Builtin::BI__builtin_expect: 10978 return Visit(E->getArg(0)); 10979 10980 case Builtin::BI__builtin_ffs: 10981 case Builtin::BI__builtin_ffsl: 10982 case Builtin::BI__builtin_ffsll: { 10983 APSInt Val; 10984 if (!EvaluateInteger(E->getArg(0), Val, Info)) 10985 return false; 10986 10987 unsigned N = Val.countTrailingZeros(); 10988 return Success(N == Val.getBitWidth() ? 0 : N + 1, E); 10989 } 10990 10991 case Builtin::BI__builtin_fpclassify: { 10992 APFloat Val(0.0); 10993 if (!EvaluateFloat(E->getArg(5), Val, Info)) 10994 return false; 10995 unsigned Arg; 10996 switch (Val.getCategory()) { 10997 case APFloat::fcNaN: Arg = 0; break; 10998 case APFloat::fcInfinity: Arg = 1; break; 10999 case APFloat::fcNormal: Arg = Val.isDenormal() ? 3 : 2; break; 11000 case APFloat::fcZero: Arg = 4; break; 11001 } 11002 return Visit(E->getArg(Arg)); 11003 } 11004 11005 case Builtin::BI__builtin_isinf_sign: { 11006 APFloat Val(0.0); 11007 return EvaluateFloat(E->getArg(0), Val, Info) && 11008 Success(Val.isInfinity() ? (Val.isNegative() ? -1 : 1) : 0, E); 11009 } 11010 11011 case Builtin::BI__builtin_isinf: { 11012 APFloat Val(0.0); 11013 return EvaluateFloat(E->getArg(0), Val, Info) && 11014 Success(Val.isInfinity() ? 1 : 0, E); 11015 } 11016 11017 case Builtin::BI__builtin_isfinite: { 11018 APFloat Val(0.0); 11019 return EvaluateFloat(E->getArg(0), Val, Info) && 11020 Success(Val.isFinite() ? 1 : 0, E); 11021 } 11022 11023 case Builtin::BI__builtin_isnan: { 11024 APFloat Val(0.0); 11025 return EvaluateFloat(E->getArg(0), Val, Info) && 11026 Success(Val.isNaN() ? 1 : 0, E); 11027 } 11028 11029 case Builtin::BI__builtin_isnormal: { 11030 APFloat Val(0.0); 11031 return EvaluateFloat(E->getArg(0), Val, Info) && 11032 Success(Val.isNormal() ? 1 : 0, E); 11033 } 11034 11035 case Builtin::BI__builtin_parity: 11036 case Builtin::BI__builtin_parityl: 11037 case Builtin::BI__builtin_parityll: { 11038 APSInt Val; 11039 if (!EvaluateInteger(E->getArg(0), Val, Info)) 11040 return false; 11041 11042 return Success(Val.countPopulation() % 2, E); 11043 } 11044 11045 case Builtin::BI__builtin_popcount: 11046 case Builtin::BI__builtin_popcountl: 11047 case Builtin::BI__builtin_popcountll: { 11048 APSInt Val; 11049 if (!EvaluateInteger(E->getArg(0), Val, Info)) 11050 return false; 11051 11052 return Success(Val.countPopulation(), E); 11053 } 11054 11055 case Builtin::BIstrlen: 11056 case Builtin::BIwcslen: 11057 // A call to strlen is not a constant expression. 11058 if (Info.getLangOpts().CPlusPlus11) 11059 Info.CCEDiag(E, diag::note_constexpr_invalid_function) 11060 << /*isConstexpr*/0 << /*isConstructor*/0 11061 << (std::string("'") + Info.Ctx.BuiltinInfo.getName(BuiltinOp) + "'"); 11062 else 11063 Info.CCEDiag(E, diag::note_invalid_subexpr_in_const_expr); 11064 LLVM_FALLTHROUGH; 11065 case Builtin::BI__builtin_strlen: 11066 case Builtin::BI__builtin_wcslen: { 11067 // As an extension, we support __builtin_strlen() as a constant expression, 11068 // and support folding strlen() to a constant. 11069 LValue String; 11070 if (!EvaluatePointer(E->getArg(0), String, Info)) 11071 return false; 11072 11073 QualType CharTy = E->getArg(0)->getType()->getPointeeType(); 11074 11075 // Fast path: if it's a string literal, search the string value. 11076 if (const StringLiteral *S = dyn_cast_or_null<StringLiteral>( 11077 String.getLValueBase().dyn_cast<const Expr *>())) { 11078 // The string literal may have embedded null characters. Find the first 11079 // one and truncate there. 11080 StringRef Str = S->getBytes(); 11081 int64_t Off = String.Offset.getQuantity(); 11082 if (Off >= 0 && (uint64_t)Off <= (uint64_t)Str.size() && 11083 S->getCharByteWidth() == 1 && 11084 // FIXME: Add fast-path for wchar_t too. 11085 Info.Ctx.hasSameUnqualifiedType(CharTy, Info.Ctx.CharTy)) { 11086 Str = Str.substr(Off); 11087 11088 StringRef::size_type Pos = Str.find(0); 11089 if (Pos != StringRef::npos) 11090 Str = Str.substr(0, Pos); 11091 11092 return Success(Str.size(), E); 11093 } 11094 11095 // Fall through to slow path to issue appropriate diagnostic. 11096 } 11097 11098 // Slow path: scan the bytes of the string looking for the terminating 0. 11099 for (uint64_t Strlen = 0; /**/; ++Strlen) { 11100 APValue Char; 11101 if (!handleLValueToRValueConversion(Info, E, CharTy, String, Char) || 11102 !Char.isInt()) 11103 return false; 11104 if (!Char.getInt()) 11105 return Success(Strlen, E); 11106 if (!HandleLValueArrayAdjustment(Info, E, String, CharTy, 1)) 11107 return false; 11108 } 11109 } 11110 11111 case Builtin::BIstrcmp: 11112 case Builtin::BIwcscmp: 11113 case Builtin::BIstrncmp: 11114 case Builtin::BIwcsncmp: 11115 case Builtin::BImemcmp: 11116 case Builtin::BIbcmp: 11117 case Builtin::BIwmemcmp: 11118 // A call to strlen is not a constant expression. 11119 if (Info.getLangOpts().CPlusPlus11) 11120 Info.CCEDiag(E, diag::note_constexpr_invalid_function) 11121 << /*isConstexpr*/0 << /*isConstructor*/0 11122 << (std::string("'") + Info.Ctx.BuiltinInfo.getName(BuiltinOp) + "'"); 11123 else 11124 Info.CCEDiag(E, diag::note_invalid_subexpr_in_const_expr); 11125 LLVM_FALLTHROUGH; 11126 case Builtin::BI__builtin_strcmp: 11127 case Builtin::BI__builtin_wcscmp: 11128 case Builtin::BI__builtin_strncmp: 11129 case Builtin::BI__builtin_wcsncmp: 11130 case Builtin::BI__builtin_memcmp: 11131 case Builtin::BI__builtin_bcmp: 11132 case Builtin::BI__builtin_wmemcmp: { 11133 LValue String1, String2; 11134 if (!EvaluatePointer(E->getArg(0), String1, Info) || 11135 !EvaluatePointer(E->getArg(1), String2, Info)) 11136 return false; 11137 11138 uint64_t MaxLength = uint64_t(-1); 11139 if (BuiltinOp != Builtin::BIstrcmp && 11140 BuiltinOp != Builtin::BIwcscmp && 11141 BuiltinOp != Builtin::BI__builtin_strcmp && 11142 BuiltinOp != Builtin::BI__builtin_wcscmp) { 11143 APSInt N; 11144 if (!EvaluateInteger(E->getArg(2), N, Info)) 11145 return false; 11146 MaxLength = N.getExtValue(); 11147 } 11148 11149 // Empty substrings compare equal by definition. 11150 if (MaxLength == 0u) 11151 return Success(0, E); 11152 11153 if (!String1.checkNullPointerForFoldAccess(Info, E, AK_Read) || 11154 !String2.checkNullPointerForFoldAccess(Info, E, AK_Read) || 11155 String1.Designator.Invalid || String2.Designator.Invalid) 11156 return false; 11157 11158 QualType CharTy1 = String1.Designator.getType(Info.Ctx); 11159 QualType CharTy2 = String2.Designator.getType(Info.Ctx); 11160 11161 bool IsRawByte = BuiltinOp == Builtin::BImemcmp || 11162 BuiltinOp == Builtin::BIbcmp || 11163 BuiltinOp == Builtin::BI__builtin_memcmp || 11164 BuiltinOp == Builtin::BI__builtin_bcmp; 11165 11166 assert(IsRawByte || 11167 (Info.Ctx.hasSameUnqualifiedType( 11168 CharTy1, E->getArg(0)->getType()->getPointeeType()) && 11169 Info.Ctx.hasSameUnqualifiedType(CharTy1, CharTy2))); 11170 11171 // For memcmp, allow comparing any arrays of '[[un]signed] char' or 11172 // 'char8_t', but no other types. 11173 if (IsRawByte && 11174 !(isOneByteCharacterType(CharTy1) && isOneByteCharacterType(CharTy2))) { 11175 // FIXME: Consider using our bit_cast implementation to support this. 11176 Info.FFDiag(E, diag::note_constexpr_memcmp_unsupported) 11177 << (std::string("'") + Info.Ctx.BuiltinInfo.getName(BuiltinOp) + "'") 11178 << CharTy1 << CharTy2; 11179 return false; 11180 } 11181 11182 const auto &ReadCurElems = [&](APValue &Char1, APValue &Char2) { 11183 return handleLValueToRValueConversion(Info, E, CharTy1, String1, Char1) && 11184 handleLValueToRValueConversion(Info, E, CharTy2, String2, Char2) && 11185 Char1.isInt() && Char2.isInt(); 11186 }; 11187 const auto &AdvanceElems = [&] { 11188 return HandleLValueArrayAdjustment(Info, E, String1, CharTy1, 1) && 11189 HandleLValueArrayAdjustment(Info, E, String2, CharTy2, 1); 11190 }; 11191 11192 bool StopAtNull = 11193 (BuiltinOp != Builtin::BImemcmp && BuiltinOp != Builtin::BIbcmp && 11194 BuiltinOp != Builtin::BIwmemcmp && 11195 BuiltinOp != Builtin::BI__builtin_memcmp && 11196 BuiltinOp != Builtin::BI__builtin_bcmp && 11197 BuiltinOp != Builtin::BI__builtin_wmemcmp); 11198 bool IsWide = BuiltinOp == Builtin::BIwcscmp || 11199 BuiltinOp == Builtin::BIwcsncmp || 11200 BuiltinOp == Builtin::BIwmemcmp || 11201 BuiltinOp == Builtin::BI__builtin_wcscmp || 11202 BuiltinOp == Builtin::BI__builtin_wcsncmp || 11203 BuiltinOp == Builtin::BI__builtin_wmemcmp; 11204 11205 for (; MaxLength; --MaxLength) { 11206 APValue Char1, Char2; 11207 if (!ReadCurElems(Char1, Char2)) 11208 return false; 11209 if (Char1.getInt().ne(Char2.getInt())) { 11210 if (IsWide) // wmemcmp compares with wchar_t signedness. 11211 return Success(Char1.getInt() < Char2.getInt() ? -1 : 1, E); 11212 // memcmp always compares unsigned chars. 11213 return Success(Char1.getInt().ult(Char2.getInt()) ? -1 : 1, E); 11214 } 11215 if (StopAtNull && !Char1.getInt()) 11216 return Success(0, E); 11217 assert(!(StopAtNull && !Char2.getInt())); 11218 if (!AdvanceElems()) 11219 return false; 11220 } 11221 // We hit the strncmp / memcmp limit. 11222 return Success(0, E); 11223 } 11224 11225 case Builtin::BI__atomic_always_lock_free: 11226 case Builtin::BI__atomic_is_lock_free: 11227 case Builtin::BI__c11_atomic_is_lock_free: { 11228 APSInt SizeVal; 11229 if (!EvaluateInteger(E->getArg(0), SizeVal, Info)) 11230 return false; 11231 11232 // For __atomic_is_lock_free(sizeof(_Atomic(T))), if the size is a power 11233 // of two less than the maximum inline atomic width, we know it is 11234 // lock-free. If the size isn't a power of two, or greater than the 11235 // maximum alignment where we promote atomics, we know it is not lock-free 11236 // (at least not in the sense of atomic_is_lock_free). Otherwise, 11237 // the answer can only be determined at runtime; for example, 16-byte 11238 // atomics have lock-free implementations on some, but not all, 11239 // x86-64 processors. 11240 11241 // Check power-of-two. 11242 CharUnits Size = CharUnits::fromQuantity(SizeVal.getZExtValue()); 11243 if (Size.isPowerOfTwo()) { 11244 // Check against inlining width. 11245 unsigned InlineWidthBits = 11246 Info.Ctx.getTargetInfo().getMaxAtomicInlineWidth(); 11247 if (Size <= Info.Ctx.toCharUnitsFromBits(InlineWidthBits)) { 11248 if (BuiltinOp == Builtin::BI__c11_atomic_is_lock_free || 11249 Size == CharUnits::One() || 11250 E->getArg(1)->isNullPointerConstant(Info.Ctx, 11251 Expr::NPC_NeverValueDependent)) 11252 // OK, we will inline appropriately-aligned operations of this size, 11253 // and _Atomic(T) is appropriately-aligned. 11254 return Success(1, E); 11255 11256 QualType PointeeType = E->getArg(1)->IgnoreImpCasts()->getType()-> 11257 castAs<PointerType>()->getPointeeType(); 11258 if (!PointeeType->isIncompleteType() && 11259 Info.Ctx.getTypeAlignInChars(PointeeType) >= Size) { 11260 // OK, we will inline operations on this object. 11261 return Success(1, E); 11262 } 11263 } 11264 } 11265 11266 return BuiltinOp == Builtin::BI__atomic_always_lock_free ? 11267 Success(0, E) : Error(E); 11268 } 11269 case Builtin::BIomp_is_initial_device: 11270 // We can decide statically which value the runtime would return if called. 11271 return Success(Info.getLangOpts().OpenMPIsDevice ? 0 : 1, E); 11272 case Builtin::BI__builtin_add_overflow: 11273 case Builtin::BI__builtin_sub_overflow: 11274 case Builtin::BI__builtin_mul_overflow: 11275 case Builtin::BI__builtin_sadd_overflow: 11276 case Builtin::BI__builtin_uadd_overflow: 11277 case Builtin::BI__builtin_uaddl_overflow: 11278 case Builtin::BI__builtin_uaddll_overflow: 11279 case Builtin::BI__builtin_usub_overflow: 11280 case Builtin::BI__builtin_usubl_overflow: 11281 case Builtin::BI__builtin_usubll_overflow: 11282 case Builtin::BI__builtin_umul_overflow: 11283 case Builtin::BI__builtin_umull_overflow: 11284 case Builtin::BI__builtin_umulll_overflow: 11285 case Builtin::BI__builtin_saddl_overflow: 11286 case Builtin::BI__builtin_saddll_overflow: 11287 case Builtin::BI__builtin_ssub_overflow: 11288 case Builtin::BI__builtin_ssubl_overflow: 11289 case Builtin::BI__builtin_ssubll_overflow: 11290 case Builtin::BI__builtin_smul_overflow: 11291 case Builtin::BI__builtin_smull_overflow: 11292 case Builtin::BI__builtin_smulll_overflow: { 11293 LValue ResultLValue; 11294 APSInt LHS, RHS; 11295 11296 QualType ResultType = E->getArg(2)->getType()->getPointeeType(); 11297 if (!EvaluateInteger(E->getArg(0), LHS, Info) || 11298 !EvaluateInteger(E->getArg(1), RHS, Info) || 11299 !EvaluatePointer(E->getArg(2), ResultLValue, Info)) 11300 return false; 11301 11302 APSInt Result; 11303 bool DidOverflow = false; 11304 11305 // If the types don't have to match, enlarge all 3 to the largest of them. 11306 if (BuiltinOp == Builtin::BI__builtin_add_overflow || 11307 BuiltinOp == Builtin::BI__builtin_sub_overflow || 11308 BuiltinOp == Builtin::BI__builtin_mul_overflow) { 11309 bool IsSigned = LHS.isSigned() || RHS.isSigned() || 11310 ResultType->isSignedIntegerOrEnumerationType(); 11311 bool AllSigned = LHS.isSigned() && RHS.isSigned() && 11312 ResultType->isSignedIntegerOrEnumerationType(); 11313 uint64_t LHSSize = LHS.getBitWidth(); 11314 uint64_t RHSSize = RHS.getBitWidth(); 11315 uint64_t ResultSize = Info.Ctx.getTypeSize(ResultType); 11316 uint64_t MaxBits = std::max(std::max(LHSSize, RHSSize), ResultSize); 11317 11318 // Add an additional bit if the signedness isn't uniformly agreed to. We 11319 // could do this ONLY if there is a signed and an unsigned that both have 11320 // MaxBits, but the code to check that is pretty nasty. The issue will be 11321 // caught in the shrink-to-result later anyway. 11322 if (IsSigned && !AllSigned) 11323 ++MaxBits; 11324 11325 LHS = APSInt(LHS.extOrTrunc(MaxBits), !IsSigned); 11326 RHS = APSInt(RHS.extOrTrunc(MaxBits), !IsSigned); 11327 Result = APSInt(MaxBits, !IsSigned); 11328 } 11329 11330 // Find largest int. 11331 switch (BuiltinOp) { 11332 default: 11333 llvm_unreachable("Invalid value for BuiltinOp"); 11334 case Builtin::BI__builtin_add_overflow: 11335 case Builtin::BI__builtin_sadd_overflow: 11336 case Builtin::BI__builtin_saddl_overflow: 11337 case Builtin::BI__builtin_saddll_overflow: 11338 case Builtin::BI__builtin_uadd_overflow: 11339 case Builtin::BI__builtin_uaddl_overflow: 11340 case Builtin::BI__builtin_uaddll_overflow: 11341 Result = LHS.isSigned() ? LHS.sadd_ov(RHS, DidOverflow) 11342 : LHS.uadd_ov(RHS, DidOverflow); 11343 break; 11344 case Builtin::BI__builtin_sub_overflow: 11345 case Builtin::BI__builtin_ssub_overflow: 11346 case Builtin::BI__builtin_ssubl_overflow: 11347 case Builtin::BI__builtin_ssubll_overflow: 11348 case Builtin::BI__builtin_usub_overflow: 11349 case Builtin::BI__builtin_usubl_overflow: 11350 case Builtin::BI__builtin_usubll_overflow: 11351 Result = LHS.isSigned() ? LHS.ssub_ov(RHS, DidOverflow) 11352 : LHS.usub_ov(RHS, DidOverflow); 11353 break; 11354 case Builtin::BI__builtin_mul_overflow: 11355 case Builtin::BI__builtin_smul_overflow: 11356 case Builtin::BI__builtin_smull_overflow: 11357 case Builtin::BI__builtin_smulll_overflow: 11358 case Builtin::BI__builtin_umul_overflow: 11359 case Builtin::BI__builtin_umull_overflow: 11360 case Builtin::BI__builtin_umulll_overflow: 11361 Result = LHS.isSigned() ? LHS.smul_ov(RHS, DidOverflow) 11362 : LHS.umul_ov(RHS, DidOverflow); 11363 break; 11364 } 11365 11366 // In the case where multiple sizes are allowed, truncate and see if 11367 // the values are the same. 11368 if (BuiltinOp == Builtin::BI__builtin_add_overflow || 11369 BuiltinOp == Builtin::BI__builtin_sub_overflow || 11370 BuiltinOp == Builtin::BI__builtin_mul_overflow) { 11371 // APSInt doesn't have a TruncOrSelf, so we use extOrTrunc instead, 11372 // since it will give us the behavior of a TruncOrSelf in the case where 11373 // its parameter <= its size. We previously set Result to be at least the 11374 // type-size of the result, so getTypeSize(ResultType) <= Result.BitWidth 11375 // will work exactly like TruncOrSelf. 11376 APSInt Temp = Result.extOrTrunc(Info.Ctx.getTypeSize(ResultType)); 11377 Temp.setIsSigned(ResultType->isSignedIntegerOrEnumerationType()); 11378 11379 if (!APSInt::isSameValue(Temp, Result)) 11380 DidOverflow = true; 11381 Result = Temp; 11382 } 11383 11384 APValue APV{Result}; 11385 if (!handleAssignment(Info, E, ResultLValue, ResultType, APV)) 11386 return false; 11387 return Success(DidOverflow, E); 11388 } 11389 } 11390 } 11391 11392 /// Determine whether this is a pointer past the end of the complete 11393 /// object referred to by the lvalue. 11394 static bool isOnePastTheEndOfCompleteObject(const ASTContext &Ctx, 11395 const LValue &LV) { 11396 // A null pointer can be viewed as being "past the end" but we don't 11397 // choose to look at it that way here. 11398 if (!LV.getLValueBase()) 11399 return false; 11400 11401 // If the designator is valid and refers to a subobject, we're not pointing 11402 // past the end. 11403 if (!LV.getLValueDesignator().Invalid && 11404 !LV.getLValueDesignator().isOnePastTheEnd()) 11405 return false; 11406 11407 // A pointer to an incomplete type might be past-the-end if the type's size is 11408 // zero. We cannot tell because the type is incomplete. 11409 QualType Ty = getType(LV.getLValueBase()); 11410 if (Ty->isIncompleteType()) 11411 return true; 11412 11413 // We're a past-the-end pointer if we point to the byte after the object, 11414 // no matter what our type or path is. 11415 auto Size = Ctx.getTypeSizeInChars(Ty); 11416 return LV.getLValueOffset() == Size; 11417 } 11418 11419 namespace { 11420 11421 /// Data recursive integer evaluator of certain binary operators. 11422 /// 11423 /// We use a data recursive algorithm for binary operators so that we are able 11424 /// to handle extreme cases of chained binary operators without causing stack 11425 /// overflow. 11426 class DataRecursiveIntBinOpEvaluator { 11427 struct EvalResult { 11428 APValue Val; 11429 bool Failed; 11430 11431 EvalResult() : Failed(false) { } 11432 11433 void swap(EvalResult &RHS) { 11434 Val.swap(RHS.Val); 11435 Failed = RHS.Failed; 11436 RHS.Failed = false; 11437 } 11438 }; 11439 11440 struct Job { 11441 const Expr *E; 11442 EvalResult LHSResult; // meaningful only for binary operator expression. 11443 enum { AnyExprKind, BinOpKind, BinOpVisitedLHSKind } Kind; 11444 11445 Job() = default; 11446 Job(Job &&) = default; 11447 11448 void startSpeculativeEval(EvalInfo &Info) { 11449 SpecEvalRAII = SpeculativeEvaluationRAII(Info); 11450 } 11451 11452 private: 11453 SpeculativeEvaluationRAII SpecEvalRAII; 11454 }; 11455 11456 SmallVector<Job, 16> Queue; 11457 11458 IntExprEvaluator &IntEval; 11459 EvalInfo &Info; 11460 APValue &FinalResult; 11461 11462 public: 11463 DataRecursiveIntBinOpEvaluator(IntExprEvaluator &IntEval, APValue &Result) 11464 : IntEval(IntEval), Info(IntEval.getEvalInfo()), FinalResult(Result) { } 11465 11466 /// True if \param E is a binary operator that we are going to handle 11467 /// data recursively. 11468 /// We handle binary operators that are comma, logical, or that have operands 11469 /// with integral or enumeration type. 11470 static bool shouldEnqueue(const BinaryOperator *E) { 11471 return E->getOpcode() == BO_Comma || E->isLogicalOp() || 11472 (E->isRValue() && E->getType()->isIntegralOrEnumerationType() && 11473 E->getLHS()->getType()->isIntegralOrEnumerationType() && 11474 E->getRHS()->getType()->isIntegralOrEnumerationType()); 11475 } 11476 11477 bool Traverse(const BinaryOperator *E) { 11478 enqueue(E); 11479 EvalResult PrevResult; 11480 while (!Queue.empty()) 11481 process(PrevResult); 11482 11483 if (PrevResult.Failed) return false; 11484 11485 FinalResult.swap(PrevResult.Val); 11486 return true; 11487 } 11488 11489 private: 11490 bool Success(uint64_t Value, const Expr *E, APValue &Result) { 11491 return IntEval.Success(Value, E, Result); 11492 } 11493 bool Success(const APSInt &Value, const Expr *E, APValue &Result) { 11494 return IntEval.Success(Value, E, Result); 11495 } 11496 bool Error(const Expr *E) { 11497 return IntEval.Error(E); 11498 } 11499 bool Error(const Expr *E, diag::kind D) { 11500 return IntEval.Error(E, D); 11501 } 11502 11503 OptionalDiagnostic CCEDiag(const Expr *E, diag::kind D) { 11504 return Info.CCEDiag(E, D); 11505 } 11506 11507 // Returns true if visiting the RHS is necessary, false otherwise. 11508 bool VisitBinOpLHSOnly(EvalResult &LHSResult, const BinaryOperator *E, 11509 bool &SuppressRHSDiags); 11510 11511 bool VisitBinOp(const EvalResult &LHSResult, const EvalResult &RHSResult, 11512 const BinaryOperator *E, APValue &Result); 11513 11514 void EvaluateExpr(const Expr *E, EvalResult &Result) { 11515 Result.Failed = !Evaluate(Result.Val, Info, E); 11516 if (Result.Failed) 11517 Result.Val = APValue(); 11518 } 11519 11520 void process(EvalResult &Result); 11521 11522 void enqueue(const Expr *E) { 11523 E = E->IgnoreParens(); 11524 Queue.resize(Queue.size()+1); 11525 Queue.back().E = E; 11526 Queue.back().Kind = Job::AnyExprKind; 11527 } 11528 }; 11529 11530 } 11531 11532 bool DataRecursiveIntBinOpEvaluator:: 11533 VisitBinOpLHSOnly(EvalResult &LHSResult, const BinaryOperator *E, 11534 bool &SuppressRHSDiags) { 11535 if (E->getOpcode() == BO_Comma) { 11536 // Ignore LHS but note if we could not evaluate it. 11537 if (LHSResult.Failed) 11538 return Info.noteSideEffect(); 11539 return true; 11540 } 11541 11542 if (E->isLogicalOp()) { 11543 bool LHSAsBool; 11544 if (!LHSResult.Failed && HandleConversionToBool(LHSResult.Val, LHSAsBool)) { 11545 // We were able to evaluate the LHS, see if we can get away with not 11546 // evaluating the RHS: 0 && X -> 0, 1 || X -> 1 11547 if (LHSAsBool == (E->getOpcode() == BO_LOr)) { 11548 Success(LHSAsBool, E, LHSResult.Val); 11549 return false; // Ignore RHS 11550 } 11551 } else { 11552 LHSResult.Failed = true; 11553 11554 // Since we weren't able to evaluate the left hand side, it 11555 // might have had side effects. 11556 if (!Info.noteSideEffect()) 11557 return false; 11558 11559 // We can't evaluate the LHS; however, sometimes the result 11560 // is determined by the RHS: X && 0 -> 0, X || 1 -> 1. 11561 // Don't ignore RHS and suppress diagnostics from this arm. 11562 SuppressRHSDiags = true; 11563 } 11564 11565 return true; 11566 } 11567 11568 assert(E->getLHS()->getType()->isIntegralOrEnumerationType() && 11569 E->getRHS()->getType()->isIntegralOrEnumerationType()); 11570 11571 if (LHSResult.Failed && !Info.noteFailure()) 11572 return false; // Ignore RHS; 11573 11574 return true; 11575 } 11576 11577 static void addOrSubLValueAsInteger(APValue &LVal, const APSInt &Index, 11578 bool IsSub) { 11579 // Compute the new offset in the appropriate width, wrapping at 64 bits. 11580 // FIXME: When compiling for a 32-bit target, we should use 32-bit 11581 // offsets. 11582 assert(!LVal.hasLValuePath() && "have designator for integer lvalue"); 11583 CharUnits &Offset = LVal.getLValueOffset(); 11584 uint64_t Offset64 = Offset.getQuantity(); 11585 uint64_t Index64 = Index.extOrTrunc(64).getZExtValue(); 11586 Offset = CharUnits::fromQuantity(IsSub ? Offset64 - Index64 11587 : Offset64 + Index64); 11588 } 11589 11590 bool DataRecursiveIntBinOpEvaluator:: 11591 VisitBinOp(const EvalResult &LHSResult, const EvalResult &RHSResult, 11592 const BinaryOperator *E, APValue &Result) { 11593 if (E->getOpcode() == BO_Comma) { 11594 if (RHSResult.Failed) 11595 return false; 11596 Result = RHSResult.Val; 11597 return true; 11598 } 11599 11600 if (E->isLogicalOp()) { 11601 bool lhsResult, rhsResult; 11602 bool LHSIsOK = HandleConversionToBool(LHSResult.Val, lhsResult); 11603 bool RHSIsOK = HandleConversionToBool(RHSResult.Val, rhsResult); 11604 11605 if (LHSIsOK) { 11606 if (RHSIsOK) { 11607 if (E->getOpcode() == BO_LOr) 11608 return Success(lhsResult || rhsResult, E, Result); 11609 else 11610 return Success(lhsResult && rhsResult, E, Result); 11611 } 11612 } else { 11613 if (RHSIsOK) { 11614 // We can't evaluate the LHS; however, sometimes the result 11615 // is determined by the RHS: X && 0 -> 0, X || 1 -> 1. 11616 if (rhsResult == (E->getOpcode() == BO_LOr)) 11617 return Success(rhsResult, E, Result); 11618 } 11619 } 11620 11621 return false; 11622 } 11623 11624 assert(E->getLHS()->getType()->isIntegralOrEnumerationType() && 11625 E->getRHS()->getType()->isIntegralOrEnumerationType()); 11626 11627 if (LHSResult.Failed || RHSResult.Failed) 11628 return false; 11629 11630 const APValue &LHSVal = LHSResult.Val; 11631 const APValue &RHSVal = RHSResult.Val; 11632 11633 // Handle cases like (unsigned long)&a + 4. 11634 if (E->isAdditiveOp() && LHSVal.isLValue() && RHSVal.isInt()) { 11635 Result = LHSVal; 11636 addOrSubLValueAsInteger(Result, RHSVal.getInt(), E->getOpcode() == BO_Sub); 11637 return true; 11638 } 11639 11640 // Handle cases like 4 + (unsigned long)&a 11641 if (E->getOpcode() == BO_Add && 11642 RHSVal.isLValue() && LHSVal.isInt()) { 11643 Result = RHSVal; 11644 addOrSubLValueAsInteger(Result, LHSVal.getInt(), /*IsSub*/false); 11645 return true; 11646 } 11647 11648 if (E->getOpcode() == BO_Sub && LHSVal.isLValue() && RHSVal.isLValue()) { 11649 // Handle (intptr_t)&&A - (intptr_t)&&B. 11650 if (!LHSVal.getLValueOffset().isZero() || 11651 !RHSVal.getLValueOffset().isZero()) 11652 return false; 11653 const Expr *LHSExpr = LHSVal.getLValueBase().dyn_cast<const Expr*>(); 11654 const Expr *RHSExpr = RHSVal.getLValueBase().dyn_cast<const Expr*>(); 11655 if (!LHSExpr || !RHSExpr) 11656 return false; 11657 const AddrLabelExpr *LHSAddrExpr = dyn_cast<AddrLabelExpr>(LHSExpr); 11658 const AddrLabelExpr *RHSAddrExpr = dyn_cast<AddrLabelExpr>(RHSExpr); 11659 if (!LHSAddrExpr || !RHSAddrExpr) 11660 return false; 11661 // Make sure both labels come from the same function. 11662 if (LHSAddrExpr->getLabel()->getDeclContext() != 11663 RHSAddrExpr->getLabel()->getDeclContext()) 11664 return false; 11665 Result = APValue(LHSAddrExpr, RHSAddrExpr); 11666 return true; 11667 } 11668 11669 // All the remaining cases expect both operands to be an integer 11670 if (!LHSVal.isInt() || !RHSVal.isInt()) 11671 return Error(E); 11672 11673 // Set up the width and signedness manually, in case it can't be deduced 11674 // from the operation we're performing. 11675 // FIXME: Don't do this in the cases where we can deduce it. 11676 APSInt Value(Info.Ctx.getIntWidth(E->getType()), 11677 E->getType()->isUnsignedIntegerOrEnumerationType()); 11678 if (!handleIntIntBinOp(Info, E, LHSVal.getInt(), E->getOpcode(), 11679 RHSVal.getInt(), Value)) 11680 return false; 11681 return Success(Value, E, Result); 11682 } 11683 11684 void DataRecursiveIntBinOpEvaluator::process(EvalResult &Result) { 11685 Job &job = Queue.back(); 11686 11687 switch (job.Kind) { 11688 case Job::AnyExprKind: { 11689 if (const BinaryOperator *Bop = dyn_cast<BinaryOperator>(job.E)) { 11690 if (shouldEnqueue(Bop)) { 11691 job.Kind = Job::BinOpKind; 11692 enqueue(Bop->getLHS()); 11693 return; 11694 } 11695 } 11696 11697 EvaluateExpr(job.E, Result); 11698 Queue.pop_back(); 11699 return; 11700 } 11701 11702 case Job::BinOpKind: { 11703 const BinaryOperator *Bop = cast<BinaryOperator>(job.E); 11704 bool SuppressRHSDiags = false; 11705 if (!VisitBinOpLHSOnly(Result, Bop, SuppressRHSDiags)) { 11706 Queue.pop_back(); 11707 return; 11708 } 11709 if (SuppressRHSDiags) 11710 job.startSpeculativeEval(Info); 11711 job.LHSResult.swap(Result); 11712 job.Kind = Job::BinOpVisitedLHSKind; 11713 enqueue(Bop->getRHS()); 11714 return; 11715 } 11716 11717 case Job::BinOpVisitedLHSKind: { 11718 const BinaryOperator *Bop = cast<BinaryOperator>(job.E); 11719 EvalResult RHS; 11720 RHS.swap(Result); 11721 Result.Failed = !VisitBinOp(job.LHSResult, RHS, Bop, Result.Val); 11722 Queue.pop_back(); 11723 return; 11724 } 11725 } 11726 11727 llvm_unreachable("Invalid Job::Kind!"); 11728 } 11729 11730 namespace { 11731 /// Used when we determine that we should fail, but can keep evaluating prior to 11732 /// noting that we had a failure. 11733 class DelayedNoteFailureRAII { 11734 EvalInfo &Info; 11735 bool NoteFailure; 11736 11737 public: 11738 DelayedNoteFailureRAII(EvalInfo &Info, bool NoteFailure = true) 11739 : Info(Info), NoteFailure(NoteFailure) {} 11740 ~DelayedNoteFailureRAII() { 11741 if (NoteFailure) { 11742 bool ContinueAfterFailure = Info.noteFailure(); 11743 (void)ContinueAfterFailure; 11744 assert(ContinueAfterFailure && 11745 "Shouldn't have kept evaluating on failure."); 11746 } 11747 } 11748 }; 11749 11750 enum class CmpResult { 11751 Unequal, 11752 Less, 11753 Equal, 11754 Greater, 11755 Unordered, 11756 }; 11757 } 11758 11759 template <class SuccessCB, class AfterCB> 11760 static bool 11761 EvaluateComparisonBinaryOperator(EvalInfo &Info, const BinaryOperator *E, 11762 SuccessCB &&Success, AfterCB &&DoAfter) { 11763 assert(E->isComparisonOp() && "expected comparison operator"); 11764 assert((E->getOpcode() == BO_Cmp || 11765 E->getType()->isIntegralOrEnumerationType()) && 11766 "unsupported binary expression evaluation"); 11767 auto Error = [&](const Expr *E) { 11768 Info.FFDiag(E, diag::note_invalid_subexpr_in_const_expr); 11769 return false; 11770 }; 11771 11772 bool IsRelational = E->isRelationalOp() || E->getOpcode() == BO_Cmp; 11773 bool IsEquality = E->isEqualityOp(); 11774 11775 QualType LHSTy = E->getLHS()->getType(); 11776 QualType RHSTy = E->getRHS()->getType(); 11777 11778 if (LHSTy->isIntegralOrEnumerationType() && 11779 RHSTy->isIntegralOrEnumerationType()) { 11780 APSInt LHS, RHS; 11781 bool LHSOK = EvaluateInteger(E->getLHS(), LHS, Info); 11782 if (!LHSOK && !Info.noteFailure()) 11783 return false; 11784 if (!EvaluateInteger(E->getRHS(), RHS, Info) || !LHSOK) 11785 return false; 11786 if (LHS < RHS) 11787 return Success(CmpResult::Less, E); 11788 if (LHS > RHS) 11789 return Success(CmpResult::Greater, E); 11790 return Success(CmpResult::Equal, E); 11791 } 11792 11793 if (LHSTy->isFixedPointType() || RHSTy->isFixedPointType()) { 11794 APFixedPoint LHSFX(Info.Ctx.getFixedPointSemantics(LHSTy)); 11795 APFixedPoint RHSFX(Info.Ctx.getFixedPointSemantics(RHSTy)); 11796 11797 bool LHSOK = EvaluateFixedPointOrInteger(E->getLHS(), LHSFX, Info); 11798 if (!LHSOK && !Info.noteFailure()) 11799 return false; 11800 if (!EvaluateFixedPointOrInteger(E->getRHS(), RHSFX, Info) || !LHSOK) 11801 return false; 11802 if (LHSFX < RHSFX) 11803 return Success(CmpResult::Less, E); 11804 if (LHSFX > RHSFX) 11805 return Success(CmpResult::Greater, E); 11806 return Success(CmpResult::Equal, E); 11807 } 11808 11809 if (LHSTy->isAnyComplexType() || RHSTy->isAnyComplexType()) { 11810 ComplexValue LHS, RHS; 11811 bool LHSOK; 11812 if (E->isAssignmentOp()) { 11813 LValue LV; 11814 EvaluateLValue(E->getLHS(), LV, Info); 11815 LHSOK = false; 11816 } else if (LHSTy->isRealFloatingType()) { 11817 LHSOK = EvaluateFloat(E->getLHS(), LHS.FloatReal, Info); 11818 if (LHSOK) { 11819 LHS.makeComplexFloat(); 11820 LHS.FloatImag = APFloat(LHS.FloatReal.getSemantics()); 11821 } 11822 } else { 11823 LHSOK = EvaluateComplex(E->getLHS(), LHS, Info); 11824 } 11825 if (!LHSOK && !Info.noteFailure()) 11826 return false; 11827 11828 if (E->getRHS()->getType()->isRealFloatingType()) { 11829 if (!EvaluateFloat(E->getRHS(), RHS.FloatReal, Info) || !LHSOK) 11830 return false; 11831 RHS.makeComplexFloat(); 11832 RHS.FloatImag = APFloat(RHS.FloatReal.getSemantics()); 11833 } else if (!EvaluateComplex(E->getRHS(), RHS, Info) || !LHSOK) 11834 return false; 11835 11836 if (LHS.isComplexFloat()) { 11837 APFloat::cmpResult CR_r = 11838 LHS.getComplexFloatReal().compare(RHS.getComplexFloatReal()); 11839 APFloat::cmpResult CR_i = 11840 LHS.getComplexFloatImag().compare(RHS.getComplexFloatImag()); 11841 bool IsEqual = CR_r == APFloat::cmpEqual && CR_i == APFloat::cmpEqual; 11842 return Success(IsEqual ? CmpResult::Equal : CmpResult::Unequal, E); 11843 } else { 11844 assert(IsEquality && "invalid complex comparison"); 11845 bool IsEqual = LHS.getComplexIntReal() == RHS.getComplexIntReal() && 11846 LHS.getComplexIntImag() == RHS.getComplexIntImag(); 11847 return Success(IsEqual ? CmpResult::Equal : CmpResult::Unequal, E); 11848 } 11849 } 11850 11851 if (LHSTy->isRealFloatingType() && 11852 RHSTy->isRealFloatingType()) { 11853 APFloat RHS(0.0), LHS(0.0); 11854 11855 bool LHSOK = EvaluateFloat(E->getRHS(), RHS, Info); 11856 if (!LHSOK && !Info.noteFailure()) 11857 return false; 11858 11859 if (!EvaluateFloat(E->getLHS(), LHS, Info) || !LHSOK) 11860 return false; 11861 11862 assert(E->isComparisonOp() && "Invalid binary operator!"); 11863 auto GetCmpRes = [&]() { 11864 switch (LHS.compare(RHS)) { 11865 case APFloat::cmpEqual: 11866 return CmpResult::Equal; 11867 case APFloat::cmpLessThan: 11868 return CmpResult::Less; 11869 case APFloat::cmpGreaterThan: 11870 return CmpResult::Greater; 11871 case APFloat::cmpUnordered: 11872 return CmpResult::Unordered; 11873 } 11874 llvm_unreachable("Unrecognised APFloat::cmpResult enum"); 11875 }; 11876 return Success(GetCmpRes(), E); 11877 } 11878 11879 if (LHSTy->isPointerType() && RHSTy->isPointerType()) { 11880 LValue LHSValue, RHSValue; 11881 11882 bool LHSOK = EvaluatePointer(E->getLHS(), LHSValue, Info); 11883 if (!LHSOK && !Info.noteFailure()) 11884 return false; 11885 11886 if (!EvaluatePointer(E->getRHS(), RHSValue, Info) || !LHSOK) 11887 return false; 11888 11889 // Reject differing bases from the normal codepath; we special-case 11890 // comparisons to null. 11891 if (!HasSameBase(LHSValue, RHSValue)) { 11892 // Inequalities and subtractions between unrelated pointers have 11893 // unspecified or undefined behavior. 11894 if (!IsEquality) { 11895 Info.FFDiag(E, diag::note_constexpr_pointer_comparison_unspecified); 11896 return false; 11897 } 11898 // A constant address may compare equal to the address of a symbol. 11899 // The one exception is that address of an object cannot compare equal 11900 // to a null pointer constant. 11901 if ((!LHSValue.Base && !LHSValue.Offset.isZero()) || 11902 (!RHSValue.Base && !RHSValue.Offset.isZero())) 11903 return Error(E); 11904 // It's implementation-defined whether distinct literals will have 11905 // distinct addresses. In clang, the result of such a comparison is 11906 // unspecified, so it is not a constant expression. However, we do know 11907 // that the address of a literal will be non-null. 11908 if ((IsLiteralLValue(LHSValue) || IsLiteralLValue(RHSValue)) && 11909 LHSValue.Base && RHSValue.Base) 11910 return Error(E); 11911 // We can't tell whether weak symbols will end up pointing to the same 11912 // object. 11913 if (IsWeakLValue(LHSValue) || IsWeakLValue(RHSValue)) 11914 return Error(E); 11915 // We can't compare the address of the start of one object with the 11916 // past-the-end address of another object, per C++ DR1652. 11917 if ((LHSValue.Base && LHSValue.Offset.isZero() && 11918 isOnePastTheEndOfCompleteObject(Info.Ctx, RHSValue)) || 11919 (RHSValue.Base && RHSValue.Offset.isZero() && 11920 isOnePastTheEndOfCompleteObject(Info.Ctx, LHSValue))) 11921 return Error(E); 11922 // We can't tell whether an object is at the same address as another 11923 // zero sized object. 11924 if ((RHSValue.Base && isZeroSized(LHSValue)) || 11925 (LHSValue.Base && isZeroSized(RHSValue))) 11926 return Error(E); 11927 return Success(CmpResult::Unequal, E); 11928 } 11929 11930 const CharUnits &LHSOffset = LHSValue.getLValueOffset(); 11931 const CharUnits &RHSOffset = RHSValue.getLValueOffset(); 11932 11933 SubobjectDesignator &LHSDesignator = LHSValue.getLValueDesignator(); 11934 SubobjectDesignator &RHSDesignator = RHSValue.getLValueDesignator(); 11935 11936 // C++11 [expr.rel]p3: 11937 // Pointers to void (after pointer conversions) can be compared, with a 11938 // result defined as follows: If both pointers represent the same 11939 // address or are both the null pointer value, the result is true if the 11940 // operator is <= or >= and false otherwise; otherwise the result is 11941 // unspecified. 11942 // We interpret this as applying to pointers to *cv* void. 11943 if (LHSTy->isVoidPointerType() && LHSOffset != RHSOffset && IsRelational) 11944 Info.CCEDiag(E, diag::note_constexpr_void_comparison); 11945 11946 // C++11 [expr.rel]p2: 11947 // - If two pointers point to non-static data members of the same object, 11948 // or to subobjects or array elements fo such members, recursively, the 11949 // pointer to the later declared member compares greater provided the 11950 // two members have the same access control and provided their class is 11951 // not a union. 11952 // [...] 11953 // - Otherwise pointer comparisons are unspecified. 11954 if (!LHSDesignator.Invalid && !RHSDesignator.Invalid && IsRelational) { 11955 bool WasArrayIndex; 11956 unsigned Mismatch = FindDesignatorMismatch( 11957 getType(LHSValue.Base), LHSDesignator, RHSDesignator, WasArrayIndex); 11958 // At the point where the designators diverge, the comparison has a 11959 // specified value if: 11960 // - we are comparing array indices 11961 // - we are comparing fields of a union, or fields with the same access 11962 // Otherwise, the result is unspecified and thus the comparison is not a 11963 // constant expression. 11964 if (!WasArrayIndex && Mismatch < LHSDesignator.Entries.size() && 11965 Mismatch < RHSDesignator.Entries.size()) { 11966 const FieldDecl *LF = getAsField(LHSDesignator.Entries[Mismatch]); 11967 const FieldDecl *RF = getAsField(RHSDesignator.Entries[Mismatch]); 11968 if (!LF && !RF) 11969 Info.CCEDiag(E, diag::note_constexpr_pointer_comparison_base_classes); 11970 else if (!LF) 11971 Info.CCEDiag(E, diag::note_constexpr_pointer_comparison_base_field) 11972 << getAsBaseClass(LHSDesignator.Entries[Mismatch]) 11973 << RF->getParent() << RF; 11974 else if (!RF) 11975 Info.CCEDiag(E, diag::note_constexpr_pointer_comparison_base_field) 11976 << getAsBaseClass(RHSDesignator.Entries[Mismatch]) 11977 << LF->getParent() << LF; 11978 else if (!LF->getParent()->isUnion() && 11979 LF->getAccess() != RF->getAccess()) 11980 Info.CCEDiag(E, 11981 diag::note_constexpr_pointer_comparison_differing_access) 11982 << LF << LF->getAccess() << RF << RF->getAccess() 11983 << LF->getParent(); 11984 } 11985 } 11986 11987 // The comparison here must be unsigned, and performed with the same 11988 // width as the pointer. 11989 unsigned PtrSize = Info.Ctx.getTypeSize(LHSTy); 11990 uint64_t CompareLHS = LHSOffset.getQuantity(); 11991 uint64_t CompareRHS = RHSOffset.getQuantity(); 11992 assert(PtrSize <= 64 && "Unexpected pointer width"); 11993 uint64_t Mask = ~0ULL >> (64 - PtrSize); 11994 CompareLHS &= Mask; 11995 CompareRHS &= Mask; 11996 11997 // If there is a base and this is a relational operator, we can only 11998 // compare pointers within the object in question; otherwise, the result 11999 // depends on where the object is located in memory. 12000 if (!LHSValue.Base.isNull() && IsRelational) { 12001 QualType BaseTy = getType(LHSValue.Base); 12002 if (BaseTy->isIncompleteType()) 12003 return Error(E); 12004 CharUnits Size = Info.Ctx.getTypeSizeInChars(BaseTy); 12005 uint64_t OffsetLimit = Size.getQuantity(); 12006 if (CompareLHS > OffsetLimit || CompareRHS > OffsetLimit) 12007 return Error(E); 12008 } 12009 12010 if (CompareLHS < CompareRHS) 12011 return Success(CmpResult::Less, E); 12012 if (CompareLHS > CompareRHS) 12013 return Success(CmpResult::Greater, E); 12014 return Success(CmpResult::Equal, E); 12015 } 12016 12017 if (LHSTy->isMemberPointerType()) { 12018 assert(IsEquality && "unexpected member pointer operation"); 12019 assert(RHSTy->isMemberPointerType() && "invalid comparison"); 12020 12021 MemberPtr LHSValue, RHSValue; 12022 12023 bool LHSOK = EvaluateMemberPointer(E->getLHS(), LHSValue, Info); 12024 if (!LHSOK && !Info.noteFailure()) 12025 return false; 12026 12027 if (!EvaluateMemberPointer(E->getRHS(), RHSValue, Info) || !LHSOK) 12028 return false; 12029 12030 // C++11 [expr.eq]p2: 12031 // If both operands are null, they compare equal. Otherwise if only one is 12032 // null, they compare unequal. 12033 if (!LHSValue.getDecl() || !RHSValue.getDecl()) { 12034 bool Equal = !LHSValue.getDecl() && !RHSValue.getDecl(); 12035 return Success(Equal ? CmpResult::Equal : CmpResult::Unequal, E); 12036 } 12037 12038 // Otherwise if either is a pointer to a virtual member function, the 12039 // result is unspecified. 12040 if (const CXXMethodDecl *MD = dyn_cast<CXXMethodDecl>(LHSValue.getDecl())) 12041 if (MD->isVirtual()) 12042 Info.CCEDiag(E, diag::note_constexpr_compare_virtual_mem_ptr) << MD; 12043 if (const CXXMethodDecl *MD = dyn_cast<CXXMethodDecl>(RHSValue.getDecl())) 12044 if (MD->isVirtual()) 12045 Info.CCEDiag(E, diag::note_constexpr_compare_virtual_mem_ptr) << MD; 12046 12047 // Otherwise they compare equal if and only if they would refer to the 12048 // same member of the same most derived object or the same subobject if 12049 // they were dereferenced with a hypothetical object of the associated 12050 // class type. 12051 bool Equal = LHSValue == RHSValue; 12052 return Success(Equal ? CmpResult::Equal : CmpResult::Unequal, E); 12053 } 12054 12055 if (LHSTy->isNullPtrType()) { 12056 assert(E->isComparisonOp() && "unexpected nullptr operation"); 12057 assert(RHSTy->isNullPtrType() && "missing pointer conversion"); 12058 // C++11 [expr.rel]p4, [expr.eq]p3: If two operands of type std::nullptr_t 12059 // are compared, the result is true of the operator is <=, >= or ==, and 12060 // false otherwise. 12061 return Success(CmpResult::Equal, E); 12062 } 12063 12064 return DoAfter(); 12065 } 12066 12067 bool RecordExprEvaluator::VisitBinCmp(const BinaryOperator *E) { 12068 if (!CheckLiteralType(Info, E)) 12069 return false; 12070 12071 auto OnSuccess = [&](CmpResult CR, const BinaryOperator *E) { 12072 ComparisonCategoryResult CCR; 12073 switch (CR) { 12074 case CmpResult::Unequal: 12075 llvm_unreachable("should never produce Unequal for three-way comparison"); 12076 case CmpResult::Less: 12077 CCR = ComparisonCategoryResult::Less; 12078 break; 12079 case CmpResult::Equal: 12080 CCR = ComparisonCategoryResult::Equal; 12081 break; 12082 case CmpResult::Greater: 12083 CCR = ComparisonCategoryResult::Greater; 12084 break; 12085 case CmpResult::Unordered: 12086 CCR = ComparisonCategoryResult::Unordered; 12087 break; 12088 } 12089 // Evaluation succeeded. Lookup the information for the comparison category 12090 // type and fetch the VarDecl for the result. 12091 const ComparisonCategoryInfo &CmpInfo = 12092 Info.Ctx.CompCategories.getInfoForType(E->getType()); 12093 const VarDecl *VD = CmpInfo.getValueInfo(CmpInfo.makeWeakResult(CCR))->VD; 12094 // Check and evaluate the result as a constant expression. 12095 LValue LV; 12096 LV.set(VD); 12097 if (!handleLValueToRValueConversion(Info, E, E->getType(), LV, Result)) 12098 return false; 12099 return CheckConstantExpression(Info, E->getExprLoc(), E->getType(), Result); 12100 }; 12101 return EvaluateComparisonBinaryOperator(Info, E, OnSuccess, [&]() { 12102 return ExprEvaluatorBaseTy::VisitBinCmp(E); 12103 }); 12104 } 12105 12106 bool IntExprEvaluator::VisitBinaryOperator(const BinaryOperator *E) { 12107 // We don't call noteFailure immediately because the assignment happens after 12108 // we evaluate LHS and RHS. 12109 if (!Info.keepEvaluatingAfterFailure() && E->isAssignmentOp()) 12110 return Error(E); 12111 12112 DelayedNoteFailureRAII MaybeNoteFailureLater(Info, E->isAssignmentOp()); 12113 if (DataRecursiveIntBinOpEvaluator::shouldEnqueue(E)) 12114 return DataRecursiveIntBinOpEvaluator(*this, Result).Traverse(E); 12115 12116 assert((!E->getLHS()->getType()->isIntegralOrEnumerationType() || 12117 !E->getRHS()->getType()->isIntegralOrEnumerationType()) && 12118 "DataRecursiveIntBinOpEvaluator should have handled integral types"); 12119 12120 if (E->isComparisonOp()) { 12121 // Evaluate builtin binary comparisons by evaluating them as three-way 12122 // comparisons and then translating the result. 12123 auto OnSuccess = [&](CmpResult CR, const BinaryOperator *E) { 12124 assert((CR != CmpResult::Unequal || E->isEqualityOp()) && 12125 "should only produce Unequal for equality comparisons"); 12126 bool IsEqual = CR == CmpResult::Equal, 12127 IsLess = CR == CmpResult::Less, 12128 IsGreater = CR == CmpResult::Greater; 12129 auto Op = E->getOpcode(); 12130 switch (Op) { 12131 default: 12132 llvm_unreachable("unsupported binary operator"); 12133 case BO_EQ: 12134 case BO_NE: 12135 return Success(IsEqual == (Op == BO_EQ), E); 12136 case BO_LT: 12137 return Success(IsLess, E); 12138 case BO_GT: 12139 return Success(IsGreater, E); 12140 case BO_LE: 12141 return Success(IsEqual || IsLess, E); 12142 case BO_GE: 12143 return Success(IsEqual || IsGreater, E); 12144 } 12145 }; 12146 return EvaluateComparisonBinaryOperator(Info, E, OnSuccess, [&]() { 12147 return ExprEvaluatorBaseTy::VisitBinaryOperator(E); 12148 }); 12149 } 12150 12151 QualType LHSTy = E->getLHS()->getType(); 12152 QualType RHSTy = E->getRHS()->getType(); 12153 12154 if (LHSTy->isPointerType() && RHSTy->isPointerType() && 12155 E->getOpcode() == BO_Sub) { 12156 LValue LHSValue, RHSValue; 12157 12158 bool LHSOK = EvaluatePointer(E->getLHS(), LHSValue, Info); 12159 if (!LHSOK && !Info.noteFailure()) 12160 return false; 12161 12162 if (!EvaluatePointer(E->getRHS(), RHSValue, Info) || !LHSOK) 12163 return false; 12164 12165 // Reject differing bases from the normal codepath; we special-case 12166 // comparisons to null. 12167 if (!HasSameBase(LHSValue, RHSValue)) { 12168 // Handle &&A - &&B. 12169 if (!LHSValue.Offset.isZero() || !RHSValue.Offset.isZero()) 12170 return Error(E); 12171 const Expr *LHSExpr = LHSValue.Base.dyn_cast<const Expr *>(); 12172 const Expr *RHSExpr = RHSValue.Base.dyn_cast<const Expr *>(); 12173 if (!LHSExpr || !RHSExpr) 12174 return Error(E); 12175 const AddrLabelExpr *LHSAddrExpr = dyn_cast<AddrLabelExpr>(LHSExpr); 12176 const AddrLabelExpr *RHSAddrExpr = dyn_cast<AddrLabelExpr>(RHSExpr); 12177 if (!LHSAddrExpr || !RHSAddrExpr) 12178 return Error(E); 12179 // Make sure both labels come from the same function. 12180 if (LHSAddrExpr->getLabel()->getDeclContext() != 12181 RHSAddrExpr->getLabel()->getDeclContext()) 12182 return Error(E); 12183 return Success(APValue(LHSAddrExpr, RHSAddrExpr), E); 12184 } 12185 const CharUnits &LHSOffset = LHSValue.getLValueOffset(); 12186 const CharUnits &RHSOffset = RHSValue.getLValueOffset(); 12187 12188 SubobjectDesignator &LHSDesignator = LHSValue.getLValueDesignator(); 12189 SubobjectDesignator &RHSDesignator = RHSValue.getLValueDesignator(); 12190 12191 // C++11 [expr.add]p6: 12192 // Unless both pointers point to elements of the same array object, or 12193 // one past the last element of the array object, the behavior is 12194 // undefined. 12195 if (!LHSDesignator.Invalid && !RHSDesignator.Invalid && 12196 !AreElementsOfSameArray(getType(LHSValue.Base), LHSDesignator, 12197 RHSDesignator)) 12198 Info.CCEDiag(E, diag::note_constexpr_pointer_subtraction_not_same_array); 12199 12200 QualType Type = E->getLHS()->getType(); 12201 QualType ElementType = Type->castAs<PointerType>()->getPointeeType(); 12202 12203 CharUnits ElementSize; 12204 if (!HandleSizeof(Info, E->getExprLoc(), ElementType, ElementSize)) 12205 return false; 12206 12207 // As an extension, a type may have zero size (empty struct or union in 12208 // C, array of zero length). Pointer subtraction in such cases has 12209 // undefined behavior, so is not constant. 12210 if (ElementSize.isZero()) { 12211 Info.FFDiag(E, diag::note_constexpr_pointer_subtraction_zero_size) 12212 << ElementType; 12213 return false; 12214 } 12215 12216 // FIXME: LLVM and GCC both compute LHSOffset - RHSOffset at runtime, 12217 // and produce incorrect results when it overflows. Such behavior 12218 // appears to be non-conforming, but is common, so perhaps we should 12219 // assume the standard intended for such cases to be undefined behavior 12220 // and check for them. 12221 12222 // Compute (LHSOffset - RHSOffset) / Size carefully, checking for 12223 // overflow in the final conversion to ptrdiff_t. 12224 APSInt LHS(llvm::APInt(65, (int64_t)LHSOffset.getQuantity(), true), false); 12225 APSInt RHS(llvm::APInt(65, (int64_t)RHSOffset.getQuantity(), true), false); 12226 APSInt ElemSize(llvm::APInt(65, (int64_t)ElementSize.getQuantity(), true), 12227 false); 12228 APSInt TrueResult = (LHS - RHS) / ElemSize; 12229 APSInt Result = TrueResult.trunc(Info.Ctx.getIntWidth(E->getType())); 12230 12231 if (Result.extend(65) != TrueResult && 12232 !HandleOverflow(Info, E, TrueResult, E->getType())) 12233 return false; 12234 return Success(Result, E); 12235 } 12236 12237 return ExprEvaluatorBaseTy::VisitBinaryOperator(E); 12238 } 12239 12240 /// VisitUnaryExprOrTypeTraitExpr - Evaluate a sizeof, alignof or vec_step with 12241 /// a result as the expression's type. 12242 bool IntExprEvaluator::VisitUnaryExprOrTypeTraitExpr( 12243 const UnaryExprOrTypeTraitExpr *E) { 12244 switch(E->getKind()) { 12245 case UETT_PreferredAlignOf: 12246 case UETT_AlignOf: { 12247 if (E->isArgumentType()) 12248 return Success(GetAlignOfType(Info, E->getArgumentType(), E->getKind()), 12249 E); 12250 else 12251 return Success(GetAlignOfExpr(Info, E->getArgumentExpr(), E->getKind()), 12252 E); 12253 } 12254 12255 case UETT_VecStep: { 12256 QualType Ty = E->getTypeOfArgument(); 12257 12258 if (Ty->isVectorType()) { 12259 unsigned n = Ty->castAs<VectorType>()->getNumElements(); 12260 12261 // The vec_step built-in functions that take a 3-component 12262 // vector return 4. (OpenCL 1.1 spec 6.11.12) 12263 if (n == 3) 12264 n = 4; 12265 12266 return Success(n, E); 12267 } else 12268 return Success(1, E); 12269 } 12270 12271 case UETT_SizeOf: { 12272 QualType SrcTy = E->getTypeOfArgument(); 12273 // C++ [expr.sizeof]p2: "When applied to a reference or a reference type, 12274 // the result is the size of the referenced type." 12275 if (const ReferenceType *Ref = SrcTy->getAs<ReferenceType>()) 12276 SrcTy = Ref->getPointeeType(); 12277 12278 CharUnits Sizeof; 12279 if (!HandleSizeof(Info, E->getExprLoc(), SrcTy, Sizeof)) 12280 return false; 12281 return Success(Sizeof, E); 12282 } 12283 case UETT_OpenMPRequiredSimdAlign: 12284 assert(E->isArgumentType()); 12285 return Success( 12286 Info.Ctx.toCharUnitsFromBits( 12287 Info.Ctx.getOpenMPDefaultSimdAlign(E->getArgumentType())) 12288 .getQuantity(), 12289 E); 12290 } 12291 12292 llvm_unreachable("unknown expr/type trait"); 12293 } 12294 12295 bool IntExprEvaluator::VisitOffsetOfExpr(const OffsetOfExpr *OOE) { 12296 CharUnits Result; 12297 unsigned n = OOE->getNumComponents(); 12298 if (n == 0) 12299 return Error(OOE); 12300 QualType CurrentType = OOE->getTypeSourceInfo()->getType(); 12301 for (unsigned i = 0; i != n; ++i) { 12302 OffsetOfNode ON = OOE->getComponent(i); 12303 switch (ON.getKind()) { 12304 case OffsetOfNode::Array: { 12305 const Expr *Idx = OOE->getIndexExpr(ON.getArrayExprIndex()); 12306 APSInt IdxResult; 12307 if (!EvaluateInteger(Idx, IdxResult, Info)) 12308 return false; 12309 const ArrayType *AT = Info.Ctx.getAsArrayType(CurrentType); 12310 if (!AT) 12311 return Error(OOE); 12312 CurrentType = AT->getElementType(); 12313 CharUnits ElementSize = Info.Ctx.getTypeSizeInChars(CurrentType); 12314 Result += IdxResult.getSExtValue() * ElementSize; 12315 break; 12316 } 12317 12318 case OffsetOfNode::Field: { 12319 FieldDecl *MemberDecl = ON.getField(); 12320 const RecordType *RT = CurrentType->getAs<RecordType>(); 12321 if (!RT) 12322 return Error(OOE); 12323 RecordDecl *RD = RT->getDecl(); 12324 if (RD->isInvalidDecl()) return false; 12325 const ASTRecordLayout &RL = Info.Ctx.getASTRecordLayout(RD); 12326 unsigned i = MemberDecl->getFieldIndex(); 12327 assert(i < RL.getFieldCount() && "offsetof field in wrong type"); 12328 Result += Info.Ctx.toCharUnitsFromBits(RL.getFieldOffset(i)); 12329 CurrentType = MemberDecl->getType().getNonReferenceType(); 12330 break; 12331 } 12332 12333 case OffsetOfNode::Identifier: 12334 llvm_unreachable("dependent __builtin_offsetof"); 12335 12336 case OffsetOfNode::Base: { 12337 CXXBaseSpecifier *BaseSpec = ON.getBase(); 12338 if (BaseSpec->isVirtual()) 12339 return Error(OOE); 12340 12341 // Find the layout of the class whose base we are looking into. 12342 const RecordType *RT = CurrentType->getAs<RecordType>(); 12343 if (!RT) 12344 return Error(OOE); 12345 RecordDecl *RD = RT->getDecl(); 12346 if (RD->isInvalidDecl()) return false; 12347 const ASTRecordLayout &RL = Info.Ctx.getASTRecordLayout(RD); 12348 12349 // Find the base class itself. 12350 CurrentType = BaseSpec->getType(); 12351 const RecordType *BaseRT = CurrentType->getAs<RecordType>(); 12352 if (!BaseRT) 12353 return Error(OOE); 12354 12355 // Add the offset to the base. 12356 Result += RL.getBaseClassOffset(cast<CXXRecordDecl>(BaseRT->getDecl())); 12357 break; 12358 } 12359 } 12360 } 12361 return Success(Result, OOE); 12362 } 12363 12364 bool IntExprEvaluator::VisitUnaryOperator(const UnaryOperator *E) { 12365 switch (E->getOpcode()) { 12366 default: 12367 // Address, indirect, pre/post inc/dec, etc are not valid constant exprs. 12368 // See C99 6.6p3. 12369 return Error(E); 12370 case UO_Extension: 12371 // FIXME: Should extension allow i-c-e extension expressions in its scope? 12372 // If so, we could clear the diagnostic ID. 12373 return Visit(E->getSubExpr()); 12374 case UO_Plus: 12375 // The result is just the value. 12376 return Visit(E->getSubExpr()); 12377 case UO_Minus: { 12378 if (!Visit(E->getSubExpr())) 12379 return false; 12380 if (!Result.isInt()) return Error(E); 12381 const APSInt &Value = Result.getInt(); 12382 if (Value.isSigned() && Value.isMinSignedValue() && E->canOverflow() && 12383 !HandleOverflow(Info, E, -Value.extend(Value.getBitWidth() + 1), 12384 E->getType())) 12385 return false; 12386 return Success(-Value, E); 12387 } 12388 case UO_Not: { 12389 if (!Visit(E->getSubExpr())) 12390 return false; 12391 if (!Result.isInt()) return Error(E); 12392 return Success(~Result.getInt(), E); 12393 } 12394 case UO_LNot: { 12395 bool bres; 12396 if (!EvaluateAsBooleanCondition(E->getSubExpr(), bres, Info)) 12397 return false; 12398 return Success(!bres, E); 12399 } 12400 } 12401 } 12402 12403 /// HandleCast - This is used to evaluate implicit or explicit casts where the 12404 /// result type is integer. 12405 bool IntExprEvaluator::VisitCastExpr(const CastExpr *E) { 12406 const Expr *SubExpr = E->getSubExpr(); 12407 QualType DestType = E->getType(); 12408 QualType SrcType = SubExpr->getType(); 12409 12410 switch (E->getCastKind()) { 12411 case CK_BaseToDerived: 12412 case CK_DerivedToBase: 12413 case CK_UncheckedDerivedToBase: 12414 case CK_Dynamic: 12415 case CK_ToUnion: 12416 case CK_ArrayToPointerDecay: 12417 case CK_FunctionToPointerDecay: 12418 case CK_NullToPointer: 12419 case CK_NullToMemberPointer: 12420 case CK_BaseToDerivedMemberPointer: 12421 case CK_DerivedToBaseMemberPointer: 12422 case CK_ReinterpretMemberPointer: 12423 case CK_ConstructorConversion: 12424 case CK_IntegralToPointer: 12425 case CK_ToVoid: 12426 case CK_VectorSplat: 12427 case CK_IntegralToFloating: 12428 case CK_FloatingCast: 12429 case CK_CPointerToObjCPointerCast: 12430 case CK_BlockPointerToObjCPointerCast: 12431 case CK_AnyPointerToBlockPointerCast: 12432 case CK_ObjCObjectLValueCast: 12433 case CK_FloatingRealToComplex: 12434 case CK_FloatingComplexToReal: 12435 case CK_FloatingComplexCast: 12436 case CK_FloatingComplexToIntegralComplex: 12437 case CK_IntegralRealToComplex: 12438 case CK_IntegralComplexCast: 12439 case CK_IntegralComplexToFloatingComplex: 12440 case CK_BuiltinFnToFnPtr: 12441 case CK_ZeroToOCLOpaqueType: 12442 case CK_NonAtomicToAtomic: 12443 case CK_AddressSpaceConversion: 12444 case CK_IntToOCLSampler: 12445 case CK_FixedPointCast: 12446 case CK_IntegralToFixedPoint: 12447 llvm_unreachable("invalid cast kind for integral value"); 12448 12449 case CK_BitCast: 12450 case CK_Dependent: 12451 case CK_LValueBitCast: 12452 case CK_ARCProduceObject: 12453 case CK_ARCConsumeObject: 12454 case CK_ARCReclaimReturnedObject: 12455 case CK_ARCExtendBlockObject: 12456 case CK_CopyAndAutoreleaseBlockObject: 12457 return Error(E); 12458 12459 case CK_UserDefinedConversion: 12460 case CK_LValueToRValue: 12461 case CK_AtomicToNonAtomic: 12462 case CK_NoOp: 12463 case CK_LValueToRValueBitCast: 12464 return ExprEvaluatorBaseTy::VisitCastExpr(E); 12465 12466 case CK_MemberPointerToBoolean: 12467 case CK_PointerToBoolean: 12468 case CK_IntegralToBoolean: 12469 case CK_FloatingToBoolean: 12470 case CK_BooleanToSignedIntegral: 12471 case CK_FloatingComplexToBoolean: 12472 case CK_IntegralComplexToBoolean: { 12473 bool BoolResult; 12474 if (!EvaluateAsBooleanCondition(SubExpr, BoolResult, Info)) 12475 return false; 12476 uint64_t IntResult = BoolResult; 12477 if (BoolResult && E->getCastKind() == CK_BooleanToSignedIntegral) 12478 IntResult = (uint64_t)-1; 12479 return Success(IntResult, E); 12480 } 12481 12482 case CK_FixedPointToIntegral: { 12483 APFixedPoint Src(Info.Ctx.getFixedPointSemantics(SrcType)); 12484 if (!EvaluateFixedPoint(SubExpr, Src, Info)) 12485 return false; 12486 bool Overflowed; 12487 llvm::APSInt Result = Src.convertToInt( 12488 Info.Ctx.getIntWidth(DestType), 12489 DestType->isSignedIntegerOrEnumerationType(), &Overflowed); 12490 if (Overflowed && !HandleOverflow(Info, E, Result, DestType)) 12491 return false; 12492 return Success(Result, E); 12493 } 12494 12495 case CK_FixedPointToBoolean: { 12496 // Unsigned padding does not affect this. 12497 APValue Val; 12498 if (!Evaluate(Val, Info, SubExpr)) 12499 return false; 12500 return Success(Val.getFixedPoint().getBoolValue(), E); 12501 } 12502 12503 case CK_IntegralCast: { 12504 if (!Visit(SubExpr)) 12505 return false; 12506 12507 if (!Result.isInt()) { 12508 // Allow casts of address-of-label differences if they are no-ops 12509 // or narrowing. (The narrowing case isn't actually guaranteed to 12510 // be constant-evaluatable except in some narrow cases which are hard 12511 // to detect here. We let it through on the assumption the user knows 12512 // what they are doing.) 12513 if (Result.isAddrLabelDiff()) 12514 return Info.Ctx.getTypeSize(DestType) <= Info.Ctx.getTypeSize(SrcType); 12515 // Only allow casts of lvalues if they are lossless. 12516 return Info.Ctx.getTypeSize(DestType) == Info.Ctx.getTypeSize(SrcType); 12517 } 12518 12519 return Success(HandleIntToIntCast(Info, E, DestType, SrcType, 12520 Result.getInt()), E); 12521 } 12522 12523 case CK_PointerToIntegral: { 12524 CCEDiag(E, diag::note_constexpr_invalid_cast) << 2; 12525 12526 LValue LV; 12527 if (!EvaluatePointer(SubExpr, LV, Info)) 12528 return false; 12529 12530 if (LV.getLValueBase()) { 12531 // Only allow based lvalue casts if they are lossless. 12532 // FIXME: Allow a larger integer size than the pointer size, and allow 12533 // narrowing back down to pointer width in subsequent integral casts. 12534 // FIXME: Check integer type's active bits, not its type size. 12535 if (Info.Ctx.getTypeSize(DestType) != Info.Ctx.getTypeSize(SrcType)) 12536 return Error(E); 12537 12538 LV.Designator.setInvalid(); 12539 LV.moveInto(Result); 12540 return true; 12541 } 12542 12543 APSInt AsInt; 12544 APValue V; 12545 LV.moveInto(V); 12546 if (!V.toIntegralConstant(AsInt, SrcType, Info.Ctx)) 12547 llvm_unreachable("Can't cast this!"); 12548 12549 return Success(HandleIntToIntCast(Info, E, DestType, SrcType, AsInt), E); 12550 } 12551 12552 case CK_IntegralComplexToReal: { 12553 ComplexValue C; 12554 if (!EvaluateComplex(SubExpr, C, Info)) 12555 return false; 12556 return Success(C.getComplexIntReal(), E); 12557 } 12558 12559 case CK_FloatingToIntegral: { 12560 APFloat F(0.0); 12561 if (!EvaluateFloat(SubExpr, F, Info)) 12562 return false; 12563 12564 APSInt Value; 12565 if (!HandleFloatToIntCast(Info, E, SrcType, F, DestType, Value)) 12566 return false; 12567 return Success(Value, E); 12568 } 12569 } 12570 12571 llvm_unreachable("unknown cast resulting in integral value"); 12572 } 12573 12574 bool IntExprEvaluator::VisitUnaryReal(const UnaryOperator *E) { 12575 if (E->getSubExpr()->getType()->isAnyComplexType()) { 12576 ComplexValue LV; 12577 if (!EvaluateComplex(E->getSubExpr(), LV, Info)) 12578 return false; 12579 if (!LV.isComplexInt()) 12580 return Error(E); 12581 return Success(LV.getComplexIntReal(), E); 12582 } 12583 12584 return Visit(E->getSubExpr()); 12585 } 12586 12587 bool IntExprEvaluator::VisitUnaryImag(const UnaryOperator *E) { 12588 if (E->getSubExpr()->getType()->isComplexIntegerType()) { 12589 ComplexValue LV; 12590 if (!EvaluateComplex(E->getSubExpr(), LV, Info)) 12591 return false; 12592 if (!LV.isComplexInt()) 12593 return Error(E); 12594 return Success(LV.getComplexIntImag(), E); 12595 } 12596 12597 VisitIgnoredValue(E->getSubExpr()); 12598 return Success(0, E); 12599 } 12600 12601 bool IntExprEvaluator::VisitSizeOfPackExpr(const SizeOfPackExpr *E) { 12602 return Success(E->getPackLength(), E); 12603 } 12604 12605 bool IntExprEvaluator::VisitCXXNoexceptExpr(const CXXNoexceptExpr *E) { 12606 return Success(E->getValue(), E); 12607 } 12608 12609 bool IntExprEvaluator::VisitConceptSpecializationExpr( 12610 const ConceptSpecializationExpr *E) { 12611 return Success(E->isSatisfied(), E); 12612 } 12613 12614 bool IntExprEvaluator::VisitRequiresExpr(const RequiresExpr *E) { 12615 return Success(E->isSatisfied(), E); 12616 } 12617 12618 bool FixedPointExprEvaluator::VisitUnaryOperator(const UnaryOperator *E) { 12619 switch (E->getOpcode()) { 12620 default: 12621 // Invalid unary operators 12622 return Error(E); 12623 case UO_Plus: 12624 // The result is just the value. 12625 return Visit(E->getSubExpr()); 12626 case UO_Minus: { 12627 if (!Visit(E->getSubExpr())) return false; 12628 if (!Result.isFixedPoint()) 12629 return Error(E); 12630 bool Overflowed; 12631 APFixedPoint Negated = Result.getFixedPoint().negate(&Overflowed); 12632 if (Overflowed && !HandleOverflow(Info, E, Negated, E->getType())) 12633 return false; 12634 return Success(Negated, E); 12635 } 12636 case UO_LNot: { 12637 bool bres; 12638 if (!EvaluateAsBooleanCondition(E->getSubExpr(), bres, Info)) 12639 return false; 12640 return Success(!bres, E); 12641 } 12642 } 12643 } 12644 12645 bool FixedPointExprEvaluator::VisitCastExpr(const CastExpr *E) { 12646 const Expr *SubExpr = E->getSubExpr(); 12647 QualType DestType = E->getType(); 12648 assert(DestType->isFixedPointType() && 12649 "Expected destination type to be a fixed point type"); 12650 auto DestFXSema = Info.Ctx.getFixedPointSemantics(DestType); 12651 12652 switch (E->getCastKind()) { 12653 case CK_FixedPointCast: { 12654 APFixedPoint Src(Info.Ctx.getFixedPointSemantics(SubExpr->getType())); 12655 if (!EvaluateFixedPoint(SubExpr, Src, Info)) 12656 return false; 12657 bool Overflowed; 12658 APFixedPoint Result = Src.convert(DestFXSema, &Overflowed); 12659 if (Overflowed && !HandleOverflow(Info, E, Result, DestType)) 12660 return false; 12661 return Success(Result, E); 12662 } 12663 case CK_IntegralToFixedPoint: { 12664 APSInt Src; 12665 if (!EvaluateInteger(SubExpr, Src, Info)) 12666 return false; 12667 12668 bool Overflowed; 12669 APFixedPoint IntResult = APFixedPoint::getFromIntValue( 12670 Src, Info.Ctx.getFixedPointSemantics(DestType), &Overflowed); 12671 12672 if (Overflowed && !HandleOverflow(Info, E, IntResult, DestType)) 12673 return false; 12674 12675 return Success(IntResult, E); 12676 } 12677 case CK_NoOp: 12678 case CK_LValueToRValue: 12679 return ExprEvaluatorBaseTy::VisitCastExpr(E); 12680 default: 12681 return Error(E); 12682 } 12683 } 12684 12685 bool FixedPointExprEvaluator::VisitBinaryOperator(const BinaryOperator *E) { 12686 const Expr *LHS = E->getLHS(); 12687 const Expr *RHS = E->getRHS(); 12688 FixedPointSemantics ResultFXSema = 12689 Info.Ctx.getFixedPointSemantics(E->getType()); 12690 12691 APFixedPoint LHSFX(Info.Ctx.getFixedPointSemantics(LHS->getType())); 12692 if (!EvaluateFixedPointOrInteger(LHS, LHSFX, Info)) 12693 return false; 12694 APFixedPoint RHSFX(Info.Ctx.getFixedPointSemantics(RHS->getType())); 12695 if (!EvaluateFixedPointOrInteger(RHS, RHSFX, Info)) 12696 return false; 12697 12698 switch (E->getOpcode()) { 12699 case BO_Add: { 12700 bool AddOverflow, ConversionOverflow; 12701 APFixedPoint Result = LHSFX.add(RHSFX, &AddOverflow) 12702 .convert(ResultFXSema, &ConversionOverflow); 12703 if ((AddOverflow || ConversionOverflow) && 12704 !HandleOverflow(Info, E, Result, E->getType())) 12705 return false; 12706 return Success(Result, E); 12707 } 12708 default: 12709 return false; 12710 } 12711 llvm_unreachable("Should've exited before this"); 12712 } 12713 12714 //===----------------------------------------------------------------------===// 12715 // Float Evaluation 12716 //===----------------------------------------------------------------------===// 12717 12718 namespace { 12719 class FloatExprEvaluator 12720 : public ExprEvaluatorBase<FloatExprEvaluator> { 12721 APFloat &Result; 12722 public: 12723 FloatExprEvaluator(EvalInfo &info, APFloat &result) 12724 : ExprEvaluatorBaseTy(info), Result(result) {} 12725 12726 bool Success(const APValue &V, const Expr *e) { 12727 Result = V.getFloat(); 12728 return true; 12729 } 12730 12731 bool ZeroInitialization(const Expr *E) { 12732 Result = APFloat::getZero(Info.Ctx.getFloatTypeSemantics(E->getType())); 12733 return true; 12734 } 12735 12736 bool VisitCallExpr(const CallExpr *E); 12737 12738 bool VisitUnaryOperator(const UnaryOperator *E); 12739 bool VisitBinaryOperator(const BinaryOperator *E); 12740 bool VisitFloatingLiteral(const FloatingLiteral *E); 12741 bool VisitCastExpr(const CastExpr *E); 12742 12743 bool VisitUnaryReal(const UnaryOperator *E); 12744 bool VisitUnaryImag(const UnaryOperator *E); 12745 12746 // FIXME: Missing: array subscript of vector, member of vector 12747 }; 12748 } // end anonymous namespace 12749 12750 static bool EvaluateFloat(const Expr* E, APFloat& Result, EvalInfo &Info) { 12751 assert(E->isRValue() && E->getType()->isRealFloatingType()); 12752 return FloatExprEvaluator(Info, Result).Visit(E); 12753 } 12754 12755 static bool TryEvaluateBuiltinNaN(const ASTContext &Context, 12756 QualType ResultTy, 12757 const Expr *Arg, 12758 bool SNaN, 12759 llvm::APFloat &Result) { 12760 const StringLiteral *S = dyn_cast<StringLiteral>(Arg->IgnoreParenCasts()); 12761 if (!S) return false; 12762 12763 const llvm::fltSemantics &Sem = Context.getFloatTypeSemantics(ResultTy); 12764 12765 llvm::APInt fill; 12766 12767 // Treat empty strings as if they were zero. 12768 if (S->getString().empty()) 12769 fill = llvm::APInt(32, 0); 12770 else if (S->getString().getAsInteger(0, fill)) 12771 return false; 12772 12773 if (Context.getTargetInfo().isNan2008()) { 12774 if (SNaN) 12775 Result = llvm::APFloat::getSNaN(Sem, false, &fill); 12776 else 12777 Result = llvm::APFloat::getQNaN(Sem, false, &fill); 12778 } else { 12779 // Prior to IEEE 754-2008, architectures were allowed to choose whether 12780 // the first bit of their significand was set for qNaN or sNaN. MIPS chose 12781 // a different encoding to what became a standard in 2008, and for pre- 12782 // 2008 revisions, MIPS interpreted sNaN-2008 as qNan and qNaN-2008 as 12783 // sNaN. This is now known as "legacy NaN" encoding. 12784 if (SNaN) 12785 Result = llvm::APFloat::getQNaN(Sem, false, &fill); 12786 else 12787 Result = llvm::APFloat::getSNaN(Sem, false, &fill); 12788 } 12789 12790 return true; 12791 } 12792 12793 bool FloatExprEvaluator::VisitCallExpr(const CallExpr *E) { 12794 switch (E->getBuiltinCallee()) { 12795 default: 12796 return ExprEvaluatorBaseTy::VisitCallExpr(E); 12797 12798 case Builtin::BI__builtin_huge_val: 12799 case Builtin::BI__builtin_huge_valf: 12800 case Builtin::BI__builtin_huge_vall: 12801 case Builtin::BI__builtin_huge_valf128: 12802 case Builtin::BI__builtin_inf: 12803 case Builtin::BI__builtin_inff: 12804 case Builtin::BI__builtin_infl: 12805 case Builtin::BI__builtin_inff128: { 12806 const llvm::fltSemantics &Sem = 12807 Info.Ctx.getFloatTypeSemantics(E->getType()); 12808 Result = llvm::APFloat::getInf(Sem); 12809 return true; 12810 } 12811 12812 case Builtin::BI__builtin_nans: 12813 case Builtin::BI__builtin_nansf: 12814 case Builtin::BI__builtin_nansl: 12815 case Builtin::BI__builtin_nansf128: 12816 if (!TryEvaluateBuiltinNaN(Info.Ctx, E->getType(), E->getArg(0), 12817 true, Result)) 12818 return Error(E); 12819 return true; 12820 12821 case Builtin::BI__builtin_nan: 12822 case Builtin::BI__builtin_nanf: 12823 case Builtin::BI__builtin_nanl: 12824 case Builtin::BI__builtin_nanf128: 12825 // If this is __builtin_nan() turn this into a nan, otherwise we 12826 // can't constant fold it. 12827 if (!TryEvaluateBuiltinNaN(Info.Ctx, E->getType(), E->getArg(0), 12828 false, Result)) 12829 return Error(E); 12830 return true; 12831 12832 case Builtin::BI__builtin_fabs: 12833 case Builtin::BI__builtin_fabsf: 12834 case Builtin::BI__builtin_fabsl: 12835 case Builtin::BI__builtin_fabsf128: 12836 if (!EvaluateFloat(E->getArg(0), Result, Info)) 12837 return false; 12838 12839 if (Result.isNegative()) 12840 Result.changeSign(); 12841 return true; 12842 12843 // FIXME: Builtin::BI__builtin_powi 12844 // FIXME: Builtin::BI__builtin_powif 12845 // FIXME: Builtin::BI__builtin_powil 12846 12847 case Builtin::BI__builtin_copysign: 12848 case Builtin::BI__builtin_copysignf: 12849 case Builtin::BI__builtin_copysignl: 12850 case Builtin::BI__builtin_copysignf128: { 12851 APFloat RHS(0.); 12852 if (!EvaluateFloat(E->getArg(0), Result, Info) || 12853 !EvaluateFloat(E->getArg(1), RHS, Info)) 12854 return false; 12855 Result.copySign(RHS); 12856 return true; 12857 } 12858 } 12859 } 12860 12861 bool FloatExprEvaluator::VisitUnaryReal(const UnaryOperator *E) { 12862 if (E->getSubExpr()->getType()->isAnyComplexType()) { 12863 ComplexValue CV; 12864 if (!EvaluateComplex(E->getSubExpr(), CV, Info)) 12865 return false; 12866 Result = CV.FloatReal; 12867 return true; 12868 } 12869 12870 return Visit(E->getSubExpr()); 12871 } 12872 12873 bool FloatExprEvaluator::VisitUnaryImag(const UnaryOperator *E) { 12874 if (E->getSubExpr()->getType()->isAnyComplexType()) { 12875 ComplexValue CV; 12876 if (!EvaluateComplex(E->getSubExpr(), CV, Info)) 12877 return false; 12878 Result = CV.FloatImag; 12879 return true; 12880 } 12881 12882 VisitIgnoredValue(E->getSubExpr()); 12883 const llvm::fltSemantics &Sem = Info.Ctx.getFloatTypeSemantics(E->getType()); 12884 Result = llvm::APFloat::getZero(Sem); 12885 return true; 12886 } 12887 12888 bool FloatExprEvaluator::VisitUnaryOperator(const UnaryOperator *E) { 12889 switch (E->getOpcode()) { 12890 default: return Error(E); 12891 case UO_Plus: 12892 return EvaluateFloat(E->getSubExpr(), Result, Info); 12893 case UO_Minus: 12894 if (!EvaluateFloat(E->getSubExpr(), Result, Info)) 12895 return false; 12896 Result.changeSign(); 12897 return true; 12898 } 12899 } 12900 12901 bool FloatExprEvaluator::VisitBinaryOperator(const BinaryOperator *E) { 12902 if (E->isPtrMemOp() || E->isAssignmentOp() || E->getOpcode() == BO_Comma) 12903 return ExprEvaluatorBaseTy::VisitBinaryOperator(E); 12904 12905 APFloat RHS(0.0); 12906 bool LHSOK = EvaluateFloat(E->getLHS(), Result, Info); 12907 if (!LHSOK && !Info.noteFailure()) 12908 return false; 12909 return EvaluateFloat(E->getRHS(), RHS, Info) && LHSOK && 12910 handleFloatFloatBinOp(Info, E, Result, E->getOpcode(), RHS); 12911 } 12912 12913 bool FloatExprEvaluator::VisitFloatingLiteral(const FloatingLiteral *E) { 12914 Result = E->getValue(); 12915 return true; 12916 } 12917 12918 bool FloatExprEvaluator::VisitCastExpr(const CastExpr *E) { 12919 const Expr* SubExpr = E->getSubExpr(); 12920 12921 switch (E->getCastKind()) { 12922 default: 12923 return ExprEvaluatorBaseTy::VisitCastExpr(E); 12924 12925 case CK_IntegralToFloating: { 12926 APSInt IntResult; 12927 return EvaluateInteger(SubExpr, IntResult, Info) && 12928 HandleIntToFloatCast(Info, E, SubExpr->getType(), IntResult, 12929 E->getType(), Result); 12930 } 12931 12932 case CK_FloatingCast: { 12933 if (!Visit(SubExpr)) 12934 return false; 12935 return HandleFloatToFloatCast(Info, E, SubExpr->getType(), E->getType(), 12936 Result); 12937 } 12938 12939 case CK_FloatingComplexToReal: { 12940 ComplexValue V; 12941 if (!EvaluateComplex(SubExpr, V, Info)) 12942 return false; 12943 Result = V.getComplexFloatReal(); 12944 return true; 12945 } 12946 } 12947 } 12948 12949 //===----------------------------------------------------------------------===// 12950 // Complex Evaluation (for float and integer) 12951 //===----------------------------------------------------------------------===// 12952 12953 namespace { 12954 class ComplexExprEvaluator 12955 : public ExprEvaluatorBase<ComplexExprEvaluator> { 12956 ComplexValue &Result; 12957 12958 public: 12959 ComplexExprEvaluator(EvalInfo &info, ComplexValue &Result) 12960 : ExprEvaluatorBaseTy(info), Result(Result) {} 12961 12962 bool Success(const APValue &V, const Expr *e) { 12963 Result.setFrom(V); 12964 return true; 12965 } 12966 12967 bool ZeroInitialization(const Expr *E); 12968 12969 //===--------------------------------------------------------------------===// 12970 // Visitor Methods 12971 //===--------------------------------------------------------------------===// 12972 12973 bool VisitImaginaryLiteral(const ImaginaryLiteral *E); 12974 bool VisitCastExpr(const CastExpr *E); 12975 bool VisitBinaryOperator(const BinaryOperator *E); 12976 bool VisitUnaryOperator(const UnaryOperator *E); 12977 bool VisitInitListExpr(const InitListExpr *E); 12978 }; 12979 } // end anonymous namespace 12980 12981 static bool EvaluateComplex(const Expr *E, ComplexValue &Result, 12982 EvalInfo &Info) { 12983 assert(E->isRValue() && E->getType()->isAnyComplexType()); 12984 return ComplexExprEvaluator(Info, Result).Visit(E); 12985 } 12986 12987 bool ComplexExprEvaluator::ZeroInitialization(const Expr *E) { 12988 QualType ElemTy = E->getType()->castAs<ComplexType>()->getElementType(); 12989 if (ElemTy->isRealFloatingType()) { 12990 Result.makeComplexFloat(); 12991 APFloat Zero = APFloat::getZero(Info.Ctx.getFloatTypeSemantics(ElemTy)); 12992 Result.FloatReal = Zero; 12993 Result.FloatImag = Zero; 12994 } else { 12995 Result.makeComplexInt(); 12996 APSInt Zero = Info.Ctx.MakeIntValue(0, ElemTy); 12997 Result.IntReal = Zero; 12998 Result.IntImag = Zero; 12999 } 13000 return true; 13001 } 13002 13003 bool ComplexExprEvaluator::VisitImaginaryLiteral(const ImaginaryLiteral *E) { 13004 const Expr* SubExpr = E->getSubExpr(); 13005 13006 if (SubExpr->getType()->isRealFloatingType()) { 13007 Result.makeComplexFloat(); 13008 APFloat &Imag = Result.FloatImag; 13009 if (!EvaluateFloat(SubExpr, Imag, Info)) 13010 return false; 13011 13012 Result.FloatReal = APFloat(Imag.getSemantics()); 13013 return true; 13014 } else { 13015 assert(SubExpr->getType()->isIntegerType() && 13016 "Unexpected imaginary literal."); 13017 13018 Result.makeComplexInt(); 13019 APSInt &Imag = Result.IntImag; 13020 if (!EvaluateInteger(SubExpr, Imag, Info)) 13021 return false; 13022 13023 Result.IntReal = APSInt(Imag.getBitWidth(), !Imag.isSigned()); 13024 return true; 13025 } 13026 } 13027 13028 bool ComplexExprEvaluator::VisitCastExpr(const CastExpr *E) { 13029 13030 switch (E->getCastKind()) { 13031 case CK_BitCast: 13032 case CK_BaseToDerived: 13033 case CK_DerivedToBase: 13034 case CK_UncheckedDerivedToBase: 13035 case CK_Dynamic: 13036 case CK_ToUnion: 13037 case CK_ArrayToPointerDecay: 13038 case CK_FunctionToPointerDecay: 13039 case CK_NullToPointer: 13040 case CK_NullToMemberPointer: 13041 case CK_BaseToDerivedMemberPointer: 13042 case CK_DerivedToBaseMemberPointer: 13043 case CK_MemberPointerToBoolean: 13044 case CK_ReinterpretMemberPointer: 13045 case CK_ConstructorConversion: 13046 case CK_IntegralToPointer: 13047 case CK_PointerToIntegral: 13048 case CK_PointerToBoolean: 13049 case CK_ToVoid: 13050 case CK_VectorSplat: 13051 case CK_IntegralCast: 13052 case CK_BooleanToSignedIntegral: 13053 case CK_IntegralToBoolean: 13054 case CK_IntegralToFloating: 13055 case CK_FloatingToIntegral: 13056 case CK_FloatingToBoolean: 13057 case CK_FloatingCast: 13058 case CK_CPointerToObjCPointerCast: 13059 case CK_BlockPointerToObjCPointerCast: 13060 case CK_AnyPointerToBlockPointerCast: 13061 case CK_ObjCObjectLValueCast: 13062 case CK_FloatingComplexToReal: 13063 case CK_FloatingComplexToBoolean: 13064 case CK_IntegralComplexToReal: 13065 case CK_IntegralComplexToBoolean: 13066 case CK_ARCProduceObject: 13067 case CK_ARCConsumeObject: 13068 case CK_ARCReclaimReturnedObject: 13069 case CK_ARCExtendBlockObject: 13070 case CK_CopyAndAutoreleaseBlockObject: 13071 case CK_BuiltinFnToFnPtr: 13072 case CK_ZeroToOCLOpaqueType: 13073 case CK_NonAtomicToAtomic: 13074 case CK_AddressSpaceConversion: 13075 case CK_IntToOCLSampler: 13076 case CK_FixedPointCast: 13077 case CK_FixedPointToBoolean: 13078 case CK_FixedPointToIntegral: 13079 case CK_IntegralToFixedPoint: 13080 llvm_unreachable("invalid cast kind for complex value"); 13081 13082 case CK_LValueToRValue: 13083 case CK_AtomicToNonAtomic: 13084 case CK_NoOp: 13085 case CK_LValueToRValueBitCast: 13086 return ExprEvaluatorBaseTy::VisitCastExpr(E); 13087 13088 case CK_Dependent: 13089 case CK_LValueBitCast: 13090 case CK_UserDefinedConversion: 13091 return Error(E); 13092 13093 case CK_FloatingRealToComplex: { 13094 APFloat &Real = Result.FloatReal; 13095 if (!EvaluateFloat(E->getSubExpr(), Real, Info)) 13096 return false; 13097 13098 Result.makeComplexFloat(); 13099 Result.FloatImag = APFloat(Real.getSemantics()); 13100 return true; 13101 } 13102 13103 case CK_FloatingComplexCast: { 13104 if (!Visit(E->getSubExpr())) 13105 return false; 13106 13107 QualType To = E->getType()->castAs<ComplexType>()->getElementType(); 13108 QualType From 13109 = E->getSubExpr()->getType()->castAs<ComplexType>()->getElementType(); 13110 13111 return HandleFloatToFloatCast(Info, E, From, To, Result.FloatReal) && 13112 HandleFloatToFloatCast(Info, E, From, To, Result.FloatImag); 13113 } 13114 13115 case CK_FloatingComplexToIntegralComplex: { 13116 if (!Visit(E->getSubExpr())) 13117 return false; 13118 13119 QualType To = E->getType()->castAs<ComplexType>()->getElementType(); 13120 QualType From 13121 = E->getSubExpr()->getType()->castAs<ComplexType>()->getElementType(); 13122 Result.makeComplexInt(); 13123 return HandleFloatToIntCast(Info, E, From, Result.FloatReal, 13124 To, Result.IntReal) && 13125 HandleFloatToIntCast(Info, E, From, Result.FloatImag, 13126 To, Result.IntImag); 13127 } 13128 13129 case CK_IntegralRealToComplex: { 13130 APSInt &Real = Result.IntReal; 13131 if (!EvaluateInteger(E->getSubExpr(), Real, Info)) 13132 return false; 13133 13134 Result.makeComplexInt(); 13135 Result.IntImag = APSInt(Real.getBitWidth(), !Real.isSigned()); 13136 return true; 13137 } 13138 13139 case CK_IntegralComplexCast: { 13140 if (!Visit(E->getSubExpr())) 13141 return false; 13142 13143 QualType To = E->getType()->castAs<ComplexType>()->getElementType(); 13144 QualType From 13145 = E->getSubExpr()->getType()->castAs<ComplexType>()->getElementType(); 13146 13147 Result.IntReal = HandleIntToIntCast(Info, E, To, From, Result.IntReal); 13148 Result.IntImag = HandleIntToIntCast(Info, E, To, From, Result.IntImag); 13149 return true; 13150 } 13151 13152 case CK_IntegralComplexToFloatingComplex: { 13153 if (!Visit(E->getSubExpr())) 13154 return false; 13155 13156 QualType To = E->getType()->castAs<ComplexType>()->getElementType(); 13157 QualType From 13158 = E->getSubExpr()->getType()->castAs<ComplexType>()->getElementType(); 13159 Result.makeComplexFloat(); 13160 return HandleIntToFloatCast(Info, E, From, Result.IntReal, 13161 To, Result.FloatReal) && 13162 HandleIntToFloatCast(Info, E, From, Result.IntImag, 13163 To, Result.FloatImag); 13164 } 13165 } 13166 13167 llvm_unreachable("unknown cast resulting in complex value"); 13168 } 13169 13170 bool ComplexExprEvaluator::VisitBinaryOperator(const BinaryOperator *E) { 13171 if (E->isPtrMemOp() || E->isAssignmentOp() || E->getOpcode() == BO_Comma) 13172 return ExprEvaluatorBaseTy::VisitBinaryOperator(E); 13173 13174 // Track whether the LHS or RHS is real at the type system level. When this is 13175 // the case we can simplify our evaluation strategy. 13176 bool LHSReal = false, RHSReal = false; 13177 13178 bool LHSOK; 13179 if (E->getLHS()->getType()->isRealFloatingType()) { 13180 LHSReal = true; 13181 APFloat &Real = Result.FloatReal; 13182 LHSOK = EvaluateFloat(E->getLHS(), Real, Info); 13183 if (LHSOK) { 13184 Result.makeComplexFloat(); 13185 Result.FloatImag = APFloat(Real.getSemantics()); 13186 } 13187 } else { 13188 LHSOK = Visit(E->getLHS()); 13189 } 13190 if (!LHSOK && !Info.noteFailure()) 13191 return false; 13192 13193 ComplexValue RHS; 13194 if (E->getRHS()->getType()->isRealFloatingType()) { 13195 RHSReal = true; 13196 APFloat &Real = RHS.FloatReal; 13197 if (!EvaluateFloat(E->getRHS(), Real, Info) || !LHSOK) 13198 return false; 13199 RHS.makeComplexFloat(); 13200 RHS.FloatImag = APFloat(Real.getSemantics()); 13201 } else if (!EvaluateComplex(E->getRHS(), RHS, Info) || !LHSOK) 13202 return false; 13203 13204 assert(!(LHSReal && RHSReal) && 13205 "Cannot have both operands of a complex operation be real."); 13206 switch (E->getOpcode()) { 13207 default: return Error(E); 13208 case BO_Add: 13209 if (Result.isComplexFloat()) { 13210 Result.getComplexFloatReal().add(RHS.getComplexFloatReal(), 13211 APFloat::rmNearestTiesToEven); 13212 if (LHSReal) 13213 Result.getComplexFloatImag() = RHS.getComplexFloatImag(); 13214 else if (!RHSReal) 13215 Result.getComplexFloatImag().add(RHS.getComplexFloatImag(), 13216 APFloat::rmNearestTiesToEven); 13217 } else { 13218 Result.getComplexIntReal() += RHS.getComplexIntReal(); 13219 Result.getComplexIntImag() += RHS.getComplexIntImag(); 13220 } 13221 break; 13222 case BO_Sub: 13223 if (Result.isComplexFloat()) { 13224 Result.getComplexFloatReal().subtract(RHS.getComplexFloatReal(), 13225 APFloat::rmNearestTiesToEven); 13226 if (LHSReal) { 13227 Result.getComplexFloatImag() = RHS.getComplexFloatImag(); 13228 Result.getComplexFloatImag().changeSign(); 13229 } else if (!RHSReal) { 13230 Result.getComplexFloatImag().subtract(RHS.getComplexFloatImag(), 13231 APFloat::rmNearestTiesToEven); 13232 } 13233 } else { 13234 Result.getComplexIntReal() -= RHS.getComplexIntReal(); 13235 Result.getComplexIntImag() -= RHS.getComplexIntImag(); 13236 } 13237 break; 13238 case BO_Mul: 13239 if (Result.isComplexFloat()) { 13240 // This is an implementation of complex multiplication according to the 13241 // constraints laid out in C11 Annex G. The implementation uses the 13242 // following naming scheme: 13243 // (a + ib) * (c + id) 13244 ComplexValue LHS = Result; 13245 APFloat &A = LHS.getComplexFloatReal(); 13246 APFloat &B = LHS.getComplexFloatImag(); 13247 APFloat &C = RHS.getComplexFloatReal(); 13248 APFloat &D = RHS.getComplexFloatImag(); 13249 APFloat &ResR = Result.getComplexFloatReal(); 13250 APFloat &ResI = Result.getComplexFloatImag(); 13251 if (LHSReal) { 13252 assert(!RHSReal && "Cannot have two real operands for a complex op!"); 13253 ResR = A * C; 13254 ResI = A * D; 13255 } else if (RHSReal) { 13256 ResR = C * A; 13257 ResI = C * B; 13258 } else { 13259 // In the fully general case, we need to handle NaNs and infinities 13260 // robustly. 13261 APFloat AC = A * C; 13262 APFloat BD = B * D; 13263 APFloat AD = A * D; 13264 APFloat BC = B * C; 13265 ResR = AC - BD; 13266 ResI = AD + BC; 13267 if (ResR.isNaN() && ResI.isNaN()) { 13268 bool Recalc = false; 13269 if (A.isInfinity() || B.isInfinity()) { 13270 A = APFloat::copySign( 13271 APFloat(A.getSemantics(), A.isInfinity() ? 1 : 0), A); 13272 B = APFloat::copySign( 13273 APFloat(B.getSemantics(), B.isInfinity() ? 1 : 0), B); 13274 if (C.isNaN()) 13275 C = APFloat::copySign(APFloat(C.getSemantics()), C); 13276 if (D.isNaN()) 13277 D = APFloat::copySign(APFloat(D.getSemantics()), D); 13278 Recalc = true; 13279 } 13280 if (C.isInfinity() || D.isInfinity()) { 13281 C = APFloat::copySign( 13282 APFloat(C.getSemantics(), C.isInfinity() ? 1 : 0), C); 13283 D = APFloat::copySign( 13284 APFloat(D.getSemantics(), D.isInfinity() ? 1 : 0), D); 13285 if (A.isNaN()) 13286 A = APFloat::copySign(APFloat(A.getSemantics()), A); 13287 if (B.isNaN()) 13288 B = APFloat::copySign(APFloat(B.getSemantics()), B); 13289 Recalc = true; 13290 } 13291 if (!Recalc && (AC.isInfinity() || BD.isInfinity() || 13292 AD.isInfinity() || BC.isInfinity())) { 13293 if (A.isNaN()) 13294 A = APFloat::copySign(APFloat(A.getSemantics()), A); 13295 if (B.isNaN()) 13296 B = APFloat::copySign(APFloat(B.getSemantics()), B); 13297 if (C.isNaN()) 13298 C = APFloat::copySign(APFloat(C.getSemantics()), C); 13299 if (D.isNaN()) 13300 D = APFloat::copySign(APFloat(D.getSemantics()), D); 13301 Recalc = true; 13302 } 13303 if (Recalc) { 13304 ResR = APFloat::getInf(A.getSemantics()) * (A * C - B * D); 13305 ResI = APFloat::getInf(A.getSemantics()) * (A * D + B * C); 13306 } 13307 } 13308 } 13309 } else { 13310 ComplexValue LHS = Result; 13311 Result.getComplexIntReal() = 13312 (LHS.getComplexIntReal() * RHS.getComplexIntReal() - 13313 LHS.getComplexIntImag() * RHS.getComplexIntImag()); 13314 Result.getComplexIntImag() = 13315 (LHS.getComplexIntReal() * RHS.getComplexIntImag() + 13316 LHS.getComplexIntImag() * RHS.getComplexIntReal()); 13317 } 13318 break; 13319 case BO_Div: 13320 if (Result.isComplexFloat()) { 13321 // This is an implementation of complex division according to the 13322 // constraints laid out in C11 Annex G. The implementation uses the 13323 // following naming scheme: 13324 // (a + ib) / (c + id) 13325 ComplexValue LHS = Result; 13326 APFloat &A = LHS.getComplexFloatReal(); 13327 APFloat &B = LHS.getComplexFloatImag(); 13328 APFloat &C = RHS.getComplexFloatReal(); 13329 APFloat &D = RHS.getComplexFloatImag(); 13330 APFloat &ResR = Result.getComplexFloatReal(); 13331 APFloat &ResI = Result.getComplexFloatImag(); 13332 if (RHSReal) { 13333 ResR = A / C; 13334 ResI = B / C; 13335 } else { 13336 if (LHSReal) { 13337 // No real optimizations we can do here, stub out with zero. 13338 B = APFloat::getZero(A.getSemantics()); 13339 } 13340 int DenomLogB = 0; 13341 APFloat MaxCD = maxnum(abs(C), abs(D)); 13342 if (MaxCD.isFinite()) { 13343 DenomLogB = ilogb(MaxCD); 13344 C = scalbn(C, -DenomLogB, APFloat::rmNearestTiesToEven); 13345 D = scalbn(D, -DenomLogB, APFloat::rmNearestTiesToEven); 13346 } 13347 APFloat Denom = C * C + D * D; 13348 ResR = scalbn((A * C + B * D) / Denom, -DenomLogB, 13349 APFloat::rmNearestTiesToEven); 13350 ResI = scalbn((B * C - A * D) / Denom, -DenomLogB, 13351 APFloat::rmNearestTiesToEven); 13352 if (ResR.isNaN() && ResI.isNaN()) { 13353 if (Denom.isPosZero() && (!A.isNaN() || !B.isNaN())) { 13354 ResR = APFloat::getInf(ResR.getSemantics(), C.isNegative()) * A; 13355 ResI = APFloat::getInf(ResR.getSemantics(), C.isNegative()) * B; 13356 } else if ((A.isInfinity() || B.isInfinity()) && C.isFinite() && 13357 D.isFinite()) { 13358 A = APFloat::copySign( 13359 APFloat(A.getSemantics(), A.isInfinity() ? 1 : 0), A); 13360 B = APFloat::copySign( 13361 APFloat(B.getSemantics(), B.isInfinity() ? 1 : 0), B); 13362 ResR = APFloat::getInf(ResR.getSemantics()) * (A * C + B * D); 13363 ResI = APFloat::getInf(ResI.getSemantics()) * (B * C - A * D); 13364 } else if (MaxCD.isInfinity() && A.isFinite() && B.isFinite()) { 13365 C = APFloat::copySign( 13366 APFloat(C.getSemantics(), C.isInfinity() ? 1 : 0), C); 13367 D = APFloat::copySign( 13368 APFloat(D.getSemantics(), D.isInfinity() ? 1 : 0), D); 13369 ResR = APFloat::getZero(ResR.getSemantics()) * (A * C + B * D); 13370 ResI = APFloat::getZero(ResI.getSemantics()) * (B * C - A * D); 13371 } 13372 } 13373 } 13374 } else { 13375 if (RHS.getComplexIntReal() == 0 && RHS.getComplexIntImag() == 0) 13376 return Error(E, diag::note_expr_divide_by_zero); 13377 13378 ComplexValue LHS = Result; 13379 APSInt Den = RHS.getComplexIntReal() * RHS.getComplexIntReal() + 13380 RHS.getComplexIntImag() * RHS.getComplexIntImag(); 13381 Result.getComplexIntReal() = 13382 (LHS.getComplexIntReal() * RHS.getComplexIntReal() + 13383 LHS.getComplexIntImag() * RHS.getComplexIntImag()) / Den; 13384 Result.getComplexIntImag() = 13385 (LHS.getComplexIntImag() * RHS.getComplexIntReal() - 13386 LHS.getComplexIntReal() * RHS.getComplexIntImag()) / Den; 13387 } 13388 break; 13389 } 13390 13391 return true; 13392 } 13393 13394 bool ComplexExprEvaluator::VisitUnaryOperator(const UnaryOperator *E) { 13395 // Get the operand value into 'Result'. 13396 if (!Visit(E->getSubExpr())) 13397 return false; 13398 13399 switch (E->getOpcode()) { 13400 default: 13401 return Error(E); 13402 case UO_Extension: 13403 return true; 13404 case UO_Plus: 13405 // The result is always just the subexpr. 13406 return true; 13407 case UO_Minus: 13408 if (Result.isComplexFloat()) { 13409 Result.getComplexFloatReal().changeSign(); 13410 Result.getComplexFloatImag().changeSign(); 13411 } 13412 else { 13413 Result.getComplexIntReal() = -Result.getComplexIntReal(); 13414 Result.getComplexIntImag() = -Result.getComplexIntImag(); 13415 } 13416 return true; 13417 case UO_Not: 13418 if (Result.isComplexFloat()) 13419 Result.getComplexFloatImag().changeSign(); 13420 else 13421 Result.getComplexIntImag() = -Result.getComplexIntImag(); 13422 return true; 13423 } 13424 } 13425 13426 bool ComplexExprEvaluator::VisitInitListExpr(const InitListExpr *E) { 13427 if (E->getNumInits() == 2) { 13428 if (E->getType()->isComplexType()) { 13429 Result.makeComplexFloat(); 13430 if (!EvaluateFloat(E->getInit(0), Result.FloatReal, Info)) 13431 return false; 13432 if (!EvaluateFloat(E->getInit(1), Result.FloatImag, Info)) 13433 return false; 13434 } else { 13435 Result.makeComplexInt(); 13436 if (!EvaluateInteger(E->getInit(0), Result.IntReal, Info)) 13437 return false; 13438 if (!EvaluateInteger(E->getInit(1), Result.IntImag, Info)) 13439 return false; 13440 } 13441 return true; 13442 } 13443 return ExprEvaluatorBaseTy::VisitInitListExpr(E); 13444 } 13445 13446 //===----------------------------------------------------------------------===// 13447 // Atomic expression evaluation, essentially just handling the NonAtomicToAtomic 13448 // implicit conversion. 13449 //===----------------------------------------------------------------------===// 13450 13451 namespace { 13452 class AtomicExprEvaluator : 13453 public ExprEvaluatorBase<AtomicExprEvaluator> { 13454 const LValue *This; 13455 APValue &Result; 13456 public: 13457 AtomicExprEvaluator(EvalInfo &Info, const LValue *This, APValue &Result) 13458 : ExprEvaluatorBaseTy(Info), This(This), Result(Result) {} 13459 13460 bool Success(const APValue &V, const Expr *E) { 13461 Result = V; 13462 return true; 13463 } 13464 13465 bool ZeroInitialization(const Expr *E) { 13466 ImplicitValueInitExpr VIE( 13467 E->getType()->castAs<AtomicType>()->getValueType()); 13468 // For atomic-qualified class (and array) types in C++, initialize the 13469 // _Atomic-wrapped subobject directly, in-place. 13470 return This ? EvaluateInPlace(Result, Info, *This, &VIE) 13471 : Evaluate(Result, Info, &VIE); 13472 } 13473 13474 bool VisitCastExpr(const CastExpr *E) { 13475 switch (E->getCastKind()) { 13476 default: 13477 return ExprEvaluatorBaseTy::VisitCastExpr(E); 13478 case CK_NonAtomicToAtomic: 13479 return This ? EvaluateInPlace(Result, Info, *This, E->getSubExpr()) 13480 : Evaluate(Result, Info, E->getSubExpr()); 13481 } 13482 } 13483 }; 13484 } // end anonymous namespace 13485 13486 static bool EvaluateAtomic(const Expr *E, const LValue *This, APValue &Result, 13487 EvalInfo &Info) { 13488 assert(E->isRValue() && E->getType()->isAtomicType()); 13489 return AtomicExprEvaluator(Info, This, Result).Visit(E); 13490 } 13491 13492 //===----------------------------------------------------------------------===// 13493 // Void expression evaluation, primarily for a cast to void on the LHS of a 13494 // comma operator 13495 //===----------------------------------------------------------------------===// 13496 13497 namespace { 13498 class VoidExprEvaluator 13499 : public ExprEvaluatorBase<VoidExprEvaluator> { 13500 public: 13501 VoidExprEvaluator(EvalInfo &Info) : ExprEvaluatorBaseTy(Info) {} 13502 13503 bool Success(const APValue &V, const Expr *e) { return true; } 13504 13505 bool ZeroInitialization(const Expr *E) { return true; } 13506 13507 bool VisitCastExpr(const CastExpr *E) { 13508 switch (E->getCastKind()) { 13509 default: 13510 return ExprEvaluatorBaseTy::VisitCastExpr(E); 13511 case CK_ToVoid: 13512 VisitIgnoredValue(E->getSubExpr()); 13513 return true; 13514 } 13515 } 13516 13517 bool VisitCallExpr(const CallExpr *E) { 13518 switch (E->getBuiltinCallee()) { 13519 case Builtin::BI__assume: 13520 case Builtin::BI__builtin_assume: 13521 // The argument is not evaluated! 13522 return true; 13523 13524 case Builtin::BI__builtin_operator_delete: 13525 return HandleOperatorDeleteCall(Info, E); 13526 13527 default: 13528 break; 13529 } 13530 13531 return ExprEvaluatorBaseTy::VisitCallExpr(E); 13532 } 13533 13534 bool VisitCXXDeleteExpr(const CXXDeleteExpr *E); 13535 }; 13536 } // end anonymous namespace 13537 13538 bool VoidExprEvaluator::VisitCXXDeleteExpr(const CXXDeleteExpr *E) { 13539 // We cannot speculatively evaluate a delete expression. 13540 if (Info.SpeculativeEvaluationDepth) 13541 return false; 13542 13543 FunctionDecl *OperatorDelete = E->getOperatorDelete(); 13544 if (!OperatorDelete->isReplaceableGlobalAllocationFunction()) { 13545 Info.FFDiag(E, diag::note_constexpr_new_non_replaceable) 13546 << isa<CXXMethodDecl>(OperatorDelete) << OperatorDelete; 13547 return false; 13548 } 13549 13550 const Expr *Arg = E->getArgument(); 13551 13552 LValue Pointer; 13553 if (!EvaluatePointer(Arg, Pointer, Info)) 13554 return false; 13555 if (Pointer.Designator.Invalid) 13556 return false; 13557 13558 // Deleting a null pointer has no effect. 13559 if (Pointer.isNullPointer()) { 13560 // This is the only case where we need to produce an extension warning: 13561 // the only other way we can succeed is if we find a dynamic allocation, 13562 // and we will have warned when we allocated it in that case. 13563 if (!Info.getLangOpts().CPlusPlus2a) 13564 Info.CCEDiag(E, diag::note_constexpr_new); 13565 return true; 13566 } 13567 13568 Optional<DynAlloc *> Alloc = CheckDeleteKind( 13569 Info, E, Pointer, E->isArrayForm() ? DynAlloc::ArrayNew : DynAlloc::New); 13570 if (!Alloc) 13571 return false; 13572 QualType AllocType = Pointer.Base.getDynamicAllocType(); 13573 13574 // For the non-array case, the designator must be empty if the static type 13575 // does not have a virtual destructor. 13576 if (!E->isArrayForm() && Pointer.Designator.Entries.size() != 0 && 13577 !hasVirtualDestructor(Arg->getType()->getPointeeType())) { 13578 Info.FFDiag(E, diag::note_constexpr_delete_base_nonvirt_dtor) 13579 << Arg->getType()->getPointeeType() << AllocType; 13580 return false; 13581 } 13582 13583 // For a class type with a virtual destructor, the selected operator delete 13584 // is the one looked up when building the destructor. 13585 if (!E->isArrayForm() && !E->isGlobalDelete()) { 13586 const FunctionDecl *VirtualDelete = getVirtualOperatorDelete(AllocType); 13587 if (VirtualDelete && 13588 !VirtualDelete->isReplaceableGlobalAllocationFunction()) { 13589 Info.FFDiag(E, diag::note_constexpr_new_non_replaceable) 13590 << isa<CXXMethodDecl>(VirtualDelete) << VirtualDelete; 13591 return false; 13592 } 13593 } 13594 13595 if (!HandleDestruction(Info, E->getExprLoc(), Pointer.getLValueBase(), 13596 (*Alloc)->Value, AllocType)) 13597 return false; 13598 13599 if (!Info.HeapAllocs.erase(Pointer.Base.dyn_cast<DynamicAllocLValue>())) { 13600 // The element was already erased. This means the destructor call also 13601 // deleted the object. 13602 // FIXME: This probably results in undefined behavior before we get this 13603 // far, and should be diagnosed elsewhere first. 13604 Info.FFDiag(E, diag::note_constexpr_double_delete); 13605 return false; 13606 } 13607 13608 return true; 13609 } 13610 13611 static bool EvaluateVoid(const Expr *E, EvalInfo &Info) { 13612 assert(E->isRValue() && E->getType()->isVoidType()); 13613 return VoidExprEvaluator(Info).Visit(E); 13614 } 13615 13616 //===----------------------------------------------------------------------===// 13617 // Top level Expr::EvaluateAsRValue method. 13618 //===----------------------------------------------------------------------===// 13619 13620 static bool Evaluate(APValue &Result, EvalInfo &Info, const Expr *E) { 13621 // In C, function designators are not lvalues, but we evaluate them as if they 13622 // are. 13623 QualType T = E->getType(); 13624 if (E->isGLValue() || T->isFunctionType()) { 13625 LValue LV; 13626 if (!EvaluateLValue(E, LV, Info)) 13627 return false; 13628 LV.moveInto(Result); 13629 } else if (T->isVectorType()) { 13630 if (!EvaluateVector(E, Result, Info)) 13631 return false; 13632 } else if (T->isIntegralOrEnumerationType()) { 13633 if (!IntExprEvaluator(Info, Result).Visit(E)) 13634 return false; 13635 } else if (T->hasPointerRepresentation()) { 13636 LValue LV; 13637 if (!EvaluatePointer(E, LV, Info)) 13638 return false; 13639 LV.moveInto(Result); 13640 } else if (T->isRealFloatingType()) { 13641 llvm::APFloat F(0.0); 13642 if (!EvaluateFloat(E, F, Info)) 13643 return false; 13644 Result = APValue(F); 13645 } else if (T->isAnyComplexType()) { 13646 ComplexValue C; 13647 if (!EvaluateComplex(E, C, Info)) 13648 return false; 13649 C.moveInto(Result); 13650 } else if (T->isFixedPointType()) { 13651 if (!FixedPointExprEvaluator(Info, Result).Visit(E)) return false; 13652 } else if (T->isMemberPointerType()) { 13653 MemberPtr P; 13654 if (!EvaluateMemberPointer(E, P, Info)) 13655 return false; 13656 P.moveInto(Result); 13657 return true; 13658 } else if (T->isArrayType()) { 13659 LValue LV; 13660 APValue &Value = 13661 Info.CurrentCall->createTemporary(E, T, false, LV); 13662 if (!EvaluateArray(E, LV, Value, Info)) 13663 return false; 13664 Result = Value; 13665 } else if (T->isRecordType()) { 13666 LValue LV; 13667 APValue &Value = Info.CurrentCall->createTemporary(E, T, false, LV); 13668 if (!EvaluateRecord(E, LV, Value, Info)) 13669 return false; 13670 Result = Value; 13671 } else if (T->isVoidType()) { 13672 if (!Info.getLangOpts().CPlusPlus11) 13673 Info.CCEDiag(E, diag::note_constexpr_nonliteral) 13674 << E->getType(); 13675 if (!EvaluateVoid(E, Info)) 13676 return false; 13677 } else if (T->isAtomicType()) { 13678 QualType Unqual = T.getAtomicUnqualifiedType(); 13679 if (Unqual->isArrayType() || Unqual->isRecordType()) { 13680 LValue LV; 13681 APValue &Value = Info.CurrentCall->createTemporary(E, Unqual, false, LV); 13682 if (!EvaluateAtomic(E, &LV, Value, Info)) 13683 return false; 13684 } else { 13685 if (!EvaluateAtomic(E, nullptr, Result, Info)) 13686 return false; 13687 } 13688 } else if (Info.getLangOpts().CPlusPlus11) { 13689 Info.FFDiag(E, diag::note_constexpr_nonliteral) << E->getType(); 13690 return false; 13691 } else { 13692 Info.FFDiag(E, diag::note_invalid_subexpr_in_const_expr); 13693 return false; 13694 } 13695 13696 return true; 13697 } 13698 13699 /// EvaluateInPlace - Evaluate an expression in-place in an APValue. In some 13700 /// cases, the in-place evaluation is essential, since later initializers for 13701 /// an object can indirectly refer to subobjects which were initialized earlier. 13702 static bool EvaluateInPlace(APValue &Result, EvalInfo &Info, const LValue &This, 13703 const Expr *E, bool AllowNonLiteralTypes) { 13704 assert(!E->isValueDependent()); 13705 13706 if (!AllowNonLiteralTypes && !CheckLiteralType(Info, E, &This)) 13707 return false; 13708 13709 if (E->isRValue()) { 13710 // Evaluate arrays and record types in-place, so that later initializers can 13711 // refer to earlier-initialized members of the object. 13712 QualType T = E->getType(); 13713 if (T->isArrayType()) 13714 return EvaluateArray(E, This, Result, Info); 13715 else if (T->isRecordType()) 13716 return EvaluateRecord(E, This, Result, Info); 13717 else if (T->isAtomicType()) { 13718 QualType Unqual = T.getAtomicUnqualifiedType(); 13719 if (Unqual->isArrayType() || Unqual->isRecordType()) 13720 return EvaluateAtomic(E, &This, Result, Info); 13721 } 13722 } 13723 13724 // For any other type, in-place evaluation is unimportant. 13725 return Evaluate(Result, Info, E); 13726 } 13727 13728 /// EvaluateAsRValue - Try to evaluate this expression, performing an implicit 13729 /// lvalue-to-rvalue cast if it is an lvalue. 13730 static bool EvaluateAsRValue(EvalInfo &Info, const Expr *E, APValue &Result) { 13731 if (Info.EnableNewConstInterp) { 13732 if (!Info.Ctx.getInterpContext().evaluateAsRValue(Info, E, Result)) 13733 return false; 13734 } else { 13735 if (E->getType().isNull()) 13736 return false; 13737 13738 if (!CheckLiteralType(Info, E)) 13739 return false; 13740 13741 if (!::Evaluate(Result, Info, E)) 13742 return false; 13743 13744 if (E->isGLValue()) { 13745 LValue LV; 13746 LV.setFrom(Info.Ctx, Result); 13747 if (!handleLValueToRValueConversion(Info, E, E->getType(), LV, Result)) 13748 return false; 13749 } 13750 } 13751 13752 // Check this core constant expression is a constant expression. 13753 return CheckConstantExpression(Info, E->getExprLoc(), E->getType(), Result) && 13754 CheckMemoryLeaks(Info); 13755 } 13756 13757 static bool FastEvaluateAsRValue(const Expr *Exp, Expr::EvalResult &Result, 13758 const ASTContext &Ctx, bool &IsConst) { 13759 // Fast-path evaluations of integer literals, since we sometimes see files 13760 // containing vast quantities of these. 13761 if (const IntegerLiteral *L = dyn_cast<IntegerLiteral>(Exp)) { 13762 Result.Val = APValue(APSInt(L->getValue(), 13763 L->getType()->isUnsignedIntegerType())); 13764 IsConst = true; 13765 return true; 13766 } 13767 13768 // This case should be rare, but we need to check it before we check on 13769 // the type below. 13770 if (Exp->getType().isNull()) { 13771 IsConst = false; 13772 return true; 13773 } 13774 13775 // FIXME: Evaluating values of large array and record types can cause 13776 // performance problems. Only do so in C++11 for now. 13777 if (Exp->isRValue() && (Exp->getType()->isArrayType() || 13778 Exp->getType()->isRecordType()) && 13779 !Ctx.getLangOpts().CPlusPlus11) { 13780 IsConst = false; 13781 return true; 13782 } 13783 return false; 13784 } 13785 13786 static bool hasUnacceptableSideEffect(Expr::EvalStatus &Result, 13787 Expr::SideEffectsKind SEK) { 13788 return (SEK < Expr::SE_AllowSideEffects && Result.HasSideEffects) || 13789 (SEK < Expr::SE_AllowUndefinedBehavior && Result.HasUndefinedBehavior); 13790 } 13791 13792 static bool EvaluateAsRValue(const Expr *E, Expr::EvalResult &Result, 13793 const ASTContext &Ctx, EvalInfo &Info) { 13794 bool IsConst; 13795 if (FastEvaluateAsRValue(E, Result, Ctx, IsConst)) 13796 return IsConst; 13797 13798 return EvaluateAsRValue(Info, E, Result.Val); 13799 } 13800 13801 static bool EvaluateAsInt(const Expr *E, Expr::EvalResult &ExprResult, 13802 const ASTContext &Ctx, 13803 Expr::SideEffectsKind AllowSideEffects, 13804 EvalInfo &Info) { 13805 if (!E->getType()->isIntegralOrEnumerationType()) 13806 return false; 13807 13808 if (!::EvaluateAsRValue(E, ExprResult, Ctx, Info) || 13809 !ExprResult.Val.isInt() || 13810 hasUnacceptableSideEffect(ExprResult, AllowSideEffects)) 13811 return false; 13812 13813 return true; 13814 } 13815 13816 static bool EvaluateAsFixedPoint(const Expr *E, Expr::EvalResult &ExprResult, 13817 const ASTContext &Ctx, 13818 Expr::SideEffectsKind AllowSideEffects, 13819 EvalInfo &Info) { 13820 if (!E->getType()->isFixedPointType()) 13821 return false; 13822 13823 if (!::EvaluateAsRValue(E, ExprResult, Ctx, Info)) 13824 return false; 13825 13826 if (!ExprResult.Val.isFixedPoint() || 13827 hasUnacceptableSideEffect(ExprResult, AllowSideEffects)) 13828 return false; 13829 13830 return true; 13831 } 13832 13833 /// EvaluateAsRValue - Return true if this is a constant which we can fold using 13834 /// any crazy technique (that has nothing to do with language standards) that 13835 /// we want to. If this function returns true, it returns the folded constant 13836 /// in Result. If this expression is a glvalue, an lvalue-to-rvalue conversion 13837 /// will be applied to the result. 13838 bool Expr::EvaluateAsRValue(EvalResult &Result, const ASTContext &Ctx, 13839 bool InConstantContext) const { 13840 assert(!isValueDependent() && 13841 "Expression evaluator can't be called on a dependent expression."); 13842 EvalInfo Info(Ctx, Result, EvalInfo::EM_IgnoreSideEffects); 13843 Info.InConstantContext = InConstantContext; 13844 return ::EvaluateAsRValue(this, Result, Ctx, Info); 13845 } 13846 13847 bool Expr::EvaluateAsBooleanCondition(bool &Result, const ASTContext &Ctx, 13848 bool InConstantContext) const { 13849 assert(!isValueDependent() && 13850 "Expression evaluator can't be called on a dependent expression."); 13851 EvalResult Scratch; 13852 return EvaluateAsRValue(Scratch, Ctx, InConstantContext) && 13853 HandleConversionToBool(Scratch.Val, Result); 13854 } 13855 13856 bool Expr::EvaluateAsInt(EvalResult &Result, const ASTContext &Ctx, 13857 SideEffectsKind AllowSideEffects, 13858 bool InConstantContext) const { 13859 assert(!isValueDependent() && 13860 "Expression evaluator can't be called on a dependent expression."); 13861 EvalInfo Info(Ctx, Result, EvalInfo::EM_IgnoreSideEffects); 13862 Info.InConstantContext = InConstantContext; 13863 return ::EvaluateAsInt(this, Result, Ctx, AllowSideEffects, Info); 13864 } 13865 13866 bool Expr::EvaluateAsFixedPoint(EvalResult &Result, const ASTContext &Ctx, 13867 SideEffectsKind AllowSideEffects, 13868 bool InConstantContext) const { 13869 assert(!isValueDependent() && 13870 "Expression evaluator can't be called on a dependent expression."); 13871 EvalInfo Info(Ctx, Result, EvalInfo::EM_IgnoreSideEffects); 13872 Info.InConstantContext = InConstantContext; 13873 return ::EvaluateAsFixedPoint(this, Result, Ctx, AllowSideEffects, Info); 13874 } 13875 13876 bool Expr::EvaluateAsFloat(APFloat &Result, const ASTContext &Ctx, 13877 SideEffectsKind AllowSideEffects, 13878 bool InConstantContext) const { 13879 assert(!isValueDependent() && 13880 "Expression evaluator can't be called on a dependent expression."); 13881 13882 if (!getType()->isRealFloatingType()) 13883 return false; 13884 13885 EvalResult ExprResult; 13886 if (!EvaluateAsRValue(ExprResult, Ctx, InConstantContext) || 13887 !ExprResult.Val.isFloat() || 13888 hasUnacceptableSideEffect(ExprResult, AllowSideEffects)) 13889 return false; 13890 13891 Result = ExprResult.Val.getFloat(); 13892 return true; 13893 } 13894 13895 bool Expr::EvaluateAsLValue(EvalResult &Result, const ASTContext &Ctx, 13896 bool InConstantContext) const { 13897 assert(!isValueDependent() && 13898 "Expression evaluator can't be called on a dependent expression."); 13899 13900 EvalInfo Info(Ctx, Result, EvalInfo::EM_ConstantFold); 13901 Info.InConstantContext = InConstantContext; 13902 LValue LV; 13903 CheckedTemporaries CheckedTemps; 13904 if (!EvaluateLValue(this, LV, Info) || !Info.discardCleanups() || 13905 Result.HasSideEffects || 13906 !CheckLValueConstantExpression(Info, getExprLoc(), 13907 Ctx.getLValueReferenceType(getType()), LV, 13908 Expr::EvaluateForCodeGen, CheckedTemps)) 13909 return false; 13910 13911 LV.moveInto(Result.Val); 13912 return true; 13913 } 13914 13915 bool Expr::EvaluateAsConstantExpr(EvalResult &Result, ConstExprUsage Usage, 13916 const ASTContext &Ctx, bool InPlace) const { 13917 assert(!isValueDependent() && 13918 "Expression evaluator can't be called on a dependent expression."); 13919 13920 EvalInfo::EvaluationMode EM = EvalInfo::EM_ConstantExpression; 13921 EvalInfo Info(Ctx, Result, EM); 13922 Info.InConstantContext = true; 13923 13924 if (InPlace) { 13925 Info.setEvaluatingDecl(this, Result.Val); 13926 LValue LVal; 13927 LVal.set(this); 13928 if (!::EvaluateInPlace(Result.Val, Info, LVal, this) || 13929 Result.HasSideEffects) 13930 return false; 13931 } else if (!::Evaluate(Result.Val, Info, this) || Result.HasSideEffects) 13932 return false; 13933 13934 if (!Info.discardCleanups()) 13935 llvm_unreachable("Unhandled cleanup; missing full expression marker?"); 13936 13937 return CheckConstantExpression(Info, getExprLoc(), getStorageType(Ctx, this), 13938 Result.Val, Usage) && 13939 CheckMemoryLeaks(Info); 13940 } 13941 13942 bool Expr::EvaluateAsInitializer(APValue &Value, const ASTContext &Ctx, 13943 const VarDecl *VD, 13944 SmallVectorImpl<PartialDiagnosticAt> &Notes) const { 13945 assert(!isValueDependent() && 13946 "Expression evaluator can't be called on a dependent expression."); 13947 13948 // FIXME: Evaluating initializers for large array and record types can cause 13949 // performance problems. Only do so in C++11 for now. 13950 if (isRValue() && (getType()->isArrayType() || getType()->isRecordType()) && 13951 !Ctx.getLangOpts().CPlusPlus11) 13952 return false; 13953 13954 Expr::EvalStatus EStatus; 13955 EStatus.Diag = &Notes; 13956 13957 EvalInfo Info(Ctx, EStatus, VD->isConstexpr() 13958 ? EvalInfo::EM_ConstantExpression 13959 : EvalInfo::EM_ConstantFold); 13960 Info.setEvaluatingDecl(VD, Value); 13961 Info.InConstantContext = true; 13962 13963 SourceLocation DeclLoc = VD->getLocation(); 13964 QualType DeclTy = VD->getType(); 13965 13966 if (Info.EnableNewConstInterp) { 13967 auto &InterpCtx = const_cast<ASTContext &>(Ctx).getInterpContext(); 13968 if (!InterpCtx.evaluateAsInitializer(Info, VD, Value)) 13969 return false; 13970 } else { 13971 LValue LVal; 13972 LVal.set(VD); 13973 13974 if (!EvaluateInPlace(Value, Info, LVal, this, 13975 /*AllowNonLiteralTypes=*/true) || 13976 EStatus.HasSideEffects) 13977 return false; 13978 13979 // At this point, any lifetime-extended temporaries are completely 13980 // initialized. 13981 Info.performLifetimeExtension(); 13982 13983 if (!Info.discardCleanups()) 13984 llvm_unreachable("Unhandled cleanup; missing full expression marker?"); 13985 } 13986 return CheckConstantExpression(Info, DeclLoc, DeclTy, Value) && 13987 CheckMemoryLeaks(Info); 13988 } 13989 13990 bool VarDecl::evaluateDestruction( 13991 SmallVectorImpl<PartialDiagnosticAt> &Notes) const { 13992 Expr::EvalStatus EStatus; 13993 EStatus.Diag = &Notes; 13994 13995 // Make a copy of the value for the destructor to mutate, if we know it. 13996 // Otherwise, treat the value as default-initialized; if the destructor works 13997 // anyway, then the destruction is constant (and must be essentially empty). 13998 APValue DestroyedValue = 13999 (getEvaluatedValue() && !getEvaluatedValue()->isAbsent()) 14000 ? *getEvaluatedValue() 14001 : getDefaultInitValue(getType()); 14002 14003 EvalInfo Info(getASTContext(), EStatus, EvalInfo::EM_ConstantExpression); 14004 Info.setEvaluatingDecl(this, DestroyedValue, 14005 EvalInfo::EvaluatingDeclKind::Dtor); 14006 Info.InConstantContext = true; 14007 14008 SourceLocation DeclLoc = getLocation(); 14009 QualType DeclTy = getType(); 14010 14011 LValue LVal; 14012 LVal.set(this); 14013 14014 if (!HandleDestruction(Info, DeclLoc, LVal.Base, DestroyedValue, DeclTy) || 14015 EStatus.HasSideEffects) 14016 return false; 14017 14018 if (!Info.discardCleanups()) 14019 llvm_unreachable("Unhandled cleanup; missing full expression marker?"); 14020 14021 ensureEvaluatedStmt()->HasConstantDestruction = true; 14022 return true; 14023 } 14024 14025 /// isEvaluatable - Call EvaluateAsRValue to see if this expression can be 14026 /// constant folded, but discard the result. 14027 bool Expr::isEvaluatable(const ASTContext &Ctx, SideEffectsKind SEK) const { 14028 assert(!isValueDependent() && 14029 "Expression evaluator can't be called on a dependent expression."); 14030 14031 EvalResult Result; 14032 return EvaluateAsRValue(Result, Ctx, /* in constant context */ true) && 14033 !hasUnacceptableSideEffect(Result, SEK); 14034 } 14035 14036 APSInt Expr::EvaluateKnownConstInt(const ASTContext &Ctx, 14037 SmallVectorImpl<PartialDiagnosticAt> *Diag) const { 14038 assert(!isValueDependent() && 14039 "Expression evaluator can't be called on a dependent expression."); 14040 14041 EvalResult EVResult; 14042 EVResult.Diag = Diag; 14043 EvalInfo Info(Ctx, EVResult, EvalInfo::EM_IgnoreSideEffects); 14044 Info.InConstantContext = true; 14045 14046 bool Result = ::EvaluateAsRValue(this, EVResult, Ctx, Info); 14047 (void)Result; 14048 assert(Result && "Could not evaluate expression"); 14049 assert(EVResult.Val.isInt() && "Expression did not evaluate to integer"); 14050 14051 return EVResult.Val.getInt(); 14052 } 14053 14054 APSInt Expr::EvaluateKnownConstIntCheckOverflow( 14055 const ASTContext &Ctx, SmallVectorImpl<PartialDiagnosticAt> *Diag) const { 14056 assert(!isValueDependent() && 14057 "Expression evaluator can't be called on a dependent expression."); 14058 14059 EvalResult EVResult; 14060 EVResult.Diag = Diag; 14061 EvalInfo Info(Ctx, EVResult, EvalInfo::EM_IgnoreSideEffects); 14062 Info.InConstantContext = true; 14063 Info.CheckingForUndefinedBehavior = true; 14064 14065 bool Result = ::EvaluateAsRValue(Info, this, EVResult.Val); 14066 (void)Result; 14067 assert(Result && "Could not evaluate expression"); 14068 assert(EVResult.Val.isInt() && "Expression did not evaluate to integer"); 14069 14070 return EVResult.Val.getInt(); 14071 } 14072 14073 void Expr::EvaluateForOverflow(const ASTContext &Ctx) const { 14074 assert(!isValueDependent() && 14075 "Expression evaluator can't be called on a dependent expression."); 14076 14077 bool IsConst; 14078 EvalResult EVResult; 14079 if (!FastEvaluateAsRValue(this, EVResult, Ctx, IsConst)) { 14080 EvalInfo Info(Ctx, EVResult, EvalInfo::EM_IgnoreSideEffects); 14081 Info.CheckingForUndefinedBehavior = true; 14082 (void)::EvaluateAsRValue(Info, this, EVResult.Val); 14083 } 14084 } 14085 14086 bool Expr::EvalResult::isGlobalLValue() const { 14087 assert(Val.isLValue()); 14088 return IsGlobalLValue(Val.getLValueBase()); 14089 } 14090 14091 14092 /// isIntegerConstantExpr - this recursive routine will test if an expression is 14093 /// an integer constant expression. 14094 14095 /// FIXME: Pass up a reason why! Invalid operation in i-c-e, division by zero, 14096 /// comma, etc 14097 14098 // CheckICE - This function does the fundamental ICE checking: the returned 14099 // ICEDiag contains an ICEKind indicating whether the expression is an ICE, 14100 // and a (possibly null) SourceLocation indicating the location of the problem. 14101 // 14102 // Note that to reduce code duplication, this helper does no evaluation 14103 // itself; the caller checks whether the expression is evaluatable, and 14104 // in the rare cases where CheckICE actually cares about the evaluated 14105 // value, it calls into Evaluate. 14106 14107 namespace { 14108 14109 enum ICEKind { 14110 /// This expression is an ICE. 14111 IK_ICE, 14112 /// This expression is not an ICE, but if it isn't evaluated, it's 14113 /// a legal subexpression for an ICE. This return value is used to handle 14114 /// the comma operator in C99 mode, and non-constant subexpressions. 14115 IK_ICEIfUnevaluated, 14116 /// This expression is not an ICE, and is not a legal subexpression for one. 14117 IK_NotICE 14118 }; 14119 14120 struct ICEDiag { 14121 ICEKind Kind; 14122 SourceLocation Loc; 14123 14124 ICEDiag(ICEKind IK, SourceLocation l) : Kind(IK), Loc(l) {} 14125 }; 14126 14127 } 14128 14129 static ICEDiag NoDiag() { return ICEDiag(IK_ICE, SourceLocation()); } 14130 14131 static ICEDiag Worst(ICEDiag A, ICEDiag B) { return A.Kind >= B.Kind ? A : B; } 14132 14133 static ICEDiag CheckEvalInICE(const Expr* E, const ASTContext &Ctx) { 14134 Expr::EvalResult EVResult; 14135 Expr::EvalStatus Status; 14136 EvalInfo Info(Ctx, Status, EvalInfo::EM_ConstantExpression); 14137 14138 Info.InConstantContext = true; 14139 if (!::EvaluateAsRValue(E, EVResult, Ctx, Info) || EVResult.HasSideEffects || 14140 !EVResult.Val.isInt()) 14141 return ICEDiag(IK_NotICE, E->getBeginLoc()); 14142 14143 return NoDiag(); 14144 } 14145 14146 static ICEDiag CheckICE(const Expr* E, const ASTContext &Ctx) { 14147 assert(!E->isValueDependent() && "Should not see value dependent exprs!"); 14148 if (!E->getType()->isIntegralOrEnumerationType()) 14149 return ICEDiag(IK_NotICE, E->getBeginLoc()); 14150 14151 switch (E->getStmtClass()) { 14152 #define ABSTRACT_STMT(Node) 14153 #define STMT(Node, Base) case Expr::Node##Class: 14154 #define EXPR(Node, Base) 14155 #include "clang/AST/StmtNodes.inc" 14156 case Expr::PredefinedExprClass: 14157 case Expr::FloatingLiteralClass: 14158 case Expr::ImaginaryLiteralClass: 14159 case Expr::StringLiteralClass: 14160 case Expr::ArraySubscriptExprClass: 14161 case Expr::OMPArraySectionExprClass: 14162 case Expr::OMPArrayShapingExprClass: 14163 case Expr::OMPIteratorExprClass: 14164 case Expr::MemberExprClass: 14165 case Expr::CompoundAssignOperatorClass: 14166 case Expr::CompoundLiteralExprClass: 14167 case Expr::ExtVectorElementExprClass: 14168 case Expr::DesignatedInitExprClass: 14169 case Expr::ArrayInitLoopExprClass: 14170 case Expr::ArrayInitIndexExprClass: 14171 case Expr::NoInitExprClass: 14172 case Expr::DesignatedInitUpdateExprClass: 14173 case Expr::ImplicitValueInitExprClass: 14174 case Expr::ParenListExprClass: 14175 case Expr::VAArgExprClass: 14176 case Expr::AddrLabelExprClass: 14177 case Expr::StmtExprClass: 14178 case Expr::CXXMemberCallExprClass: 14179 case Expr::CUDAKernelCallExprClass: 14180 case Expr::CXXDynamicCastExprClass: 14181 case Expr::CXXTypeidExprClass: 14182 case Expr::CXXUuidofExprClass: 14183 case Expr::MSPropertyRefExprClass: 14184 case Expr::MSPropertySubscriptExprClass: 14185 case Expr::CXXNullPtrLiteralExprClass: 14186 case Expr::UserDefinedLiteralClass: 14187 case Expr::CXXThisExprClass: 14188 case Expr::CXXThrowExprClass: 14189 case Expr::CXXNewExprClass: 14190 case Expr::CXXDeleteExprClass: 14191 case Expr::CXXPseudoDestructorExprClass: 14192 case Expr::UnresolvedLookupExprClass: 14193 case Expr::TypoExprClass: 14194 case Expr::RecoveryExprClass: 14195 case Expr::DependentScopeDeclRefExprClass: 14196 case Expr::CXXConstructExprClass: 14197 case Expr::CXXInheritedCtorInitExprClass: 14198 case Expr::CXXStdInitializerListExprClass: 14199 case Expr::CXXBindTemporaryExprClass: 14200 case Expr::ExprWithCleanupsClass: 14201 case Expr::CXXTemporaryObjectExprClass: 14202 case Expr::CXXUnresolvedConstructExprClass: 14203 case Expr::CXXDependentScopeMemberExprClass: 14204 case Expr::UnresolvedMemberExprClass: 14205 case Expr::ObjCStringLiteralClass: 14206 case Expr::ObjCBoxedExprClass: 14207 case Expr::ObjCArrayLiteralClass: 14208 case Expr::ObjCDictionaryLiteralClass: 14209 case Expr::ObjCEncodeExprClass: 14210 case Expr::ObjCMessageExprClass: 14211 case Expr::ObjCSelectorExprClass: 14212 case Expr::ObjCProtocolExprClass: 14213 case Expr::ObjCIvarRefExprClass: 14214 case Expr::ObjCPropertyRefExprClass: 14215 case Expr::ObjCSubscriptRefExprClass: 14216 case Expr::ObjCIsaExprClass: 14217 case Expr::ObjCAvailabilityCheckExprClass: 14218 case Expr::ShuffleVectorExprClass: 14219 case Expr::ConvertVectorExprClass: 14220 case Expr::BlockExprClass: 14221 case Expr::NoStmtClass: 14222 case Expr::OpaqueValueExprClass: 14223 case Expr::PackExpansionExprClass: 14224 case Expr::SubstNonTypeTemplateParmPackExprClass: 14225 case Expr::FunctionParmPackExprClass: 14226 case Expr::AsTypeExprClass: 14227 case Expr::ObjCIndirectCopyRestoreExprClass: 14228 case Expr::MaterializeTemporaryExprClass: 14229 case Expr::PseudoObjectExprClass: 14230 case Expr::AtomicExprClass: 14231 case Expr::LambdaExprClass: 14232 case Expr::CXXFoldExprClass: 14233 case Expr::CoawaitExprClass: 14234 case Expr::DependentCoawaitExprClass: 14235 case Expr::CoyieldExprClass: 14236 return ICEDiag(IK_NotICE, E->getBeginLoc()); 14237 14238 case Expr::InitListExprClass: { 14239 // C++03 [dcl.init]p13: If T is a scalar type, then a declaration of the 14240 // form "T x = { a };" is equivalent to "T x = a;". 14241 // Unless we're initializing a reference, T is a scalar as it is known to be 14242 // of integral or enumeration type. 14243 if (E->isRValue()) 14244 if (cast<InitListExpr>(E)->getNumInits() == 1) 14245 return CheckICE(cast<InitListExpr>(E)->getInit(0), Ctx); 14246 return ICEDiag(IK_NotICE, E->getBeginLoc()); 14247 } 14248 14249 case Expr::SizeOfPackExprClass: 14250 case Expr::GNUNullExprClass: 14251 case Expr::SourceLocExprClass: 14252 return NoDiag(); 14253 14254 case Expr::SubstNonTypeTemplateParmExprClass: 14255 return 14256 CheckICE(cast<SubstNonTypeTemplateParmExpr>(E)->getReplacement(), Ctx); 14257 14258 case Expr::ConstantExprClass: 14259 return CheckICE(cast<ConstantExpr>(E)->getSubExpr(), Ctx); 14260 14261 case Expr::ParenExprClass: 14262 return CheckICE(cast<ParenExpr>(E)->getSubExpr(), Ctx); 14263 case Expr::GenericSelectionExprClass: 14264 return CheckICE(cast<GenericSelectionExpr>(E)->getResultExpr(), Ctx); 14265 case Expr::IntegerLiteralClass: 14266 case Expr::FixedPointLiteralClass: 14267 case Expr::CharacterLiteralClass: 14268 case Expr::ObjCBoolLiteralExprClass: 14269 case Expr::CXXBoolLiteralExprClass: 14270 case Expr::CXXScalarValueInitExprClass: 14271 case Expr::TypeTraitExprClass: 14272 case Expr::ConceptSpecializationExprClass: 14273 case Expr::RequiresExprClass: 14274 case Expr::ArrayTypeTraitExprClass: 14275 case Expr::ExpressionTraitExprClass: 14276 case Expr::CXXNoexceptExprClass: 14277 return NoDiag(); 14278 case Expr::CallExprClass: 14279 case Expr::CXXOperatorCallExprClass: { 14280 // C99 6.6/3 allows function calls within unevaluated subexpressions of 14281 // constant expressions, but they can never be ICEs because an ICE cannot 14282 // contain an operand of (pointer to) function type. 14283 const CallExpr *CE = cast<CallExpr>(E); 14284 if (CE->getBuiltinCallee()) 14285 return CheckEvalInICE(E, Ctx); 14286 return ICEDiag(IK_NotICE, E->getBeginLoc()); 14287 } 14288 case Expr::CXXRewrittenBinaryOperatorClass: 14289 return CheckICE(cast<CXXRewrittenBinaryOperator>(E)->getSemanticForm(), 14290 Ctx); 14291 case Expr::DeclRefExprClass: { 14292 if (isa<EnumConstantDecl>(cast<DeclRefExpr>(E)->getDecl())) 14293 return NoDiag(); 14294 const ValueDecl *D = cast<DeclRefExpr>(E)->getDecl(); 14295 if (Ctx.getLangOpts().CPlusPlus && 14296 D && IsConstNonVolatile(D->getType())) { 14297 // Parameter variables are never constants. Without this check, 14298 // getAnyInitializer() can find a default argument, which leads 14299 // to chaos. 14300 if (isa<ParmVarDecl>(D)) 14301 return ICEDiag(IK_NotICE, cast<DeclRefExpr>(E)->getLocation()); 14302 14303 // C++ 7.1.5.1p2 14304 // A variable of non-volatile const-qualified integral or enumeration 14305 // type initialized by an ICE can be used in ICEs. 14306 if (const VarDecl *Dcl = dyn_cast<VarDecl>(D)) { 14307 if (!Dcl->getType()->isIntegralOrEnumerationType()) 14308 return ICEDiag(IK_NotICE, cast<DeclRefExpr>(E)->getLocation()); 14309 14310 const VarDecl *VD; 14311 // Look for a declaration of this variable that has an initializer, and 14312 // check whether it is an ICE. 14313 if (Dcl->getAnyInitializer(VD) && VD->checkInitIsICE()) 14314 return NoDiag(); 14315 else 14316 return ICEDiag(IK_NotICE, cast<DeclRefExpr>(E)->getLocation()); 14317 } 14318 } 14319 return ICEDiag(IK_NotICE, E->getBeginLoc()); 14320 } 14321 case Expr::UnaryOperatorClass: { 14322 const UnaryOperator *Exp = cast<UnaryOperator>(E); 14323 switch (Exp->getOpcode()) { 14324 case UO_PostInc: 14325 case UO_PostDec: 14326 case UO_PreInc: 14327 case UO_PreDec: 14328 case UO_AddrOf: 14329 case UO_Deref: 14330 case UO_Coawait: 14331 // C99 6.6/3 allows increment and decrement within unevaluated 14332 // subexpressions of constant expressions, but they can never be ICEs 14333 // because an ICE cannot contain an lvalue operand. 14334 return ICEDiag(IK_NotICE, E->getBeginLoc()); 14335 case UO_Extension: 14336 case UO_LNot: 14337 case UO_Plus: 14338 case UO_Minus: 14339 case UO_Not: 14340 case UO_Real: 14341 case UO_Imag: 14342 return CheckICE(Exp->getSubExpr(), Ctx); 14343 } 14344 llvm_unreachable("invalid unary operator class"); 14345 } 14346 case Expr::OffsetOfExprClass: { 14347 // Note that per C99, offsetof must be an ICE. And AFAIK, using 14348 // EvaluateAsRValue matches the proposed gcc behavior for cases like 14349 // "offsetof(struct s{int x[4];}, x[1.0])". This doesn't affect 14350 // compliance: we should warn earlier for offsetof expressions with 14351 // array subscripts that aren't ICEs, and if the array subscripts 14352 // are ICEs, the value of the offsetof must be an integer constant. 14353 return CheckEvalInICE(E, Ctx); 14354 } 14355 case Expr::UnaryExprOrTypeTraitExprClass: { 14356 const UnaryExprOrTypeTraitExpr *Exp = cast<UnaryExprOrTypeTraitExpr>(E); 14357 if ((Exp->getKind() == UETT_SizeOf) && 14358 Exp->getTypeOfArgument()->isVariableArrayType()) 14359 return ICEDiag(IK_NotICE, E->getBeginLoc()); 14360 return NoDiag(); 14361 } 14362 case Expr::BinaryOperatorClass: { 14363 const BinaryOperator *Exp = cast<BinaryOperator>(E); 14364 switch (Exp->getOpcode()) { 14365 case BO_PtrMemD: 14366 case BO_PtrMemI: 14367 case BO_Assign: 14368 case BO_MulAssign: 14369 case BO_DivAssign: 14370 case BO_RemAssign: 14371 case BO_AddAssign: 14372 case BO_SubAssign: 14373 case BO_ShlAssign: 14374 case BO_ShrAssign: 14375 case BO_AndAssign: 14376 case BO_XorAssign: 14377 case BO_OrAssign: 14378 // C99 6.6/3 allows assignments within unevaluated subexpressions of 14379 // constant expressions, but they can never be ICEs because an ICE cannot 14380 // contain an lvalue operand. 14381 return ICEDiag(IK_NotICE, E->getBeginLoc()); 14382 14383 case BO_Mul: 14384 case BO_Div: 14385 case BO_Rem: 14386 case BO_Add: 14387 case BO_Sub: 14388 case BO_Shl: 14389 case BO_Shr: 14390 case BO_LT: 14391 case BO_GT: 14392 case BO_LE: 14393 case BO_GE: 14394 case BO_EQ: 14395 case BO_NE: 14396 case BO_And: 14397 case BO_Xor: 14398 case BO_Or: 14399 case BO_Comma: 14400 case BO_Cmp: { 14401 ICEDiag LHSResult = CheckICE(Exp->getLHS(), Ctx); 14402 ICEDiag RHSResult = CheckICE(Exp->getRHS(), Ctx); 14403 if (Exp->getOpcode() == BO_Div || 14404 Exp->getOpcode() == BO_Rem) { 14405 // EvaluateAsRValue gives an error for undefined Div/Rem, so make sure 14406 // we don't evaluate one. 14407 if (LHSResult.Kind == IK_ICE && RHSResult.Kind == IK_ICE) { 14408 llvm::APSInt REval = Exp->getRHS()->EvaluateKnownConstInt(Ctx); 14409 if (REval == 0) 14410 return ICEDiag(IK_ICEIfUnevaluated, E->getBeginLoc()); 14411 if (REval.isSigned() && REval.isAllOnesValue()) { 14412 llvm::APSInt LEval = Exp->getLHS()->EvaluateKnownConstInt(Ctx); 14413 if (LEval.isMinSignedValue()) 14414 return ICEDiag(IK_ICEIfUnevaluated, E->getBeginLoc()); 14415 } 14416 } 14417 } 14418 if (Exp->getOpcode() == BO_Comma) { 14419 if (Ctx.getLangOpts().C99) { 14420 // C99 6.6p3 introduces a strange edge case: comma can be in an ICE 14421 // if it isn't evaluated. 14422 if (LHSResult.Kind == IK_ICE && RHSResult.Kind == IK_ICE) 14423 return ICEDiag(IK_ICEIfUnevaluated, E->getBeginLoc()); 14424 } else { 14425 // In both C89 and C++, commas in ICEs are illegal. 14426 return ICEDiag(IK_NotICE, E->getBeginLoc()); 14427 } 14428 } 14429 return Worst(LHSResult, RHSResult); 14430 } 14431 case BO_LAnd: 14432 case BO_LOr: { 14433 ICEDiag LHSResult = CheckICE(Exp->getLHS(), Ctx); 14434 ICEDiag RHSResult = CheckICE(Exp->getRHS(), Ctx); 14435 if (LHSResult.Kind == IK_ICE && RHSResult.Kind == IK_ICEIfUnevaluated) { 14436 // Rare case where the RHS has a comma "side-effect"; we need 14437 // to actually check the condition to see whether the side 14438 // with the comma is evaluated. 14439 if ((Exp->getOpcode() == BO_LAnd) != 14440 (Exp->getLHS()->EvaluateKnownConstInt(Ctx) == 0)) 14441 return RHSResult; 14442 return NoDiag(); 14443 } 14444 14445 return Worst(LHSResult, RHSResult); 14446 } 14447 } 14448 llvm_unreachable("invalid binary operator kind"); 14449 } 14450 case Expr::ImplicitCastExprClass: 14451 case Expr::CStyleCastExprClass: 14452 case Expr::CXXFunctionalCastExprClass: 14453 case Expr::CXXStaticCastExprClass: 14454 case Expr::CXXReinterpretCastExprClass: 14455 case Expr::CXXConstCastExprClass: 14456 case Expr::ObjCBridgedCastExprClass: { 14457 const Expr *SubExpr = cast<CastExpr>(E)->getSubExpr(); 14458 if (isa<ExplicitCastExpr>(E)) { 14459 if (const FloatingLiteral *FL 14460 = dyn_cast<FloatingLiteral>(SubExpr->IgnoreParenImpCasts())) { 14461 unsigned DestWidth = Ctx.getIntWidth(E->getType()); 14462 bool DestSigned = E->getType()->isSignedIntegerOrEnumerationType(); 14463 APSInt IgnoredVal(DestWidth, !DestSigned); 14464 bool Ignored; 14465 // If the value does not fit in the destination type, the behavior is 14466 // undefined, so we are not required to treat it as a constant 14467 // expression. 14468 if (FL->getValue().convertToInteger(IgnoredVal, 14469 llvm::APFloat::rmTowardZero, 14470 &Ignored) & APFloat::opInvalidOp) 14471 return ICEDiag(IK_NotICE, E->getBeginLoc()); 14472 return NoDiag(); 14473 } 14474 } 14475 switch (cast<CastExpr>(E)->getCastKind()) { 14476 case CK_LValueToRValue: 14477 case CK_AtomicToNonAtomic: 14478 case CK_NonAtomicToAtomic: 14479 case CK_NoOp: 14480 case CK_IntegralToBoolean: 14481 case CK_IntegralCast: 14482 return CheckICE(SubExpr, Ctx); 14483 default: 14484 return ICEDiag(IK_NotICE, E->getBeginLoc()); 14485 } 14486 } 14487 case Expr::BinaryConditionalOperatorClass: { 14488 const BinaryConditionalOperator *Exp = cast<BinaryConditionalOperator>(E); 14489 ICEDiag CommonResult = CheckICE(Exp->getCommon(), Ctx); 14490 if (CommonResult.Kind == IK_NotICE) return CommonResult; 14491 ICEDiag FalseResult = CheckICE(Exp->getFalseExpr(), Ctx); 14492 if (FalseResult.Kind == IK_NotICE) return FalseResult; 14493 if (CommonResult.Kind == IK_ICEIfUnevaluated) return CommonResult; 14494 if (FalseResult.Kind == IK_ICEIfUnevaluated && 14495 Exp->getCommon()->EvaluateKnownConstInt(Ctx) != 0) return NoDiag(); 14496 return FalseResult; 14497 } 14498 case Expr::ConditionalOperatorClass: { 14499 const ConditionalOperator *Exp = cast<ConditionalOperator>(E); 14500 // If the condition (ignoring parens) is a __builtin_constant_p call, 14501 // then only the true side is actually considered in an integer constant 14502 // expression, and it is fully evaluated. This is an important GNU 14503 // extension. See GCC PR38377 for discussion. 14504 if (const CallExpr *CallCE 14505 = dyn_cast<CallExpr>(Exp->getCond()->IgnoreParenCasts())) 14506 if (CallCE->getBuiltinCallee() == Builtin::BI__builtin_constant_p) 14507 return CheckEvalInICE(E, Ctx); 14508 ICEDiag CondResult = CheckICE(Exp->getCond(), Ctx); 14509 if (CondResult.Kind == IK_NotICE) 14510 return CondResult; 14511 14512 ICEDiag TrueResult = CheckICE(Exp->getTrueExpr(), Ctx); 14513 ICEDiag FalseResult = CheckICE(Exp->getFalseExpr(), Ctx); 14514 14515 if (TrueResult.Kind == IK_NotICE) 14516 return TrueResult; 14517 if (FalseResult.Kind == IK_NotICE) 14518 return FalseResult; 14519 if (CondResult.Kind == IK_ICEIfUnevaluated) 14520 return CondResult; 14521 if (TrueResult.Kind == IK_ICE && FalseResult.Kind == IK_ICE) 14522 return NoDiag(); 14523 // Rare case where the diagnostics depend on which side is evaluated 14524 // Note that if we get here, CondResult is 0, and at least one of 14525 // TrueResult and FalseResult is non-zero. 14526 if (Exp->getCond()->EvaluateKnownConstInt(Ctx) == 0) 14527 return FalseResult; 14528 return TrueResult; 14529 } 14530 case Expr::CXXDefaultArgExprClass: 14531 return CheckICE(cast<CXXDefaultArgExpr>(E)->getExpr(), Ctx); 14532 case Expr::CXXDefaultInitExprClass: 14533 return CheckICE(cast<CXXDefaultInitExpr>(E)->getExpr(), Ctx); 14534 case Expr::ChooseExprClass: { 14535 return CheckICE(cast<ChooseExpr>(E)->getChosenSubExpr(), Ctx); 14536 } 14537 case Expr::BuiltinBitCastExprClass: { 14538 if (!checkBitCastConstexprEligibility(nullptr, Ctx, cast<CastExpr>(E))) 14539 return ICEDiag(IK_NotICE, E->getBeginLoc()); 14540 return CheckICE(cast<CastExpr>(E)->getSubExpr(), Ctx); 14541 } 14542 } 14543 14544 llvm_unreachable("Invalid StmtClass!"); 14545 } 14546 14547 /// Evaluate an expression as a C++11 integral constant expression. 14548 static bool EvaluateCPlusPlus11IntegralConstantExpr(const ASTContext &Ctx, 14549 const Expr *E, 14550 llvm::APSInt *Value, 14551 SourceLocation *Loc) { 14552 if (!E->getType()->isIntegralOrUnscopedEnumerationType()) { 14553 if (Loc) *Loc = E->getExprLoc(); 14554 return false; 14555 } 14556 14557 APValue Result; 14558 if (!E->isCXX11ConstantExpr(Ctx, &Result, Loc)) 14559 return false; 14560 14561 if (!Result.isInt()) { 14562 if (Loc) *Loc = E->getExprLoc(); 14563 return false; 14564 } 14565 14566 if (Value) *Value = Result.getInt(); 14567 return true; 14568 } 14569 14570 bool Expr::isIntegerConstantExpr(const ASTContext &Ctx, 14571 SourceLocation *Loc) const { 14572 assert(!isValueDependent() && 14573 "Expression evaluator can't be called on a dependent expression."); 14574 14575 if (Ctx.getLangOpts().CPlusPlus11) 14576 return EvaluateCPlusPlus11IntegralConstantExpr(Ctx, this, nullptr, Loc); 14577 14578 ICEDiag D = CheckICE(this, Ctx); 14579 if (D.Kind != IK_ICE) { 14580 if (Loc) *Loc = D.Loc; 14581 return false; 14582 } 14583 return true; 14584 } 14585 14586 bool Expr::isIntegerConstantExpr(llvm::APSInt &Value, const ASTContext &Ctx, 14587 SourceLocation *Loc, bool isEvaluated) const { 14588 assert(!isValueDependent() && 14589 "Expression evaluator can't be called on a dependent expression."); 14590 14591 if (Ctx.getLangOpts().CPlusPlus11) 14592 return EvaluateCPlusPlus11IntegralConstantExpr(Ctx, this, &Value, Loc); 14593 14594 if (!isIntegerConstantExpr(Ctx, Loc)) 14595 return false; 14596 14597 // The only possible side-effects here are due to UB discovered in the 14598 // evaluation (for instance, INT_MAX + 1). In such a case, we are still 14599 // required to treat the expression as an ICE, so we produce the folded 14600 // value. 14601 EvalResult ExprResult; 14602 Expr::EvalStatus Status; 14603 EvalInfo Info(Ctx, Status, EvalInfo::EM_IgnoreSideEffects); 14604 Info.InConstantContext = true; 14605 14606 if (!::EvaluateAsInt(this, ExprResult, Ctx, SE_AllowSideEffects, Info)) 14607 llvm_unreachable("ICE cannot be evaluated!"); 14608 14609 Value = ExprResult.Val.getInt(); 14610 return true; 14611 } 14612 14613 bool Expr::isCXX98IntegralConstantExpr(const ASTContext &Ctx) const { 14614 assert(!isValueDependent() && 14615 "Expression evaluator can't be called on a dependent expression."); 14616 14617 return CheckICE(this, Ctx).Kind == IK_ICE; 14618 } 14619 14620 bool Expr::isCXX11ConstantExpr(const ASTContext &Ctx, APValue *Result, 14621 SourceLocation *Loc) const { 14622 assert(!isValueDependent() && 14623 "Expression evaluator can't be called on a dependent expression."); 14624 14625 // We support this checking in C++98 mode in order to diagnose compatibility 14626 // issues. 14627 assert(Ctx.getLangOpts().CPlusPlus); 14628 14629 // Build evaluation settings. 14630 Expr::EvalStatus Status; 14631 SmallVector<PartialDiagnosticAt, 8> Diags; 14632 Status.Diag = &Diags; 14633 EvalInfo Info(Ctx, Status, EvalInfo::EM_ConstantExpression); 14634 14635 APValue Scratch; 14636 bool IsConstExpr = 14637 ::EvaluateAsRValue(Info, this, Result ? *Result : Scratch) && 14638 // FIXME: We don't produce a diagnostic for this, but the callers that 14639 // call us on arbitrary full-expressions should generally not care. 14640 Info.discardCleanups() && !Status.HasSideEffects; 14641 14642 if (!Diags.empty()) { 14643 IsConstExpr = false; 14644 if (Loc) *Loc = Diags[0].first; 14645 } else if (!IsConstExpr) { 14646 // FIXME: This shouldn't happen. 14647 if (Loc) *Loc = getExprLoc(); 14648 } 14649 14650 return IsConstExpr; 14651 } 14652 14653 bool Expr::EvaluateWithSubstitution(APValue &Value, ASTContext &Ctx, 14654 const FunctionDecl *Callee, 14655 ArrayRef<const Expr*> Args, 14656 const Expr *This) const { 14657 assert(!isValueDependent() && 14658 "Expression evaluator can't be called on a dependent expression."); 14659 14660 Expr::EvalStatus Status; 14661 EvalInfo Info(Ctx, Status, EvalInfo::EM_ConstantExpressionUnevaluated); 14662 Info.InConstantContext = true; 14663 14664 LValue ThisVal; 14665 const LValue *ThisPtr = nullptr; 14666 if (This) { 14667 #ifndef NDEBUG 14668 auto *MD = dyn_cast<CXXMethodDecl>(Callee); 14669 assert(MD && "Don't provide `this` for non-methods."); 14670 assert(!MD->isStatic() && "Don't provide `this` for static methods."); 14671 #endif 14672 if (!This->isValueDependent() && 14673 EvaluateObjectArgument(Info, This, ThisVal) && 14674 !Info.EvalStatus.HasSideEffects) 14675 ThisPtr = &ThisVal; 14676 14677 // Ignore any side-effects from a failed evaluation. This is safe because 14678 // they can't interfere with any other argument evaluation. 14679 Info.EvalStatus.HasSideEffects = false; 14680 } 14681 14682 ArgVector ArgValues(Args.size()); 14683 for (ArrayRef<const Expr*>::iterator I = Args.begin(), E = Args.end(); 14684 I != E; ++I) { 14685 if ((*I)->isValueDependent() || 14686 !Evaluate(ArgValues[I - Args.begin()], Info, *I) || 14687 Info.EvalStatus.HasSideEffects) 14688 // If evaluation fails, throw away the argument entirely. 14689 ArgValues[I - Args.begin()] = APValue(); 14690 14691 // Ignore any side-effects from a failed evaluation. This is safe because 14692 // they can't interfere with any other argument evaluation. 14693 Info.EvalStatus.HasSideEffects = false; 14694 } 14695 14696 // Parameter cleanups happen in the caller and are not part of this 14697 // evaluation. 14698 Info.discardCleanups(); 14699 Info.EvalStatus.HasSideEffects = false; 14700 14701 // Build fake call to Callee. 14702 CallStackFrame Frame(Info, Callee->getLocation(), Callee, ThisPtr, 14703 ArgValues.data()); 14704 // FIXME: Missing ExprWithCleanups in enable_if conditions? 14705 FullExpressionRAII Scope(Info); 14706 return Evaluate(Value, Info, this) && Scope.destroy() && 14707 !Info.EvalStatus.HasSideEffects; 14708 } 14709 14710 bool Expr::isPotentialConstantExpr(const FunctionDecl *FD, 14711 SmallVectorImpl< 14712 PartialDiagnosticAt> &Diags) { 14713 // FIXME: It would be useful to check constexpr function templates, but at the 14714 // moment the constant expression evaluator cannot cope with the non-rigorous 14715 // ASTs which we build for dependent expressions. 14716 if (FD->isDependentContext()) 14717 return true; 14718 14719 // Bail out if a constexpr constructor has an initializer that contains an 14720 // error. We deliberately don't produce a diagnostic, as we have produced a 14721 // relevant diagnostic when parsing the error initializer. 14722 if (const auto *Ctor = dyn_cast<CXXConstructorDecl>(FD)) { 14723 for (const auto *InitExpr : Ctor->inits()) { 14724 if (InitExpr->getInit() && InitExpr->getInit()->containsErrors()) 14725 return false; 14726 } 14727 } 14728 Expr::EvalStatus Status; 14729 Status.Diag = &Diags; 14730 14731 EvalInfo Info(FD->getASTContext(), Status, EvalInfo::EM_ConstantExpression); 14732 Info.InConstantContext = true; 14733 Info.CheckingPotentialConstantExpression = true; 14734 14735 // The constexpr VM attempts to compile all methods to bytecode here. 14736 if (Info.EnableNewConstInterp) { 14737 Info.Ctx.getInterpContext().isPotentialConstantExpr(Info, FD); 14738 return Diags.empty(); 14739 } 14740 14741 const CXXMethodDecl *MD = dyn_cast<CXXMethodDecl>(FD); 14742 const CXXRecordDecl *RD = MD ? MD->getParent()->getCanonicalDecl() : nullptr; 14743 14744 // Fabricate an arbitrary expression on the stack and pretend that it 14745 // is a temporary being used as the 'this' pointer. 14746 LValue This; 14747 ImplicitValueInitExpr VIE(RD ? Info.Ctx.getRecordType(RD) : Info.Ctx.IntTy); 14748 This.set({&VIE, Info.CurrentCall->Index}); 14749 14750 ArrayRef<const Expr*> Args; 14751 14752 APValue Scratch; 14753 if (const CXXConstructorDecl *CD = dyn_cast<CXXConstructorDecl>(FD)) { 14754 // Evaluate the call as a constant initializer, to allow the construction 14755 // of objects of non-literal types. 14756 Info.setEvaluatingDecl(This.getLValueBase(), Scratch); 14757 HandleConstructorCall(&VIE, This, Args, CD, Info, Scratch); 14758 } else { 14759 SourceLocation Loc = FD->getLocation(); 14760 HandleFunctionCall(Loc, FD, (MD && MD->isInstance()) ? &This : nullptr, 14761 Args, FD->getBody(), Info, Scratch, nullptr); 14762 } 14763 14764 return Diags.empty(); 14765 } 14766 14767 bool Expr::isPotentialConstantExprUnevaluated(Expr *E, 14768 const FunctionDecl *FD, 14769 SmallVectorImpl< 14770 PartialDiagnosticAt> &Diags) { 14771 assert(!E->isValueDependent() && 14772 "Expression evaluator can't be called on a dependent expression."); 14773 14774 Expr::EvalStatus Status; 14775 Status.Diag = &Diags; 14776 14777 EvalInfo Info(FD->getASTContext(), Status, 14778 EvalInfo::EM_ConstantExpressionUnevaluated); 14779 Info.InConstantContext = true; 14780 Info.CheckingPotentialConstantExpression = true; 14781 14782 // Fabricate a call stack frame to give the arguments a plausible cover story. 14783 ArrayRef<const Expr*> Args; 14784 ArgVector ArgValues(0); 14785 bool Success = EvaluateArgs(Args, ArgValues, Info, FD); 14786 (void)Success; 14787 assert(Success && 14788 "Failed to set up arguments for potential constant evaluation"); 14789 CallStackFrame Frame(Info, SourceLocation(), FD, nullptr, ArgValues.data()); 14790 14791 APValue ResultScratch; 14792 Evaluate(ResultScratch, Info, E); 14793 return Diags.empty(); 14794 } 14795 14796 bool Expr::tryEvaluateObjectSize(uint64_t &Result, ASTContext &Ctx, 14797 unsigned Type) const { 14798 if (!getType()->isPointerType()) 14799 return false; 14800 14801 Expr::EvalStatus Status; 14802 EvalInfo Info(Ctx, Status, EvalInfo::EM_ConstantFold); 14803 return tryEvaluateBuiltinObjectSize(this, Type, Info, Result); 14804 } 14805