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 // ... the address of a GUID [MS extension], 1899 return isa<FunctionDecl>(D) || isa<MSGuidDecl>(D); 1900 } 1901 1902 if (B.is<TypeInfoLValue>() || B.is<DynamicAllocLValue>()) 1903 return true; 1904 1905 const Expr *E = B.get<const Expr*>(); 1906 switch (E->getStmtClass()) { 1907 default: 1908 return false; 1909 case Expr::CompoundLiteralExprClass: { 1910 const CompoundLiteralExpr *CLE = cast<CompoundLiteralExpr>(E); 1911 return CLE->isFileScope() && CLE->isLValue(); 1912 } 1913 case Expr::MaterializeTemporaryExprClass: 1914 // A materialized temporary might have been lifetime-extended to static 1915 // storage duration. 1916 return cast<MaterializeTemporaryExpr>(E)->getStorageDuration() == SD_Static; 1917 // A string literal has static storage duration. 1918 case Expr::StringLiteralClass: 1919 case Expr::PredefinedExprClass: 1920 case Expr::ObjCStringLiteralClass: 1921 case Expr::ObjCEncodeExprClass: 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 // Allow reading from a GUID declaration. 3619 if (auto *GD = dyn_cast<MSGuidDecl>(D)) { 3620 if (isModification(AK)) { 3621 // All the remaining cases do not permit modification of the object. 3622 Info.FFDiag(E, diag::note_constexpr_modify_global); 3623 return CompleteObject(); 3624 } 3625 APValue &V = GD->getAsAPValue(); 3626 if (V.isAbsent()) { 3627 Info.FFDiag(E, diag::note_constexpr_unsupported_layout) 3628 << GD->getType(); 3629 return CompleteObject(); 3630 } 3631 return CompleteObject(LVal.Base, &V, GD->getType()); 3632 } 3633 3634 // In C++98, const, non-volatile integers initialized with ICEs are ICEs. 3635 // In C++11, constexpr, non-volatile variables initialized with constant 3636 // expressions are constant expressions too. Inside constexpr functions, 3637 // parameters are constant expressions even if they're non-const. 3638 // In C++1y, objects local to a constant expression (those with a Frame) are 3639 // both readable and writable inside constant expressions. 3640 // In C, such things can also be folded, although they are not ICEs. 3641 const VarDecl *VD = dyn_cast<VarDecl>(D); 3642 if (VD) { 3643 if (const VarDecl *VDef = VD->getDefinition(Info.Ctx)) 3644 VD = VDef; 3645 } 3646 if (!VD || VD->isInvalidDecl()) { 3647 Info.FFDiag(E); 3648 return CompleteObject(); 3649 } 3650 3651 // Unless we're looking at a local variable or argument in a constexpr call, 3652 // the variable we're reading must be const. 3653 if (!Frame) { 3654 if (Info.getLangOpts().CPlusPlus14 && 3655 lifetimeStartedInEvaluation(Info, LVal.Base)) { 3656 // OK, we can read and modify an object if we're in the process of 3657 // evaluating its initializer, because its lifetime began in this 3658 // evaluation. 3659 } else if (isModification(AK)) { 3660 // All the remaining cases do not permit modification of the object. 3661 Info.FFDiag(E, diag::note_constexpr_modify_global); 3662 return CompleteObject(); 3663 } else if (VD->isConstexpr()) { 3664 // OK, we can read this variable. 3665 } else if (BaseType->isIntegralOrEnumerationType()) { 3666 // In OpenCL if a variable is in constant address space it is a const 3667 // value. 3668 if (!(BaseType.isConstQualified() || 3669 (Info.getLangOpts().OpenCL && 3670 BaseType.getAddressSpace() == LangAS::opencl_constant))) { 3671 if (!IsAccess) 3672 return CompleteObject(LVal.getLValueBase(), nullptr, BaseType); 3673 if (Info.getLangOpts().CPlusPlus) { 3674 Info.FFDiag(E, diag::note_constexpr_ltor_non_const_int, 1) << VD; 3675 Info.Note(VD->getLocation(), diag::note_declared_at); 3676 } else { 3677 Info.FFDiag(E); 3678 } 3679 return CompleteObject(); 3680 } 3681 } else if (!IsAccess) { 3682 return CompleteObject(LVal.getLValueBase(), nullptr, BaseType); 3683 } else if (BaseType->isFloatingType() && BaseType.isConstQualified()) { 3684 // We support folding of const floating-point types, in order to make 3685 // static const data members of such types (supported as an extension) 3686 // more useful. 3687 if (Info.getLangOpts().CPlusPlus11) { 3688 Info.CCEDiag(E, diag::note_constexpr_ltor_non_constexpr, 1) << VD; 3689 Info.Note(VD->getLocation(), diag::note_declared_at); 3690 } else { 3691 Info.CCEDiag(E); 3692 } 3693 } else if (BaseType.isConstQualified() && VD->hasDefinition(Info.Ctx)) { 3694 Info.CCEDiag(E, diag::note_constexpr_ltor_non_constexpr) << VD; 3695 // Keep evaluating to see what we can do. 3696 } else { 3697 // FIXME: Allow folding of values of any literal type in all languages. 3698 if (Info.checkingPotentialConstantExpression() && 3699 VD->getType().isConstQualified() && !VD->hasDefinition(Info.Ctx)) { 3700 // The definition of this variable could be constexpr. We can't 3701 // access it right now, but may be able to in future. 3702 } else if (Info.getLangOpts().CPlusPlus11) { 3703 Info.FFDiag(E, diag::note_constexpr_ltor_non_constexpr, 1) << VD; 3704 Info.Note(VD->getLocation(), diag::note_declared_at); 3705 } else { 3706 Info.FFDiag(E); 3707 } 3708 return CompleteObject(); 3709 } 3710 } 3711 3712 if (!evaluateVarDeclInit(Info, E, VD, Frame, BaseVal, &LVal)) 3713 return CompleteObject(); 3714 } else if (DynamicAllocLValue DA = LVal.Base.dyn_cast<DynamicAllocLValue>()) { 3715 Optional<DynAlloc*> Alloc = Info.lookupDynamicAlloc(DA); 3716 if (!Alloc) { 3717 Info.FFDiag(E, diag::note_constexpr_access_deleted_object) << AK; 3718 return CompleteObject(); 3719 } 3720 return CompleteObject(LVal.Base, &(*Alloc)->Value, 3721 LVal.Base.getDynamicAllocType()); 3722 } else { 3723 const Expr *Base = LVal.Base.dyn_cast<const Expr*>(); 3724 3725 if (!Frame) { 3726 if (const MaterializeTemporaryExpr *MTE = 3727 dyn_cast_or_null<MaterializeTemporaryExpr>(Base)) { 3728 assert(MTE->getStorageDuration() == SD_Static && 3729 "should have a frame for a non-global materialized temporary"); 3730 3731 // Per C++1y [expr.const]p2: 3732 // an lvalue-to-rvalue conversion [is not allowed unless it applies to] 3733 // - a [...] glvalue of integral or enumeration type that refers to 3734 // a non-volatile const object [...] 3735 // [...] 3736 // - a [...] glvalue of literal type that refers to a non-volatile 3737 // object whose lifetime began within the evaluation of e. 3738 // 3739 // C++11 misses the 'began within the evaluation of e' check and 3740 // instead allows all temporaries, including things like: 3741 // int &&r = 1; 3742 // int x = ++r; 3743 // constexpr int k = r; 3744 // Therefore we use the C++14 rules in C++11 too. 3745 // 3746 // Note that temporaries whose lifetimes began while evaluating a 3747 // variable's constructor are not usable while evaluating the 3748 // corresponding destructor, not even if they're of const-qualified 3749 // types. 3750 if (!(BaseType.isConstQualified() && 3751 BaseType->isIntegralOrEnumerationType()) && 3752 !lifetimeStartedInEvaluation(Info, LVal.Base)) { 3753 if (!IsAccess) 3754 return CompleteObject(LVal.getLValueBase(), nullptr, BaseType); 3755 Info.FFDiag(E, diag::note_constexpr_access_static_temporary, 1) << AK; 3756 Info.Note(MTE->getExprLoc(), diag::note_constexpr_temporary_here); 3757 return CompleteObject(); 3758 } 3759 3760 BaseVal = MTE->getOrCreateValue(false); 3761 assert(BaseVal && "got reference to unevaluated temporary"); 3762 } else { 3763 if (!IsAccess) 3764 return CompleteObject(LVal.getLValueBase(), nullptr, BaseType); 3765 APValue Val; 3766 LVal.moveInto(Val); 3767 Info.FFDiag(E, diag::note_constexpr_access_unreadable_object) 3768 << AK 3769 << Val.getAsString(Info.Ctx, 3770 Info.Ctx.getLValueReferenceType(LValType)); 3771 NoteLValueLocation(Info, LVal.Base); 3772 return CompleteObject(); 3773 } 3774 } else { 3775 BaseVal = Frame->getTemporary(Base, LVal.Base.getVersion()); 3776 assert(BaseVal && "missing value for temporary"); 3777 } 3778 } 3779 3780 // In C++14, we can't safely access any mutable state when we might be 3781 // evaluating after an unmodeled side effect. 3782 // 3783 // FIXME: Not all local state is mutable. Allow local constant subobjects 3784 // to be read here (but take care with 'mutable' fields). 3785 if ((Frame && Info.getLangOpts().CPlusPlus14 && 3786 Info.EvalStatus.HasSideEffects) || 3787 (isModification(AK) && Depth < Info.SpeculativeEvaluationDepth)) 3788 return CompleteObject(); 3789 3790 return CompleteObject(LVal.getLValueBase(), BaseVal, BaseType); 3791 } 3792 3793 /// Perform an lvalue-to-rvalue conversion on the given glvalue. This 3794 /// can also be used for 'lvalue-to-lvalue' conversions for looking up the 3795 /// glvalue referred to by an entity of reference type. 3796 /// 3797 /// \param Info - Information about the ongoing evaluation. 3798 /// \param Conv - The expression for which we are performing the conversion. 3799 /// Used for diagnostics. 3800 /// \param Type - The type of the glvalue (before stripping cv-qualifiers in the 3801 /// case of a non-class type). 3802 /// \param LVal - The glvalue on which we are attempting to perform this action. 3803 /// \param RVal - The produced value will be placed here. 3804 /// \param WantObjectRepresentation - If true, we're looking for the object 3805 /// representation rather than the value, and in particular, 3806 /// there is no requirement that the result be fully initialized. 3807 static bool 3808 handleLValueToRValueConversion(EvalInfo &Info, const Expr *Conv, QualType Type, 3809 const LValue &LVal, APValue &RVal, 3810 bool WantObjectRepresentation = false) { 3811 if (LVal.Designator.Invalid) 3812 return false; 3813 3814 // Check for special cases where there is no existing APValue to look at. 3815 const Expr *Base = LVal.Base.dyn_cast<const Expr*>(); 3816 3817 AccessKinds AK = 3818 WantObjectRepresentation ? AK_ReadObjectRepresentation : AK_Read; 3819 3820 if (Base && !LVal.getLValueCallIndex() && !Type.isVolatileQualified()) { 3821 if (const CompoundLiteralExpr *CLE = dyn_cast<CompoundLiteralExpr>(Base)) { 3822 // In C99, a CompoundLiteralExpr is an lvalue, and we defer evaluating the 3823 // initializer until now for such expressions. Such an expression can't be 3824 // an ICE in C, so this only matters for fold. 3825 if (Type.isVolatileQualified()) { 3826 Info.FFDiag(Conv); 3827 return false; 3828 } 3829 APValue Lit; 3830 if (!Evaluate(Lit, Info, CLE->getInitializer())) 3831 return false; 3832 CompleteObject LitObj(LVal.Base, &Lit, Base->getType()); 3833 return extractSubobject(Info, Conv, LitObj, LVal.Designator, RVal, AK); 3834 } else if (isa<StringLiteral>(Base) || isa<PredefinedExpr>(Base)) { 3835 // Special-case character extraction so we don't have to construct an 3836 // APValue for the whole string. 3837 assert(LVal.Designator.Entries.size() <= 1 && 3838 "Can only read characters from string literals"); 3839 if (LVal.Designator.Entries.empty()) { 3840 // Fail for now for LValue to RValue conversion of an array. 3841 // (This shouldn't show up in C/C++, but it could be triggered by a 3842 // weird EvaluateAsRValue call from a tool.) 3843 Info.FFDiag(Conv); 3844 return false; 3845 } 3846 if (LVal.Designator.isOnePastTheEnd()) { 3847 if (Info.getLangOpts().CPlusPlus11) 3848 Info.FFDiag(Conv, diag::note_constexpr_access_past_end) << AK; 3849 else 3850 Info.FFDiag(Conv); 3851 return false; 3852 } 3853 uint64_t CharIndex = LVal.Designator.Entries[0].getAsArrayIndex(); 3854 RVal = APValue(extractStringLiteralCharacter(Info, Base, CharIndex)); 3855 return true; 3856 } 3857 } 3858 3859 CompleteObject Obj = findCompleteObject(Info, Conv, AK, LVal, Type); 3860 return Obj && extractSubobject(Info, Conv, Obj, LVal.Designator, RVal, AK); 3861 } 3862 3863 /// Perform an assignment of Val to LVal. Takes ownership of Val. 3864 static bool handleAssignment(EvalInfo &Info, const Expr *E, const LValue &LVal, 3865 QualType LValType, APValue &Val) { 3866 if (LVal.Designator.Invalid) 3867 return false; 3868 3869 if (!Info.getLangOpts().CPlusPlus14) { 3870 Info.FFDiag(E); 3871 return false; 3872 } 3873 3874 CompleteObject Obj = findCompleteObject(Info, E, AK_Assign, LVal, LValType); 3875 return Obj && modifySubobject(Info, E, Obj, LVal.Designator, Val); 3876 } 3877 3878 namespace { 3879 struct CompoundAssignSubobjectHandler { 3880 EvalInfo &Info; 3881 const Expr *E; 3882 QualType PromotedLHSType; 3883 BinaryOperatorKind Opcode; 3884 const APValue &RHS; 3885 3886 static const AccessKinds AccessKind = AK_Assign; 3887 3888 typedef bool result_type; 3889 3890 bool checkConst(QualType QT) { 3891 // Assigning to a const object has undefined behavior. 3892 if (QT.isConstQualified()) { 3893 Info.FFDiag(E, diag::note_constexpr_modify_const_type) << QT; 3894 return false; 3895 } 3896 return true; 3897 } 3898 3899 bool failed() { return false; } 3900 bool found(APValue &Subobj, QualType SubobjType) { 3901 switch (Subobj.getKind()) { 3902 case APValue::Int: 3903 return found(Subobj.getInt(), SubobjType); 3904 case APValue::Float: 3905 return found(Subobj.getFloat(), SubobjType); 3906 case APValue::ComplexInt: 3907 case APValue::ComplexFloat: 3908 // FIXME: Implement complex compound assignment. 3909 Info.FFDiag(E); 3910 return false; 3911 case APValue::LValue: 3912 return foundPointer(Subobj, SubobjType); 3913 default: 3914 // FIXME: can this happen? 3915 Info.FFDiag(E); 3916 return false; 3917 } 3918 } 3919 bool found(APSInt &Value, QualType SubobjType) { 3920 if (!checkConst(SubobjType)) 3921 return false; 3922 3923 if (!SubobjType->isIntegerType()) { 3924 // We don't support compound assignment on integer-cast-to-pointer 3925 // values. 3926 Info.FFDiag(E); 3927 return false; 3928 } 3929 3930 if (RHS.isInt()) { 3931 APSInt LHS = 3932 HandleIntToIntCast(Info, E, PromotedLHSType, SubobjType, Value); 3933 if (!handleIntIntBinOp(Info, E, LHS, Opcode, RHS.getInt(), LHS)) 3934 return false; 3935 Value = HandleIntToIntCast(Info, E, SubobjType, PromotedLHSType, LHS); 3936 return true; 3937 } else if (RHS.isFloat()) { 3938 APFloat FValue(0.0); 3939 return HandleIntToFloatCast(Info, E, SubobjType, Value, PromotedLHSType, 3940 FValue) && 3941 handleFloatFloatBinOp(Info, E, FValue, Opcode, RHS.getFloat()) && 3942 HandleFloatToIntCast(Info, E, PromotedLHSType, FValue, SubobjType, 3943 Value); 3944 } 3945 3946 Info.FFDiag(E); 3947 return false; 3948 } 3949 bool found(APFloat &Value, QualType SubobjType) { 3950 return checkConst(SubobjType) && 3951 HandleFloatToFloatCast(Info, E, SubobjType, PromotedLHSType, 3952 Value) && 3953 handleFloatFloatBinOp(Info, E, Value, Opcode, RHS.getFloat()) && 3954 HandleFloatToFloatCast(Info, E, PromotedLHSType, SubobjType, Value); 3955 } 3956 bool foundPointer(APValue &Subobj, QualType SubobjType) { 3957 if (!checkConst(SubobjType)) 3958 return false; 3959 3960 QualType PointeeType; 3961 if (const PointerType *PT = SubobjType->getAs<PointerType>()) 3962 PointeeType = PT->getPointeeType(); 3963 3964 if (PointeeType.isNull() || !RHS.isInt() || 3965 (Opcode != BO_Add && Opcode != BO_Sub)) { 3966 Info.FFDiag(E); 3967 return false; 3968 } 3969 3970 APSInt Offset = RHS.getInt(); 3971 if (Opcode == BO_Sub) 3972 negateAsSigned(Offset); 3973 3974 LValue LVal; 3975 LVal.setFrom(Info.Ctx, Subobj); 3976 if (!HandleLValueArrayAdjustment(Info, E, LVal, PointeeType, Offset)) 3977 return false; 3978 LVal.moveInto(Subobj); 3979 return true; 3980 } 3981 }; 3982 } // end anonymous namespace 3983 3984 const AccessKinds CompoundAssignSubobjectHandler::AccessKind; 3985 3986 /// Perform a compound assignment of LVal <op>= RVal. 3987 static bool handleCompoundAssignment( 3988 EvalInfo &Info, const Expr *E, 3989 const LValue &LVal, QualType LValType, QualType PromotedLValType, 3990 BinaryOperatorKind Opcode, const APValue &RVal) { 3991 if (LVal.Designator.Invalid) 3992 return false; 3993 3994 if (!Info.getLangOpts().CPlusPlus14) { 3995 Info.FFDiag(E); 3996 return false; 3997 } 3998 3999 CompleteObject Obj = findCompleteObject(Info, E, AK_Assign, LVal, LValType); 4000 CompoundAssignSubobjectHandler Handler = { Info, E, PromotedLValType, Opcode, 4001 RVal }; 4002 return Obj && findSubobject(Info, E, Obj, LVal.Designator, Handler); 4003 } 4004 4005 namespace { 4006 struct IncDecSubobjectHandler { 4007 EvalInfo &Info; 4008 const UnaryOperator *E; 4009 AccessKinds AccessKind; 4010 APValue *Old; 4011 4012 typedef bool result_type; 4013 4014 bool checkConst(QualType QT) { 4015 // Assigning to a const object has undefined behavior. 4016 if (QT.isConstQualified()) { 4017 Info.FFDiag(E, diag::note_constexpr_modify_const_type) << QT; 4018 return false; 4019 } 4020 return true; 4021 } 4022 4023 bool failed() { return false; } 4024 bool found(APValue &Subobj, QualType SubobjType) { 4025 // Stash the old value. Also clear Old, so we don't clobber it later 4026 // if we're post-incrementing a complex. 4027 if (Old) { 4028 *Old = Subobj; 4029 Old = nullptr; 4030 } 4031 4032 switch (Subobj.getKind()) { 4033 case APValue::Int: 4034 return found(Subobj.getInt(), SubobjType); 4035 case APValue::Float: 4036 return found(Subobj.getFloat(), SubobjType); 4037 case APValue::ComplexInt: 4038 return found(Subobj.getComplexIntReal(), 4039 SubobjType->castAs<ComplexType>()->getElementType() 4040 .withCVRQualifiers(SubobjType.getCVRQualifiers())); 4041 case APValue::ComplexFloat: 4042 return found(Subobj.getComplexFloatReal(), 4043 SubobjType->castAs<ComplexType>()->getElementType() 4044 .withCVRQualifiers(SubobjType.getCVRQualifiers())); 4045 case APValue::LValue: 4046 return foundPointer(Subobj, SubobjType); 4047 default: 4048 // FIXME: can this happen? 4049 Info.FFDiag(E); 4050 return false; 4051 } 4052 } 4053 bool found(APSInt &Value, QualType SubobjType) { 4054 if (!checkConst(SubobjType)) 4055 return false; 4056 4057 if (!SubobjType->isIntegerType()) { 4058 // We don't support increment / decrement on integer-cast-to-pointer 4059 // values. 4060 Info.FFDiag(E); 4061 return false; 4062 } 4063 4064 if (Old) *Old = APValue(Value); 4065 4066 // bool arithmetic promotes to int, and the conversion back to bool 4067 // doesn't reduce mod 2^n, so special-case it. 4068 if (SubobjType->isBooleanType()) { 4069 if (AccessKind == AK_Increment) 4070 Value = 1; 4071 else 4072 Value = !Value; 4073 return true; 4074 } 4075 4076 bool WasNegative = Value.isNegative(); 4077 if (AccessKind == AK_Increment) { 4078 ++Value; 4079 4080 if (!WasNegative && Value.isNegative() && E->canOverflow()) { 4081 APSInt ActualValue(Value, /*IsUnsigned*/true); 4082 return HandleOverflow(Info, E, ActualValue, SubobjType); 4083 } 4084 } else { 4085 --Value; 4086 4087 if (WasNegative && !Value.isNegative() && E->canOverflow()) { 4088 unsigned BitWidth = Value.getBitWidth(); 4089 APSInt ActualValue(Value.sext(BitWidth + 1), /*IsUnsigned*/false); 4090 ActualValue.setBit(BitWidth); 4091 return HandleOverflow(Info, E, ActualValue, SubobjType); 4092 } 4093 } 4094 return true; 4095 } 4096 bool found(APFloat &Value, QualType SubobjType) { 4097 if (!checkConst(SubobjType)) 4098 return false; 4099 4100 if (Old) *Old = APValue(Value); 4101 4102 APFloat One(Value.getSemantics(), 1); 4103 if (AccessKind == AK_Increment) 4104 Value.add(One, APFloat::rmNearestTiesToEven); 4105 else 4106 Value.subtract(One, APFloat::rmNearestTiesToEven); 4107 return true; 4108 } 4109 bool foundPointer(APValue &Subobj, QualType SubobjType) { 4110 if (!checkConst(SubobjType)) 4111 return false; 4112 4113 QualType PointeeType; 4114 if (const PointerType *PT = SubobjType->getAs<PointerType>()) 4115 PointeeType = PT->getPointeeType(); 4116 else { 4117 Info.FFDiag(E); 4118 return false; 4119 } 4120 4121 LValue LVal; 4122 LVal.setFrom(Info.Ctx, Subobj); 4123 if (!HandleLValueArrayAdjustment(Info, E, LVal, PointeeType, 4124 AccessKind == AK_Increment ? 1 : -1)) 4125 return false; 4126 LVal.moveInto(Subobj); 4127 return true; 4128 } 4129 }; 4130 } // end anonymous namespace 4131 4132 /// Perform an increment or decrement on LVal. 4133 static bool handleIncDec(EvalInfo &Info, const Expr *E, const LValue &LVal, 4134 QualType LValType, bool IsIncrement, APValue *Old) { 4135 if (LVal.Designator.Invalid) 4136 return false; 4137 4138 if (!Info.getLangOpts().CPlusPlus14) { 4139 Info.FFDiag(E); 4140 return false; 4141 } 4142 4143 AccessKinds AK = IsIncrement ? AK_Increment : AK_Decrement; 4144 CompleteObject Obj = findCompleteObject(Info, E, AK, LVal, LValType); 4145 IncDecSubobjectHandler Handler = {Info, cast<UnaryOperator>(E), AK, Old}; 4146 return Obj && findSubobject(Info, E, Obj, LVal.Designator, Handler); 4147 } 4148 4149 /// Build an lvalue for the object argument of a member function call. 4150 static bool EvaluateObjectArgument(EvalInfo &Info, const Expr *Object, 4151 LValue &This) { 4152 if (Object->getType()->isPointerType() && Object->isRValue()) 4153 return EvaluatePointer(Object, This, Info); 4154 4155 if (Object->isGLValue()) 4156 return EvaluateLValue(Object, This, Info); 4157 4158 if (Object->getType()->isLiteralType(Info.Ctx)) 4159 return EvaluateTemporary(Object, This, Info); 4160 4161 Info.FFDiag(Object, diag::note_constexpr_nonliteral) << Object->getType(); 4162 return false; 4163 } 4164 4165 /// HandleMemberPointerAccess - Evaluate a member access operation and build an 4166 /// lvalue referring to the result. 4167 /// 4168 /// \param Info - Information about the ongoing evaluation. 4169 /// \param LV - An lvalue referring to the base of the member pointer. 4170 /// \param RHS - The member pointer expression. 4171 /// \param IncludeMember - Specifies whether the member itself is included in 4172 /// the resulting LValue subobject designator. This is not possible when 4173 /// creating a bound member function. 4174 /// \return The field or method declaration to which the member pointer refers, 4175 /// or 0 if evaluation fails. 4176 static const ValueDecl *HandleMemberPointerAccess(EvalInfo &Info, 4177 QualType LVType, 4178 LValue &LV, 4179 const Expr *RHS, 4180 bool IncludeMember = true) { 4181 MemberPtr MemPtr; 4182 if (!EvaluateMemberPointer(RHS, MemPtr, Info)) 4183 return nullptr; 4184 4185 // C++11 [expr.mptr.oper]p6: If the second operand is the null pointer to 4186 // member value, the behavior is undefined. 4187 if (!MemPtr.getDecl()) { 4188 // FIXME: Specific diagnostic. 4189 Info.FFDiag(RHS); 4190 return nullptr; 4191 } 4192 4193 if (MemPtr.isDerivedMember()) { 4194 // This is a member of some derived class. Truncate LV appropriately. 4195 // The end of the derived-to-base path for the base object must match the 4196 // derived-to-base path for the member pointer. 4197 if (LV.Designator.MostDerivedPathLength + MemPtr.Path.size() > 4198 LV.Designator.Entries.size()) { 4199 Info.FFDiag(RHS); 4200 return nullptr; 4201 } 4202 unsigned PathLengthToMember = 4203 LV.Designator.Entries.size() - MemPtr.Path.size(); 4204 for (unsigned I = 0, N = MemPtr.Path.size(); I != N; ++I) { 4205 const CXXRecordDecl *LVDecl = getAsBaseClass( 4206 LV.Designator.Entries[PathLengthToMember + I]); 4207 const CXXRecordDecl *MPDecl = MemPtr.Path[I]; 4208 if (LVDecl->getCanonicalDecl() != MPDecl->getCanonicalDecl()) { 4209 Info.FFDiag(RHS); 4210 return nullptr; 4211 } 4212 } 4213 4214 // Truncate the lvalue to the appropriate derived class. 4215 if (!CastToDerivedClass(Info, RHS, LV, MemPtr.getContainingRecord(), 4216 PathLengthToMember)) 4217 return nullptr; 4218 } else if (!MemPtr.Path.empty()) { 4219 // Extend the LValue path with the member pointer's path. 4220 LV.Designator.Entries.reserve(LV.Designator.Entries.size() + 4221 MemPtr.Path.size() + IncludeMember); 4222 4223 // Walk down to the appropriate base class. 4224 if (const PointerType *PT = LVType->getAs<PointerType>()) 4225 LVType = PT->getPointeeType(); 4226 const CXXRecordDecl *RD = LVType->getAsCXXRecordDecl(); 4227 assert(RD && "member pointer access on non-class-type expression"); 4228 // The first class in the path is that of the lvalue. 4229 for (unsigned I = 1, N = MemPtr.Path.size(); I != N; ++I) { 4230 const CXXRecordDecl *Base = MemPtr.Path[N - I - 1]; 4231 if (!HandleLValueDirectBase(Info, RHS, LV, RD, Base)) 4232 return nullptr; 4233 RD = Base; 4234 } 4235 // Finally cast to the class containing the member. 4236 if (!HandleLValueDirectBase(Info, RHS, LV, RD, 4237 MemPtr.getContainingRecord())) 4238 return nullptr; 4239 } 4240 4241 // Add the member. Note that we cannot build bound member functions here. 4242 if (IncludeMember) { 4243 if (const FieldDecl *FD = dyn_cast<FieldDecl>(MemPtr.getDecl())) { 4244 if (!HandleLValueMember(Info, RHS, LV, FD)) 4245 return nullptr; 4246 } else if (const IndirectFieldDecl *IFD = 4247 dyn_cast<IndirectFieldDecl>(MemPtr.getDecl())) { 4248 if (!HandleLValueIndirectMember(Info, RHS, LV, IFD)) 4249 return nullptr; 4250 } else { 4251 llvm_unreachable("can't construct reference to bound member function"); 4252 } 4253 } 4254 4255 return MemPtr.getDecl(); 4256 } 4257 4258 static const ValueDecl *HandleMemberPointerAccess(EvalInfo &Info, 4259 const BinaryOperator *BO, 4260 LValue &LV, 4261 bool IncludeMember = true) { 4262 assert(BO->getOpcode() == BO_PtrMemD || BO->getOpcode() == BO_PtrMemI); 4263 4264 if (!EvaluateObjectArgument(Info, BO->getLHS(), LV)) { 4265 if (Info.noteFailure()) { 4266 MemberPtr MemPtr; 4267 EvaluateMemberPointer(BO->getRHS(), MemPtr, Info); 4268 } 4269 return nullptr; 4270 } 4271 4272 return HandleMemberPointerAccess(Info, BO->getLHS()->getType(), LV, 4273 BO->getRHS(), IncludeMember); 4274 } 4275 4276 /// HandleBaseToDerivedCast - Apply the given base-to-derived cast operation on 4277 /// the provided lvalue, which currently refers to the base object. 4278 static bool HandleBaseToDerivedCast(EvalInfo &Info, const CastExpr *E, 4279 LValue &Result) { 4280 SubobjectDesignator &D = Result.Designator; 4281 if (D.Invalid || !Result.checkNullPointer(Info, E, CSK_Derived)) 4282 return false; 4283 4284 QualType TargetQT = E->getType(); 4285 if (const PointerType *PT = TargetQT->getAs<PointerType>()) 4286 TargetQT = PT->getPointeeType(); 4287 4288 // Check this cast lands within the final derived-to-base subobject path. 4289 if (D.MostDerivedPathLength + E->path_size() > D.Entries.size()) { 4290 Info.CCEDiag(E, diag::note_constexpr_invalid_downcast) 4291 << D.MostDerivedType << TargetQT; 4292 return false; 4293 } 4294 4295 // Check the type of the final cast. We don't need to check the path, 4296 // since a cast can only be formed if the path is unique. 4297 unsigned NewEntriesSize = D.Entries.size() - E->path_size(); 4298 const CXXRecordDecl *TargetType = TargetQT->getAsCXXRecordDecl(); 4299 const CXXRecordDecl *FinalType; 4300 if (NewEntriesSize == D.MostDerivedPathLength) 4301 FinalType = D.MostDerivedType->getAsCXXRecordDecl(); 4302 else 4303 FinalType = getAsBaseClass(D.Entries[NewEntriesSize - 1]); 4304 if (FinalType->getCanonicalDecl() != TargetType->getCanonicalDecl()) { 4305 Info.CCEDiag(E, diag::note_constexpr_invalid_downcast) 4306 << D.MostDerivedType << TargetQT; 4307 return false; 4308 } 4309 4310 // Truncate the lvalue to the appropriate derived class. 4311 return CastToDerivedClass(Info, E, Result, TargetType, NewEntriesSize); 4312 } 4313 4314 /// Get the value to use for a default-initialized object of type T. 4315 static APValue getDefaultInitValue(QualType T) { 4316 if (auto *RD = T->getAsCXXRecordDecl()) { 4317 if (RD->isUnion()) 4318 return APValue((const FieldDecl*)nullptr); 4319 4320 APValue Struct(APValue::UninitStruct(), RD->getNumBases(), 4321 std::distance(RD->field_begin(), RD->field_end())); 4322 4323 unsigned Index = 0; 4324 for (CXXRecordDecl::base_class_const_iterator I = RD->bases_begin(), 4325 End = RD->bases_end(); I != End; ++I, ++Index) 4326 Struct.getStructBase(Index) = getDefaultInitValue(I->getType()); 4327 4328 for (const auto *I : RD->fields()) { 4329 if (I->isUnnamedBitfield()) 4330 continue; 4331 Struct.getStructField(I->getFieldIndex()) = 4332 getDefaultInitValue(I->getType()); 4333 } 4334 return Struct; 4335 } 4336 4337 if (auto *AT = 4338 dyn_cast_or_null<ConstantArrayType>(T->getAsArrayTypeUnsafe())) { 4339 APValue Array(APValue::UninitArray(), 0, AT->getSize().getZExtValue()); 4340 if (Array.hasArrayFiller()) 4341 Array.getArrayFiller() = getDefaultInitValue(AT->getElementType()); 4342 return Array; 4343 } 4344 4345 return APValue::IndeterminateValue(); 4346 } 4347 4348 namespace { 4349 enum EvalStmtResult { 4350 /// Evaluation failed. 4351 ESR_Failed, 4352 /// Hit a 'return' statement. 4353 ESR_Returned, 4354 /// Evaluation succeeded. 4355 ESR_Succeeded, 4356 /// Hit a 'continue' statement. 4357 ESR_Continue, 4358 /// Hit a 'break' statement. 4359 ESR_Break, 4360 /// Still scanning for 'case' or 'default' statement. 4361 ESR_CaseNotFound 4362 }; 4363 } 4364 4365 static bool EvaluateVarDecl(EvalInfo &Info, const VarDecl *VD) { 4366 // We don't need to evaluate the initializer for a static local. 4367 if (!VD->hasLocalStorage()) 4368 return true; 4369 4370 LValue Result; 4371 APValue &Val = 4372 Info.CurrentCall->createTemporary(VD, VD->getType(), true, Result); 4373 4374 const Expr *InitE = VD->getInit(); 4375 if (!InitE) { 4376 Val = getDefaultInitValue(VD->getType()); 4377 return true; 4378 } 4379 4380 if (InitE->isValueDependent()) 4381 return false; 4382 4383 if (!EvaluateInPlace(Val, Info, Result, InitE)) { 4384 // Wipe out any partially-computed value, to allow tracking that this 4385 // evaluation failed. 4386 Val = APValue(); 4387 return false; 4388 } 4389 4390 return true; 4391 } 4392 4393 static bool EvaluateDecl(EvalInfo &Info, const Decl *D) { 4394 bool OK = true; 4395 4396 if (const VarDecl *VD = dyn_cast<VarDecl>(D)) 4397 OK &= EvaluateVarDecl(Info, VD); 4398 4399 if (const DecompositionDecl *DD = dyn_cast<DecompositionDecl>(D)) 4400 for (auto *BD : DD->bindings()) 4401 if (auto *VD = BD->getHoldingVar()) 4402 OK &= EvaluateDecl(Info, VD); 4403 4404 return OK; 4405 } 4406 4407 4408 /// Evaluate a condition (either a variable declaration or an expression). 4409 static bool EvaluateCond(EvalInfo &Info, const VarDecl *CondDecl, 4410 const Expr *Cond, bool &Result) { 4411 FullExpressionRAII Scope(Info); 4412 if (CondDecl && !EvaluateDecl(Info, CondDecl)) 4413 return false; 4414 if (!EvaluateAsBooleanCondition(Cond, Result, Info)) 4415 return false; 4416 return Scope.destroy(); 4417 } 4418 4419 namespace { 4420 /// A location where the result (returned value) of evaluating a 4421 /// statement should be stored. 4422 struct StmtResult { 4423 /// The APValue that should be filled in with the returned value. 4424 APValue &Value; 4425 /// The location containing the result, if any (used to support RVO). 4426 const LValue *Slot; 4427 }; 4428 4429 struct TempVersionRAII { 4430 CallStackFrame &Frame; 4431 4432 TempVersionRAII(CallStackFrame &Frame) : Frame(Frame) { 4433 Frame.pushTempVersion(); 4434 } 4435 4436 ~TempVersionRAII() { 4437 Frame.popTempVersion(); 4438 } 4439 }; 4440 4441 } 4442 4443 static EvalStmtResult EvaluateStmt(StmtResult &Result, EvalInfo &Info, 4444 const Stmt *S, 4445 const SwitchCase *SC = nullptr); 4446 4447 /// Evaluate the body of a loop, and translate the result as appropriate. 4448 static EvalStmtResult EvaluateLoopBody(StmtResult &Result, EvalInfo &Info, 4449 const Stmt *Body, 4450 const SwitchCase *Case = nullptr) { 4451 BlockScopeRAII Scope(Info); 4452 4453 EvalStmtResult ESR = EvaluateStmt(Result, Info, Body, Case); 4454 if (ESR != ESR_Failed && ESR != ESR_CaseNotFound && !Scope.destroy()) 4455 ESR = ESR_Failed; 4456 4457 switch (ESR) { 4458 case ESR_Break: 4459 return ESR_Succeeded; 4460 case ESR_Succeeded: 4461 case ESR_Continue: 4462 return ESR_Continue; 4463 case ESR_Failed: 4464 case ESR_Returned: 4465 case ESR_CaseNotFound: 4466 return ESR; 4467 } 4468 llvm_unreachable("Invalid EvalStmtResult!"); 4469 } 4470 4471 /// Evaluate a switch statement. 4472 static EvalStmtResult EvaluateSwitch(StmtResult &Result, EvalInfo &Info, 4473 const SwitchStmt *SS) { 4474 BlockScopeRAII Scope(Info); 4475 4476 // Evaluate the switch condition. 4477 APSInt Value; 4478 { 4479 if (const Stmt *Init = SS->getInit()) { 4480 EvalStmtResult ESR = EvaluateStmt(Result, Info, Init); 4481 if (ESR != ESR_Succeeded) { 4482 if (ESR != ESR_Failed && !Scope.destroy()) 4483 ESR = ESR_Failed; 4484 return ESR; 4485 } 4486 } 4487 4488 FullExpressionRAII CondScope(Info); 4489 if (SS->getConditionVariable() && 4490 !EvaluateDecl(Info, SS->getConditionVariable())) 4491 return ESR_Failed; 4492 if (!EvaluateInteger(SS->getCond(), Value, Info)) 4493 return ESR_Failed; 4494 if (!CondScope.destroy()) 4495 return ESR_Failed; 4496 } 4497 4498 // Find the switch case corresponding to the value of the condition. 4499 // FIXME: Cache this lookup. 4500 const SwitchCase *Found = nullptr; 4501 for (const SwitchCase *SC = SS->getSwitchCaseList(); SC; 4502 SC = SC->getNextSwitchCase()) { 4503 if (isa<DefaultStmt>(SC)) { 4504 Found = SC; 4505 continue; 4506 } 4507 4508 const CaseStmt *CS = cast<CaseStmt>(SC); 4509 APSInt LHS = CS->getLHS()->EvaluateKnownConstInt(Info.Ctx); 4510 APSInt RHS = CS->getRHS() ? CS->getRHS()->EvaluateKnownConstInt(Info.Ctx) 4511 : LHS; 4512 if (LHS <= Value && Value <= RHS) { 4513 Found = SC; 4514 break; 4515 } 4516 } 4517 4518 if (!Found) 4519 return Scope.destroy() ? ESR_Succeeded : ESR_Failed; 4520 4521 // Search the switch body for the switch case and evaluate it from there. 4522 EvalStmtResult ESR = EvaluateStmt(Result, Info, SS->getBody(), Found); 4523 if (ESR != ESR_Failed && ESR != ESR_CaseNotFound && !Scope.destroy()) 4524 return ESR_Failed; 4525 4526 switch (ESR) { 4527 case ESR_Break: 4528 return ESR_Succeeded; 4529 case ESR_Succeeded: 4530 case ESR_Continue: 4531 case ESR_Failed: 4532 case ESR_Returned: 4533 return ESR; 4534 case ESR_CaseNotFound: 4535 // This can only happen if the switch case is nested within a statement 4536 // expression. We have no intention of supporting that. 4537 Info.FFDiag(Found->getBeginLoc(), 4538 diag::note_constexpr_stmt_expr_unsupported); 4539 return ESR_Failed; 4540 } 4541 llvm_unreachable("Invalid EvalStmtResult!"); 4542 } 4543 4544 // Evaluate a statement. 4545 static EvalStmtResult EvaluateStmt(StmtResult &Result, EvalInfo &Info, 4546 const Stmt *S, const SwitchCase *Case) { 4547 if (!Info.nextStep(S)) 4548 return ESR_Failed; 4549 4550 // If we're hunting down a 'case' or 'default' label, recurse through 4551 // substatements until we hit the label. 4552 if (Case) { 4553 switch (S->getStmtClass()) { 4554 case Stmt::CompoundStmtClass: 4555 // FIXME: Precompute which substatement of a compound statement we 4556 // would jump to, and go straight there rather than performing a 4557 // linear scan each time. 4558 case Stmt::LabelStmtClass: 4559 case Stmt::AttributedStmtClass: 4560 case Stmt::DoStmtClass: 4561 break; 4562 4563 case Stmt::CaseStmtClass: 4564 case Stmt::DefaultStmtClass: 4565 if (Case == S) 4566 Case = nullptr; 4567 break; 4568 4569 case Stmt::IfStmtClass: { 4570 // FIXME: Precompute which side of an 'if' we would jump to, and go 4571 // straight there rather than scanning both sides. 4572 const IfStmt *IS = cast<IfStmt>(S); 4573 4574 // Wrap the evaluation in a block scope, in case it's a DeclStmt 4575 // preceded by our switch label. 4576 BlockScopeRAII Scope(Info); 4577 4578 // Step into the init statement in case it brings an (uninitialized) 4579 // variable into scope. 4580 if (const Stmt *Init = IS->getInit()) { 4581 EvalStmtResult ESR = EvaluateStmt(Result, Info, Init, Case); 4582 if (ESR != ESR_CaseNotFound) { 4583 assert(ESR != ESR_Succeeded); 4584 return ESR; 4585 } 4586 } 4587 4588 // Condition variable must be initialized if it exists. 4589 // FIXME: We can skip evaluating the body if there's a condition 4590 // variable, as there can't be any case labels within it. 4591 // (The same is true for 'for' statements.) 4592 4593 EvalStmtResult ESR = EvaluateStmt(Result, Info, IS->getThen(), Case); 4594 if (ESR == ESR_Failed) 4595 return ESR; 4596 if (ESR != ESR_CaseNotFound) 4597 return Scope.destroy() ? ESR : ESR_Failed; 4598 if (!IS->getElse()) 4599 return ESR_CaseNotFound; 4600 4601 ESR = EvaluateStmt(Result, Info, IS->getElse(), Case); 4602 if (ESR == ESR_Failed) 4603 return ESR; 4604 if (ESR != ESR_CaseNotFound) 4605 return Scope.destroy() ? ESR : ESR_Failed; 4606 return ESR_CaseNotFound; 4607 } 4608 4609 case Stmt::WhileStmtClass: { 4610 EvalStmtResult ESR = 4611 EvaluateLoopBody(Result, Info, cast<WhileStmt>(S)->getBody(), Case); 4612 if (ESR != ESR_Continue) 4613 return ESR; 4614 break; 4615 } 4616 4617 case Stmt::ForStmtClass: { 4618 const ForStmt *FS = cast<ForStmt>(S); 4619 BlockScopeRAII Scope(Info); 4620 4621 // Step into the init statement in case it brings an (uninitialized) 4622 // variable into scope. 4623 if (const Stmt *Init = FS->getInit()) { 4624 EvalStmtResult ESR = EvaluateStmt(Result, Info, Init, Case); 4625 if (ESR != ESR_CaseNotFound) { 4626 assert(ESR != ESR_Succeeded); 4627 return ESR; 4628 } 4629 } 4630 4631 EvalStmtResult ESR = 4632 EvaluateLoopBody(Result, Info, FS->getBody(), Case); 4633 if (ESR != ESR_Continue) 4634 return ESR; 4635 if (FS->getInc()) { 4636 FullExpressionRAII IncScope(Info); 4637 if (!EvaluateIgnoredValue(Info, FS->getInc()) || !IncScope.destroy()) 4638 return ESR_Failed; 4639 } 4640 break; 4641 } 4642 4643 case Stmt::DeclStmtClass: { 4644 // Start the lifetime of any uninitialized variables we encounter. They 4645 // might be used by the selected branch of the switch. 4646 const DeclStmt *DS = cast<DeclStmt>(S); 4647 for (const auto *D : DS->decls()) { 4648 if (const auto *VD = dyn_cast<VarDecl>(D)) { 4649 if (VD->hasLocalStorage() && !VD->getInit()) 4650 if (!EvaluateVarDecl(Info, VD)) 4651 return ESR_Failed; 4652 // FIXME: If the variable has initialization that can't be jumped 4653 // over, bail out of any immediately-surrounding compound-statement 4654 // too. There can't be any case labels here. 4655 } 4656 } 4657 return ESR_CaseNotFound; 4658 } 4659 4660 default: 4661 return ESR_CaseNotFound; 4662 } 4663 } 4664 4665 switch (S->getStmtClass()) { 4666 default: 4667 if (const Expr *E = dyn_cast<Expr>(S)) { 4668 // Don't bother evaluating beyond an expression-statement which couldn't 4669 // be evaluated. 4670 // FIXME: Do we need the FullExpressionRAII object here? 4671 // VisitExprWithCleanups should create one when necessary. 4672 FullExpressionRAII Scope(Info); 4673 if (!EvaluateIgnoredValue(Info, E) || !Scope.destroy()) 4674 return ESR_Failed; 4675 return ESR_Succeeded; 4676 } 4677 4678 Info.FFDiag(S->getBeginLoc()); 4679 return ESR_Failed; 4680 4681 case Stmt::NullStmtClass: 4682 return ESR_Succeeded; 4683 4684 case Stmt::DeclStmtClass: { 4685 const DeclStmt *DS = cast<DeclStmt>(S); 4686 for (const auto *D : DS->decls()) { 4687 // Each declaration initialization is its own full-expression. 4688 FullExpressionRAII Scope(Info); 4689 if (!EvaluateDecl(Info, D) && !Info.noteFailure()) 4690 return ESR_Failed; 4691 if (!Scope.destroy()) 4692 return ESR_Failed; 4693 } 4694 return ESR_Succeeded; 4695 } 4696 4697 case Stmt::ReturnStmtClass: { 4698 const Expr *RetExpr = cast<ReturnStmt>(S)->getRetValue(); 4699 FullExpressionRAII Scope(Info); 4700 if (RetExpr && 4701 !(Result.Slot 4702 ? EvaluateInPlace(Result.Value, Info, *Result.Slot, RetExpr) 4703 : Evaluate(Result.Value, Info, RetExpr))) 4704 return ESR_Failed; 4705 return Scope.destroy() ? ESR_Returned : ESR_Failed; 4706 } 4707 4708 case Stmt::CompoundStmtClass: { 4709 BlockScopeRAII Scope(Info); 4710 4711 const CompoundStmt *CS = cast<CompoundStmt>(S); 4712 for (const auto *BI : CS->body()) { 4713 EvalStmtResult ESR = EvaluateStmt(Result, Info, BI, Case); 4714 if (ESR == ESR_Succeeded) 4715 Case = nullptr; 4716 else if (ESR != ESR_CaseNotFound) { 4717 if (ESR != ESR_Failed && !Scope.destroy()) 4718 return ESR_Failed; 4719 return ESR; 4720 } 4721 } 4722 if (Case) 4723 return ESR_CaseNotFound; 4724 return Scope.destroy() ? ESR_Succeeded : ESR_Failed; 4725 } 4726 4727 case Stmt::IfStmtClass: { 4728 const IfStmt *IS = cast<IfStmt>(S); 4729 4730 // Evaluate the condition, as either a var decl or as an expression. 4731 BlockScopeRAII Scope(Info); 4732 if (const Stmt *Init = IS->getInit()) { 4733 EvalStmtResult ESR = EvaluateStmt(Result, Info, Init); 4734 if (ESR != ESR_Succeeded) { 4735 if (ESR != ESR_Failed && !Scope.destroy()) 4736 return ESR_Failed; 4737 return ESR; 4738 } 4739 } 4740 bool Cond; 4741 if (!EvaluateCond(Info, IS->getConditionVariable(), IS->getCond(), Cond)) 4742 return ESR_Failed; 4743 4744 if (const Stmt *SubStmt = Cond ? IS->getThen() : IS->getElse()) { 4745 EvalStmtResult ESR = EvaluateStmt(Result, Info, SubStmt); 4746 if (ESR != ESR_Succeeded) { 4747 if (ESR != ESR_Failed && !Scope.destroy()) 4748 return ESR_Failed; 4749 return ESR; 4750 } 4751 } 4752 return Scope.destroy() ? ESR_Succeeded : ESR_Failed; 4753 } 4754 4755 case Stmt::WhileStmtClass: { 4756 const WhileStmt *WS = cast<WhileStmt>(S); 4757 while (true) { 4758 BlockScopeRAII Scope(Info); 4759 bool Continue; 4760 if (!EvaluateCond(Info, WS->getConditionVariable(), WS->getCond(), 4761 Continue)) 4762 return ESR_Failed; 4763 if (!Continue) 4764 break; 4765 4766 EvalStmtResult ESR = EvaluateLoopBody(Result, Info, WS->getBody()); 4767 if (ESR != ESR_Continue) { 4768 if (ESR != ESR_Failed && !Scope.destroy()) 4769 return ESR_Failed; 4770 return ESR; 4771 } 4772 if (!Scope.destroy()) 4773 return ESR_Failed; 4774 } 4775 return ESR_Succeeded; 4776 } 4777 4778 case Stmt::DoStmtClass: { 4779 const DoStmt *DS = cast<DoStmt>(S); 4780 bool Continue; 4781 do { 4782 EvalStmtResult ESR = EvaluateLoopBody(Result, Info, DS->getBody(), Case); 4783 if (ESR != ESR_Continue) 4784 return ESR; 4785 Case = nullptr; 4786 4787 FullExpressionRAII CondScope(Info); 4788 if (!EvaluateAsBooleanCondition(DS->getCond(), Continue, Info) || 4789 !CondScope.destroy()) 4790 return ESR_Failed; 4791 } while (Continue); 4792 return ESR_Succeeded; 4793 } 4794 4795 case Stmt::ForStmtClass: { 4796 const ForStmt *FS = cast<ForStmt>(S); 4797 BlockScopeRAII ForScope(Info); 4798 if (FS->getInit()) { 4799 EvalStmtResult ESR = EvaluateStmt(Result, Info, FS->getInit()); 4800 if (ESR != ESR_Succeeded) { 4801 if (ESR != ESR_Failed && !ForScope.destroy()) 4802 return ESR_Failed; 4803 return ESR; 4804 } 4805 } 4806 while (true) { 4807 BlockScopeRAII IterScope(Info); 4808 bool Continue = true; 4809 if (FS->getCond() && !EvaluateCond(Info, FS->getConditionVariable(), 4810 FS->getCond(), Continue)) 4811 return ESR_Failed; 4812 if (!Continue) 4813 break; 4814 4815 EvalStmtResult ESR = EvaluateLoopBody(Result, Info, FS->getBody()); 4816 if (ESR != ESR_Continue) { 4817 if (ESR != ESR_Failed && (!IterScope.destroy() || !ForScope.destroy())) 4818 return ESR_Failed; 4819 return ESR; 4820 } 4821 4822 if (FS->getInc()) { 4823 FullExpressionRAII IncScope(Info); 4824 if (!EvaluateIgnoredValue(Info, FS->getInc()) || !IncScope.destroy()) 4825 return ESR_Failed; 4826 } 4827 4828 if (!IterScope.destroy()) 4829 return ESR_Failed; 4830 } 4831 return ForScope.destroy() ? ESR_Succeeded : ESR_Failed; 4832 } 4833 4834 case Stmt::CXXForRangeStmtClass: { 4835 const CXXForRangeStmt *FS = cast<CXXForRangeStmt>(S); 4836 BlockScopeRAII Scope(Info); 4837 4838 // Evaluate the init-statement if present. 4839 if (FS->getInit()) { 4840 EvalStmtResult ESR = EvaluateStmt(Result, Info, FS->getInit()); 4841 if (ESR != ESR_Succeeded) { 4842 if (ESR != ESR_Failed && !Scope.destroy()) 4843 return ESR_Failed; 4844 return ESR; 4845 } 4846 } 4847 4848 // Initialize the __range variable. 4849 EvalStmtResult ESR = EvaluateStmt(Result, Info, FS->getRangeStmt()); 4850 if (ESR != ESR_Succeeded) { 4851 if (ESR != ESR_Failed && !Scope.destroy()) 4852 return ESR_Failed; 4853 return ESR; 4854 } 4855 4856 // Create the __begin and __end iterators. 4857 ESR = EvaluateStmt(Result, Info, FS->getBeginStmt()); 4858 if (ESR != ESR_Succeeded) { 4859 if (ESR != ESR_Failed && !Scope.destroy()) 4860 return ESR_Failed; 4861 return ESR; 4862 } 4863 ESR = EvaluateStmt(Result, Info, FS->getEndStmt()); 4864 if (ESR != ESR_Succeeded) { 4865 if (ESR != ESR_Failed && !Scope.destroy()) 4866 return ESR_Failed; 4867 return ESR; 4868 } 4869 4870 while (true) { 4871 // Condition: __begin != __end. 4872 { 4873 bool Continue = true; 4874 FullExpressionRAII CondExpr(Info); 4875 if (!EvaluateAsBooleanCondition(FS->getCond(), Continue, Info)) 4876 return ESR_Failed; 4877 if (!Continue) 4878 break; 4879 } 4880 4881 // User's variable declaration, initialized by *__begin. 4882 BlockScopeRAII InnerScope(Info); 4883 ESR = EvaluateStmt(Result, Info, FS->getLoopVarStmt()); 4884 if (ESR != ESR_Succeeded) { 4885 if (ESR != ESR_Failed && (!InnerScope.destroy() || !Scope.destroy())) 4886 return ESR_Failed; 4887 return ESR; 4888 } 4889 4890 // Loop body. 4891 ESR = EvaluateLoopBody(Result, Info, FS->getBody()); 4892 if (ESR != ESR_Continue) { 4893 if (ESR != ESR_Failed && (!InnerScope.destroy() || !Scope.destroy())) 4894 return ESR_Failed; 4895 return ESR; 4896 } 4897 4898 // Increment: ++__begin 4899 if (!EvaluateIgnoredValue(Info, FS->getInc())) 4900 return ESR_Failed; 4901 4902 if (!InnerScope.destroy()) 4903 return ESR_Failed; 4904 } 4905 4906 return Scope.destroy() ? ESR_Succeeded : ESR_Failed; 4907 } 4908 4909 case Stmt::SwitchStmtClass: 4910 return EvaluateSwitch(Result, Info, cast<SwitchStmt>(S)); 4911 4912 case Stmt::ContinueStmtClass: 4913 return ESR_Continue; 4914 4915 case Stmt::BreakStmtClass: 4916 return ESR_Break; 4917 4918 case Stmt::LabelStmtClass: 4919 return EvaluateStmt(Result, Info, cast<LabelStmt>(S)->getSubStmt(), Case); 4920 4921 case Stmt::AttributedStmtClass: 4922 // As a general principle, C++11 attributes can be ignored without 4923 // any semantic impact. 4924 return EvaluateStmt(Result, Info, cast<AttributedStmt>(S)->getSubStmt(), 4925 Case); 4926 4927 case Stmt::CaseStmtClass: 4928 case Stmt::DefaultStmtClass: 4929 return EvaluateStmt(Result, Info, cast<SwitchCase>(S)->getSubStmt(), Case); 4930 case Stmt::CXXTryStmtClass: 4931 // Evaluate try blocks by evaluating all sub statements. 4932 return EvaluateStmt(Result, Info, cast<CXXTryStmt>(S)->getTryBlock(), Case); 4933 } 4934 } 4935 4936 /// CheckTrivialDefaultConstructor - Check whether a constructor is a trivial 4937 /// default constructor. If so, we'll fold it whether or not it's marked as 4938 /// constexpr. If it is marked as constexpr, we will never implicitly define it, 4939 /// so we need special handling. 4940 static bool CheckTrivialDefaultConstructor(EvalInfo &Info, SourceLocation Loc, 4941 const CXXConstructorDecl *CD, 4942 bool IsValueInitialization) { 4943 if (!CD->isTrivial() || !CD->isDefaultConstructor()) 4944 return false; 4945 4946 // Value-initialization does not call a trivial default constructor, so such a 4947 // call is a core constant expression whether or not the constructor is 4948 // constexpr. 4949 if (!CD->isConstexpr() && !IsValueInitialization) { 4950 if (Info.getLangOpts().CPlusPlus11) { 4951 // FIXME: If DiagDecl is an implicitly-declared special member function, 4952 // we should be much more explicit about why it's not constexpr. 4953 Info.CCEDiag(Loc, diag::note_constexpr_invalid_function, 1) 4954 << /*IsConstexpr*/0 << /*IsConstructor*/1 << CD; 4955 Info.Note(CD->getLocation(), diag::note_declared_at); 4956 } else { 4957 Info.CCEDiag(Loc, diag::note_invalid_subexpr_in_const_expr); 4958 } 4959 } 4960 return true; 4961 } 4962 4963 /// CheckConstexprFunction - Check that a function can be called in a constant 4964 /// expression. 4965 static bool CheckConstexprFunction(EvalInfo &Info, SourceLocation CallLoc, 4966 const FunctionDecl *Declaration, 4967 const FunctionDecl *Definition, 4968 const Stmt *Body) { 4969 // Potential constant expressions can contain calls to declared, but not yet 4970 // defined, constexpr functions. 4971 if (Info.checkingPotentialConstantExpression() && !Definition && 4972 Declaration->isConstexpr()) 4973 return false; 4974 4975 // Bail out if the function declaration itself is invalid. We will 4976 // have produced a relevant diagnostic while parsing it, so just 4977 // note the problematic sub-expression. 4978 if (Declaration->isInvalidDecl()) { 4979 Info.FFDiag(CallLoc, diag::note_invalid_subexpr_in_const_expr); 4980 return false; 4981 } 4982 4983 // DR1872: An instantiated virtual constexpr function can't be called in a 4984 // constant expression (prior to C++20). We can still constant-fold such a 4985 // call. 4986 if (!Info.Ctx.getLangOpts().CPlusPlus2a && isa<CXXMethodDecl>(Declaration) && 4987 cast<CXXMethodDecl>(Declaration)->isVirtual()) 4988 Info.CCEDiag(CallLoc, diag::note_constexpr_virtual_call); 4989 4990 if (Definition && Definition->isInvalidDecl()) { 4991 Info.FFDiag(CallLoc, diag::note_invalid_subexpr_in_const_expr); 4992 return false; 4993 } 4994 4995 if (const auto *CtorDecl = dyn_cast_or_null<CXXConstructorDecl>(Definition)) { 4996 for (const auto *InitExpr : CtorDecl->inits()) { 4997 if (InitExpr->getInit() && InitExpr->getInit()->containsErrors()) 4998 return false; 4999 } 5000 } 5001 5002 // Can we evaluate this function call? 5003 if (Definition && Definition->isConstexpr() && Body) 5004 return true; 5005 5006 if (Info.getLangOpts().CPlusPlus11) { 5007 const FunctionDecl *DiagDecl = Definition ? Definition : Declaration; 5008 5009 // If this function is not constexpr because it is an inherited 5010 // non-constexpr constructor, diagnose that directly. 5011 auto *CD = dyn_cast<CXXConstructorDecl>(DiagDecl); 5012 if (CD && CD->isInheritingConstructor()) { 5013 auto *Inherited = CD->getInheritedConstructor().getConstructor(); 5014 if (!Inherited->isConstexpr()) 5015 DiagDecl = CD = Inherited; 5016 } 5017 5018 // FIXME: If DiagDecl is an implicitly-declared special member function 5019 // or an inheriting constructor, we should be much more explicit about why 5020 // it's not constexpr. 5021 if (CD && CD->isInheritingConstructor()) 5022 Info.FFDiag(CallLoc, diag::note_constexpr_invalid_inhctor, 1) 5023 << CD->getInheritedConstructor().getConstructor()->getParent(); 5024 else 5025 Info.FFDiag(CallLoc, diag::note_constexpr_invalid_function, 1) 5026 << DiagDecl->isConstexpr() << (bool)CD << DiagDecl; 5027 Info.Note(DiagDecl->getLocation(), diag::note_declared_at); 5028 } else { 5029 Info.FFDiag(CallLoc, diag::note_invalid_subexpr_in_const_expr); 5030 } 5031 return false; 5032 } 5033 5034 namespace { 5035 struct CheckDynamicTypeHandler { 5036 AccessKinds AccessKind; 5037 typedef bool result_type; 5038 bool failed() { return false; } 5039 bool found(APValue &Subobj, QualType SubobjType) { return true; } 5040 bool found(APSInt &Value, QualType SubobjType) { return true; } 5041 bool found(APFloat &Value, QualType SubobjType) { return true; } 5042 }; 5043 } // end anonymous namespace 5044 5045 /// Check that we can access the notional vptr of an object / determine its 5046 /// dynamic type. 5047 static bool checkDynamicType(EvalInfo &Info, const Expr *E, const LValue &This, 5048 AccessKinds AK, bool Polymorphic) { 5049 if (This.Designator.Invalid) 5050 return false; 5051 5052 CompleteObject Obj = findCompleteObject(Info, E, AK, This, QualType()); 5053 5054 if (!Obj) 5055 return false; 5056 5057 if (!Obj.Value) { 5058 // The object is not usable in constant expressions, so we can't inspect 5059 // its value to see if it's in-lifetime or what the active union members 5060 // are. We can still check for a one-past-the-end lvalue. 5061 if (This.Designator.isOnePastTheEnd() || 5062 This.Designator.isMostDerivedAnUnsizedArray()) { 5063 Info.FFDiag(E, This.Designator.isOnePastTheEnd() 5064 ? diag::note_constexpr_access_past_end 5065 : diag::note_constexpr_access_unsized_array) 5066 << AK; 5067 return false; 5068 } else if (Polymorphic) { 5069 // Conservatively refuse to perform a polymorphic operation if we would 5070 // not be able to read a notional 'vptr' value. 5071 APValue Val; 5072 This.moveInto(Val); 5073 QualType StarThisType = 5074 Info.Ctx.getLValueReferenceType(This.Designator.getType(Info.Ctx)); 5075 Info.FFDiag(E, diag::note_constexpr_polymorphic_unknown_dynamic_type) 5076 << AK << Val.getAsString(Info.Ctx, StarThisType); 5077 return false; 5078 } 5079 return true; 5080 } 5081 5082 CheckDynamicTypeHandler Handler{AK}; 5083 return Obj && findSubobject(Info, E, Obj, This.Designator, Handler); 5084 } 5085 5086 /// Check that the pointee of the 'this' pointer in a member function call is 5087 /// either within its lifetime or in its period of construction or destruction. 5088 static bool 5089 checkNonVirtualMemberCallThisPointer(EvalInfo &Info, const Expr *E, 5090 const LValue &This, 5091 const CXXMethodDecl *NamedMember) { 5092 return checkDynamicType( 5093 Info, E, This, 5094 isa<CXXDestructorDecl>(NamedMember) ? AK_Destroy : AK_MemberCall, false); 5095 } 5096 5097 struct DynamicType { 5098 /// The dynamic class type of the object. 5099 const CXXRecordDecl *Type; 5100 /// The corresponding path length in the lvalue. 5101 unsigned PathLength; 5102 }; 5103 5104 static const CXXRecordDecl *getBaseClassType(SubobjectDesignator &Designator, 5105 unsigned PathLength) { 5106 assert(PathLength >= Designator.MostDerivedPathLength && PathLength <= 5107 Designator.Entries.size() && "invalid path length"); 5108 return (PathLength == Designator.MostDerivedPathLength) 5109 ? Designator.MostDerivedType->getAsCXXRecordDecl() 5110 : getAsBaseClass(Designator.Entries[PathLength - 1]); 5111 } 5112 5113 /// Determine the dynamic type of an object. 5114 static Optional<DynamicType> ComputeDynamicType(EvalInfo &Info, const Expr *E, 5115 LValue &This, AccessKinds AK) { 5116 // If we don't have an lvalue denoting an object of class type, there is no 5117 // meaningful dynamic type. (We consider objects of non-class type to have no 5118 // dynamic type.) 5119 if (!checkDynamicType(Info, E, This, AK, true)) 5120 return None; 5121 5122 // Refuse to compute a dynamic type in the presence of virtual bases. This 5123 // shouldn't happen other than in constant-folding situations, since literal 5124 // types can't have virtual bases. 5125 // 5126 // Note that consumers of DynamicType assume that the type has no virtual 5127 // bases, and will need modifications if this restriction is relaxed. 5128 const CXXRecordDecl *Class = 5129 This.Designator.MostDerivedType->getAsCXXRecordDecl(); 5130 if (!Class || Class->getNumVBases()) { 5131 Info.FFDiag(E); 5132 return None; 5133 } 5134 5135 // FIXME: For very deep class hierarchies, it might be beneficial to use a 5136 // binary search here instead. But the overwhelmingly common case is that 5137 // we're not in the middle of a constructor, so it probably doesn't matter 5138 // in practice. 5139 ArrayRef<APValue::LValuePathEntry> Path = This.Designator.Entries; 5140 for (unsigned PathLength = This.Designator.MostDerivedPathLength; 5141 PathLength <= Path.size(); ++PathLength) { 5142 switch (Info.isEvaluatingCtorDtor(This.getLValueBase(), 5143 Path.slice(0, PathLength))) { 5144 case ConstructionPhase::Bases: 5145 case ConstructionPhase::DestroyingBases: 5146 // We're constructing or destroying a base class. This is not the dynamic 5147 // type. 5148 break; 5149 5150 case ConstructionPhase::None: 5151 case ConstructionPhase::AfterBases: 5152 case ConstructionPhase::AfterFields: 5153 case ConstructionPhase::Destroying: 5154 // We've finished constructing the base classes and not yet started 5155 // destroying them again, so this is the dynamic type. 5156 return DynamicType{getBaseClassType(This.Designator, PathLength), 5157 PathLength}; 5158 } 5159 } 5160 5161 // CWG issue 1517: we're constructing a base class of the object described by 5162 // 'This', so that object has not yet begun its period of construction and 5163 // any polymorphic operation on it results in undefined behavior. 5164 Info.FFDiag(E); 5165 return None; 5166 } 5167 5168 /// Perform virtual dispatch. 5169 static const CXXMethodDecl *HandleVirtualDispatch( 5170 EvalInfo &Info, const Expr *E, LValue &This, const CXXMethodDecl *Found, 5171 llvm::SmallVectorImpl<QualType> &CovariantAdjustmentPath) { 5172 Optional<DynamicType> DynType = ComputeDynamicType( 5173 Info, E, This, 5174 isa<CXXDestructorDecl>(Found) ? AK_Destroy : AK_MemberCall); 5175 if (!DynType) 5176 return nullptr; 5177 5178 // Find the final overrider. It must be declared in one of the classes on the 5179 // path from the dynamic type to the static type. 5180 // FIXME: If we ever allow literal types to have virtual base classes, that 5181 // won't be true. 5182 const CXXMethodDecl *Callee = Found; 5183 unsigned PathLength = DynType->PathLength; 5184 for (/**/; PathLength <= This.Designator.Entries.size(); ++PathLength) { 5185 const CXXRecordDecl *Class = getBaseClassType(This.Designator, PathLength); 5186 const CXXMethodDecl *Overrider = 5187 Found->getCorrespondingMethodDeclaredInClass(Class, false); 5188 if (Overrider) { 5189 Callee = Overrider; 5190 break; 5191 } 5192 } 5193 5194 // C++2a [class.abstract]p6: 5195 // the effect of making a virtual call to a pure virtual function [...] is 5196 // undefined 5197 if (Callee->isPure()) { 5198 Info.FFDiag(E, diag::note_constexpr_pure_virtual_call, 1) << Callee; 5199 Info.Note(Callee->getLocation(), diag::note_declared_at); 5200 return nullptr; 5201 } 5202 5203 // If necessary, walk the rest of the path to determine the sequence of 5204 // covariant adjustment steps to apply. 5205 if (!Info.Ctx.hasSameUnqualifiedType(Callee->getReturnType(), 5206 Found->getReturnType())) { 5207 CovariantAdjustmentPath.push_back(Callee->getReturnType()); 5208 for (unsigned CovariantPathLength = PathLength + 1; 5209 CovariantPathLength != This.Designator.Entries.size(); 5210 ++CovariantPathLength) { 5211 const CXXRecordDecl *NextClass = 5212 getBaseClassType(This.Designator, CovariantPathLength); 5213 const CXXMethodDecl *Next = 5214 Found->getCorrespondingMethodDeclaredInClass(NextClass, false); 5215 if (Next && !Info.Ctx.hasSameUnqualifiedType( 5216 Next->getReturnType(), CovariantAdjustmentPath.back())) 5217 CovariantAdjustmentPath.push_back(Next->getReturnType()); 5218 } 5219 if (!Info.Ctx.hasSameUnqualifiedType(Found->getReturnType(), 5220 CovariantAdjustmentPath.back())) 5221 CovariantAdjustmentPath.push_back(Found->getReturnType()); 5222 } 5223 5224 // Perform 'this' adjustment. 5225 if (!CastToDerivedClass(Info, E, This, Callee->getParent(), PathLength)) 5226 return nullptr; 5227 5228 return Callee; 5229 } 5230 5231 /// Perform the adjustment from a value returned by a virtual function to 5232 /// a value of the statically expected type, which may be a pointer or 5233 /// reference to a base class of the returned type. 5234 static bool HandleCovariantReturnAdjustment(EvalInfo &Info, const Expr *E, 5235 APValue &Result, 5236 ArrayRef<QualType> Path) { 5237 assert(Result.isLValue() && 5238 "unexpected kind of APValue for covariant return"); 5239 if (Result.isNullPointer()) 5240 return true; 5241 5242 LValue LVal; 5243 LVal.setFrom(Info.Ctx, Result); 5244 5245 const CXXRecordDecl *OldClass = Path[0]->getPointeeCXXRecordDecl(); 5246 for (unsigned I = 1; I != Path.size(); ++I) { 5247 const CXXRecordDecl *NewClass = Path[I]->getPointeeCXXRecordDecl(); 5248 assert(OldClass && NewClass && "unexpected kind of covariant return"); 5249 if (OldClass != NewClass && 5250 !CastToBaseClass(Info, E, LVal, OldClass, NewClass)) 5251 return false; 5252 OldClass = NewClass; 5253 } 5254 5255 LVal.moveInto(Result); 5256 return true; 5257 } 5258 5259 /// Determine whether \p Base, which is known to be a direct base class of 5260 /// \p Derived, is a public base class. 5261 static bool isBaseClassPublic(const CXXRecordDecl *Derived, 5262 const CXXRecordDecl *Base) { 5263 for (const CXXBaseSpecifier &BaseSpec : Derived->bases()) { 5264 auto *BaseClass = BaseSpec.getType()->getAsCXXRecordDecl(); 5265 if (BaseClass && declaresSameEntity(BaseClass, Base)) 5266 return BaseSpec.getAccessSpecifier() == AS_public; 5267 } 5268 llvm_unreachable("Base is not a direct base of Derived"); 5269 } 5270 5271 /// Apply the given dynamic cast operation on the provided lvalue. 5272 /// 5273 /// This implements the hard case of dynamic_cast, requiring a "runtime check" 5274 /// to find a suitable target subobject. 5275 static bool HandleDynamicCast(EvalInfo &Info, const ExplicitCastExpr *E, 5276 LValue &Ptr) { 5277 // We can't do anything with a non-symbolic pointer value. 5278 SubobjectDesignator &D = Ptr.Designator; 5279 if (D.Invalid) 5280 return false; 5281 5282 // C++ [expr.dynamic.cast]p6: 5283 // If v is a null pointer value, the result is a null pointer value. 5284 if (Ptr.isNullPointer() && !E->isGLValue()) 5285 return true; 5286 5287 // For all the other cases, we need the pointer to point to an object within 5288 // its lifetime / period of construction / destruction, and we need to know 5289 // its dynamic type. 5290 Optional<DynamicType> DynType = 5291 ComputeDynamicType(Info, E, Ptr, AK_DynamicCast); 5292 if (!DynType) 5293 return false; 5294 5295 // C++ [expr.dynamic.cast]p7: 5296 // If T is "pointer to cv void", then the result is a pointer to the most 5297 // derived object 5298 if (E->getType()->isVoidPointerType()) 5299 return CastToDerivedClass(Info, E, Ptr, DynType->Type, DynType->PathLength); 5300 5301 const CXXRecordDecl *C = E->getTypeAsWritten()->getPointeeCXXRecordDecl(); 5302 assert(C && "dynamic_cast target is not void pointer nor class"); 5303 CanQualType CQT = Info.Ctx.getCanonicalType(Info.Ctx.getRecordType(C)); 5304 5305 auto RuntimeCheckFailed = [&] (CXXBasePaths *Paths) { 5306 // C++ [expr.dynamic.cast]p9: 5307 if (!E->isGLValue()) { 5308 // The value of a failed cast to pointer type is the null pointer value 5309 // of the required result type. 5310 Ptr.setNull(Info.Ctx, E->getType()); 5311 return true; 5312 } 5313 5314 // A failed cast to reference type throws [...] std::bad_cast. 5315 unsigned DiagKind; 5316 if (!Paths && (declaresSameEntity(DynType->Type, C) || 5317 DynType->Type->isDerivedFrom(C))) 5318 DiagKind = 0; 5319 else if (!Paths || Paths->begin() == Paths->end()) 5320 DiagKind = 1; 5321 else if (Paths->isAmbiguous(CQT)) 5322 DiagKind = 2; 5323 else { 5324 assert(Paths->front().Access != AS_public && "why did the cast fail?"); 5325 DiagKind = 3; 5326 } 5327 Info.FFDiag(E, diag::note_constexpr_dynamic_cast_to_reference_failed) 5328 << DiagKind << Ptr.Designator.getType(Info.Ctx) 5329 << Info.Ctx.getRecordType(DynType->Type) 5330 << E->getType().getUnqualifiedType(); 5331 return false; 5332 }; 5333 5334 // Runtime check, phase 1: 5335 // Walk from the base subobject towards the derived object looking for the 5336 // target type. 5337 for (int PathLength = Ptr.Designator.Entries.size(); 5338 PathLength >= (int)DynType->PathLength; --PathLength) { 5339 const CXXRecordDecl *Class = getBaseClassType(Ptr.Designator, PathLength); 5340 if (declaresSameEntity(Class, C)) 5341 return CastToDerivedClass(Info, E, Ptr, Class, PathLength); 5342 // We can only walk across public inheritance edges. 5343 if (PathLength > (int)DynType->PathLength && 5344 !isBaseClassPublic(getBaseClassType(Ptr.Designator, PathLength - 1), 5345 Class)) 5346 return RuntimeCheckFailed(nullptr); 5347 } 5348 5349 // Runtime check, phase 2: 5350 // Search the dynamic type for an unambiguous public base of type C. 5351 CXXBasePaths Paths(/*FindAmbiguities=*/true, 5352 /*RecordPaths=*/true, /*DetectVirtual=*/false); 5353 if (DynType->Type->isDerivedFrom(C, Paths) && !Paths.isAmbiguous(CQT) && 5354 Paths.front().Access == AS_public) { 5355 // Downcast to the dynamic type... 5356 if (!CastToDerivedClass(Info, E, Ptr, DynType->Type, DynType->PathLength)) 5357 return false; 5358 // ... then upcast to the chosen base class subobject. 5359 for (CXXBasePathElement &Elem : Paths.front()) 5360 if (!HandleLValueBase(Info, E, Ptr, Elem.Class, Elem.Base)) 5361 return false; 5362 return true; 5363 } 5364 5365 // Otherwise, the runtime check fails. 5366 return RuntimeCheckFailed(&Paths); 5367 } 5368 5369 namespace { 5370 struct StartLifetimeOfUnionMemberHandler { 5371 EvalInfo &Info; 5372 const Expr *LHSExpr; 5373 const FieldDecl *Field; 5374 bool DuringInit; 5375 5376 static const AccessKinds AccessKind = AK_Assign; 5377 5378 typedef bool result_type; 5379 bool failed() { return false; } 5380 bool found(APValue &Subobj, QualType SubobjType) { 5381 // We are supposed to perform no initialization but begin the lifetime of 5382 // the object. We interpret that as meaning to do what default 5383 // initialization of the object would do if all constructors involved were 5384 // trivial: 5385 // * All base, non-variant member, and array element subobjects' lifetimes 5386 // begin 5387 // * No variant members' lifetimes begin 5388 // * All scalar subobjects whose lifetimes begin have indeterminate values 5389 assert(SubobjType->isUnionType()); 5390 if (declaresSameEntity(Subobj.getUnionField(), Field)) { 5391 // This union member is already active. If it's also in-lifetime, there's 5392 // nothing to do. 5393 if (Subobj.getUnionValue().hasValue()) 5394 return true; 5395 } else if (DuringInit) { 5396 // We're currently in the process of initializing a different union 5397 // member. If we carried on, that initialization would attempt to 5398 // store to an inactive union member, resulting in undefined behavior. 5399 Info.FFDiag(LHSExpr, 5400 diag::note_constexpr_union_member_change_during_init); 5401 return false; 5402 } 5403 5404 Subobj.setUnion(Field, getDefaultInitValue(Field->getType())); 5405 return true; 5406 } 5407 bool found(APSInt &Value, QualType SubobjType) { 5408 llvm_unreachable("wrong value kind for union object"); 5409 } 5410 bool found(APFloat &Value, QualType SubobjType) { 5411 llvm_unreachable("wrong value kind for union object"); 5412 } 5413 }; 5414 } // end anonymous namespace 5415 5416 const AccessKinds StartLifetimeOfUnionMemberHandler::AccessKind; 5417 5418 /// Handle a builtin simple-assignment or a call to a trivial assignment 5419 /// operator whose left-hand side might involve a union member access. If it 5420 /// does, implicitly start the lifetime of any accessed union elements per 5421 /// C++20 [class.union]5. 5422 static bool HandleUnionActiveMemberChange(EvalInfo &Info, const Expr *LHSExpr, 5423 const LValue &LHS) { 5424 if (LHS.InvalidBase || LHS.Designator.Invalid) 5425 return false; 5426 5427 llvm::SmallVector<std::pair<unsigned, const FieldDecl*>, 4> UnionPathLengths; 5428 // C++ [class.union]p5: 5429 // define the set S(E) of subexpressions of E as follows: 5430 unsigned PathLength = LHS.Designator.Entries.size(); 5431 for (const Expr *E = LHSExpr; E != nullptr;) { 5432 // -- If E is of the form A.B, S(E) contains the elements of S(A)... 5433 if (auto *ME = dyn_cast<MemberExpr>(E)) { 5434 auto *FD = dyn_cast<FieldDecl>(ME->getMemberDecl()); 5435 // Note that we can't implicitly start the lifetime of a reference, 5436 // so we don't need to proceed any further if we reach one. 5437 if (!FD || FD->getType()->isReferenceType()) 5438 break; 5439 5440 // ... and also contains A.B if B names a union member ... 5441 if (FD->getParent()->isUnion()) { 5442 // ... of a non-class, non-array type, or of a class type with a 5443 // trivial default constructor that is not deleted, or an array of 5444 // such types. 5445 auto *RD = 5446 FD->getType()->getBaseElementTypeUnsafe()->getAsCXXRecordDecl(); 5447 if (!RD || RD->hasTrivialDefaultConstructor()) 5448 UnionPathLengths.push_back({PathLength - 1, FD}); 5449 } 5450 5451 E = ME->getBase(); 5452 --PathLength; 5453 assert(declaresSameEntity(FD, 5454 LHS.Designator.Entries[PathLength] 5455 .getAsBaseOrMember().getPointer())); 5456 5457 // -- If E is of the form A[B] and is interpreted as a built-in array 5458 // subscripting operator, S(E) is [S(the array operand, if any)]. 5459 } else if (auto *ASE = dyn_cast<ArraySubscriptExpr>(E)) { 5460 // Step over an ArrayToPointerDecay implicit cast. 5461 auto *Base = ASE->getBase()->IgnoreImplicit(); 5462 if (!Base->getType()->isArrayType()) 5463 break; 5464 5465 E = Base; 5466 --PathLength; 5467 5468 } else if (auto *ICE = dyn_cast<ImplicitCastExpr>(E)) { 5469 // Step over a derived-to-base conversion. 5470 E = ICE->getSubExpr(); 5471 if (ICE->getCastKind() == CK_NoOp) 5472 continue; 5473 if (ICE->getCastKind() != CK_DerivedToBase && 5474 ICE->getCastKind() != CK_UncheckedDerivedToBase) 5475 break; 5476 // Walk path backwards as we walk up from the base to the derived class. 5477 for (const CXXBaseSpecifier *Elt : llvm::reverse(ICE->path())) { 5478 --PathLength; 5479 (void)Elt; 5480 assert(declaresSameEntity(Elt->getType()->getAsCXXRecordDecl(), 5481 LHS.Designator.Entries[PathLength] 5482 .getAsBaseOrMember().getPointer())); 5483 } 5484 5485 // -- Otherwise, S(E) is empty. 5486 } else { 5487 break; 5488 } 5489 } 5490 5491 // Common case: no unions' lifetimes are started. 5492 if (UnionPathLengths.empty()) 5493 return true; 5494 5495 // if modification of X [would access an inactive union member], an object 5496 // of the type of X is implicitly created 5497 CompleteObject Obj = 5498 findCompleteObject(Info, LHSExpr, AK_Assign, LHS, LHSExpr->getType()); 5499 if (!Obj) 5500 return false; 5501 for (std::pair<unsigned, const FieldDecl *> LengthAndField : 5502 llvm::reverse(UnionPathLengths)) { 5503 // Form a designator for the union object. 5504 SubobjectDesignator D = LHS.Designator; 5505 D.truncate(Info.Ctx, LHS.Base, LengthAndField.first); 5506 5507 bool DuringInit = Info.isEvaluatingCtorDtor(LHS.Base, D.Entries) == 5508 ConstructionPhase::AfterBases; 5509 StartLifetimeOfUnionMemberHandler StartLifetime{ 5510 Info, LHSExpr, LengthAndField.second, DuringInit}; 5511 if (!findSubobject(Info, LHSExpr, Obj, D, StartLifetime)) 5512 return false; 5513 } 5514 5515 return true; 5516 } 5517 5518 namespace { 5519 typedef SmallVector<APValue, 8> ArgVector; 5520 } 5521 5522 /// EvaluateArgs - Evaluate the arguments to a function call. 5523 static bool EvaluateArgs(ArrayRef<const Expr *> Args, ArgVector &ArgValues, 5524 EvalInfo &Info, const FunctionDecl *Callee) { 5525 bool Success = true; 5526 llvm::SmallBitVector ForbiddenNullArgs; 5527 if (Callee->hasAttr<NonNullAttr>()) { 5528 ForbiddenNullArgs.resize(Args.size()); 5529 for (const auto *Attr : Callee->specific_attrs<NonNullAttr>()) { 5530 if (!Attr->args_size()) { 5531 ForbiddenNullArgs.set(); 5532 break; 5533 } else 5534 for (auto Idx : Attr->args()) { 5535 unsigned ASTIdx = Idx.getASTIndex(); 5536 if (ASTIdx >= Args.size()) 5537 continue; 5538 ForbiddenNullArgs[ASTIdx] = 1; 5539 } 5540 } 5541 } 5542 // FIXME: This is the wrong evaluation order for an assignment operator 5543 // called via operator syntax. 5544 for (unsigned Idx = 0; Idx < Args.size(); Idx++) { 5545 if (!Evaluate(ArgValues[Idx], Info, Args[Idx])) { 5546 // If we're checking for a potential constant expression, evaluate all 5547 // initializers even if some of them fail. 5548 if (!Info.noteFailure()) 5549 return false; 5550 Success = false; 5551 } else if (!ForbiddenNullArgs.empty() && 5552 ForbiddenNullArgs[Idx] && 5553 ArgValues[Idx].isLValue() && 5554 ArgValues[Idx].isNullPointer()) { 5555 Info.CCEDiag(Args[Idx], diag::note_non_null_attribute_failed); 5556 if (!Info.noteFailure()) 5557 return false; 5558 Success = false; 5559 } 5560 } 5561 return Success; 5562 } 5563 5564 /// Evaluate a function call. 5565 static bool HandleFunctionCall(SourceLocation CallLoc, 5566 const FunctionDecl *Callee, const LValue *This, 5567 ArrayRef<const Expr*> Args, const Stmt *Body, 5568 EvalInfo &Info, APValue &Result, 5569 const LValue *ResultSlot) { 5570 ArgVector ArgValues(Args.size()); 5571 if (!EvaluateArgs(Args, ArgValues, Info, Callee)) 5572 return false; 5573 5574 if (!Info.CheckCallLimit(CallLoc)) 5575 return false; 5576 5577 CallStackFrame Frame(Info, CallLoc, Callee, This, ArgValues.data()); 5578 5579 // For a trivial copy or move assignment, perform an APValue copy. This is 5580 // essential for unions, where the operations performed by the assignment 5581 // operator cannot be represented as statements. 5582 // 5583 // Skip this for non-union classes with no fields; in that case, the defaulted 5584 // copy/move does not actually read the object. 5585 const CXXMethodDecl *MD = dyn_cast<CXXMethodDecl>(Callee); 5586 if (MD && MD->isDefaulted() && 5587 (MD->getParent()->isUnion() || 5588 (MD->isTrivial() && 5589 isReadByLvalueToRvalueConversion(MD->getParent())))) { 5590 assert(This && 5591 (MD->isCopyAssignmentOperator() || MD->isMoveAssignmentOperator())); 5592 LValue RHS; 5593 RHS.setFrom(Info.Ctx, ArgValues[0]); 5594 APValue RHSValue; 5595 if (!handleLValueToRValueConversion(Info, Args[0], Args[0]->getType(), RHS, 5596 RHSValue, MD->getParent()->isUnion())) 5597 return false; 5598 if (Info.getLangOpts().CPlusPlus2a && MD->isTrivial() && 5599 !HandleUnionActiveMemberChange(Info, Args[0], *This)) 5600 return false; 5601 if (!handleAssignment(Info, Args[0], *This, MD->getThisType(), 5602 RHSValue)) 5603 return false; 5604 This->moveInto(Result); 5605 return true; 5606 } else if (MD && isLambdaCallOperator(MD)) { 5607 // We're in a lambda; determine the lambda capture field maps unless we're 5608 // just constexpr checking a lambda's call operator. constexpr checking is 5609 // done before the captures have been added to the closure object (unless 5610 // we're inferring constexpr-ness), so we don't have access to them in this 5611 // case. But since we don't need the captures to constexpr check, we can 5612 // just ignore them. 5613 if (!Info.checkingPotentialConstantExpression()) 5614 MD->getParent()->getCaptureFields(Frame.LambdaCaptureFields, 5615 Frame.LambdaThisCaptureField); 5616 } 5617 5618 StmtResult Ret = {Result, ResultSlot}; 5619 EvalStmtResult ESR = EvaluateStmt(Ret, Info, Body); 5620 if (ESR == ESR_Succeeded) { 5621 if (Callee->getReturnType()->isVoidType()) 5622 return true; 5623 Info.FFDiag(Callee->getEndLoc(), diag::note_constexpr_no_return); 5624 } 5625 return ESR == ESR_Returned; 5626 } 5627 5628 /// Evaluate a constructor call. 5629 static bool HandleConstructorCall(const Expr *E, const LValue &This, 5630 APValue *ArgValues, 5631 const CXXConstructorDecl *Definition, 5632 EvalInfo &Info, APValue &Result) { 5633 SourceLocation CallLoc = E->getExprLoc(); 5634 if (!Info.CheckCallLimit(CallLoc)) 5635 return false; 5636 5637 const CXXRecordDecl *RD = Definition->getParent(); 5638 if (RD->getNumVBases()) { 5639 Info.FFDiag(CallLoc, diag::note_constexpr_virtual_base) << RD; 5640 return false; 5641 } 5642 5643 EvalInfo::EvaluatingConstructorRAII EvalObj( 5644 Info, 5645 ObjectUnderConstruction{This.getLValueBase(), This.Designator.Entries}, 5646 RD->getNumBases()); 5647 CallStackFrame Frame(Info, CallLoc, Definition, &This, ArgValues); 5648 5649 // FIXME: Creating an APValue just to hold a nonexistent return value is 5650 // wasteful. 5651 APValue RetVal; 5652 StmtResult Ret = {RetVal, nullptr}; 5653 5654 // If it's a delegating constructor, delegate. 5655 if (Definition->isDelegatingConstructor()) { 5656 CXXConstructorDecl::init_const_iterator I = Definition->init_begin(); 5657 { 5658 FullExpressionRAII InitScope(Info); 5659 if (!EvaluateInPlace(Result, Info, This, (*I)->getInit()) || 5660 !InitScope.destroy()) 5661 return false; 5662 } 5663 return EvaluateStmt(Ret, Info, Definition->getBody()) != ESR_Failed; 5664 } 5665 5666 // For a trivial copy or move constructor, perform an APValue copy. This is 5667 // essential for unions (or classes with anonymous union members), where the 5668 // operations performed by the constructor cannot be represented by 5669 // ctor-initializers. 5670 // 5671 // Skip this for empty non-union classes; we should not perform an 5672 // lvalue-to-rvalue conversion on them because their copy constructor does not 5673 // actually read them. 5674 if (Definition->isDefaulted() && Definition->isCopyOrMoveConstructor() && 5675 (Definition->getParent()->isUnion() || 5676 (Definition->isTrivial() && 5677 isReadByLvalueToRvalueConversion(Definition->getParent())))) { 5678 LValue RHS; 5679 RHS.setFrom(Info.Ctx, ArgValues[0]); 5680 return handleLValueToRValueConversion( 5681 Info, E, Definition->getParamDecl(0)->getType().getNonReferenceType(), 5682 RHS, Result, Definition->getParent()->isUnion()); 5683 } 5684 5685 // Reserve space for the struct members. 5686 if (!Result.hasValue()) { 5687 if (!RD->isUnion()) 5688 Result = APValue(APValue::UninitStruct(), RD->getNumBases(), 5689 std::distance(RD->field_begin(), RD->field_end())); 5690 else 5691 // A union starts with no active member. 5692 Result = APValue((const FieldDecl*)nullptr); 5693 } 5694 5695 if (RD->isInvalidDecl()) return false; 5696 const ASTRecordLayout &Layout = Info.Ctx.getASTRecordLayout(RD); 5697 5698 // A scope for temporaries lifetime-extended by reference members. 5699 BlockScopeRAII LifetimeExtendedScope(Info); 5700 5701 bool Success = true; 5702 unsigned BasesSeen = 0; 5703 #ifndef NDEBUG 5704 CXXRecordDecl::base_class_const_iterator BaseIt = RD->bases_begin(); 5705 #endif 5706 CXXRecordDecl::field_iterator FieldIt = RD->field_begin(); 5707 auto SkipToField = [&](FieldDecl *FD, bool Indirect) { 5708 // We might be initializing the same field again if this is an indirect 5709 // field initialization. 5710 if (FieldIt == RD->field_end() || 5711 FieldIt->getFieldIndex() > FD->getFieldIndex()) { 5712 assert(Indirect && "fields out of order?"); 5713 return; 5714 } 5715 5716 // Default-initialize any fields with no explicit initializer. 5717 for (; !declaresSameEntity(*FieldIt, FD); ++FieldIt) { 5718 assert(FieldIt != RD->field_end() && "missing field?"); 5719 if (!FieldIt->isUnnamedBitfield()) 5720 Result.getStructField(FieldIt->getFieldIndex()) = 5721 getDefaultInitValue(FieldIt->getType()); 5722 } 5723 ++FieldIt; 5724 }; 5725 for (const auto *I : Definition->inits()) { 5726 LValue Subobject = This; 5727 LValue SubobjectParent = This; 5728 APValue *Value = &Result; 5729 5730 // Determine the subobject to initialize. 5731 FieldDecl *FD = nullptr; 5732 if (I->isBaseInitializer()) { 5733 QualType BaseType(I->getBaseClass(), 0); 5734 #ifndef NDEBUG 5735 // Non-virtual base classes are initialized in the order in the class 5736 // definition. We have already checked for virtual base classes. 5737 assert(!BaseIt->isVirtual() && "virtual base for literal type"); 5738 assert(Info.Ctx.hasSameType(BaseIt->getType(), BaseType) && 5739 "base class initializers not in expected order"); 5740 ++BaseIt; 5741 #endif 5742 if (!HandleLValueDirectBase(Info, I->getInit(), Subobject, RD, 5743 BaseType->getAsCXXRecordDecl(), &Layout)) 5744 return false; 5745 Value = &Result.getStructBase(BasesSeen++); 5746 } else if ((FD = I->getMember())) { 5747 if (!HandleLValueMember(Info, I->getInit(), Subobject, FD, &Layout)) 5748 return false; 5749 if (RD->isUnion()) { 5750 Result = APValue(FD); 5751 Value = &Result.getUnionValue(); 5752 } else { 5753 SkipToField(FD, false); 5754 Value = &Result.getStructField(FD->getFieldIndex()); 5755 } 5756 } else if (IndirectFieldDecl *IFD = I->getIndirectMember()) { 5757 // Walk the indirect field decl's chain to find the object to initialize, 5758 // and make sure we've initialized every step along it. 5759 auto IndirectFieldChain = IFD->chain(); 5760 for (auto *C : IndirectFieldChain) { 5761 FD = cast<FieldDecl>(C); 5762 CXXRecordDecl *CD = cast<CXXRecordDecl>(FD->getParent()); 5763 // Switch the union field if it differs. This happens if we had 5764 // preceding zero-initialization, and we're now initializing a union 5765 // subobject other than the first. 5766 // FIXME: In this case, the values of the other subobjects are 5767 // specified, since zero-initialization sets all padding bits to zero. 5768 if (!Value->hasValue() || 5769 (Value->isUnion() && Value->getUnionField() != FD)) { 5770 if (CD->isUnion()) 5771 *Value = APValue(FD); 5772 else 5773 // FIXME: This immediately starts the lifetime of all members of an 5774 // anonymous struct. It would be preferable to strictly start member 5775 // lifetime in initialization order. 5776 *Value = getDefaultInitValue(Info.Ctx.getRecordType(CD)); 5777 } 5778 // Store Subobject as its parent before updating it for the last element 5779 // in the chain. 5780 if (C == IndirectFieldChain.back()) 5781 SubobjectParent = Subobject; 5782 if (!HandleLValueMember(Info, I->getInit(), Subobject, FD)) 5783 return false; 5784 if (CD->isUnion()) 5785 Value = &Value->getUnionValue(); 5786 else { 5787 if (C == IndirectFieldChain.front() && !RD->isUnion()) 5788 SkipToField(FD, true); 5789 Value = &Value->getStructField(FD->getFieldIndex()); 5790 } 5791 } 5792 } else { 5793 llvm_unreachable("unknown base initializer kind"); 5794 } 5795 5796 // Need to override This for implicit field initializers as in this case 5797 // This refers to innermost anonymous struct/union containing initializer, 5798 // not to currently constructed class. 5799 const Expr *Init = I->getInit(); 5800 ThisOverrideRAII ThisOverride(*Info.CurrentCall, &SubobjectParent, 5801 isa<CXXDefaultInitExpr>(Init)); 5802 FullExpressionRAII InitScope(Info); 5803 if (!EvaluateInPlace(*Value, Info, Subobject, Init) || 5804 (FD && FD->isBitField() && 5805 !truncateBitfieldValue(Info, Init, *Value, FD))) { 5806 // If we're checking for a potential constant expression, evaluate all 5807 // initializers even if some of them fail. 5808 if (!Info.noteFailure()) 5809 return false; 5810 Success = false; 5811 } 5812 5813 // This is the point at which the dynamic type of the object becomes this 5814 // class type. 5815 if (I->isBaseInitializer() && BasesSeen == RD->getNumBases()) 5816 EvalObj.finishedConstructingBases(); 5817 } 5818 5819 // Default-initialize any remaining fields. 5820 if (!RD->isUnion()) { 5821 for (; FieldIt != RD->field_end(); ++FieldIt) { 5822 if (!FieldIt->isUnnamedBitfield()) 5823 Result.getStructField(FieldIt->getFieldIndex()) = 5824 getDefaultInitValue(FieldIt->getType()); 5825 } 5826 } 5827 5828 EvalObj.finishedConstructingFields(); 5829 5830 return Success && 5831 EvaluateStmt(Ret, Info, Definition->getBody()) != ESR_Failed && 5832 LifetimeExtendedScope.destroy(); 5833 } 5834 5835 static bool HandleConstructorCall(const Expr *E, const LValue &This, 5836 ArrayRef<const Expr*> Args, 5837 const CXXConstructorDecl *Definition, 5838 EvalInfo &Info, APValue &Result) { 5839 ArgVector ArgValues(Args.size()); 5840 if (!EvaluateArgs(Args, ArgValues, Info, Definition)) 5841 return false; 5842 5843 return HandleConstructorCall(E, This, ArgValues.data(), Definition, 5844 Info, Result); 5845 } 5846 5847 static bool HandleDestructionImpl(EvalInfo &Info, SourceLocation CallLoc, 5848 const LValue &This, APValue &Value, 5849 QualType T) { 5850 // Objects can only be destroyed while they're within their lifetimes. 5851 // FIXME: We have no representation for whether an object of type nullptr_t 5852 // is in its lifetime; it usually doesn't matter. Perhaps we should model it 5853 // as indeterminate instead? 5854 if (Value.isAbsent() && !T->isNullPtrType()) { 5855 APValue Printable; 5856 This.moveInto(Printable); 5857 Info.FFDiag(CallLoc, diag::note_constexpr_destroy_out_of_lifetime) 5858 << Printable.getAsString(Info.Ctx, Info.Ctx.getLValueReferenceType(T)); 5859 return false; 5860 } 5861 5862 // Invent an expression for location purposes. 5863 // FIXME: We shouldn't need to do this. 5864 OpaqueValueExpr LocE(CallLoc, Info.Ctx.IntTy, VK_RValue); 5865 5866 // For arrays, destroy elements right-to-left. 5867 if (const ConstantArrayType *CAT = Info.Ctx.getAsConstantArrayType(T)) { 5868 uint64_t Size = CAT->getSize().getZExtValue(); 5869 QualType ElemT = CAT->getElementType(); 5870 5871 LValue ElemLV = This; 5872 ElemLV.addArray(Info, &LocE, CAT); 5873 if (!HandleLValueArrayAdjustment(Info, &LocE, ElemLV, ElemT, Size)) 5874 return false; 5875 5876 // Ensure that we have actual array elements available to destroy; the 5877 // destructors might mutate the value, so we can't run them on the array 5878 // filler. 5879 if (Size && Size > Value.getArrayInitializedElts()) 5880 expandArray(Value, Value.getArraySize() - 1); 5881 5882 for (; Size != 0; --Size) { 5883 APValue &Elem = Value.getArrayInitializedElt(Size - 1); 5884 if (!HandleLValueArrayAdjustment(Info, &LocE, ElemLV, ElemT, -1) || 5885 !HandleDestructionImpl(Info, CallLoc, ElemLV, Elem, ElemT)) 5886 return false; 5887 } 5888 5889 // End the lifetime of this array now. 5890 Value = APValue(); 5891 return true; 5892 } 5893 5894 const CXXRecordDecl *RD = T->getAsCXXRecordDecl(); 5895 if (!RD) { 5896 if (T.isDestructedType()) { 5897 Info.FFDiag(CallLoc, diag::note_constexpr_unsupported_destruction) << T; 5898 return false; 5899 } 5900 5901 Value = APValue(); 5902 return true; 5903 } 5904 5905 if (RD->getNumVBases()) { 5906 Info.FFDiag(CallLoc, diag::note_constexpr_virtual_base) << RD; 5907 return false; 5908 } 5909 5910 const CXXDestructorDecl *DD = RD->getDestructor(); 5911 if (!DD && !RD->hasTrivialDestructor()) { 5912 Info.FFDiag(CallLoc); 5913 return false; 5914 } 5915 5916 if (!DD || DD->isTrivial() || 5917 (RD->isAnonymousStructOrUnion() && RD->isUnion())) { 5918 // A trivial destructor just ends the lifetime of the object. Check for 5919 // this case before checking for a body, because we might not bother 5920 // building a body for a trivial destructor. Note that it doesn't matter 5921 // whether the destructor is constexpr in this case; all trivial 5922 // destructors are constexpr. 5923 // 5924 // If an anonymous union would be destroyed, some enclosing destructor must 5925 // have been explicitly defined, and the anonymous union destruction should 5926 // have no effect. 5927 Value = APValue(); 5928 return true; 5929 } 5930 5931 if (!Info.CheckCallLimit(CallLoc)) 5932 return false; 5933 5934 const FunctionDecl *Definition = nullptr; 5935 const Stmt *Body = DD->getBody(Definition); 5936 5937 if (!CheckConstexprFunction(Info, CallLoc, DD, Definition, Body)) 5938 return false; 5939 5940 CallStackFrame Frame(Info, CallLoc, Definition, &This, nullptr); 5941 5942 // We're now in the period of destruction of this object. 5943 unsigned BasesLeft = RD->getNumBases(); 5944 EvalInfo::EvaluatingDestructorRAII EvalObj( 5945 Info, 5946 ObjectUnderConstruction{This.getLValueBase(), This.Designator.Entries}); 5947 if (!EvalObj.DidInsert) { 5948 // C++2a [class.dtor]p19: 5949 // the behavior is undefined if the destructor is invoked for an object 5950 // whose lifetime has ended 5951 // (Note that formally the lifetime ends when the period of destruction 5952 // begins, even though certain uses of the object remain valid until the 5953 // period of destruction ends.) 5954 Info.FFDiag(CallLoc, diag::note_constexpr_double_destroy); 5955 return false; 5956 } 5957 5958 // FIXME: Creating an APValue just to hold a nonexistent return value is 5959 // wasteful. 5960 APValue RetVal; 5961 StmtResult Ret = {RetVal, nullptr}; 5962 if (EvaluateStmt(Ret, Info, Definition->getBody()) == ESR_Failed) 5963 return false; 5964 5965 // A union destructor does not implicitly destroy its members. 5966 if (RD->isUnion()) 5967 return true; 5968 5969 const ASTRecordLayout &Layout = Info.Ctx.getASTRecordLayout(RD); 5970 5971 // We don't have a good way to iterate fields in reverse, so collect all the 5972 // fields first and then walk them backwards. 5973 SmallVector<FieldDecl*, 16> Fields(RD->field_begin(), RD->field_end()); 5974 for (const FieldDecl *FD : llvm::reverse(Fields)) { 5975 if (FD->isUnnamedBitfield()) 5976 continue; 5977 5978 LValue Subobject = This; 5979 if (!HandleLValueMember(Info, &LocE, Subobject, FD, &Layout)) 5980 return false; 5981 5982 APValue *SubobjectValue = &Value.getStructField(FD->getFieldIndex()); 5983 if (!HandleDestructionImpl(Info, CallLoc, Subobject, *SubobjectValue, 5984 FD->getType())) 5985 return false; 5986 } 5987 5988 if (BasesLeft != 0) 5989 EvalObj.startedDestroyingBases(); 5990 5991 // Destroy base classes in reverse order. 5992 for (const CXXBaseSpecifier &Base : llvm::reverse(RD->bases())) { 5993 --BasesLeft; 5994 5995 QualType BaseType = Base.getType(); 5996 LValue Subobject = This; 5997 if (!HandleLValueDirectBase(Info, &LocE, Subobject, RD, 5998 BaseType->getAsCXXRecordDecl(), &Layout)) 5999 return false; 6000 6001 APValue *SubobjectValue = &Value.getStructBase(BasesLeft); 6002 if (!HandleDestructionImpl(Info, CallLoc, Subobject, *SubobjectValue, 6003 BaseType)) 6004 return false; 6005 } 6006 assert(BasesLeft == 0 && "NumBases was wrong?"); 6007 6008 // The period of destruction ends now. The object is gone. 6009 Value = APValue(); 6010 return true; 6011 } 6012 6013 namespace { 6014 struct DestroyObjectHandler { 6015 EvalInfo &Info; 6016 const Expr *E; 6017 const LValue &This; 6018 const AccessKinds AccessKind; 6019 6020 typedef bool result_type; 6021 bool failed() { return false; } 6022 bool found(APValue &Subobj, QualType SubobjType) { 6023 return HandleDestructionImpl(Info, E->getExprLoc(), This, Subobj, 6024 SubobjType); 6025 } 6026 bool found(APSInt &Value, QualType SubobjType) { 6027 Info.FFDiag(E, diag::note_constexpr_destroy_complex_elem); 6028 return false; 6029 } 6030 bool found(APFloat &Value, QualType SubobjType) { 6031 Info.FFDiag(E, diag::note_constexpr_destroy_complex_elem); 6032 return false; 6033 } 6034 }; 6035 } 6036 6037 /// Perform a destructor or pseudo-destructor call on the given object, which 6038 /// might in general not be a complete object. 6039 static bool HandleDestruction(EvalInfo &Info, const Expr *E, 6040 const LValue &This, QualType ThisType) { 6041 CompleteObject Obj = findCompleteObject(Info, E, AK_Destroy, This, ThisType); 6042 DestroyObjectHandler Handler = {Info, E, This, AK_Destroy}; 6043 return Obj && findSubobject(Info, E, Obj, This.Designator, Handler); 6044 } 6045 6046 /// Destroy and end the lifetime of the given complete object. 6047 static bool HandleDestruction(EvalInfo &Info, SourceLocation Loc, 6048 APValue::LValueBase LVBase, APValue &Value, 6049 QualType T) { 6050 // If we've had an unmodeled side-effect, we can't rely on mutable state 6051 // (such as the object we're about to destroy) being correct. 6052 if (Info.EvalStatus.HasSideEffects) 6053 return false; 6054 6055 LValue LV; 6056 LV.set({LVBase}); 6057 return HandleDestructionImpl(Info, Loc, LV, Value, T); 6058 } 6059 6060 /// Perform a call to 'perator new' or to `__builtin_operator_new'. 6061 static bool HandleOperatorNewCall(EvalInfo &Info, const CallExpr *E, 6062 LValue &Result) { 6063 if (Info.checkingPotentialConstantExpression() || 6064 Info.SpeculativeEvaluationDepth) 6065 return false; 6066 6067 // This is permitted only within a call to std::allocator<T>::allocate. 6068 auto Caller = Info.getStdAllocatorCaller("allocate"); 6069 if (!Caller) { 6070 Info.FFDiag(E->getExprLoc(), Info.getLangOpts().CPlusPlus2a 6071 ? diag::note_constexpr_new_untyped 6072 : diag::note_constexpr_new); 6073 return false; 6074 } 6075 6076 QualType ElemType = Caller.ElemType; 6077 if (ElemType->isIncompleteType() || ElemType->isFunctionType()) { 6078 Info.FFDiag(E->getExprLoc(), 6079 diag::note_constexpr_new_not_complete_object_type) 6080 << (ElemType->isIncompleteType() ? 0 : 1) << ElemType; 6081 return false; 6082 } 6083 6084 APSInt ByteSize; 6085 if (!EvaluateInteger(E->getArg(0), ByteSize, Info)) 6086 return false; 6087 bool IsNothrow = false; 6088 for (unsigned I = 1, N = E->getNumArgs(); I != N; ++I) { 6089 EvaluateIgnoredValue(Info, E->getArg(I)); 6090 IsNothrow |= E->getType()->isNothrowT(); 6091 } 6092 6093 CharUnits ElemSize; 6094 if (!HandleSizeof(Info, E->getExprLoc(), ElemType, ElemSize)) 6095 return false; 6096 APInt Size, Remainder; 6097 APInt ElemSizeAP(ByteSize.getBitWidth(), ElemSize.getQuantity()); 6098 APInt::udivrem(ByteSize, ElemSizeAP, Size, Remainder); 6099 if (Remainder != 0) { 6100 // This likely indicates a bug in the implementation of 'std::allocator'. 6101 Info.FFDiag(E->getExprLoc(), diag::note_constexpr_operator_new_bad_size) 6102 << ByteSize << APSInt(ElemSizeAP, true) << ElemType; 6103 return false; 6104 } 6105 6106 if (ByteSize.getActiveBits() > ConstantArrayType::getMaxSizeBits(Info.Ctx)) { 6107 if (IsNothrow) { 6108 Result.setNull(Info.Ctx, E->getType()); 6109 return true; 6110 } 6111 6112 Info.FFDiag(E, diag::note_constexpr_new_too_large) << APSInt(Size, true); 6113 return false; 6114 } 6115 6116 QualType AllocType = Info.Ctx.getConstantArrayType(ElemType, Size, nullptr, 6117 ArrayType::Normal, 0); 6118 APValue *Val = Info.createHeapAlloc(E, AllocType, Result); 6119 *Val = APValue(APValue::UninitArray(), 0, Size.getZExtValue()); 6120 Result.addArray(Info, E, cast<ConstantArrayType>(AllocType)); 6121 return true; 6122 } 6123 6124 static bool hasVirtualDestructor(QualType T) { 6125 if (CXXRecordDecl *RD = T->getAsCXXRecordDecl()) 6126 if (CXXDestructorDecl *DD = RD->getDestructor()) 6127 return DD->isVirtual(); 6128 return false; 6129 } 6130 6131 static const FunctionDecl *getVirtualOperatorDelete(QualType T) { 6132 if (CXXRecordDecl *RD = T->getAsCXXRecordDecl()) 6133 if (CXXDestructorDecl *DD = RD->getDestructor()) 6134 return DD->isVirtual() ? DD->getOperatorDelete() : nullptr; 6135 return nullptr; 6136 } 6137 6138 /// Check that the given object is a suitable pointer to a heap allocation that 6139 /// still exists and is of the right kind for the purpose of a deletion. 6140 /// 6141 /// On success, returns the heap allocation to deallocate. On failure, produces 6142 /// a diagnostic and returns None. 6143 static Optional<DynAlloc *> CheckDeleteKind(EvalInfo &Info, const Expr *E, 6144 const LValue &Pointer, 6145 DynAlloc::Kind DeallocKind) { 6146 auto PointerAsString = [&] { 6147 return Pointer.toString(Info.Ctx, Info.Ctx.VoidPtrTy); 6148 }; 6149 6150 DynamicAllocLValue DA = Pointer.Base.dyn_cast<DynamicAllocLValue>(); 6151 if (!DA) { 6152 Info.FFDiag(E, diag::note_constexpr_delete_not_heap_alloc) 6153 << PointerAsString(); 6154 if (Pointer.Base) 6155 NoteLValueLocation(Info, Pointer.Base); 6156 return None; 6157 } 6158 6159 Optional<DynAlloc *> Alloc = Info.lookupDynamicAlloc(DA); 6160 if (!Alloc) { 6161 Info.FFDiag(E, diag::note_constexpr_double_delete); 6162 return None; 6163 } 6164 6165 QualType AllocType = Pointer.Base.getDynamicAllocType(); 6166 if (DeallocKind != (*Alloc)->getKind()) { 6167 Info.FFDiag(E, diag::note_constexpr_new_delete_mismatch) 6168 << DeallocKind << (*Alloc)->getKind() << AllocType; 6169 NoteLValueLocation(Info, Pointer.Base); 6170 return None; 6171 } 6172 6173 bool Subobject = false; 6174 if (DeallocKind == DynAlloc::New) { 6175 Subobject = Pointer.Designator.MostDerivedPathLength != 0 || 6176 Pointer.Designator.isOnePastTheEnd(); 6177 } else { 6178 Subobject = Pointer.Designator.Entries.size() != 1 || 6179 Pointer.Designator.Entries[0].getAsArrayIndex() != 0; 6180 } 6181 if (Subobject) { 6182 Info.FFDiag(E, diag::note_constexpr_delete_subobject) 6183 << PointerAsString() << Pointer.Designator.isOnePastTheEnd(); 6184 return None; 6185 } 6186 6187 return Alloc; 6188 } 6189 6190 // Perform a call to 'operator delete' or '__builtin_operator_delete'. 6191 bool HandleOperatorDeleteCall(EvalInfo &Info, const CallExpr *E) { 6192 if (Info.checkingPotentialConstantExpression() || 6193 Info.SpeculativeEvaluationDepth) 6194 return false; 6195 6196 // This is permitted only within a call to std::allocator<T>::deallocate. 6197 if (!Info.getStdAllocatorCaller("deallocate")) { 6198 Info.FFDiag(E->getExprLoc()); 6199 return true; 6200 } 6201 6202 LValue Pointer; 6203 if (!EvaluatePointer(E->getArg(0), Pointer, Info)) 6204 return false; 6205 for (unsigned I = 1, N = E->getNumArgs(); I != N; ++I) 6206 EvaluateIgnoredValue(Info, E->getArg(I)); 6207 6208 if (Pointer.Designator.Invalid) 6209 return false; 6210 6211 // Deleting a null pointer has no effect. 6212 if (Pointer.isNullPointer()) 6213 return true; 6214 6215 if (!CheckDeleteKind(Info, E, Pointer, DynAlloc::StdAllocator)) 6216 return false; 6217 6218 Info.HeapAllocs.erase(Pointer.Base.get<DynamicAllocLValue>()); 6219 return true; 6220 } 6221 6222 //===----------------------------------------------------------------------===// 6223 // Generic Evaluation 6224 //===----------------------------------------------------------------------===// 6225 namespace { 6226 6227 class BitCastBuffer { 6228 // FIXME: We're going to need bit-level granularity when we support 6229 // bit-fields. 6230 // FIXME: Its possible under the C++ standard for 'char' to not be 8 bits, but 6231 // we don't support a host or target where that is the case. Still, we should 6232 // use a more generic type in case we ever do. 6233 SmallVector<Optional<unsigned char>, 32> Bytes; 6234 6235 static_assert(std::numeric_limits<unsigned char>::digits >= 8, 6236 "Need at least 8 bit unsigned char"); 6237 6238 bool TargetIsLittleEndian; 6239 6240 public: 6241 BitCastBuffer(CharUnits Width, bool TargetIsLittleEndian) 6242 : Bytes(Width.getQuantity()), 6243 TargetIsLittleEndian(TargetIsLittleEndian) {} 6244 6245 LLVM_NODISCARD 6246 bool readObject(CharUnits Offset, CharUnits Width, 6247 SmallVectorImpl<unsigned char> &Output) const { 6248 for (CharUnits I = Offset, E = Offset + Width; I != E; ++I) { 6249 // If a byte of an integer is uninitialized, then the whole integer is 6250 // uninitalized. 6251 if (!Bytes[I.getQuantity()]) 6252 return false; 6253 Output.push_back(*Bytes[I.getQuantity()]); 6254 } 6255 if (llvm::sys::IsLittleEndianHost != TargetIsLittleEndian) 6256 std::reverse(Output.begin(), Output.end()); 6257 return true; 6258 } 6259 6260 void writeObject(CharUnits Offset, SmallVectorImpl<unsigned char> &Input) { 6261 if (llvm::sys::IsLittleEndianHost != TargetIsLittleEndian) 6262 std::reverse(Input.begin(), Input.end()); 6263 6264 size_t Index = 0; 6265 for (unsigned char Byte : Input) { 6266 assert(!Bytes[Offset.getQuantity() + Index] && "overwriting a byte?"); 6267 Bytes[Offset.getQuantity() + Index] = Byte; 6268 ++Index; 6269 } 6270 } 6271 6272 size_t size() { return Bytes.size(); } 6273 }; 6274 6275 /// Traverse an APValue to produce an BitCastBuffer, emulating how the current 6276 /// target would represent the value at runtime. 6277 class APValueToBufferConverter { 6278 EvalInfo &Info; 6279 BitCastBuffer Buffer; 6280 const CastExpr *BCE; 6281 6282 APValueToBufferConverter(EvalInfo &Info, CharUnits ObjectWidth, 6283 const CastExpr *BCE) 6284 : Info(Info), 6285 Buffer(ObjectWidth, Info.Ctx.getTargetInfo().isLittleEndian()), 6286 BCE(BCE) {} 6287 6288 bool visit(const APValue &Val, QualType Ty) { 6289 return visit(Val, Ty, CharUnits::fromQuantity(0)); 6290 } 6291 6292 // Write out Val with type Ty into Buffer starting at Offset. 6293 bool visit(const APValue &Val, QualType Ty, CharUnits Offset) { 6294 assert((size_t)Offset.getQuantity() <= Buffer.size()); 6295 6296 // As a special case, nullptr_t has an indeterminate value. 6297 if (Ty->isNullPtrType()) 6298 return true; 6299 6300 // Dig through Src to find the byte at SrcOffset. 6301 switch (Val.getKind()) { 6302 case APValue::Indeterminate: 6303 case APValue::None: 6304 return true; 6305 6306 case APValue::Int: 6307 return visitInt(Val.getInt(), Ty, Offset); 6308 case APValue::Float: 6309 return visitFloat(Val.getFloat(), Ty, Offset); 6310 case APValue::Array: 6311 return visitArray(Val, Ty, Offset); 6312 case APValue::Struct: 6313 return visitRecord(Val, Ty, Offset); 6314 6315 case APValue::ComplexInt: 6316 case APValue::ComplexFloat: 6317 case APValue::Vector: 6318 case APValue::FixedPoint: 6319 // FIXME: We should support these. 6320 6321 case APValue::Union: 6322 case APValue::MemberPointer: 6323 case APValue::AddrLabelDiff: { 6324 Info.FFDiag(BCE->getBeginLoc(), 6325 diag::note_constexpr_bit_cast_unsupported_type) 6326 << Ty; 6327 return false; 6328 } 6329 6330 case APValue::LValue: 6331 llvm_unreachable("LValue subobject in bit_cast?"); 6332 } 6333 llvm_unreachable("Unhandled APValue::ValueKind"); 6334 } 6335 6336 bool visitRecord(const APValue &Val, QualType Ty, CharUnits Offset) { 6337 const RecordDecl *RD = Ty->getAsRecordDecl(); 6338 const ASTRecordLayout &Layout = Info.Ctx.getASTRecordLayout(RD); 6339 6340 // Visit the base classes. 6341 if (auto *CXXRD = dyn_cast<CXXRecordDecl>(RD)) { 6342 for (size_t I = 0, E = CXXRD->getNumBases(); I != E; ++I) { 6343 const CXXBaseSpecifier &BS = CXXRD->bases_begin()[I]; 6344 CXXRecordDecl *BaseDecl = BS.getType()->getAsCXXRecordDecl(); 6345 6346 if (!visitRecord(Val.getStructBase(I), BS.getType(), 6347 Layout.getBaseClassOffset(BaseDecl) + Offset)) 6348 return false; 6349 } 6350 } 6351 6352 // Visit the fields. 6353 unsigned FieldIdx = 0; 6354 for (FieldDecl *FD : RD->fields()) { 6355 if (FD->isBitField()) { 6356 Info.FFDiag(BCE->getBeginLoc(), 6357 diag::note_constexpr_bit_cast_unsupported_bitfield); 6358 return false; 6359 } 6360 6361 uint64_t FieldOffsetBits = Layout.getFieldOffset(FieldIdx); 6362 6363 assert(FieldOffsetBits % Info.Ctx.getCharWidth() == 0 && 6364 "only bit-fields can have sub-char alignment"); 6365 CharUnits FieldOffset = 6366 Info.Ctx.toCharUnitsFromBits(FieldOffsetBits) + Offset; 6367 QualType FieldTy = FD->getType(); 6368 if (!visit(Val.getStructField(FieldIdx), FieldTy, FieldOffset)) 6369 return false; 6370 ++FieldIdx; 6371 } 6372 6373 return true; 6374 } 6375 6376 bool visitArray(const APValue &Val, QualType Ty, CharUnits Offset) { 6377 const auto *CAT = 6378 dyn_cast_or_null<ConstantArrayType>(Ty->getAsArrayTypeUnsafe()); 6379 if (!CAT) 6380 return false; 6381 6382 CharUnits ElemWidth = Info.Ctx.getTypeSizeInChars(CAT->getElementType()); 6383 unsigned NumInitializedElts = Val.getArrayInitializedElts(); 6384 unsigned ArraySize = Val.getArraySize(); 6385 // First, initialize the initialized elements. 6386 for (unsigned I = 0; I != NumInitializedElts; ++I) { 6387 const APValue &SubObj = Val.getArrayInitializedElt(I); 6388 if (!visit(SubObj, CAT->getElementType(), Offset + I * ElemWidth)) 6389 return false; 6390 } 6391 6392 // Next, initialize the rest of the array using the filler. 6393 if (Val.hasArrayFiller()) { 6394 const APValue &Filler = Val.getArrayFiller(); 6395 for (unsigned I = NumInitializedElts; I != ArraySize; ++I) { 6396 if (!visit(Filler, CAT->getElementType(), Offset + I * ElemWidth)) 6397 return false; 6398 } 6399 } 6400 6401 return true; 6402 } 6403 6404 bool visitInt(const APSInt &Val, QualType Ty, CharUnits Offset) { 6405 CharUnits Width = Info.Ctx.getTypeSizeInChars(Ty); 6406 SmallVector<unsigned char, 8> Bytes(Width.getQuantity()); 6407 llvm::StoreIntToMemory(Val, &*Bytes.begin(), Width.getQuantity()); 6408 Buffer.writeObject(Offset, Bytes); 6409 return true; 6410 } 6411 6412 bool visitFloat(const APFloat &Val, QualType Ty, CharUnits Offset) { 6413 APSInt AsInt(Val.bitcastToAPInt()); 6414 return visitInt(AsInt, Ty, Offset); 6415 } 6416 6417 public: 6418 static Optional<BitCastBuffer> convert(EvalInfo &Info, const APValue &Src, 6419 const CastExpr *BCE) { 6420 CharUnits DstSize = Info.Ctx.getTypeSizeInChars(BCE->getType()); 6421 APValueToBufferConverter Converter(Info, DstSize, BCE); 6422 if (!Converter.visit(Src, BCE->getSubExpr()->getType())) 6423 return None; 6424 return Converter.Buffer; 6425 } 6426 }; 6427 6428 /// Write an BitCastBuffer into an APValue. 6429 class BufferToAPValueConverter { 6430 EvalInfo &Info; 6431 const BitCastBuffer &Buffer; 6432 const CastExpr *BCE; 6433 6434 BufferToAPValueConverter(EvalInfo &Info, const BitCastBuffer &Buffer, 6435 const CastExpr *BCE) 6436 : Info(Info), Buffer(Buffer), BCE(BCE) {} 6437 6438 // Emit an unsupported bit_cast type error. Sema refuses to build a bit_cast 6439 // with an invalid type, so anything left is a deficiency on our part (FIXME). 6440 // Ideally this will be unreachable. 6441 llvm::NoneType unsupportedType(QualType Ty) { 6442 Info.FFDiag(BCE->getBeginLoc(), 6443 diag::note_constexpr_bit_cast_unsupported_type) 6444 << Ty; 6445 return None; 6446 } 6447 6448 Optional<APValue> visit(const BuiltinType *T, CharUnits Offset, 6449 const EnumType *EnumSugar = nullptr) { 6450 if (T->isNullPtrType()) { 6451 uint64_t NullValue = Info.Ctx.getTargetNullPointerValue(QualType(T, 0)); 6452 return APValue((Expr *)nullptr, 6453 /*Offset=*/CharUnits::fromQuantity(NullValue), 6454 APValue::NoLValuePath{}, /*IsNullPtr=*/true); 6455 } 6456 6457 CharUnits SizeOf = Info.Ctx.getTypeSizeInChars(T); 6458 SmallVector<uint8_t, 8> Bytes; 6459 if (!Buffer.readObject(Offset, SizeOf, Bytes)) { 6460 // If this is std::byte or unsigned char, then its okay to store an 6461 // indeterminate value. 6462 bool IsStdByte = EnumSugar && EnumSugar->isStdByteType(); 6463 bool IsUChar = 6464 !EnumSugar && (T->isSpecificBuiltinType(BuiltinType::UChar) || 6465 T->isSpecificBuiltinType(BuiltinType::Char_U)); 6466 if (!IsStdByte && !IsUChar) { 6467 QualType DisplayType(EnumSugar ? (const Type *)EnumSugar : T, 0); 6468 Info.FFDiag(BCE->getExprLoc(), 6469 diag::note_constexpr_bit_cast_indet_dest) 6470 << DisplayType << Info.Ctx.getLangOpts().CharIsSigned; 6471 return None; 6472 } 6473 6474 return APValue::IndeterminateValue(); 6475 } 6476 6477 APSInt Val(SizeOf.getQuantity() * Info.Ctx.getCharWidth(), true); 6478 llvm::LoadIntFromMemory(Val, &*Bytes.begin(), Bytes.size()); 6479 6480 if (T->isIntegralOrEnumerationType()) { 6481 Val.setIsSigned(T->isSignedIntegerOrEnumerationType()); 6482 return APValue(Val); 6483 } 6484 6485 if (T->isRealFloatingType()) { 6486 const llvm::fltSemantics &Semantics = 6487 Info.Ctx.getFloatTypeSemantics(QualType(T, 0)); 6488 return APValue(APFloat(Semantics, Val)); 6489 } 6490 6491 return unsupportedType(QualType(T, 0)); 6492 } 6493 6494 Optional<APValue> visit(const RecordType *RTy, CharUnits Offset) { 6495 const RecordDecl *RD = RTy->getAsRecordDecl(); 6496 const ASTRecordLayout &Layout = Info.Ctx.getASTRecordLayout(RD); 6497 6498 unsigned NumBases = 0; 6499 if (auto *CXXRD = dyn_cast<CXXRecordDecl>(RD)) 6500 NumBases = CXXRD->getNumBases(); 6501 6502 APValue ResultVal(APValue::UninitStruct(), NumBases, 6503 std::distance(RD->field_begin(), RD->field_end())); 6504 6505 // Visit the base classes. 6506 if (auto *CXXRD = dyn_cast<CXXRecordDecl>(RD)) { 6507 for (size_t I = 0, E = CXXRD->getNumBases(); I != E; ++I) { 6508 const CXXBaseSpecifier &BS = CXXRD->bases_begin()[I]; 6509 CXXRecordDecl *BaseDecl = BS.getType()->getAsCXXRecordDecl(); 6510 if (BaseDecl->isEmpty() || 6511 Info.Ctx.getASTRecordLayout(BaseDecl).getNonVirtualSize().isZero()) 6512 continue; 6513 6514 Optional<APValue> SubObj = visitType( 6515 BS.getType(), Layout.getBaseClassOffset(BaseDecl) + Offset); 6516 if (!SubObj) 6517 return None; 6518 ResultVal.getStructBase(I) = *SubObj; 6519 } 6520 } 6521 6522 // Visit the fields. 6523 unsigned FieldIdx = 0; 6524 for (FieldDecl *FD : RD->fields()) { 6525 // FIXME: We don't currently support bit-fields. A lot of the logic for 6526 // this is in CodeGen, so we need to factor it around. 6527 if (FD->isBitField()) { 6528 Info.FFDiag(BCE->getBeginLoc(), 6529 diag::note_constexpr_bit_cast_unsupported_bitfield); 6530 return None; 6531 } 6532 6533 uint64_t FieldOffsetBits = Layout.getFieldOffset(FieldIdx); 6534 assert(FieldOffsetBits % Info.Ctx.getCharWidth() == 0); 6535 6536 CharUnits FieldOffset = 6537 CharUnits::fromQuantity(FieldOffsetBits / Info.Ctx.getCharWidth()) + 6538 Offset; 6539 QualType FieldTy = FD->getType(); 6540 Optional<APValue> SubObj = visitType(FieldTy, FieldOffset); 6541 if (!SubObj) 6542 return None; 6543 ResultVal.getStructField(FieldIdx) = *SubObj; 6544 ++FieldIdx; 6545 } 6546 6547 return ResultVal; 6548 } 6549 6550 Optional<APValue> visit(const EnumType *Ty, CharUnits Offset) { 6551 QualType RepresentationType = Ty->getDecl()->getIntegerType(); 6552 assert(!RepresentationType.isNull() && 6553 "enum forward decl should be caught by Sema"); 6554 const auto *AsBuiltin = 6555 RepresentationType.getCanonicalType()->castAs<BuiltinType>(); 6556 // Recurse into the underlying type. Treat std::byte transparently as 6557 // unsigned char. 6558 return visit(AsBuiltin, Offset, /*EnumTy=*/Ty); 6559 } 6560 6561 Optional<APValue> visit(const ConstantArrayType *Ty, CharUnits Offset) { 6562 size_t Size = Ty->getSize().getLimitedValue(); 6563 CharUnits ElementWidth = Info.Ctx.getTypeSizeInChars(Ty->getElementType()); 6564 6565 APValue ArrayValue(APValue::UninitArray(), Size, Size); 6566 for (size_t I = 0; I != Size; ++I) { 6567 Optional<APValue> ElementValue = 6568 visitType(Ty->getElementType(), Offset + I * ElementWidth); 6569 if (!ElementValue) 6570 return None; 6571 ArrayValue.getArrayInitializedElt(I) = std::move(*ElementValue); 6572 } 6573 6574 return ArrayValue; 6575 } 6576 6577 Optional<APValue> visit(const Type *Ty, CharUnits Offset) { 6578 return unsupportedType(QualType(Ty, 0)); 6579 } 6580 6581 Optional<APValue> visitType(QualType Ty, CharUnits Offset) { 6582 QualType Can = Ty.getCanonicalType(); 6583 6584 switch (Can->getTypeClass()) { 6585 #define TYPE(Class, Base) \ 6586 case Type::Class: \ 6587 return visit(cast<Class##Type>(Can.getTypePtr()), Offset); 6588 #define ABSTRACT_TYPE(Class, Base) 6589 #define NON_CANONICAL_TYPE(Class, Base) \ 6590 case Type::Class: \ 6591 llvm_unreachable("non-canonical type should be impossible!"); 6592 #define DEPENDENT_TYPE(Class, Base) \ 6593 case Type::Class: \ 6594 llvm_unreachable( \ 6595 "dependent types aren't supported in the constant evaluator!"); 6596 #define NON_CANONICAL_UNLESS_DEPENDENT(Class, Base) \ 6597 case Type::Class: \ 6598 llvm_unreachable("either dependent or not canonical!"); 6599 #include "clang/AST/TypeNodes.inc" 6600 } 6601 llvm_unreachable("Unhandled Type::TypeClass"); 6602 } 6603 6604 public: 6605 // Pull out a full value of type DstType. 6606 static Optional<APValue> convert(EvalInfo &Info, BitCastBuffer &Buffer, 6607 const CastExpr *BCE) { 6608 BufferToAPValueConverter Converter(Info, Buffer, BCE); 6609 return Converter.visitType(BCE->getType(), CharUnits::fromQuantity(0)); 6610 } 6611 }; 6612 6613 static bool checkBitCastConstexprEligibilityType(SourceLocation Loc, 6614 QualType Ty, EvalInfo *Info, 6615 const ASTContext &Ctx, 6616 bool CheckingDest) { 6617 Ty = Ty.getCanonicalType(); 6618 6619 auto diag = [&](int Reason) { 6620 if (Info) 6621 Info->FFDiag(Loc, diag::note_constexpr_bit_cast_invalid_type) 6622 << CheckingDest << (Reason == 4) << Reason; 6623 return false; 6624 }; 6625 auto note = [&](int Construct, QualType NoteTy, SourceLocation NoteLoc) { 6626 if (Info) 6627 Info->Note(NoteLoc, diag::note_constexpr_bit_cast_invalid_subtype) 6628 << NoteTy << Construct << Ty; 6629 return false; 6630 }; 6631 6632 if (Ty->isUnionType()) 6633 return diag(0); 6634 if (Ty->isPointerType()) 6635 return diag(1); 6636 if (Ty->isMemberPointerType()) 6637 return diag(2); 6638 if (Ty.isVolatileQualified()) 6639 return diag(3); 6640 6641 if (RecordDecl *Record = Ty->getAsRecordDecl()) { 6642 if (auto *CXXRD = dyn_cast<CXXRecordDecl>(Record)) { 6643 for (CXXBaseSpecifier &BS : CXXRD->bases()) 6644 if (!checkBitCastConstexprEligibilityType(Loc, BS.getType(), Info, Ctx, 6645 CheckingDest)) 6646 return note(1, BS.getType(), BS.getBeginLoc()); 6647 } 6648 for (FieldDecl *FD : Record->fields()) { 6649 if (FD->getType()->isReferenceType()) 6650 return diag(4); 6651 if (!checkBitCastConstexprEligibilityType(Loc, FD->getType(), Info, Ctx, 6652 CheckingDest)) 6653 return note(0, FD->getType(), FD->getBeginLoc()); 6654 } 6655 } 6656 6657 if (Ty->isArrayType() && 6658 !checkBitCastConstexprEligibilityType(Loc, Ctx.getBaseElementType(Ty), 6659 Info, Ctx, CheckingDest)) 6660 return false; 6661 6662 return true; 6663 } 6664 6665 static bool checkBitCastConstexprEligibility(EvalInfo *Info, 6666 const ASTContext &Ctx, 6667 const CastExpr *BCE) { 6668 bool DestOK = checkBitCastConstexprEligibilityType( 6669 BCE->getBeginLoc(), BCE->getType(), Info, Ctx, true); 6670 bool SourceOK = DestOK && checkBitCastConstexprEligibilityType( 6671 BCE->getBeginLoc(), 6672 BCE->getSubExpr()->getType(), Info, Ctx, false); 6673 return SourceOK; 6674 } 6675 6676 static bool handleLValueToRValueBitCast(EvalInfo &Info, APValue &DestValue, 6677 APValue &SourceValue, 6678 const CastExpr *BCE) { 6679 assert(CHAR_BIT == 8 && Info.Ctx.getTargetInfo().getCharWidth() == 8 && 6680 "no host or target supports non 8-bit chars"); 6681 assert(SourceValue.isLValue() && 6682 "LValueToRValueBitcast requires an lvalue operand!"); 6683 6684 if (!checkBitCastConstexprEligibility(&Info, Info.Ctx, BCE)) 6685 return false; 6686 6687 LValue SourceLValue; 6688 APValue SourceRValue; 6689 SourceLValue.setFrom(Info.Ctx, SourceValue); 6690 if (!handleLValueToRValueConversion( 6691 Info, BCE, BCE->getSubExpr()->getType().withConst(), SourceLValue, 6692 SourceRValue, /*WantObjectRepresentation=*/true)) 6693 return false; 6694 6695 // Read out SourceValue into a char buffer. 6696 Optional<BitCastBuffer> Buffer = 6697 APValueToBufferConverter::convert(Info, SourceRValue, BCE); 6698 if (!Buffer) 6699 return false; 6700 6701 // Write out the buffer into a new APValue. 6702 Optional<APValue> MaybeDestValue = 6703 BufferToAPValueConverter::convert(Info, *Buffer, BCE); 6704 if (!MaybeDestValue) 6705 return false; 6706 6707 DestValue = std::move(*MaybeDestValue); 6708 return true; 6709 } 6710 6711 template <class Derived> 6712 class ExprEvaluatorBase 6713 : public ConstStmtVisitor<Derived, bool> { 6714 private: 6715 Derived &getDerived() { return static_cast<Derived&>(*this); } 6716 bool DerivedSuccess(const APValue &V, const Expr *E) { 6717 return getDerived().Success(V, E); 6718 } 6719 bool DerivedZeroInitialization(const Expr *E) { 6720 return getDerived().ZeroInitialization(E); 6721 } 6722 6723 // Check whether a conditional operator with a non-constant condition is a 6724 // potential constant expression. If neither arm is a potential constant 6725 // expression, then the conditional operator is not either. 6726 template<typename ConditionalOperator> 6727 void CheckPotentialConstantConditional(const ConditionalOperator *E) { 6728 assert(Info.checkingPotentialConstantExpression()); 6729 6730 // Speculatively evaluate both arms. 6731 SmallVector<PartialDiagnosticAt, 8> Diag; 6732 { 6733 SpeculativeEvaluationRAII Speculate(Info, &Diag); 6734 StmtVisitorTy::Visit(E->getFalseExpr()); 6735 if (Diag.empty()) 6736 return; 6737 } 6738 6739 { 6740 SpeculativeEvaluationRAII Speculate(Info, &Diag); 6741 Diag.clear(); 6742 StmtVisitorTy::Visit(E->getTrueExpr()); 6743 if (Diag.empty()) 6744 return; 6745 } 6746 6747 Error(E, diag::note_constexpr_conditional_never_const); 6748 } 6749 6750 6751 template<typename ConditionalOperator> 6752 bool HandleConditionalOperator(const ConditionalOperator *E) { 6753 bool BoolResult; 6754 if (!EvaluateAsBooleanCondition(E->getCond(), BoolResult, Info)) { 6755 if (Info.checkingPotentialConstantExpression() && Info.noteFailure()) { 6756 CheckPotentialConstantConditional(E); 6757 return false; 6758 } 6759 if (Info.noteFailure()) { 6760 StmtVisitorTy::Visit(E->getTrueExpr()); 6761 StmtVisitorTy::Visit(E->getFalseExpr()); 6762 } 6763 return false; 6764 } 6765 6766 Expr *EvalExpr = BoolResult ? E->getTrueExpr() : E->getFalseExpr(); 6767 return StmtVisitorTy::Visit(EvalExpr); 6768 } 6769 6770 protected: 6771 EvalInfo &Info; 6772 typedef ConstStmtVisitor<Derived, bool> StmtVisitorTy; 6773 typedef ExprEvaluatorBase ExprEvaluatorBaseTy; 6774 6775 OptionalDiagnostic CCEDiag(const Expr *E, diag::kind D) { 6776 return Info.CCEDiag(E, D); 6777 } 6778 6779 bool ZeroInitialization(const Expr *E) { return Error(E); } 6780 6781 public: 6782 ExprEvaluatorBase(EvalInfo &Info) : Info(Info) {} 6783 6784 EvalInfo &getEvalInfo() { return Info; } 6785 6786 /// Report an evaluation error. This should only be called when an error is 6787 /// first discovered. When propagating an error, just return false. 6788 bool Error(const Expr *E, diag::kind D) { 6789 Info.FFDiag(E, D); 6790 return false; 6791 } 6792 bool Error(const Expr *E) { 6793 return Error(E, diag::note_invalid_subexpr_in_const_expr); 6794 } 6795 6796 bool VisitStmt(const Stmt *) { 6797 llvm_unreachable("Expression evaluator should not be called on stmts"); 6798 } 6799 bool VisitExpr(const Expr *E) { 6800 return Error(E); 6801 } 6802 6803 bool VisitConstantExpr(const ConstantExpr *E) { 6804 if (E->hasAPValueResult()) 6805 return DerivedSuccess(E->getAPValueResult(), E); 6806 6807 return StmtVisitorTy::Visit(E->getSubExpr()); 6808 } 6809 6810 bool VisitParenExpr(const ParenExpr *E) 6811 { return StmtVisitorTy::Visit(E->getSubExpr()); } 6812 bool VisitUnaryExtension(const UnaryOperator *E) 6813 { return StmtVisitorTy::Visit(E->getSubExpr()); } 6814 bool VisitUnaryPlus(const UnaryOperator *E) 6815 { return StmtVisitorTy::Visit(E->getSubExpr()); } 6816 bool VisitChooseExpr(const ChooseExpr *E) 6817 { return StmtVisitorTy::Visit(E->getChosenSubExpr()); } 6818 bool VisitGenericSelectionExpr(const GenericSelectionExpr *E) 6819 { return StmtVisitorTy::Visit(E->getResultExpr()); } 6820 bool VisitSubstNonTypeTemplateParmExpr(const SubstNonTypeTemplateParmExpr *E) 6821 { return StmtVisitorTy::Visit(E->getReplacement()); } 6822 bool VisitCXXDefaultArgExpr(const CXXDefaultArgExpr *E) { 6823 TempVersionRAII RAII(*Info.CurrentCall); 6824 SourceLocExprScopeGuard Guard(E, Info.CurrentCall->CurSourceLocExprScope); 6825 return StmtVisitorTy::Visit(E->getExpr()); 6826 } 6827 bool VisitCXXDefaultInitExpr(const CXXDefaultInitExpr *E) { 6828 TempVersionRAII RAII(*Info.CurrentCall); 6829 // The initializer may not have been parsed yet, or might be erroneous. 6830 if (!E->getExpr()) 6831 return Error(E); 6832 SourceLocExprScopeGuard Guard(E, Info.CurrentCall->CurSourceLocExprScope); 6833 return StmtVisitorTy::Visit(E->getExpr()); 6834 } 6835 6836 bool VisitExprWithCleanups(const ExprWithCleanups *E) { 6837 FullExpressionRAII Scope(Info); 6838 return StmtVisitorTy::Visit(E->getSubExpr()) && Scope.destroy(); 6839 } 6840 6841 // Temporaries are registered when created, so we don't care about 6842 // CXXBindTemporaryExpr. 6843 bool VisitCXXBindTemporaryExpr(const CXXBindTemporaryExpr *E) { 6844 return StmtVisitorTy::Visit(E->getSubExpr()); 6845 } 6846 6847 bool VisitCXXReinterpretCastExpr(const CXXReinterpretCastExpr *E) { 6848 CCEDiag(E, diag::note_constexpr_invalid_cast) << 0; 6849 return static_cast<Derived*>(this)->VisitCastExpr(E); 6850 } 6851 bool VisitCXXDynamicCastExpr(const CXXDynamicCastExpr *E) { 6852 if (!Info.Ctx.getLangOpts().CPlusPlus2a) 6853 CCEDiag(E, diag::note_constexpr_invalid_cast) << 1; 6854 return static_cast<Derived*>(this)->VisitCastExpr(E); 6855 } 6856 bool VisitBuiltinBitCastExpr(const BuiltinBitCastExpr *E) { 6857 return static_cast<Derived*>(this)->VisitCastExpr(E); 6858 } 6859 6860 bool VisitBinaryOperator(const BinaryOperator *E) { 6861 switch (E->getOpcode()) { 6862 default: 6863 return Error(E); 6864 6865 case BO_Comma: 6866 VisitIgnoredValue(E->getLHS()); 6867 return StmtVisitorTy::Visit(E->getRHS()); 6868 6869 case BO_PtrMemD: 6870 case BO_PtrMemI: { 6871 LValue Obj; 6872 if (!HandleMemberPointerAccess(Info, E, Obj)) 6873 return false; 6874 APValue Result; 6875 if (!handleLValueToRValueConversion(Info, E, E->getType(), Obj, Result)) 6876 return false; 6877 return DerivedSuccess(Result, E); 6878 } 6879 } 6880 } 6881 6882 bool VisitCXXRewrittenBinaryOperator(const CXXRewrittenBinaryOperator *E) { 6883 return StmtVisitorTy::Visit(E->getSemanticForm()); 6884 } 6885 6886 bool VisitBinaryConditionalOperator(const BinaryConditionalOperator *E) { 6887 // Evaluate and cache the common expression. We treat it as a temporary, 6888 // even though it's not quite the same thing. 6889 LValue CommonLV; 6890 if (!Evaluate(Info.CurrentCall->createTemporary( 6891 E->getOpaqueValue(), 6892 getStorageType(Info.Ctx, E->getOpaqueValue()), false, 6893 CommonLV), 6894 Info, E->getCommon())) 6895 return false; 6896 6897 return HandleConditionalOperator(E); 6898 } 6899 6900 bool VisitConditionalOperator(const ConditionalOperator *E) { 6901 bool IsBcpCall = false; 6902 // If the condition (ignoring parens) is a __builtin_constant_p call, 6903 // the result is a constant expression if it can be folded without 6904 // side-effects. This is an important GNU extension. See GCC PR38377 6905 // for discussion. 6906 if (const CallExpr *CallCE = 6907 dyn_cast<CallExpr>(E->getCond()->IgnoreParenCasts())) 6908 if (CallCE->getBuiltinCallee() == Builtin::BI__builtin_constant_p) 6909 IsBcpCall = true; 6910 6911 // Always assume __builtin_constant_p(...) ? ... : ... is a potential 6912 // constant expression; we can't check whether it's potentially foldable. 6913 // FIXME: We should instead treat __builtin_constant_p as non-constant if 6914 // it would return 'false' in this mode. 6915 if (Info.checkingPotentialConstantExpression() && IsBcpCall) 6916 return false; 6917 6918 FoldConstant Fold(Info, IsBcpCall); 6919 if (!HandleConditionalOperator(E)) { 6920 Fold.keepDiagnostics(); 6921 return false; 6922 } 6923 6924 return true; 6925 } 6926 6927 bool VisitOpaqueValueExpr(const OpaqueValueExpr *E) { 6928 if (APValue *Value = Info.CurrentCall->getCurrentTemporary(E)) 6929 return DerivedSuccess(*Value, E); 6930 6931 const Expr *Source = E->getSourceExpr(); 6932 if (!Source) 6933 return Error(E); 6934 if (Source == E) { // sanity checking. 6935 assert(0 && "OpaqueValueExpr recursively refers to itself"); 6936 return Error(E); 6937 } 6938 return StmtVisitorTy::Visit(Source); 6939 } 6940 6941 bool VisitPseudoObjectExpr(const PseudoObjectExpr *E) { 6942 for (const Expr *SemE : E->semantics()) { 6943 if (auto *OVE = dyn_cast<OpaqueValueExpr>(SemE)) { 6944 // FIXME: We can't handle the case where an OpaqueValueExpr is also the 6945 // result expression: there could be two different LValues that would 6946 // refer to the same object in that case, and we can't model that. 6947 if (SemE == E->getResultExpr()) 6948 return Error(E); 6949 6950 // Unique OVEs get evaluated if and when we encounter them when 6951 // emitting the rest of the semantic form, rather than eagerly. 6952 if (OVE->isUnique()) 6953 continue; 6954 6955 LValue LV; 6956 if (!Evaluate(Info.CurrentCall->createTemporary( 6957 OVE, getStorageType(Info.Ctx, OVE), false, LV), 6958 Info, OVE->getSourceExpr())) 6959 return false; 6960 } else if (SemE == E->getResultExpr()) { 6961 if (!StmtVisitorTy::Visit(SemE)) 6962 return false; 6963 } else { 6964 if (!EvaluateIgnoredValue(Info, SemE)) 6965 return false; 6966 } 6967 } 6968 return true; 6969 } 6970 6971 bool VisitCallExpr(const CallExpr *E) { 6972 APValue Result; 6973 if (!handleCallExpr(E, Result, nullptr)) 6974 return false; 6975 return DerivedSuccess(Result, E); 6976 } 6977 6978 bool handleCallExpr(const CallExpr *E, APValue &Result, 6979 const LValue *ResultSlot) { 6980 const Expr *Callee = E->getCallee()->IgnoreParens(); 6981 QualType CalleeType = Callee->getType(); 6982 6983 const FunctionDecl *FD = nullptr; 6984 LValue *This = nullptr, ThisVal; 6985 auto Args = llvm::makeArrayRef(E->getArgs(), E->getNumArgs()); 6986 bool HasQualifier = false; 6987 6988 // Extract function decl and 'this' pointer from the callee. 6989 if (CalleeType->isSpecificBuiltinType(BuiltinType::BoundMember)) { 6990 const CXXMethodDecl *Member = nullptr; 6991 if (const MemberExpr *ME = dyn_cast<MemberExpr>(Callee)) { 6992 // Explicit bound member calls, such as x.f() or p->g(); 6993 if (!EvaluateObjectArgument(Info, ME->getBase(), ThisVal)) 6994 return false; 6995 Member = dyn_cast<CXXMethodDecl>(ME->getMemberDecl()); 6996 if (!Member) 6997 return Error(Callee); 6998 This = &ThisVal; 6999 HasQualifier = ME->hasQualifier(); 7000 } else if (const BinaryOperator *BE = dyn_cast<BinaryOperator>(Callee)) { 7001 // Indirect bound member calls ('.*' or '->*'). 7002 const ValueDecl *D = 7003 HandleMemberPointerAccess(Info, BE, ThisVal, false); 7004 if (!D) 7005 return false; 7006 Member = dyn_cast<CXXMethodDecl>(D); 7007 if (!Member) 7008 return Error(Callee); 7009 This = &ThisVal; 7010 } else if (const auto *PDE = dyn_cast<CXXPseudoDestructorExpr>(Callee)) { 7011 if (!Info.getLangOpts().CPlusPlus2a) 7012 Info.CCEDiag(PDE, diag::note_constexpr_pseudo_destructor); 7013 return EvaluateObjectArgument(Info, PDE->getBase(), ThisVal) && 7014 HandleDestruction(Info, PDE, ThisVal, PDE->getDestroyedType()); 7015 } else 7016 return Error(Callee); 7017 FD = Member; 7018 } else if (CalleeType->isFunctionPointerType()) { 7019 LValue Call; 7020 if (!EvaluatePointer(Callee, Call, Info)) 7021 return false; 7022 7023 if (!Call.getLValueOffset().isZero()) 7024 return Error(Callee); 7025 FD = dyn_cast_or_null<FunctionDecl>( 7026 Call.getLValueBase().dyn_cast<const ValueDecl*>()); 7027 if (!FD) 7028 return Error(Callee); 7029 // Don't call function pointers which have been cast to some other type. 7030 // Per DR (no number yet), the caller and callee can differ in noexcept. 7031 if (!Info.Ctx.hasSameFunctionTypeIgnoringExceptionSpec( 7032 CalleeType->getPointeeType(), FD->getType())) { 7033 return Error(E); 7034 } 7035 7036 // Overloaded operator calls to member functions are represented as normal 7037 // calls with '*this' as the first argument. 7038 const CXXMethodDecl *MD = dyn_cast<CXXMethodDecl>(FD); 7039 if (MD && !MD->isStatic()) { 7040 // FIXME: When selecting an implicit conversion for an overloaded 7041 // operator delete, we sometimes try to evaluate calls to conversion 7042 // operators without a 'this' parameter! 7043 if (Args.empty()) 7044 return Error(E); 7045 7046 if (!EvaluateObjectArgument(Info, Args[0], ThisVal)) 7047 return false; 7048 This = &ThisVal; 7049 Args = Args.slice(1); 7050 } else if (MD && MD->isLambdaStaticInvoker()) { 7051 // Map the static invoker for the lambda back to the call operator. 7052 // Conveniently, we don't have to slice out the 'this' argument (as is 7053 // being done for the non-static case), since a static member function 7054 // doesn't have an implicit argument passed in. 7055 const CXXRecordDecl *ClosureClass = MD->getParent(); 7056 assert( 7057 ClosureClass->captures_begin() == ClosureClass->captures_end() && 7058 "Number of captures must be zero for conversion to function-ptr"); 7059 7060 const CXXMethodDecl *LambdaCallOp = 7061 ClosureClass->getLambdaCallOperator(); 7062 7063 // Set 'FD', the function that will be called below, to the call 7064 // operator. If the closure object represents a generic lambda, find 7065 // the corresponding specialization of the call operator. 7066 7067 if (ClosureClass->isGenericLambda()) { 7068 assert(MD->isFunctionTemplateSpecialization() && 7069 "A generic lambda's static-invoker function must be a " 7070 "template specialization"); 7071 const TemplateArgumentList *TAL = MD->getTemplateSpecializationArgs(); 7072 FunctionTemplateDecl *CallOpTemplate = 7073 LambdaCallOp->getDescribedFunctionTemplate(); 7074 void *InsertPos = nullptr; 7075 FunctionDecl *CorrespondingCallOpSpecialization = 7076 CallOpTemplate->findSpecialization(TAL->asArray(), InsertPos); 7077 assert(CorrespondingCallOpSpecialization && 7078 "We must always have a function call operator specialization " 7079 "that corresponds to our static invoker specialization"); 7080 FD = cast<CXXMethodDecl>(CorrespondingCallOpSpecialization); 7081 } else 7082 FD = LambdaCallOp; 7083 } else if (FD->isReplaceableGlobalAllocationFunction()) { 7084 if (FD->getDeclName().getCXXOverloadedOperator() == OO_New || 7085 FD->getDeclName().getCXXOverloadedOperator() == OO_Array_New) { 7086 LValue Ptr; 7087 if (!HandleOperatorNewCall(Info, E, Ptr)) 7088 return false; 7089 Ptr.moveInto(Result); 7090 return true; 7091 } else { 7092 return HandleOperatorDeleteCall(Info, E); 7093 } 7094 } 7095 } else 7096 return Error(E); 7097 7098 SmallVector<QualType, 4> CovariantAdjustmentPath; 7099 if (This) { 7100 auto *NamedMember = dyn_cast<CXXMethodDecl>(FD); 7101 if (NamedMember && NamedMember->isVirtual() && !HasQualifier) { 7102 // Perform virtual dispatch, if necessary. 7103 FD = HandleVirtualDispatch(Info, E, *This, NamedMember, 7104 CovariantAdjustmentPath); 7105 if (!FD) 7106 return false; 7107 } else { 7108 // Check that the 'this' pointer points to an object of the right type. 7109 // FIXME: If this is an assignment operator call, we may need to change 7110 // the active union member before we check this. 7111 if (!checkNonVirtualMemberCallThisPointer(Info, E, *This, NamedMember)) 7112 return false; 7113 } 7114 } 7115 7116 // Destructor calls are different enough that they have their own codepath. 7117 if (auto *DD = dyn_cast<CXXDestructorDecl>(FD)) { 7118 assert(This && "no 'this' pointer for destructor call"); 7119 return HandleDestruction(Info, E, *This, 7120 Info.Ctx.getRecordType(DD->getParent())); 7121 } 7122 7123 const FunctionDecl *Definition = nullptr; 7124 Stmt *Body = FD->getBody(Definition); 7125 7126 if (!CheckConstexprFunction(Info, E->getExprLoc(), FD, Definition, Body) || 7127 !HandleFunctionCall(E->getExprLoc(), Definition, This, Args, Body, Info, 7128 Result, ResultSlot)) 7129 return false; 7130 7131 if (!CovariantAdjustmentPath.empty() && 7132 !HandleCovariantReturnAdjustment(Info, E, Result, 7133 CovariantAdjustmentPath)) 7134 return false; 7135 7136 return true; 7137 } 7138 7139 bool VisitCompoundLiteralExpr(const CompoundLiteralExpr *E) { 7140 return StmtVisitorTy::Visit(E->getInitializer()); 7141 } 7142 bool VisitInitListExpr(const InitListExpr *E) { 7143 if (E->getNumInits() == 0) 7144 return DerivedZeroInitialization(E); 7145 if (E->getNumInits() == 1) 7146 return StmtVisitorTy::Visit(E->getInit(0)); 7147 return Error(E); 7148 } 7149 bool VisitImplicitValueInitExpr(const ImplicitValueInitExpr *E) { 7150 return DerivedZeroInitialization(E); 7151 } 7152 bool VisitCXXScalarValueInitExpr(const CXXScalarValueInitExpr *E) { 7153 return DerivedZeroInitialization(E); 7154 } 7155 bool VisitCXXNullPtrLiteralExpr(const CXXNullPtrLiteralExpr *E) { 7156 return DerivedZeroInitialization(E); 7157 } 7158 7159 /// A member expression where the object is a prvalue is itself a prvalue. 7160 bool VisitMemberExpr(const MemberExpr *E) { 7161 assert(!Info.Ctx.getLangOpts().CPlusPlus11 && 7162 "missing temporary materialization conversion"); 7163 assert(!E->isArrow() && "missing call to bound member function?"); 7164 7165 APValue Val; 7166 if (!Evaluate(Val, Info, E->getBase())) 7167 return false; 7168 7169 QualType BaseTy = E->getBase()->getType(); 7170 7171 const FieldDecl *FD = dyn_cast<FieldDecl>(E->getMemberDecl()); 7172 if (!FD) return Error(E); 7173 assert(!FD->getType()->isReferenceType() && "prvalue reference?"); 7174 assert(BaseTy->castAs<RecordType>()->getDecl()->getCanonicalDecl() == 7175 FD->getParent()->getCanonicalDecl() && "record / field mismatch"); 7176 7177 // Note: there is no lvalue base here. But this case should only ever 7178 // happen in C or in C++98, where we cannot be evaluating a constexpr 7179 // constructor, which is the only case the base matters. 7180 CompleteObject Obj(APValue::LValueBase(), &Val, BaseTy); 7181 SubobjectDesignator Designator(BaseTy); 7182 Designator.addDeclUnchecked(FD); 7183 7184 APValue Result; 7185 return extractSubobject(Info, E, Obj, Designator, Result) && 7186 DerivedSuccess(Result, E); 7187 } 7188 7189 bool VisitExtVectorElementExpr(const ExtVectorElementExpr *E) { 7190 APValue Val; 7191 if (!Evaluate(Val, Info, E->getBase())) 7192 return false; 7193 7194 if (Val.isVector()) { 7195 SmallVector<uint32_t, 4> Indices; 7196 E->getEncodedElementAccess(Indices); 7197 if (Indices.size() == 1) { 7198 // Return scalar. 7199 return DerivedSuccess(Val.getVectorElt(Indices[0]), E); 7200 } else { 7201 // Construct new APValue vector. 7202 SmallVector<APValue, 4> Elts; 7203 for (unsigned I = 0; I < Indices.size(); ++I) { 7204 Elts.push_back(Val.getVectorElt(Indices[I])); 7205 } 7206 APValue VecResult(Elts.data(), Indices.size()); 7207 return DerivedSuccess(VecResult, E); 7208 } 7209 } 7210 7211 return false; 7212 } 7213 7214 bool VisitCastExpr(const CastExpr *E) { 7215 switch (E->getCastKind()) { 7216 default: 7217 break; 7218 7219 case CK_AtomicToNonAtomic: { 7220 APValue AtomicVal; 7221 // This does not need to be done in place even for class/array types: 7222 // atomic-to-non-atomic conversion implies copying the object 7223 // representation. 7224 if (!Evaluate(AtomicVal, Info, E->getSubExpr())) 7225 return false; 7226 return DerivedSuccess(AtomicVal, E); 7227 } 7228 7229 case CK_NoOp: 7230 case CK_UserDefinedConversion: 7231 return StmtVisitorTy::Visit(E->getSubExpr()); 7232 7233 case CK_LValueToRValue: { 7234 LValue LVal; 7235 if (!EvaluateLValue(E->getSubExpr(), LVal, Info)) 7236 return false; 7237 APValue RVal; 7238 // Note, we use the subexpression's type in order to retain cv-qualifiers. 7239 if (!handleLValueToRValueConversion(Info, E, E->getSubExpr()->getType(), 7240 LVal, RVal)) 7241 return false; 7242 return DerivedSuccess(RVal, E); 7243 } 7244 case CK_LValueToRValueBitCast: { 7245 APValue DestValue, SourceValue; 7246 if (!Evaluate(SourceValue, Info, E->getSubExpr())) 7247 return false; 7248 if (!handleLValueToRValueBitCast(Info, DestValue, SourceValue, E)) 7249 return false; 7250 return DerivedSuccess(DestValue, E); 7251 } 7252 7253 case CK_AddressSpaceConversion: { 7254 APValue Value; 7255 if (!Evaluate(Value, Info, E->getSubExpr())) 7256 return false; 7257 return DerivedSuccess(Value, E); 7258 } 7259 } 7260 7261 return Error(E); 7262 } 7263 7264 bool VisitUnaryPostInc(const UnaryOperator *UO) { 7265 return VisitUnaryPostIncDec(UO); 7266 } 7267 bool VisitUnaryPostDec(const UnaryOperator *UO) { 7268 return VisitUnaryPostIncDec(UO); 7269 } 7270 bool VisitUnaryPostIncDec(const UnaryOperator *UO) { 7271 if (!Info.getLangOpts().CPlusPlus14 && !Info.keepEvaluatingAfterFailure()) 7272 return Error(UO); 7273 7274 LValue LVal; 7275 if (!EvaluateLValue(UO->getSubExpr(), LVal, Info)) 7276 return false; 7277 APValue RVal; 7278 if (!handleIncDec(this->Info, UO, LVal, UO->getSubExpr()->getType(), 7279 UO->isIncrementOp(), &RVal)) 7280 return false; 7281 return DerivedSuccess(RVal, UO); 7282 } 7283 7284 bool VisitStmtExpr(const StmtExpr *E) { 7285 // We will have checked the full-expressions inside the statement expression 7286 // when they were completed, and don't need to check them again now. 7287 if (Info.checkingForUndefinedBehavior()) 7288 return Error(E); 7289 7290 const CompoundStmt *CS = E->getSubStmt(); 7291 if (CS->body_empty()) 7292 return true; 7293 7294 BlockScopeRAII Scope(Info); 7295 for (CompoundStmt::const_body_iterator BI = CS->body_begin(), 7296 BE = CS->body_end(); 7297 /**/; ++BI) { 7298 if (BI + 1 == BE) { 7299 const Expr *FinalExpr = dyn_cast<Expr>(*BI); 7300 if (!FinalExpr) { 7301 Info.FFDiag((*BI)->getBeginLoc(), 7302 diag::note_constexpr_stmt_expr_unsupported); 7303 return false; 7304 } 7305 return this->Visit(FinalExpr) && Scope.destroy(); 7306 } 7307 7308 APValue ReturnValue; 7309 StmtResult Result = { ReturnValue, nullptr }; 7310 EvalStmtResult ESR = EvaluateStmt(Result, Info, *BI); 7311 if (ESR != ESR_Succeeded) { 7312 // FIXME: If the statement-expression terminated due to 'return', 7313 // 'break', or 'continue', it would be nice to propagate that to 7314 // the outer statement evaluation rather than bailing out. 7315 if (ESR != ESR_Failed) 7316 Info.FFDiag((*BI)->getBeginLoc(), 7317 diag::note_constexpr_stmt_expr_unsupported); 7318 return false; 7319 } 7320 } 7321 7322 llvm_unreachable("Return from function from the loop above."); 7323 } 7324 7325 /// Visit a value which is evaluated, but whose value is ignored. 7326 void VisitIgnoredValue(const Expr *E) { 7327 EvaluateIgnoredValue(Info, E); 7328 } 7329 7330 /// Potentially visit a MemberExpr's base expression. 7331 void VisitIgnoredBaseExpression(const Expr *E) { 7332 // While MSVC doesn't evaluate the base expression, it does diagnose the 7333 // presence of side-effecting behavior. 7334 if (Info.getLangOpts().MSVCCompat && !E->HasSideEffects(Info.Ctx)) 7335 return; 7336 VisitIgnoredValue(E); 7337 } 7338 }; 7339 7340 } // namespace 7341 7342 //===----------------------------------------------------------------------===// 7343 // Common base class for lvalue and temporary evaluation. 7344 //===----------------------------------------------------------------------===// 7345 namespace { 7346 template<class Derived> 7347 class LValueExprEvaluatorBase 7348 : public ExprEvaluatorBase<Derived> { 7349 protected: 7350 LValue &Result; 7351 bool InvalidBaseOK; 7352 typedef LValueExprEvaluatorBase LValueExprEvaluatorBaseTy; 7353 typedef ExprEvaluatorBase<Derived> ExprEvaluatorBaseTy; 7354 7355 bool Success(APValue::LValueBase B) { 7356 Result.set(B); 7357 return true; 7358 } 7359 7360 bool evaluatePointer(const Expr *E, LValue &Result) { 7361 return EvaluatePointer(E, Result, this->Info, InvalidBaseOK); 7362 } 7363 7364 public: 7365 LValueExprEvaluatorBase(EvalInfo &Info, LValue &Result, bool InvalidBaseOK) 7366 : ExprEvaluatorBaseTy(Info), Result(Result), 7367 InvalidBaseOK(InvalidBaseOK) {} 7368 7369 bool Success(const APValue &V, const Expr *E) { 7370 Result.setFrom(this->Info.Ctx, V); 7371 return true; 7372 } 7373 7374 bool VisitMemberExpr(const MemberExpr *E) { 7375 // Handle non-static data members. 7376 QualType BaseTy; 7377 bool EvalOK; 7378 if (E->isArrow()) { 7379 EvalOK = evaluatePointer(E->getBase(), Result); 7380 BaseTy = E->getBase()->getType()->castAs<PointerType>()->getPointeeType(); 7381 } else if (E->getBase()->isRValue()) { 7382 assert(E->getBase()->getType()->isRecordType()); 7383 EvalOK = EvaluateTemporary(E->getBase(), Result, this->Info); 7384 BaseTy = E->getBase()->getType(); 7385 } else { 7386 EvalOK = this->Visit(E->getBase()); 7387 BaseTy = E->getBase()->getType(); 7388 } 7389 if (!EvalOK) { 7390 if (!InvalidBaseOK) 7391 return false; 7392 Result.setInvalid(E); 7393 return true; 7394 } 7395 7396 const ValueDecl *MD = E->getMemberDecl(); 7397 if (const FieldDecl *FD = dyn_cast<FieldDecl>(E->getMemberDecl())) { 7398 assert(BaseTy->castAs<RecordType>()->getDecl()->getCanonicalDecl() == 7399 FD->getParent()->getCanonicalDecl() && "record / field mismatch"); 7400 (void)BaseTy; 7401 if (!HandleLValueMember(this->Info, E, Result, FD)) 7402 return false; 7403 } else if (const IndirectFieldDecl *IFD = dyn_cast<IndirectFieldDecl>(MD)) { 7404 if (!HandleLValueIndirectMember(this->Info, E, Result, IFD)) 7405 return false; 7406 } else 7407 return this->Error(E); 7408 7409 if (MD->getType()->isReferenceType()) { 7410 APValue RefValue; 7411 if (!handleLValueToRValueConversion(this->Info, E, MD->getType(), Result, 7412 RefValue)) 7413 return false; 7414 return Success(RefValue, E); 7415 } 7416 return true; 7417 } 7418 7419 bool VisitBinaryOperator(const BinaryOperator *E) { 7420 switch (E->getOpcode()) { 7421 default: 7422 return ExprEvaluatorBaseTy::VisitBinaryOperator(E); 7423 7424 case BO_PtrMemD: 7425 case BO_PtrMemI: 7426 return HandleMemberPointerAccess(this->Info, E, Result); 7427 } 7428 } 7429 7430 bool VisitCastExpr(const CastExpr *E) { 7431 switch (E->getCastKind()) { 7432 default: 7433 return ExprEvaluatorBaseTy::VisitCastExpr(E); 7434 7435 case CK_DerivedToBase: 7436 case CK_UncheckedDerivedToBase: 7437 if (!this->Visit(E->getSubExpr())) 7438 return false; 7439 7440 // Now figure out the necessary offset to add to the base LV to get from 7441 // the derived class to the base class. 7442 return HandleLValueBasePath(this->Info, E, E->getSubExpr()->getType(), 7443 Result); 7444 } 7445 } 7446 }; 7447 } 7448 7449 //===----------------------------------------------------------------------===// 7450 // LValue Evaluation 7451 // 7452 // This is used for evaluating lvalues (in C and C++), xvalues (in C++11), 7453 // function designators (in C), decl references to void objects (in C), and 7454 // temporaries (if building with -Wno-address-of-temporary). 7455 // 7456 // LValue evaluation produces values comprising a base expression of one of the 7457 // following types: 7458 // - Declarations 7459 // * VarDecl 7460 // * FunctionDecl 7461 // - Literals 7462 // * CompoundLiteralExpr in C (and in global scope in C++) 7463 // * StringLiteral 7464 // * PredefinedExpr 7465 // * ObjCStringLiteralExpr 7466 // * ObjCEncodeExpr 7467 // * AddrLabelExpr 7468 // * BlockExpr 7469 // * CallExpr for a MakeStringConstant builtin 7470 // - typeid(T) expressions, as TypeInfoLValues 7471 // - Locals and temporaries 7472 // * MaterializeTemporaryExpr 7473 // * Any Expr, with a CallIndex indicating the function in which the temporary 7474 // was evaluated, for cases where the MaterializeTemporaryExpr is missing 7475 // from the AST (FIXME). 7476 // * A MaterializeTemporaryExpr that has static storage duration, with no 7477 // CallIndex, for a lifetime-extended temporary. 7478 // * The ConstantExpr that is currently being evaluated during evaluation of an 7479 // immediate invocation. 7480 // plus an offset in bytes. 7481 //===----------------------------------------------------------------------===// 7482 namespace { 7483 class LValueExprEvaluator 7484 : public LValueExprEvaluatorBase<LValueExprEvaluator> { 7485 public: 7486 LValueExprEvaluator(EvalInfo &Info, LValue &Result, bool InvalidBaseOK) : 7487 LValueExprEvaluatorBaseTy(Info, Result, InvalidBaseOK) {} 7488 7489 bool VisitVarDecl(const Expr *E, const VarDecl *VD); 7490 bool VisitUnaryPreIncDec(const UnaryOperator *UO); 7491 7492 bool VisitDeclRefExpr(const DeclRefExpr *E); 7493 bool VisitPredefinedExpr(const PredefinedExpr *E) { return Success(E); } 7494 bool VisitMaterializeTemporaryExpr(const MaterializeTemporaryExpr *E); 7495 bool VisitCompoundLiteralExpr(const CompoundLiteralExpr *E); 7496 bool VisitMemberExpr(const MemberExpr *E); 7497 bool VisitStringLiteral(const StringLiteral *E) { return Success(E); } 7498 bool VisitObjCEncodeExpr(const ObjCEncodeExpr *E) { return Success(E); } 7499 bool VisitCXXTypeidExpr(const CXXTypeidExpr *E); 7500 bool VisitCXXUuidofExpr(const CXXUuidofExpr *E); 7501 bool VisitArraySubscriptExpr(const ArraySubscriptExpr *E); 7502 bool VisitUnaryDeref(const UnaryOperator *E); 7503 bool VisitUnaryReal(const UnaryOperator *E); 7504 bool VisitUnaryImag(const UnaryOperator *E); 7505 bool VisitUnaryPreInc(const UnaryOperator *UO) { 7506 return VisitUnaryPreIncDec(UO); 7507 } 7508 bool VisitUnaryPreDec(const UnaryOperator *UO) { 7509 return VisitUnaryPreIncDec(UO); 7510 } 7511 bool VisitBinAssign(const BinaryOperator *BO); 7512 bool VisitCompoundAssignOperator(const CompoundAssignOperator *CAO); 7513 7514 bool VisitCastExpr(const CastExpr *E) { 7515 switch (E->getCastKind()) { 7516 default: 7517 return LValueExprEvaluatorBaseTy::VisitCastExpr(E); 7518 7519 case CK_LValueBitCast: 7520 this->CCEDiag(E, diag::note_constexpr_invalid_cast) << 2; 7521 if (!Visit(E->getSubExpr())) 7522 return false; 7523 Result.Designator.setInvalid(); 7524 return true; 7525 7526 case CK_BaseToDerived: 7527 if (!Visit(E->getSubExpr())) 7528 return false; 7529 return HandleBaseToDerivedCast(Info, E, Result); 7530 7531 case CK_Dynamic: 7532 if (!Visit(E->getSubExpr())) 7533 return false; 7534 return HandleDynamicCast(Info, cast<ExplicitCastExpr>(E), Result); 7535 } 7536 } 7537 }; 7538 } // end anonymous namespace 7539 7540 /// Evaluate an expression as an lvalue. This can be legitimately called on 7541 /// expressions which are not glvalues, in three cases: 7542 /// * function designators in C, and 7543 /// * "extern void" objects 7544 /// * @selector() expressions in Objective-C 7545 static bool EvaluateLValue(const Expr *E, LValue &Result, EvalInfo &Info, 7546 bool InvalidBaseOK) { 7547 assert(E->isGLValue() || E->getType()->isFunctionType() || 7548 E->getType()->isVoidType() || isa<ObjCSelectorExpr>(E)); 7549 return LValueExprEvaluator(Info, Result, InvalidBaseOK).Visit(E); 7550 } 7551 7552 bool LValueExprEvaluator::VisitDeclRefExpr(const DeclRefExpr *E) { 7553 if (const FunctionDecl *FD = dyn_cast<FunctionDecl>(E->getDecl())) 7554 return Success(FD); 7555 if (const VarDecl *VD = dyn_cast<VarDecl>(E->getDecl())) 7556 return VisitVarDecl(E, VD); 7557 if (const BindingDecl *BD = dyn_cast<BindingDecl>(E->getDecl())) 7558 return Visit(BD->getBinding()); 7559 if (const MSGuidDecl *GD = dyn_cast<MSGuidDecl>(E->getDecl())) 7560 return Success(GD); 7561 return Error(E); 7562 } 7563 7564 7565 bool LValueExprEvaluator::VisitVarDecl(const Expr *E, const VarDecl *VD) { 7566 7567 // If we are within a lambda's call operator, check whether the 'VD' referred 7568 // to within 'E' actually represents a lambda-capture that maps to a 7569 // data-member/field within the closure object, and if so, evaluate to the 7570 // field or what the field refers to. 7571 if (Info.CurrentCall && isLambdaCallOperator(Info.CurrentCall->Callee) && 7572 isa<DeclRefExpr>(E) && 7573 cast<DeclRefExpr>(E)->refersToEnclosingVariableOrCapture()) { 7574 // We don't always have a complete capture-map when checking or inferring if 7575 // the function call operator meets the requirements of a constexpr function 7576 // - but we don't need to evaluate the captures to determine constexprness 7577 // (dcl.constexpr C++17). 7578 if (Info.checkingPotentialConstantExpression()) 7579 return false; 7580 7581 if (auto *FD = Info.CurrentCall->LambdaCaptureFields.lookup(VD)) { 7582 // Start with 'Result' referring to the complete closure object... 7583 Result = *Info.CurrentCall->This; 7584 // ... then update it to refer to the field of the closure object 7585 // that represents the capture. 7586 if (!HandleLValueMember(Info, E, Result, FD)) 7587 return false; 7588 // And if the field is of reference type, update 'Result' to refer to what 7589 // the field refers to. 7590 if (FD->getType()->isReferenceType()) { 7591 APValue RVal; 7592 if (!handleLValueToRValueConversion(Info, E, FD->getType(), Result, 7593 RVal)) 7594 return false; 7595 Result.setFrom(Info.Ctx, RVal); 7596 } 7597 return true; 7598 } 7599 } 7600 CallStackFrame *Frame = nullptr; 7601 if (VD->hasLocalStorage() && Info.CurrentCall->Index > 1) { 7602 // Only if a local variable was declared in the function currently being 7603 // evaluated, do we expect to be able to find its value in the current 7604 // frame. (Otherwise it was likely declared in an enclosing context and 7605 // could either have a valid evaluatable value (for e.g. a constexpr 7606 // variable) or be ill-formed (and trigger an appropriate evaluation 7607 // diagnostic)). 7608 if (Info.CurrentCall->Callee && 7609 Info.CurrentCall->Callee->Equals(VD->getDeclContext())) { 7610 Frame = Info.CurrentCall; 7611 } 7612 } 7613 7614 if (!VD->getType()->isReferenceType()) { 7615 if (Frame) { 7616 Result.set({VD, Frame->Index, 7617 Info.CurrentCall->getCurrentTemporaryVersion(VD)}); 7618 return true; 7619 } 7620 return Success(VD); 7621 } 7622 7623 APValue *V; 7624 if (!evaluateVarDeclInit(Info, E, VD, Frame, V, nullptr)) 7625 return false; 7626 if (!V->hasValue()) { 7627 // FIXME: Is it possible for V to be indeterminate here? If so, we should 7628 // adjust the diagnostic to say that. 7629 if (!Info.checkingPotentialConstantExpression()) 7630 Info.FFDiag(E, diag::note_constexpr_use_uninit_reference); 7631 return false; 7632 } 7633 return Success(*V, E); 7634 } 7635 7636 bool LValueExprEvaluator::VisitMaterializeTemporaryExpr( 7637 const MaterializeTemporaryExpr *E) { 7638 // Walk through the expression to find the materialized temporary itself. 7639 SmallVector<const Expr *, 2> CommaLHSs; 7640 SmallVector<SubobjectAdjustment, 2> Adjustments; 7641 const Expr *Inner = 7642 E->getSubExpr()->skipRValueSubobjectAdjustments(CommaLHSs, Adjustments); 7643 7644 // If we passed any comma operators, evaluate their LHSs. 7645 for (unsigned I = 0, N = CommaLHSs.size(); I != N; ++I) 7646 if (!EvaluateIgnoredValue(Info, CommaLHSs[I])) 7647 return false; 7648 7649 // A materialized temporary with static storage duration can appear within the 7650 // result of a constant expression evaluation, so we need to preserve its 7651 // value for use outside this evaluation. 7652 APValue *Value; 7653 if (E->getStorageDuration() == SD_Static) { 7654 Value = E->getOrCreateValue(true); 7655 *Value = APValue(); 7656 Result.set(E); 7657 } else { 7658 Value = &Info.CurrentCall->createTemporary( 7659 E, E->getType(), E->getStorageDuration() == SD_Automatic, Result); 7660 } 7661 7662 QualType Type = Inner->getType(); 7663 7664 // Materialize the temporary itself. 7665 if (!EvaluateInPlace(*Value, Info, Result, Inner)) { 7666 *Value = APValue(); 7667 return false; 7668 } 7669 7670 // Adjust our lvalue to refer to the desired subobject. 7671 for (unsigned I = Adjustments.size(); I != 0; /**/) { 7672 --I; 7673 switch (Adjustments[I].Kind) { 7674 case SubobjectAdjustment::DerivedToBaseAdjustment: 7675 if (!HandleLValueBasePath(Info, Adjustments[I].DerivedToBase.BasePath, 7676 Type, Result)) 7677 return false; 7678 Type = Adjustments[I].DerivedToBase.BasePath->getType(); 7679 break; 7680 7681 case SubobjectAdjustment::FieldAdjustment: 7682 if (!HandleLValueMember(Info, E, Result, Adjustments[I].Field)) 7683 return false; 7684 Type = Adjustments[I].Field->getType(); 7685 break; 7686 7687 case SubobjectAdjustment::MemberPointerAdjustment: 7688 if (!HandleMemberPointerAccess(this->Info, Type, Result, 7689 Adjustments[I].Ptr.RHS)) 7690 return false; 7691 Type = Adjustments[I].Ptr.MPT->getPointeeType(); 7692 break; 7693 } 7694 } 7695 7696 return true; 7697 } 7698 7699 bool 7700 LValueExprEvaluator::VisitCompoundLiteralExpr(const CompoundLiteralExpr *E) { 7701 assert((!Info.getLangOpts().CPlusPlus || E->isFileScope()) && 7702 "lvalue compound literal in c++?"); 7703 // Defer visiting the literal until the lvalue-to-rvalue conversion. We can 7704 // only see this when folding in C, so there's no standard to follow here. 7705 return Success(E); 7706 } 7707 7708 bool LValueExprEvaluator::VisitCXXTypeidExpr(const CXXTypeidExpr *E) { 7709 TypeInfoLValue TypeInfo; 7710 7711 if (!E->isPotentiallyEvaluated()) { 7712 if (E->isTypeOperand()) 7713 TypeInfo = TypeInfoLValue(E->getTypeOperand(Info.Ctx).getTypePtr()); 7714 else 7715 TypeInfo = TypeInfoLValue(E->getExprOperand()->getType().getTypePtr()); 7716 } else { 7717 if (!Info.Ctx.getLangOpts().CPlusPlus2a) { 7718 Info.CCEDiag(E, diag::note_constexpr_typeid_polymorphic) 7719 << E->getExprOperand()->getType() 7720 << E->getExprOperand()->getSourceRange(); 7721 } 7722 7723 if (!Visit(E->getExprOperand())) 7724 return false; 7725 7726 Optional<DynamicType> DynType = 7727 ComputeDynamicType(Info, E, Result, AK_TypeId); 7728 if (!DynType) 7729 return false; 7730 7731 TypeInfo = 7732 TypeInfoLValue(Info.Ctx.getRecordType(DynType->Type).getTypePtr()); 7733 } 7734 7735 return Success(APValue::LValueBase::getTypeInfo(TypeInfo, E->getType())); 7736 } 7737 7738 bool LValueExprEvaluator::VisitCXXUuidofExpr(const CXXUuidofExpr *E) { 7739 return Success(E->getGuidDecl()); 7740 } 7741 7742 bool LValueExprEvaluator::VisitMemberExpr(const MemberExpr *E) { 7743 // Handle static data members. 7744 if (const VarDecl *VD = dyn_cast<VarDecl>(E->getMemberDecl())) { 7745 VisitIgnoredBaseExpression(E->getBase()); 7746 return VisitVarDecl(E, VD); 7747 } 7748 7749 // Handle static member functions. 7750 if (const CXXMethodDecl *MD = dyn_cast<CXXMethodDecl>(E->getMemberDecl())) { 7751 if (MD->isStatic()) { 7752 VisitIgnoredBaseExpression(E->getBase()); 7753 return Success(MD); 7754 } 7755 } 7756 7757 // Handle non-static data members. 7758 return LValueExprEvaluatorBaseTy::VisitMemberExpr(E); 7759 } 7760 7761 bool LValueExprEvaluator::VisitArraySubscriptExpr(const ArraySubscriptExpr *E) { 7762 // FIXME: Deal with vectors as array subscript bases. 7763 if (E->getBase()->getType()->isVectorType()) 7764 return Error(E); 7765 7766 bool Success = true; 7767 if (!evaluatePointer(E->getBase(), Result)) { 7768 if (!Info.noteFailure()) 7769 return false; 7770 Success = false; 7771 } 7772 7773 APSInt Index; 7774 if (!EvaluateInteger(E->getIdx(), Index, Info)) 7775 return false; 7776 7777 return Success && 7778 HandleLValueArrayAdjustment(Info, E, Result, E->getType(), Index); 7779 } 7780 7781 bool LValueExprEvaluator::VisitUnaryDeref(const UnaryOperator *E) { 7782 return evaluatePointer(E->getSubExpr(), Result); 7783 } 7784 7785 bool LValueExprEvaluator::VisitUnaryReal(const UnaryOperator *E) { 7786 if (!Visit(E->getSubExpr())) 7787 return false; 7788 // __real is a no-op on scalar lvalues. 7789 if (E->getSubExpr()->getType()->isAnyComplexType()) 7790 HandleLValueComplexElement(Info, E, Result, E->getType(), false); 7791 return true; 7792 } 7793 7794 bool LValueExprEvaluator::VisitUnaryImag(const UnaryOperator *E) { 7795 assert(E->getSubExpr()->getType()->isAnyComplexType() && 7796 "lvalue __imag__ on scalar?"); 7797 if (!Visit(E->getSubExpr())) 7798 return false; 7799 HandleLValueComplexElement(Info, E, Result, E->getType(), true); 7800 return true; 7801 } 7802 7803 bool LValueExprEvaluator::VisitUnaryPreIncDec(const UnaryOperator *UO) { 7804 if (!Info.getLangOpts().CPlusPlus14 && !Info.keepEvaluatingAfterFailure()) 7805 return Error(UO); 7806 7807 if (!this->Visit(UO->getSubExpr())) 7808 return false; 7809 7810 return handleIncDec( 7811 this->Info, UO, Result, UO->getSubExpr()->getType(), 7812 UO->isIncrementOp(), nullptr); 7813 } 7814 7815 bool LValueExprEvaluator::VisitCompoundAssignOperator( 7816 const CompoundAssignOperator *CAO) { 7817 if (!Info.getLangOpts().CPlusPlus14 && !Info.keepEvaluatingAfterFailure()) 7818 return Error(CAO); 7819 7820 APValue RHS; 7821 7822 // The overall lvalue result is the result of evaluating the LHS. 7823 if (!this->Visit(CAO->getLHS())) { 7824 if (Info.noteFailure()) 7825 Evaluate(RHS, this->Info, CAO->getRHS()); 7826 return false; 7827 } 7828 7829 if (!Evaluate(RHS, this->Info, CAO->getRHS())) 7830 return false; 7831 7832 return handleCompoundAssignment( 7833 this->Info, CAO, 7834 Result, CAO->getLHS()->getType(), CAO->getComputationLHSType(), 7835 CAO->getOpForCompoundAssignment(CAO->getOpcode()), RHS); 7836 } 7837 7838 bool LValueExprEvaluator::VisitBinAssign(const BinaryOperator *E) { 7839 if (!Info.getLangOpts().CPlusPlus14 && !Info.keepEvaluatingAfterFailure()) 7840 return Error(E); 7841 7842 APValue NewVal; 7843 7844 if (!this->Visit(E->getLHS())) { 7845 if (Info.noteFailure()) 7846 Evaluate(NewVal, this->Info, E->getRHS()); 7847 return false; 7848 } 7849 7850 if (!Evaluate(NewVal, this->Info, E->getRHS())) 7851 return false; 7852 7853 if (Info.getLangOpts().CPlusPlus2a && 7854 !HandleUnionActiveMemberChange(Info, E->getLHS(), Result)) 7855 return false; 7856 7857 return handleAssignment(this->Info, E, Result, E->getLHS()->getType(), 7858 NewVal); 7859 } 7860 7861 //===----------------------------------------------------------------------===// 7862 // Pointer Evaluation 7863 //===----------------------------------------------------------------------===// 7864 7865 /// Attempts to compute the number of bytes available at the pointer 7866 /// returned by a function with the alloc_size attribute. Returns true if we 7867 /// were successful. Places an unsigned number into `Result`. 7868 /// 7869 /// This expects the given CallExpr to be a call to a function with an 7870 /// alloc_size attribute. 7871 static bool getBytesReturnedByAllocSizeCall(const ASTContext &Ctx, 7872 const CallExpr *Call, 7873 llvm::APInt &Result) { 7874 const AllocSizeAttr *AllocSize = getAllocSizeAttr(Call); 7875 7876 assert(AllocSize && AllocSize->getElemSizeParam().isValid()); 7877 unsigned SizeArgNo = AllocSize->getElemSizeParam().getASTIndex(); 7878 unsigned BitsInSizeT = Ctx.getTypeSize(Ctx.getSizeType()); 7879 if (Call->getNumArgs() <= SizeArgNo) 7880 return false; 7881 7882 auto EvaluateAsSizeT = [&](const Expr *E, APSInt &Into) { 7883 Expr::EvalResult ExprResult; 7884 if (!E->EvaluateAsInt(ExprResult, Ctx, Expr::SE_AllowSideEffects)) 7885 return false; 7886 Into = ExprResult.Val.getInt(); 7887 if (Into.isNegative() || !Into.isIntN(BitsInSizeT)) 7888 return false; 7889 Into = Into.zextOrSelf(BitsInSizeT); 7890 return true; 7891 }; 7892 7893 APSInt SizeOfElem; 7894 if (!EvaluateAsSizeT(Call->getArg(SizeArgNo), SizeOfElem)) 7895 return false; 7896 7897 if (!AllocSize->getNumElemsParam().isValid()) { 7898 Result = std::move(SizeOfElem); 7899 return true; 7900 } 7901 7902 APSInt NumberOfElems; 7903 unsigned NumArgNo = AllocSize->getNumElemsParam().getASTIndex(); 7904 if (!EvaluateAsSizeT(Call->getArg(NumArgNo), NumberOfElems)) 7905 return false; 7906 7907 bool Overflow; 7908 llvm::APInt BytesAvailable = SizeOfElem.umul_ov(NumberOfElems, Overflow); 7909 if (Overflow) 7910 return false; 7911 7912 Result = std::move(BytesAvailable); 7913 return true; 7914 } 7915 7916 /// Convenience function. LVal's base must be a call to an alloc_size 7917 /// function. 7918 static bool getBytesReturnedByAllocSizeCall(const ASTContext &Ctx, 7919 const LValue &LVal, 7920 llvm::APInt &Result) { 7921 assert(isBaseAnAllocSizeCall(LVal.getLValueBase()) && 7922 "Can't get the size of a non alloc_size function"); 7923 const auto *Base = LVal.getLValueBase().get<const Expr *>(); 7924 const CallExpr *CE = tryUnwrapAllocSizeCall(Base); 7925 return getBytesReturnedByAllocSizeCall(Ctx, CE, Result); 7926 } 7927 7928 /// Attempts to evaluate the given LValueBase as the result of a call to 7929 /// a function with the alloc_size attribute. If it was possible to do so, this 7930 /// function will return true, make Result's Base point to said function call, 7931 /// and mark Result's Base as invalid. 7932 static bool evaluateLValueAsAllocSize(EvalInfo &Info, APValue::LValueBase Base, 7933 LValue &Result) { 7934 if (Base.isNull()) 7935 return false; 7936 7937 // Because we do no form of static analysis, we only support const variables. 7938 // 7939 // Additionally, we can't support parameters, nor can we support static 7940 // variables (in the latter case, use-before-assign isn't UB; in the former, 7941 // we have no clue what they'll be assigned to). 7942 const auto *VD = 7943 dyn_cast_or_null<VarDecl>(Base.dyn_cast<const ValueDecl *>()); 7944 if (!VD || !VD->isLocalVarDecl() || !VD->getType().isConstQualified()) 7945 return false; 7946 7947 const Expr *Init = VD->getAnyInitializer(); 7948 if (!Init) 7949 return false; 7950 7951 const Expr *E = Init->IgnoreParens(); 7952 if (!tryUnwrapAllocSizeCall(E)) 7953 return false; 7954 7955 // Store E instead of E unwrapped so that the type of the LValue's base is 7956 // what the user wanted. 7957 Result.setInvalid(E); 7958 7959 QualType Pointee = E->getType()->castAs<PointerType>()->getPointeeType(); 7960 Result.addUnsizedArray(Info, E, Pointee); 7961 return true; 7962 } 7963 7964 namespace { 7965 class PointerExprEvaluator 7966 : public ExprEvaluatorBase<PointerExprEvaluator> { 7967 LValue &Result; 7968 bool InvalidBaseOK; 7969 7970 bool Success(const Expr *E) { 7971 Result.set(E); 7972 return true; 7973 } 7974 7975 bool evaluateLValue(const Expr *E, LValue &Result) { 7976 return EvaluateLValue(E, Result, Info, InvalidBaseOK); 7977 } 7978 7979 bool evaluatePointer(const Expr *E, LValue &Result) { 7980 return EvaluatePointer(E, Result, Info, InvalidBaseOK); 7981 } 7982 7983 bool visitNonBuiltinCallExpr(const CallExpr *E); 7984 public: 7985 7986 PointerExprEvaluator(EvalInfo &info, LValue &Result, bool InvalidBaseOK) 7987 : ExprEvaluatorBaseTy(info), Result(Result), 7988 InvalidBaseOK(InvalidBaseOK) {} 7989 7990 bool Success(const APValue &V, const Expr *E) { 7991 Result.setFrom(Info.Ctx, V); 7992 return true; 7993 } 7994 bool ZeroInitialization(const Expr *E) { 7995 Result.setNull(Info.Ctx, E->getType()); 7996 return true; 7997 } 7998 7999 bool VisitBinaryOperator(const BinaryOperator *E); 8000 bool VisitCastExpr(const CastExpr* E); 8001 bool VisitUnaryAddrOf(const UnaryOperator *E); 8002 bool VisitObjCStringLiteral(const ObjCStringLiteral *E) 8003 { return Success(E); } 8004 bool VisitObjCBoxedExpr(const ObjCBoxedExpr *E) { 8005 if (E->isExpressibleAsConstantInitializer()) 8006 return Success(E); 8007 if (Info.noteFailure()) 8008 EvaluateIgnoredValue(Info, E->getSubExpr()); 8009 return Error(E); 8010 } 8011 bool VisitAddrLabelExpr(const AddrLabelExpr *E) 8012 { return Success(E); } 8013 bool VisitCallExpr(const CallExpr *E); 8014 bool VisitBuiltinCallExpr(const CallExpr *E, unsigned BuiltinOp); 8015 bool VisitBlockExpr(const BlockExpr *E) { 8016 if (!E->getBlockDecl()->hasCaptures()) 8017 return Success(E); 8018 return Error(E); 8019 } 8020 bool VisitCXXThisExpr(const CXXThisExpr *E) { 8021 // Can't look at 'this' when checking a potential constant expression. 8022 if (Info.checkingPotentialConstantExpression()) 8023 return false; 8024 if (!Info.CurrentCall->This) { 8025 if (Info.getLangOpts().CPlusPlus11) 8026 Info.FFDiag(E, diag::note_constexpr_this) << E->isImplicit(); 8027 else 8028 Info.FFDiag(E); 8029 return false; 8030 } 8031 Result = *Info.CurrentCall->This; 8032 // If we are inside a lambda's call operator, the 'this' expression refers 8033 // to the enclosing '*this' object (either by value or reference) which is 8034 // either copied into the closure object's field that represents the '*this' 8035 // or refers to '*this'. 8036 if (isLambdaCallOperator(Info.CurrentCall->Callee)) { 8037 // Ensure we actually have captured 'this'. (an error will have 8038 // been previously reported if not). 8039 if (!Info.CurrentCall->LambdaThisCaptureField) 8040 return false; 8041 8042 // Update 'Result' to refer to the data member/field of the closure object 8043 // that represents the '*this' capture. 8044 if (!HandleLValueMember(Info, E, Result, 8045 Info.CurrentCall->LambdaThisCaptureField)) 8046 return false; 8047 // If we captured '*this' by reference, replace the field with its referent. 8048 if (Info.CurrentCall->LambdaThisCaptureField->getType() 8049 ->isPointerType()) { 8050 APValue RVal; 8051 if (!handleLValueToRValueConversion(Info, E, E->getType(), Result, 8052 RVal)) 8053 return false; 8054 8055 Result.setFrom(Info.Ctx, RVal); 8056 } 8057 } 8058 return true; 8059 } 8060 8061 bool VisitCXXNewExpr(const CXXNewExpr *E); 8062 8063 bool VisitSourceLocExpr(const SourceLocExpr *E) { 8064 assert(E->isStringType() && "SourceLocExpr isn't a pointer type?"); 8065 APValue LValResult = E->EvaluateInContext( 8066 Info.Ctx, Info.CurrentCall->CurSourceLocExprScope.getDefaultExpr()); 8067 Result.setFrom(Info.Ctx, LValResult); 8068 return true; 8069 } 8070 8071 // FIXME: Missing: @protocol, @selector 8072 }; 8073 } // end anonymous namespace 8074 8075 static bool EvaluatePointer(const Expr* E, LValue& Result, EvalInfo &Info, 8076 bool InvalidBaseOK) { 8077 assert(E->isRValue() && E->getType()->hasPointerRepresentation()); 8078 return PointerExprEvaluator(Info, Result, InvalidBaseOK).Visit(E); 8079 } 8080 8081 bool PointerExprEvaluator::VisitBinaryOperator(const BinaryOperator *E) { 8082 if (E->getOpcode() != BO_Add && 8083 E->getOpcode() != BO_Sub) 8084 return ExprEvaluatorBaseTy::VisitBinaryOperator(E); 8085 8086 const Expr *PExp = E->getLHS(); 8087 const Expr *IExp = E->getRHS(); 8088 if (IExp->getType()->isPointerType()) 8089 std::swap(PExp, IExp); 8090 8091 bool EvalPtrOK = evaluatePointer(PExp, Result); 8092 if (!EvalPtrOK && !Info.noteFailure()) 8093 return false; 8094 8095 llvm::APSInt Offset; 8096 if (!EvaluateInteger(IExp, Offset, Info) || !EvalPtrOK) 8097 return false; 8098 8099 if (E->getOpcode() == BO_Sub) 8100 negateAsSigned(Offset); 8101 8102 QualType Pointee = PExp->getType()->castAs<PointerType>()->getPointeeType(); 8103 return HandleLValueArrayAdjustment(Info, E, Result, Pointee, Offset); 8104 } 8105 8106 bool PointerExprEvaluator::VisitUnaryAddrOf(const UnaryOperator *E) { 8107 return evaluateLValue(E->getSubExpr(), Result); 8108 } 8109 8110 bool PointerExprEvaluator::VisitCastExpr(const CastExpr *E) { 8111 const Expr *SubExpr = E->getSubExpr(); 8112 8113 switch (E->getCastKind()) { 8114 default: 8115 break; 8116 case CK_BitCast: 8117 case CK_CPointerToObjCPointerCast: 8118 case CK_BlockPointerToObjCPointerCast: 8119 case CK_AnyPointerToBlockPointerCast: 8120 case CK_AddressSpaceConversion: 8121 if (!Visit(SubExpr)) 8122 return false; 8123 // Bitcasts to cv void* are static_casts, not reinterpret_casts, so are 8124 // permitted in constant expressions in C++11. Bitcasts from cv void* are 8125 // also static_casts, but we disallow them as a resolution to DR1312. 8126 if (!E->getType()->isVoidPointerType()) { 8127 if (!Result.InvalidBase && !Result.Designator.Invalid && 8128 !Result.IsNullPtr && 8129 Info.Ctx.hasSameUnqualifiedType(Result.Designator.getType(Info.Ctx), 8130 E->getType()->getPointeeType()) && 8131 Info.getStdAllocatorCaller("allocate")) { 8132 // Inside a call to std::allocator::allocate and friends, we permit 8133 // casting from void* back to cv1 T* for a pointer that points to a 8134 // cv2 T. 8135 } else { 8136 Result.Designator.setInvalid(); 8137 if (SubExpr->getType()->isVoidPointerType()) 8138 CCEDiag(E, diag::note_constexpr_invalid_cast) 8139 << 3 << SubExpr->getType(); 8140 else 8141 CCEDiag(E, diag::note_constexpr_invalid_cast) << 2; 8142 } 8143 } 8144 if (E->getCastKind() == CK_AddressSpaceConversion && Result.IsNullPtr) 8145 ZeroInitialization(E); 8146 return true; 8147 8148 case CK_DerivedToBase: 8149 case CK_UncheckedDerivedToBase: 8150 if (!evaluatePointer(E->getSubExpr(), Result)) 8151 return false; 8152 if (!Result.Base && Result.Offset.isZero()) 8153 return true; 8154 8155 // Now figure out the necessary offset to add to the base LV to get from 8156 // the derived class to the base class. 8157 return HandleLValueBasePath(Info, E, E->getSubExpr()->getType()-> 8158 castAs<PointerType>()->getPointeeType(), 8159 Result); 8160 8161 case CK_BaseToDerived: 8162 if (!Visit(E->getSubExpr())) 8163 return false; 8164 if (!Result.Base && Result.Offset.isZero()) 8165 return true; 8166 return HandleBaseToDerivedCast(Info, E, Result); 8167 8168 case CK_Dynamic: 8169 if (!Visit(E->getSubExpr())) 8170 return false; 8171 return HandleDynamicCast(Info, cast<ExplicitCastExpr>(E), Result); 8172 8173 case CK_NullToPointer: 8174 VisitIgnoredValue(E->getSubExpr()); 8175 return ZeroInitialization(E); 8176 8177 case CK_IntegralToPointer: { 8178 CCEDiag(E, diag::note_constexpr_invalid_cast) << 2; 8179 8180 APValue Value; 8181 if (!EvaluateIntegerOrLValue(SubExpr, Value, Info)) 8182 break; 8183 8184 if (Value.isInt()) { 8185 unsigned Size = Info.Ctx.getTypeSize(E->getType()); 8186 uint64_t N = Value.getInt().extOrTrunc(Size).getZExtValue(); 8187 Result.Base = (Expr*)nullptr; 8188 Result.InvalidBase = false; 8189 Result.Offset = CharUnits::fromQuantity(N); 8190 Result.Designator.setInvalid(); 8191 Result.IsNullPtr = false; 8192 return true; 8193 } else { 8194 // Cast is of an lvalue, no need to change value. 8195 Result.setFrom(Info.Ctx, Value); 8196 return true; 8197 } 8198 } 8199 8200 case CK_ArrayToPointerDecay: { 8201 if (SubExpr->isGLValue()) { 8202 if (!evaluateLValue(SubExpr, Result)) 8203 return false; 8204 } else { 8205 APValue &Value = Info.CurrentCall->createTemporary( 8206 SubExpr, SubExpr->getType(), false, Result); 8207 if (!EvaluateInPlace(Value, Info, Result, SubExpr)) 8208 return false; 8209 } 8210 // The result is a pointer to the first element of the array. 8211 auto *AT = Info.Ctx.getAsArrayType(SubExpr->getType()); 8212 if (auto *CAT = dyn_cast<ConstantArrayType>(AT)) 8213 Result.addArray(Info, E, CAT); 8214 else 8215 Result.addUnsizedArray(Info, E, AT->getElementType()); 8216 return true; 8217 } 8218 8219 case CK_FunctionToPointerDecay: 8220 return evaluateLValue(SubExpr, Result); 8221 8222 case CK_LValueToRValue: { 8223 LValue LVal; 8224 if (!evaluateLValue(E->getSubExpr(), LVal)) 8225 return false; 8226 8227 APValue RVal; 8228 // Note, we use the subexpression's type in order to retain cv-qualifiers. 8229 if (!handleLValueToRValueConversion(Info, E, E->getSubExpr()->getType(), 8230 LVal, RVal)) 8231 return InvalidBaseOK && 8232 evaluateLValueAsAllocSize(Info, LVal.Base, Result); 8233 return Success(RVal, E); 8234 } 8235 } 8236 8237 return ExprEvaluatorBaseTy::VisitCastExpr(E); 8238 } 8239 8240 static CharUnits GetAlignOfType(EvalInfo &Info, QualType T, 8241 UnaryExprOrTypeTrait ExprKind) { 8242 // C++ [expr.alignof]p3: 8243 // When alignof is applied to a reference type, the result is the 8244 // alignment of the referenced type. 8245 if (const ReferenceType *Ref = T->getAs<ReferenceType>()) 8246 T = Ref->getPointeeType(); 8247 8248 if (T.getQualifiers().hasUnaligned()) 8249 return CharUnits::One(); 8250 8251 const bool AlignOfReturnsPreferred = 8252 Info.Ctx.getLangOpts().getClangABICompat() <= LangOptions::ClangABI::Ver7; 8253 8254 // __alignof is defined to return the preferred alignment. 8255 // Before 8, clang returned the preferred alignment for alignof and _Alignof 8256 // as well. 8257 if (ExprKind == UETT_PreferredAlignOf || AlignOfReturnsPreferred) 8258 return Info.Ctx.toCharUnitsFromBits( 8259 Info.Ctx.getPreferredTypeAlign(T.getTypePtr())); 8260 // alignof and _Alignof are defined to return the ABI alignment. 8261 else if (ExprKind == UETT_AlignOf) 8262 return Info.Ctx.getTypeAlignInChars(T.getTypePtr()); 8263 else 8264 llvm_unreachable("GetAlignOfType on a non-alignment ExprKind"); 8265 } 8266 8267 static CharUnits GetAlignOfExpr(EvalInfo &Info, const Expr *E, 8268 UnaryExprOrTypeTrait ExprKind) { 8269 E = E->IgnoreParens(); 8270 8271 // The kinds of expressions that we have special-case logic here for 8272 // should be kept up to date with the special checks for those 8273 // expressions in Sema. 8274 8275 // alignof decl is always accepted, even if it doesn't make sense: we default 8276 // to 1 in those cases. 8277 if (const DeclRefExpr *DRE = dyn_cast<DeclRefExpr>(E)) 8278 return Info.Ctx.getDeclAlign(DRE->getDecl(), 8279 /*RefAsPointee*/true); 8280 8281 if (const MemberExpr *ME = dyn_cast<MemberExpr>(E)) 8282 return Info.Ctx.getDeclAlign(ME->getMemberDecl(), 8283 /*RefAsPointee*/true); 8284 8285 return GetAlignOfType(Info, E->getType(), ExprKind); 8286 } 8287 8288 static CharUnits getBaseAlignment(EvalInfo &Info, const LValue &Value) { 8289 if (const auto *VD = Value.Base.dyn_cast<const ValueDecl *>()) 8290 return Info.Ctx.getDeclAlign(VD); 8291 if (const auto *E = Value.Base.dyn_cast<const Expr *>()) 8292 return GetAlignOfExpr(Info, E, UETT_AlignOf); 8293 return GetAlignOfType(Info, Value.Base.getTypeInfoType(), UETT_AlignOf); 8294 } 8295 8296 /// Evaluate the value of the alignment argument to __builtin_align_{up,down}, 8297 /// __builtin_is_aligned and __builtin_assume_aligned. 8298 static bool getAlignmentArgument(const Expr *E, QualType ForType, 8299 EvalInfo &Info, APSInt &Alignment) { 8300 if (!EvaluateInteger(E, Alignment, Info)) 8301 return false; 8302 if (Alignment < 0 || !Alignment.isPowerOf2()) { 8303 Info.FFDiag(E, diag::note_constexpr_invalid_alignment) << Alignment; 8304 return false; 8305 } 8306 unsigned SrcWidth = Info.Ctx.getIntWidth(ForType); 8307 APSInt MaxValue(APInt::getOneBitSet(SrcWidth, SrcWidth - 1)); 8308 if (APSInt::compareValues(Alignment, MaxValue) > 0) { 8309 Info.FFDiag(E, diag::note_constexpr_alignment_too_big) 8310 << MaxValue << ForType << Alignment; 8311 return false; 8312 } 8313 // Ensure both alignment and source value have the same bit width so that we 8314 // don't assert when computing the resulting value. 8315 APSInt ExtAlignment = 8316 APSInt(Alignment.zextOrTrunc(SrcWidth), /*isUnsigned=*/true); 8317 assert(APSInt::compareValues(Alignment, ExtAlignment) == 0 && 8318 "Alignment should not be changed by ext/trunc"); 8319 Alignment = ExtAlignment; 8320 assert(Alignment.getBitWidth() == SrcWidth); 8321 return true; 8322 } 8323 8324 // To be clear: this happily visits unsupported builtins. Better name welcomed. 8325 bool PointerExprEvaluator::visitNonBuiltinCallExpr(const CallExpr *E) { 8326 if (ExprEvaluatorBaseTy::VisitCallExpr(E)) 8327 return true; 8328 8329 if (!(InvalidBaseOK && getAllocSizeAttr(E))) 8330 return false; 8331 8332 Result.setInvalid(E); 8333 QualType PointeeTy = E->getType()->castAs<PointerType>()->getPointeeType(); 8334 Result.addUnsizedArray(Info, E, PointeeTy); 8335 return true; 8336 } 8337 8338 bool PointerExprEvaluator::VisitCallExpr(const CallExpr *E) { 8339 if (IsStringLiteralCall(E)) 8340 return Success(E); 8341 8342 if (unsigned BuiltinOp = E->getBuiltinCallee()) 8343 return VisitBuiltinCallExpr(E, BuiltinOp); 8344 8345 return visitNonBuiltinCallExpr(E); 8346 } 8347 8348 // Determine if T is a character type for which we guarantee that 8349 // sizeof(T) == 1. 8350 static bool isOneByteCharacterType(QualType T) { 8351 return T->isCharType() || T->isChar8Type(); 8352 } 8353 8354 bool PointerExprEvaluator::VisitBuiltinCallExpr(const CallExpr *E, 8355 unsigned BuiltinOp) { 8356 switch (BuiltinOp) { 8357 case Builtin::BI__builtin_addressof: 8358 return evaluateLValue(E->getArg(0), Result); 8359 case Builtin::BI__builtin_assume_aligned: { 8360 // We need to be very careful here because: if the pointer does not have the 8361 // asserted alignment, then the behavior is undefined, and undefined 8362 // behavior is non-constant. 8363 if (!evaluatePointer(E->getArg(0), Result)) 8364 return false; 8365 8366 LValue OffsetResult(Result); 8367 APSInt Alignment; 8368 if (!getAlignmentArgument(E->getArg(1), E->getArg(0)->getType(), Info, 8369 Alignment)) 8370 return false; 8371 CharUnits Align = CharUnits::fromQuantity(Alignment.getZExtValue()); 8372 8373 if (E->getNumArgs() > 2) { 8374 APSInt Offset; 8375 if (!EvaluateInteger(E->getArg(2), Offset, Info)) 8376 return false; 8377 8378 int64_t AdditionalOffset = -Offset.getZExtValue(); 8379 OffsetResult.Offset += CharUnits::fromQuantity(AdditionalOffset); 8380 } 8381 8382 // If there is a base object, then it must have the correct alignment. 8383 if (OffsetResult.Base) { 8384 CharUnits BaseAlignment = getBaseAlignment(Info, OffsetResult); 8385 8386 if (BaseAlignment < Align) { 8387 Result.Designator.setInvalid(); 8388 // FIXME: Add support to Diagnostic for long / long long. 8389 CCEDiag(E->getArg(0), 8390 diag::note_constexpr_baa_insufficient_alignment) << 0 8391 << (unsigned)BaseAlignment.getQuantity() 8392 << (unsigned)Align.getQuantity(); 8393 return false; 8394 } 8395 } 8396 8397 // The offset must also have the correct alignment. 8398 if (OffsetResult.Offset.alignTo(Align) != OffsetResult.Offset) { 8399 Result.Designator.setInvalid(); 8400 8401 (OffsetResult.Base 8402 ? CCEDiag(E->getArg(0), 8403 diag::note_constexpr_baa_insufficient_alignment) << 1 8404 : CCEDiag(E->getArg(0), 8405 diag::note_constexpr_baa_value_insufficient_alignment)) 8406 << (int)OffsetResult.Offset.getQuantity() 8407 << (unsigned)Align.getQuantity(); 8408 return false; 8409 } 8410 8411 return true; 8412 } 8413 case Builtin::BI__builtin_align_up: 8414 case Builtin::BI__builtin_align_down: { 8415 if (!evaluatePointer(E->getArg(0), Result)) 8416 return false; 8417 APSInt Alignment; 8418 if (!getAlignmentArgument(E->getArg(1), E->getArg(0)->getType(), Info, 8419 Alignment)) 8420 return false; 8421 CharUnits BaseAlignment = getBaseAlignment(Info, Result); 8422 CharUnits PtrAlign = BaseAlignment.alignmentAtOffset(Result.Offset); 8423 // For align_up/align_down, we can return the same value if the alignment 8424 // is known to be greater or equal to the requested value. 8425 if (PtrAlign.getQuantity() >= Alignment) 8426 return true; 8427 8428 // The alignment could be greater than the minimum at run-time, so we cannot 8429 // infer much about the resulting pointer value. One case is possible: 8430 // For `_Alignas(32) char buf[N]; __builtin_align_down(&buf[idx], 32)` we 8431 // can infer the correct index if the requested alignment is smaller than 8432 // the base alignment so we can perform the computation on the offset. 8433 if (BaseAlignment.getQuantity() >= Alignment) { 8434 assert(Alignment.getBitWidth() <= 64 && 8435 "Cannot handle > 64-bit address-space"); 8436 uint64_t Alignment64 = Alignment.getZExtValue(); 8437 CharUnits NewOffset = CharUnits::fromQuantity( 8438 BuiltinOp == Builtin::BI__builtin_align_down 8439 ? llvm::alignDown(Result.Offset.getQuantity(), Alignment64) 8440 : llvm::alignTo(Result.Offset.getQuantity(), Alignment64)); 8441 Result.adjustOffset(NewOffset - Result.Offset); 8442 // TODO: diagnose out-of-bounds values/only allow for arrays? 8443 return true; 8444 } 8445 // Otherwise, we cannot constant-evaluate the result. 8446 Info.FFDiag(E->getArg(0), diag::note_constexpr_alignment_adjust) 8447 << Alignment; 8448 return false; 8449 } 8450 case Builtin::BI__builtin_operator_new: 8451 return HandleOperatorNewCall(Info, E, Result); 8452 case Builtin::BI__builtin_launder: 8453 return evaluatePointer(E->getArg(0), Result); 8454 case Builtin::BIstrchr: 8455 case Builtin::BIwcschr: 8456 case Builtin::BImemchr: 8457 case Builtin::BIwmemchr: 8458 if (Info.getLangOpts().CPlusPlus11) 8459 Info.CCEDiag(E, diag::note_constexpr_invalid_function) 8460 << /*isConstexpr*/0 << /*isConstructor*/0 8461 << (std::string("'") + Info.Ctx.BuiltinInfo.getName(BuiltinOp) + "'"); 8462 else 8463 Info.CCEDiag(E, diag::note_invalid_subexpr_in_const_expr); 8464 LLVM_FALLTHROUGH; 8465 case Builtin::BI__builtin_strchr: 8466 case Builtin::BI__builtin_wcschr: 8467 case Builtin::BI__builtin_memchr: 8468 case Builtin::BI__builtin_char_memchr: 8469 case Builtin::BI__builtin_wmemchr: { 8470 if (!Visit(E->getArg(0))) 8471 return false; 8472 APSInt Desired; 8473 if (!EvaluateInteger(E->getArg(1), Desired, Info)) 8474 return false; 8475 uint64_t MaxLength = uint64_t(-1); 8476 if (BuiltinOp != Builtin::BIstrchr && 8477 BuiltinOp != Builtin::BIwcschr && 8478 BuiltinOp != Builtin::BI__builtin_strchr && 8479 BuiltinOp != Builtin::BI__builtin_wcschr) { 8480 APSInt N; 8481 if (!EvaluateInteger(E->getArg(2), N, Info)) 8482 return false; 8483 MaxLength = N.getExtValue(); 8484 } 8485 // We cannot find the value if there are no candidates to match against. 8486 if (MaxLength == 0u) 8487 return ZeroInitialization(E); 8488 if (!Result.checkNullPointerForFoldAccess(Info, E, AK_Read) || 8489 Result.Designator.Invalid) 8490 return false; 8491 QualType CharTy = Result.Designator.getType(Info.Ctx); 8492 bool IsRawByte = BuiltinOp == Builtin::BImemchr || 8493 BuiltinOp == Builtin::BI__builtin_memchr; 8494 assert(IsRawByte || 8495 Info.Ctx.hasSameUnqualifiedType( 8496 CharTy, E->getArg(0)->getType()->getPointeeType())); 8497 // Pointers to const void may point to objects of incomplete type. 8498 if (IsRawByte && CharTy->isIncompleteType()) { 8499 Info.FFDiag(E, diag::note_constexpr_ltor_incomplete_type) << CharTy; 8500 return false; 8501 } 8502 // Give up on byte-oriented matching against multibyte elements. 8503 // FIXME: We can compare the bytes in the correct order. 8504 if (IsRawByte && !isOneByteCharacterType(CharTy)) { 8505 Info.FFDiag(E, diag::note_constexpr_memchr_unsupported) 8506 << (std::string("'") + Info.Ctx.BuiltinInfo.getName(BuiltinOp) + "'") 8507 << CharTy; 8508 return false; 8509 } 8510 // Figure out what value we're actually looking for (after converting to 8511 // the corresponding unsigned type if necessary). 8512 uint64_t DesiredVal; 8513 bool StopAtNull = false; 8514 switch (BuiltinOp) { 8515 case Builtin::BIstrchr: 8516 case Builtin::BI__builtin_strchr: 8517 // strchr compares directly to the passed integer, and therefore 8518 // always fails if given an int that is not a char. 8519 if (!APSInt::isSameValue(HandleIntToIntCast(Info, E, CharTy, 8520 E->getArg(1)->getType(), 8521 Desired), 8522 Desired)) 8523 return ZeroInitialization(E); 8524 StopAtNull = true; 8525 LLVM_FALLTHROUGH; 8526 case Builtin::BImemchr: 8527 case Builtin::BI__builtin_memchr: 8528 case Builtin::BI__builtin_char_memchr: 8529 // memchr compares by converting both sides to unsigned char. That's also 8530 // correct for strchr if we get this far (to cope with plain char being 8531 // unsigned in the strchr case). 8532 DesiredVal = Desired.trunc(Info.Ctx.getCharWidth()).getZExtValue(); 8533 break; 8534 8535 case Builtin::BIwcschr: 8536 case Builtin::BI__builtin_wcschr: 8537 StopAtNull = true; 8538 LLVM_FALLTHROUGH; 8539 case Builtin::BIwmemchr: 8540 case Builtin::BI__builtin_wmemchr: 8541 // wcschr and wmemchr are given a wchar_t to look for. Just use it. 8542 DesiredVal = Desired.getZExtValue(); 8543 break; 8544 } 8545 8546 for (; MaxLength; --MaxLength) { 8547 APValue Char; 8548 if (!handleLValueToRValueConversion(Info, E, CharTy, Result, Char) || 8549 !Char.isInt()) 8550 return false; 8551 if (Char.getInt().getZExtValue() == DesiredVal) 8552 return true; 8553 if (StopAtNull && !Char.getInt()) 8554 break; 8555 if (!HandleLValueArrayAdjustment(Info, E, Result, CharTy, 1)) 8556 return false; 8557 } 8558 // Not found: return nullptr. 8559 return ZeroInitialization(E); 8560 } 8561 8562 case Builtin::BImemcpy: 8563 case Builtin::BImemmove: 8564 case Builtin::BIwmemcpy: 8565 case Builtin::BIwmemmove: 8566 if (Info.getLangOpts().CPlusPlus11) 8567 Info.CCEDiag(E, diag::note_constexpr_invalid_function) 8568 << /*isConstexpr*/0 << /*isConstructor*/0 8569 << (std::string("'") + Info.Ctx.BuiltinInfo.getName(BuiltinOp) + "'"); 8570 else 8571 Info.CCEDiag(E, diag::note_invalid_subexpr_in_const_expr); 8572 LLVM_FALLTHROUGH; 8573 case Builtin::BI__builtin_memcpy: 8574 case Builtin::BI__builtin_memmove: 8575 case Builtin::BI__builtin_wmemcpy: 8576 case Builtin::BI__builtin_wmemmove: { 8577 bool WChar = BuiltinOp == Builtin::BIwmemcpy || 8578 BuiltinOp == Builtin::BIwmemmove || 8579 BuiltinOp == Builtin::BI__builtin_wmemcpy || 8580 BuiltinOp == Builtin::BI__builtin_wmemmove; 8581 bool Move = BuiltinOp == Builtin::BImemmove || 8582 BuiltinOp == Builtin::BIwmemmove || 8583 BuiltinOp == Builtin::BI__builtin_memmove || 8584 BuiltinOp == Builtin::BI__builtin_wmemmove; 8585 8586 // The result of mem* is the first argument. 8587 if (!Visit(E->getArg(0))) 8588 return false; 8589 LValue Dest = Result; 8590 8591 LValue Src; 8592 if (!EvaluatePointer(E->getArg(1), Src, Info)) 8593 return false; 8594 8595 APSInt N; 8596 if (!EvaluateInteger(E->getArg(2), N, Info)) 8597 return false; 8598 assert(!N.isSigned() && "memcpy and friends take an unsigned size"); 8599 8600 // If the size is zero, we treat this as always being a valid no-op. 8601 // (Even if one of the src and dest pointers is null.) 8602 if (!N) 8603 return true; 8604 8605 // Otherwise, if either of the operands is null, we can't proceed. Don't 8606 // try to determine the type of the copied objects, because there aren't 8607 // any. 8608 if (!Src.Base || !Dest.Base) { 8609 APValue Val; 8610 (!Src.Base ? Src : Dest).moveInto(Val); 8611 Info.FFDiag(E, diag::note_constexpr_memcpy_null) 8612 << Move << WChar << !!Src.Base 8613 << Val.getAsString(Info.Ctx, E->getArg(0)->getType()); 8614 return false; 8615 } 8616 if (Src.Designator.Invalid || Dest.Designator.Invalid) 8617 return false; 8618 8619 // We require that Src and Dest are both pointers to arrays of 8620 // trivially-copyable type. (For the wide version, the designator will be 8621 // invalid if the designated object is not a wchar_t.) 8622 QualType T = Dest.Designator.getType(Info.Ctx); 8623 QualType SrcT = Src.Designator.getType(Info.Ctx); 8624 if (!Info.Ctx.hasSameUnqualifiedType(T, SrcT)) { 8625 // FIXME: Consider using our bit_cast implementation to support this. 8626 Info.FFDiag(E, diag::note_constexpr_memcpy_type_pun) << Move << SrcT << T; 8627 return false; 8628 } 8629 if (T->isIncompleteType()) { 8630 Info.FFDiag(E, diag::note_constexpr_memcpy_incomplete_type) << Move << T; 8631 return false; 8632 } 8633 if (!T.isTriviallyCopyableType(Info.Ctx)) { 8634 Info.FFDiag(E, diag::note_constexpr_memcpy_nontrivial) << Move << T; 8635 return false; 8636 } 8637 8638 // Figure out how many T's we're copying. 8639 uint64_t TSize = Info.Ctx.getTypeSizeInChars(T).getQuantity(); 8640 if (!WChar) { 8641 uint64_t Remainder; 8642 llvm::APInt OrigN = N; 8643 llvm::APInt::udivrem(OrigN, TSize, N, Remainder); 8644 if (Remainder) { 8645 Info.FFDiag(E, diag::note_constexpr_memcpy_unsupported) 8646 << Move << WChar << 0 << T << OrigN.toString(10, /*Signed*/false) 8647 << (unsigned)TSize; 8648 return false; 8649 } 8650 } 8651 8652 // Check that the copying will remain within the arrays, just so that we 8653 // can give a more meaningful diagnostic. This implicitly also checks that 8654 // N fits into 64 bits. 8655 uint64_t RemainingSrcSize = Src.Designator.validIndexAdjustments().second; 8656 uint64_t RemainingDestSize = Dest.Designator.validIndexAdjustments().second; 8657 if (N.ugt(RemainingSrcSize) || N.ugt(RemainingDestSize)) { 8658 Info.FFDiag(E, diag::note_constexpr_memcpy_unsupported) 8659 << Move << WChar << (N.ugt(RemainingSrcSize) ? 1 : 2) << T 8660 << N.toString(10, /*Signed*/false); 8661 return false; 8662 } 8663 uint64_t NElems = N.getZExtValue(); 8664 uint64_t NBytes = NElems * TSize; 8665 8666 // Check for overlap. 8667 int Direction = 1; 8668 if (HasSameBase(Src, Dest)) { 8669 uint64_t SrcOffset = Src.getLValueOffset().getQuantity(); 8670 uint64_t DestOffset = Dest.getLValueOffset().getQuantity(); 8671 if (DestOffset >= SrcOffset && DestOffset - SrcOffset < NBytes) { 8672 // Dest is inside the source region. 8673 if (!Move) { 8674 Info.FFDiag(E, diag::note_constexpr_memcpy_overlap) << WChar; 8675 return false; 8676 } 8677 // For memmove and friends, copy backwards. 8678 if (!HandleLValueArrayAdjustment(Info, E, Src, T, NElems - 1) || 8679 !HandleLValueArrayAdjustment(Info, E, Dest, T, NElems - 1)) 8680 return false; 8681 Direction = -1; 8682 } else if (!Move && SrcOffset >= DestOffset && 8683 SrcOffset - DestOffset < NBytes) { 8684 // Src is inside the destination region for memcpy: invalid. 8685 Info.FFDiag(E, diag::note_constexpr_memcpy_overlap) << WChar; 8686 return false; 8687 } 8688 } 8689 8690 while (true) { 8691 APValue Val; 8692 // FIXME: Set WantObjectRepresentation to true if we're copying a 8693 // char-like type? 8694 if (!handleLValueToRValueConversion(Info, E, T, Src, Val) || 8695 !handleAssignment(Info, E, Dest, T, Val)) 8696 return false; 8697 // Do not iterate past the last element; if we're copying backwards, that 8698 // might take us off the start of the array. 8699 if (--NElems == 0) 8700 return true; 8701 if (!HandleLValueArrayAdjustment(Info, E, Src, T, Direction) || 8702 !HandleLValueArrayAdjustment(Info, E, Dest, T, Direction)) 8703 return false; 8704 } 8705 } 8706 8707 default: 8708 break; 8709 } 8710 8711 return visitNonBuiltinCallExpr(E); 8712 } 8713 8714 static bool EvaluateArrayNewInitList(EvalInfo &Info, LValue &This, 8715 APValue &Result, const InitListExpr *ILE, 8716 QualType AllocType); 8717 static bool EvaluateArrayNewConstructExpr(EvalInfo &Info, LValue &This, 8718 APValue &Result, 8719 const CXXConstructExpr *CCE, 8720 QualType AllocType); 8721 8722 bool PointerExprEvaluator::VisitCXXNewExpr(const CXXNewExpr *E) { 8723 if (!Info.getLangOpts().CPlusPlus2a) 8724 Info.CCEDiag(E, diag::note_constexpr_new); 8725 8726 // We cannot speculatively evaluate a delete expression. 8727 if (Info.SpeculativeEvaluationDepth) 8728 return false; 8729 8730 FunctionDecl *OperatorNew = E->getOperatorNew(); 8731 8732 bool IsNothrow = false; 8733 bool IsPlacement = false; 8734 if (OperatorNew->isReservedGlobalPlacementOperator() && 8735 Info.CurrentCall->isStdFunction() && !E->isArray()) { 8736 // FIXME Support array placement new. 8737 assert(E->getNumPlacementArgs() == 1); 8738 if (!EvaluatePointer(E->getPlacementArg(0), Result, Info)) 8739 return false; 8740 if (Result.Designator.Invalid) 8741 return false; 8742 IsPlacement = true; 8743 } else if (!OperatorNew->isReplaceableGlobalAllocationFunction()) { 8744 Info.FFDiag(E, diag::note_constexpr_new_non_replaceable) 8745 << isa<CXXMethodDecl>(OperatorNew) << OperatorNew; 8746 return false; 8747 } else if (E->getNumPlacementArgs()) { 8748 // The only new-placement list we support is of the form (std::nothrow). 8749 // 8750 // FIXME: There is no restriction on this, but it's not clear that any 8751 // other form makes any sense. We get here for cases such as: 8752 // 8753 // new (std::align_val_t{N}) X(int) 8754 // 8755 // (which should presumably be valid only if N is a multiple of 8756 // alignof(int), and in any case can't be deallocated unless N is 8757 // alignof(X) and X has new-extended alignment). 8758 if (E->getNumPlacementArgs() != 1 || 8759 !E->getPlacementArg(0)->getType()->isNothrowT()) 8760 return Error(E, diag::note_constexpr_new_placement); 8761 8762 LValue Nothrow; 8763 if (!EvaluateLValue(E->getPlacementArg(0), Nothrow, Info)) 8764 return false; 8765 IsNothrow = true; 8766 } 8767 8768 const Expr *Init = E->getInitializer(); 8769 const InitListExpr *ResizedArrayILE = nullptr; 8770 const CXXConstructExpr *ResizedArrayCCE = nullptr; 8771 8772 QualType AllocType = E->getAllocatedType(); 8773 if (Optional<const Expr*> ArraySize = E->getArraySize()) { 8774 const Expr *Stripped = *ArraySize; 8775 for (; auto *ICE = dyn_cast<ImplicitCastExpr>(Stripped); 8776 Stripped = ICE->getSubExpr()) 8777 if (ICE->getCastKind() != CK_NoOp && 8778 ICE->getCastKind() != CK_IntegralCast) 8779 break; 8780 8781 llvm::APSInt ArrayBound; 8782 if (!EvaluateInteger(Stripped, ArrayBound, Info)) 8783 return false; 8784 8785 // C++ [expr.new]p9: 8786 // The expression is erroneous if: 8787 // -- [...] its value before converting to size_t [or] applying the 8788 // second standard conversion sequence is less than zero 8789 if (ArrayBound.isSigned() && ArrayBound.isNegative()) { 8790 if (IsNothrow) 8791 return ZeroInitialization(E); 8792 8793 Info.FFDiag(*ArraySize, diag::note_constexpr_new_negative) 8794 << ArrayBound << (*ArraySize)->getSourceRange(); 8795 return false; 8796 } 8797 8798 // -- its value is such that the size of the allocated object would 8799 // exceed the implementation-defined limit 8800 if (ConstantArrayType::getNumAddressingBits(Info.Ctx, AllocType, 8801 ArrayBound) > 8802 ConstantArrayType::getMaxSizeBits(Info.Ctx)) { 8803 if (IsNothrow) 8804 return ZeroInitialization(E); 8805 8806 Info.FFDiag(*ArraySize, diag::note_constexpr_new_too_large) 8807 << ArrayBound << (*ArraySize)->getSourceRange(); 8808 return false; 8809 } 8810 8811 // -- the new-initializer is a braced-init-list and the number of 8812 // array elements for which initializers are provided [...] 8813 // exceeds the number of elements to initialize 8814 if (Init && !isa<CXXConstructExpr>(Init)) { 8815 auto *CAT = Info.Ctx.getAsConstantArrayType(Init->getType()); 8816 assert(CAT && "unexpected type for array initializer"); 8817 8818 unsigned Bits = 8819 std::max(CAT->getSize().getBitWidth(), ArrayBound.getBitWidth()); 8820 llvm::APInt InitBound = CAT->getSize().zextOrSelf(Bits); 8821 llvm::APInt AllocBound = ArrayBound.zextOrSelf(Bits); 8822 if (InitBound.ugt(AllocBound)) { 8823 if (IsNothrow) 8824 return ZeroInitialization(E); 8825 8826 Info.FFDiag(*ArraySize, diag::note_constexpr_new_too_small) 8827 << AllocBound.toString(10, /*Signed=*/false) 8828 << InitBound.toString(10, /*Signed=*/false) 8829 << (*ArraySize)->getSourceRange(); 8830 return false; 8831 } 8832 8833 // If the sizes differ, we must have an initializer list, and we need 8834 // special handling for this case when we initialize. 8835 if (InitBound != AllocBound) 8836 ResizedArrayILE = cast<InitListExpr>(Init); 8837 } else if (Init) { 8838 ResizedArrayCCE = cast<CXXConstructExpr>(Init); 8839 } 8840 8841 AllocType = Info.Ctx.getConstantArrayType(AllocType, ArrayBound, nullptr, 8842 ArrayType::Normal, 0); 8843 } else { 8844 assert(!AllocType->isArrayType() && 8845 "array allocation with non-array new"); 8846 } 8847 8848 APValue *Val; 8849 if (IsPlacement) { 8850 AccessKinds AK = AK_Construct; 8851 struct FindObjectHandler { 8852 EvalInfo &Info; 8853 const Expr *E; 8854 QualType AllocType; 8855 const AccessKinds AccessKind; 8856 APValue *Value; 8857 8858 typedef bool result_type; 8859 bool failed() { return false; } 8860 bool found(APValue &Subobj, QualType SubobjType) { 8861 // FIXME: Reject the cases where [basic.life]p8 would not permit the 8862 // old name of the object to be used to name the new object. 8863 if (!Info.Ctx.hasSameUnqualifiedType(SubobjType, AllocType)) { 8864 Info.FFDiag(E, diag::note_constexpr_placement_new_wrong_type) << 8865 SubobjType << AllocType; 8866 return false; 8867 } 8868 Value = &Subobj; 8869 return true; 8870 } 8871 bool found(APSInt &Value, QualType SubobjType) { 8872 Info.FFDiag(E, diag::note_constexpr_construct_complex_elem); 8873 return false; 8874 } 8875 bool found(APFloat &Value, QualType SubobjType) { 8876 Info.FFDiag(E, diag::note_constexpr_construct_complex_elem); 8877 return false; 8878 } 8879 } Handler = {Info, E, AllocType, AK, nullptr}; 8880 8881 CompleteObject Obj = findCompleteObject(Info, E, AK, Result, AllocType); 8882 if (!Obj || !findSubobject(Info, E, Obj, Result.Designator, Handler)) 8883 return false; 8884 8885 Val = Handler.Value; 8886 8887 // [basic.life]p1: 8888 // The lifetime of an object o of type T ends when [...] the storage 8889 // which the object occupies is [...] reused by an object that is not 8890 // nested within o (6.6.2). 8891 *Val = APValue(); 8892 } else { 8893 // Perform the allocation and obtain a pointer to the resulting object. 8894 Val = Info.createHeapAlloc(E, AllocType, Result); 8895 if (!Val) 8896 return false; 8897 } 8898 8899 if (ResizedArrayILE) { 8900 if (!EvaluateArrayNewInitList(Info, Result, *Val, ResizedArrayILE, 8901 AllocType)) 8902 return false; 8903 } else if (ResizedArrayCCE) { 8904 if (!EvaluateArrayNewConstructExpr(Info, Result, *Val, ResizedArrayCCE, 8905 AllocType)) 8906 return false; 8907 } else if (Init) { 8908 if (!EvaluateInPlace(*Val, Info, Result, Init)) 8909 return false; 8910 } else { 8911 *Val = getDefaultInitValue(AllocType); 8912 } 8913 8914 // Array new returns a pointer to the first element, not a pointer to the 8915 // array. 8916 if (auto *AT = AllocType->getAsArrayTypeUnsafe()) 8917 Result.addArray(Info, E, cast<ConstantArrayType>(AT)); 8918 8919 return true; 8920 } 8921 //===----------------------------------------------------------------------===// 8922 // Member Pointer Evaluation 8923 //===----------------------------------------------------------------------===// 8924 8925 namespace { 8926 class MemberPointerExprEvaluator 8927 : public ExprEvaluatorBase<MemberPointerExprEvaluator> { 8928 MemberPtr &Result; 8929 8930 bool Success(const ValueDecl *D) { 8931 Result = MemberPtr(D); 8932 return true; 8933 } 8934 public: 8935 8936 MemberPointerExprEvaluator(EvalInfo &Info, MemberPtr &Result) 8937 : ExprEvaluatorBaseTy(Info), Result(Result) {} 8938 8939 bool Success(const APValue &V, const Expr *E) { 8940 Result.setFrom(V); 8941 return true; 8942 } 8943 bool ZeroInitialization(const Expr *E) { 8944 return Success((const ValueDecl*)nullptr); 8945 } 8946 8947 bool VisitCastExpr(const CastExpr *E); 8948 bool VisitUnaryAddrOf(const UnaryOperator *E); 8949 }; 8950 } // end anonymous namespace 8951 8952 static bool EvaluateMemberPointer(const Expr *E, MemberPtr &Result, 8953 EvalInfo &Info) { 8954 assert(E->isRValue() && E->getType()->isMemberPointerType()); 8955 return MemberPointerExprEvaluator(Info, Result).Visit(E); 8956 } 8957 8958 bool MemberPointerExprEvaluator::VisitCastExpr(const CastExpr *E) { 8959 switch (E->getCastKind()) { 8960 default: 8961 return ExprEvaluatorBaseTy::VisitCastExpr(E); 8962 8963 case CK_NullToMemberPointer: 8964 VisitIgnoredValue(E->getSubExpr()); 8965 return ZeroInitialization(E); 8966 8967 case CK_BaseToDerivedMemberPointer: { 8968 if (!Visit(E->getSubExpr())) 8969 return false; 8970 if (E->path_empty()) 8971 return true; 8972 // Base-to-derived member pointer casts store the path in derived-to-base 8973 // order, so iterate backwards. The CXXBaseSpecifier also provides us with 8974 // the wrong end of the derived->base arc, so stagger the path by one class. 8975 typedef std::reverse_iterator<CastExpr::path_const_iterator> ReverseIter; 8976 for (ReverseIter PathI(E->path_end() - 1), PathE(E->path_begin()); 8977 PathI != PathE; ++PathI) { 8978 assert(!(*PathI)->isVirtual() && "memptr cast through vbase"); 8979 const CXXRecordDecl *Derived = (*PathI)->getType()->getAsCXXRecordDecl(); 8980 if (!Result.castToDerived(Derived)) 8981 return Error(E); 8982 } 8983 const Type *FinalTy = E->getType()->castAs<MemberPointerType>()->getClass(); 8984 if (!Result.castToDerived(FinalTy->getAsCXXRecordDecl())) 8985 return Error(E); 8986 return true; 8987 } 8988 8989 case CK_DerivedToBaseMemberPointer: 8990 if (!Visit(E->getSubExpr())) 8991 return false; 8992 for (CastExpr::path_const_iterator PathI = E->path_begin(), 8993 PathE = E->path_end(); PathI != PathE; ++PathI) { 8994 assert(!(*PathI)->isVirtual() && "memptr cast through vbase"); 8995 const CXXRecordDecl *Base = (*PathI)->getType()->getAsCXXRecordDecl(); 8996 if (!Result.castToBase(Base)) 8997 return Error(E); 8998 } 8999 return true; 9000 } 9001 } 9002 9003 bool MemberPointerExprEvaluator::VisitUnaryAddrOf(const UnaryOperator *E) { 9004 // C++11 [expr.unary.op]p3 has very strict rules on how the address of a 9005 // member can be formed. 9006 return Success(cast<DeclRefExpr>(E->getSubExpr())->getDecl()); 9007 } 9008 9009 //===----------------------------------------------------------------------===// 9010 // Record Evaluation 9011 //===----------------------------------------------------------------------===// 9012 9013 namespace { 9014 class RecordExprEvaluator 9015 : public ExprEvaluatorBase<RecordExprEvaluator> { 9016 const LValue &This; 9017 APValue &Result; 9018 public: 9019 9020 RecordExprEvaluator(EvalInfo &info, const LValue &This, APValue &Result) 9021 : ExprEvaluatorBaseTy(info), This(This), Result(Result) {} 9022 9023 bool Success(const APValue &V, const Expr *E) { 9024 Result = V; 9025 return true; 9026 } 9027 bool ZeroInitialization(const Expr *E) { 9028 return ZeroInitialization(E, E->getType()); 9029 } 9030 bool ZeroInitialization(const Expr *E, QualType T); 9031 9032 bool VisitCallExpr(const CallExpr *E) { 9033 return handleCallExpr(E, Result, &This); 9034 } 9035 bool VisitCastExpr(const CastExpr *E); 9036 bool VisitInitListExpr(const InitListExpr *E); 9037 bool VisitCXXConstructExpr(const CXXConstructExpr *E) { 9038 return VisitCXXConstructExpr(E, E->getType()); 9039 } 9040 bool VisitLambdaExpr(const LambdaExpr *E); 9041 bool VisitCXXInheritedCtorInitExpr(const CXXInheritedCtorInitExpr *E); 9042 bool VisitCXXConstructExpr(const CXXConstructExpr *E, QualType T); 9043 bool VisitCXXStdInitializerListExpr(const CXXStdInitializerListExpr *E); 9044 bool VisitBinCmp(const BinaryOperator *E); 9045 }; 9046 } 9047 9048 /// Perform zero-initialization on an object of non-union class type. 9049 /// C++11 [dcl.init]p5: 9050 /// To zero-initialize an object or reference of type T means: 9051 /// [...] 9052 /// -- if T is a (possibly cv-qualified) non-union class type, 9053 /// each non-static data member and each base-class subobject is 9054 /// zero-initialized 9055 static bool HandleClassZeroInitialization(EvalInfo &Info, const Expr *E, 9056 const RecordDecl *RD, 9057 const LValue &This, APValue &Result) { 9058 assert(!RD->isUnion() && "Expected non-union class type"); 9059 const CXXRecordDecl *CD = dyn_cast<CXXRecordDecl>(RD); 9060 Result = APValue(APValue::UninitStruct(), CD ? CD->getNumBases() : 0, 9061 std::distance(RD->field_begin(), RD->field_end())); 9062 9063 if (RD->isInvalidDecl()) return false; 9064 const ASTRecordLayout &Layout = Info.Ctx.getASTRecordLayout(RD); 9065 9066 if (CD) { 9067 unsigned Index = 0; 9068 for (CXXRecordDecl::base_class_const_iterator I = CD->bases_begin(), 9069 End = CD->bases_end(); I != End; ++I, ++Index) { 9070 const CXXRecordDecl *Base = I->getType()->getAsCXXRecordDecl(); 9071 LValue Subobject = This; 9072 if (!HandleLValueDirectBase(Info, E, Subobject, CD, Base, &Layout)) 9073 return false; 9074 if (!HandleClassZeroInitialization(Info, E, Base, Subobject, 9075 Result.getStructBase(Index))) 9076 return false; 9077 } 9078 } 9079 9080 for (const auto *I : RD->fields()) { 9081 // -- if T is a reference type, no initialization is performed. 9082 if (I->getType()->isReferenceType()) 9083 continue; 9084 9085 LValue Subobject = This; 9086 if (!HandleLValueMember(Info, E, Subobject, I, &Layout)) 9087 return false; 9088 9089 ImplicitValueInitExpr VIE(I->getType()); 9090 if (!EvaluateInPlace( 9091 Result.getStructField(I->getFieldIndex()), Info, Subobject, &VIE)) 9092 return false; 9093 } 9094 9095 return true; 9096 } 9097 9098 bool RecordExprEvaluator::ZeroInitialization(const Expr *E, QualType T) { 9099 const RecordDecl *RD = T->castAs<RecordType>()->getDecl(); 9100 if (RD->isInvalidDecl()) return false; 9101 if (RD->isUnion()) { 9102 // C++11 [dcl.init]p5: If T is a (possibly cv-qualified) union type, the 9103 // object's first non-static named data member is zero-initialized 9104 RecordDecl::field_iterator I = RD->field_begin(); 9105 if (I == RD->field_end()) { 9106 Result = APValue((const FieldDecl*)nullptr); 9107 return true; 9108 } 9109 9110 LValue Subobject = This; 9111 if (!HandleLValueMember(Info, E, Subobject, *I)) 9112 return false; 9113 Result = APValue(*I); 9114 ImplicitValueInitExpr VIE(I->getType()); 9115 return EvaluateInPlace(Result.getUnionValue(), Info, Subobject, &VIE); 9116 } 9117 9118 if (isa<CXXRecordDecl>(RD) && cast<CXXRecordDecl>(RD)->getNumVBases()) { 9119 Info.FFDiag(E, diag::note_constexpr_virtual_base) << RD; 9120 return false; 9121 } 9122 9123 return HandleClassZeroInitialization(Info, E, RD, This, Result); 9124 } 9125 9126 bool RecordExprEvaluator::VisitCastExpr(const CastExpr *E) { 9127 switch (E->getCastKind()) { 9128 default: 9129 return ExprEvaluatorBaseTy::VisitCastExpr(E); 9130 9131 case CK_ConstructorConversion: 9132 return Visit(E->getSubExpr()); 9133 9134 case CK_DerivedToBase: 9135 case CK_UncheckedDerivedToBase: { 9136 APValue DerivedObject; 9137 if (!Evaluate(DerivedObject, Info, E->getSubExpr())) 9138 return false; 9139 if (!DerivedObject.isStruct()) 9140 return Error(E->getSubExpr()); 9141 9142 // Derived-to-base rvalue conversion: just slice off the derived part. 9143 APValue *Value = &DerivedObject; 9144 const CXXRecordDecl *RD = E->getSubExpr()->getType()->getAsCXXRecordDecl(); 9145 for (CastExpr::path_const_iterator PathI = E->path_begin(), 9146 PathE = E->path_end(); PathI != PathE; ++PathI) { 9147 assert(!(*PathI)->isVirtual() && "record rvalue with virtual base"); 9148 const CXXRecordDecl *Base = (*PathI)->getType()->getAsCXXRecordDecl(); 9149 Value = &Value->getStructBase(getBaseIndex(RD, Base)); 9150 RD = Base; 9151 } 9152 Result = *Value; 9153 return true; 9154 } 9155 } 9156 } 9157 9158 bool RecordExprEvaluator::VisitInitListExpr(const InitListExpr *E) { 9159 if (E->isTransparent()) 9160 return Visit(E->getInit(0)); 9161 9162 const RecordDecl *RD = E->getType()->castAs<RecordType>()->getDecl(); 9163 if (RD->isInvalidDecl()) return false; 9164 const ASTRecordLayout &Layout = Info.Ctx.getASTRecordLayout(RD); 9165 auto *CXXRD = dyn_cast<CXXRecordDecl>(RD); 9166 9167 EvalInfo::EvaluatingConstructorRAII EvalObj( 9168 Info, 9169 ObjectUnderConstruction{This.getLValueBase(), This.Designator.Entries}, 9170 CXXRD && CXXRD->getNumBases()); 9171 9172 if (RD->isUnion()) { 9173 const FieldDecl *Field = E->getInitializedFieldInUnion(); 9174 Result = APValue(Field); 9175 if (!Field) 9176 return true; 9177 9178 // If the initializer list for a union does not contain any elements, the 9179 // first element of the union is value-initialized. 9180 // FIXME: The element should be initialized from an initializer list. 9181 // Is this difference ever observable for initializer lists which 9182 // we don't build? 9183 ImplicitValueInitExpr VIE(Field->getType()); 9184 const Expr *InitExpr = E->getNumInits() ? E->getInit(0) : &VIE; 9185 9186 LValue Subobject = This; 9187 if (!HandleLValueMember(Info, InitExpr, Subobject, Field, &Layout)) 9188 return false; 9189 9190 // Temporarily override This, in case there's a CXXDefaultInitExpr in here. 9191 ThisOverrideRAII ThisOverride(*Info.CurrentCall, &This, 9192 isa<CXXDefaultInitExpr>(InitExpr)); 9193 9194 return EvaluateInPlace(Result.getUnionValue(), Info, Subobject, InitExpr); 9195 } 9196 9197 if (!Result.hasValue()) 9198 Result = APValue(APValue::UninitStruct(), CXXRD ? CXXRD->getNumBases() : 0, 9199 std::distance(RD->field_begin(), RD->field_end())); 9200 unsigned ElementNo = 0; 9201 bool Success = true; 9202 9203 // Initialize base classes. 9204 if (CXXRD && CXXRD->getNumBases()) { 9205 for (const auto &Base : CXXRD->bases()) { 9206 assert(ElementNo < E->getNumInits() && "missing init for base class"); 9207 const Expr *Init = E->getInit(ElementNo); 9208 9209 LValue Subobject = This; 9210 if (!HandleLValueBase(Info, Init, Subobject, CXXRD, &Base)) 9211 return false; 9212 9213 APValue &FieldVal = Result.getStructBase(ElementNo); 9214 if (!EvaluateInPlace(FieldVal, Info, Subobject, Init)) { 9215 if (!Info.noteFailure()) 9216 return false; 9217 Success = false; 9218 } 9219 ++ElementNo; 9220 } 9221 9222 EvalObj.finishedConstructingBases(); 9223 } 9224 9225 // Initialize members. 9226 for (const auto *Field : RD->fields()) { 9227 // Anonymous bit-fields are not considered members of the class for 9228 // purposes of aggregate initialization. 9229 if (Field->isUnnamedBitfield()) 9230 continue; 9231 9232 LValue Subobject = This; 9233 9234 bool HaveInit = ElementNo < E->getNumInits(); 9235 9236 // FIXME: Diagnostics here should point to the end of the initializer 9237 // list, not the start. 9238 if (!HandleLValueMember(Info, HaveInit ? E->getInit(ElementNo) : E, 9239 Subobject, Field, &Layout)) 9240 return false; 9241 9242 // Perform an implicit value-initialization for members beyond the end of 9243 // the initializer list. 9244 ImplicitValueInitExpr VIE(HaveInit ? Info.Ctx.IntTy : Field->getType()); 9245 const Expr *Init = HaveInit ? E->getInit(ElementNo++) : &VIE; 9246 9247 // Temporarily override This, in case there's a CXXDefaultInitExpr in here. 9248 ThisOverrideRAII ThisOverride(*Info.CurrentCall, &This, 9249 isa<CXXDefaultInitExpr>(Init)); 9250 9251 APValue &FieldVal = Result.getStructField(Field->getFieldIndex()); 9252 if (!EvaluateInPlace(FieldVal, Info, Subobject, Init) || 9253 (Field->isBitField() && !truncateBitfieldValue(Info, Init, 9254 FieldVal, Field))) { 9255 if (!Info.noteFailure()) 9256 return false; 9257 Success = false; 9258 } 9259 } 9260 9261 EvalObj.finishedConstructingFields(); 9262 9263 return Success; 9264 } 9265 9266 bool RecordExprEvaluator::VisitCXXConstructExpr(const CXXConstructExpr *E, 9267 QualType T) { 9268 // Note that E's type is not necessarily the type of our class here; we might 9269 // be initializing an array element instead. 9270 const CXXConstructorDecl *FD = E->getConstructor(); 9271 if (FD->isInvalidDecl() || FD->getParent()->isInvalidDecl()) return false; 9272 9273 bool ZeroInit = E->requiresZeroInitialization(); 9274 if (CheckTrivialDefaultConstructor(Info, E->getExprLoc(), FD, ZeroInit)) { 9275 // If we've already performed zero-initialization, we're already done. 9276 if (Result.hasValue()) 9277 return true; 9278 9279 if (ZeroInit) 9280 return ZeroInitialization(E, T); 9281 9282 Result = getDefaultInitValue(T); 9283 return true; 9284 } 9285 9286 const FunctionDecl *Definition = nullptr; 9287 auto Body = FD->getBody(Definition); 9288 9289 if (!CheckConstexprFunction(Info, E->getExprLoc(), FD, Definition, Body)) 9290 return false; 9291 9292 // Avoid materializing a temporary for an elidable copy/move constructor. 9293 if (E->isElidable() && !ZeroInit) 9294 if (const MaterializeTemporaryExpr *ME 9295 = dyn_cast<MaterializeTemporaryExpr>(E->getArg(0))) 9296 return Visit(ME->getSubExpr()); 9297 9298 if (ZeroInit && !ZeroInitialization(E, T)) 9299 return false; 9300 9301 auto Args = llvm::makeArrayRef(E->getArgs(), E->getNumArgs()); 9302 return HandleConstructorCall(E, This, Args, 9303 cast<CXXConstructorDecl>(Definition), Info, 9304 Result); 9305 } 9306 9307 bool RecordExprEvaluator::VisitCXXInheritedCtorInitExpr( 9308 const CXXInheritedCtorInitExpr *E) { 9309 if (!Info.CurrentCall) { 9310 assert(Info.checkingPotentialConstantExpression()); 9311 return false; 9312 } 9313 9314 const CXXConstructorDecl *FD = E->getConstructor(); 9315 if (FD->isInvalidDecl() || FD->getParent()->isInvalidDecl()) 9316 return false; 9317 9318 const FunctionDecl *Definition = nullptr; 9319 auto Body = FD->getBody(Definition); 9320 9321 if (!CheckConstexprFunction(Info, E->getExprLoc(), FD, Definition, Body)) 9322 return false; 9323 9324 return HandleConstructorCall(E, This, Info.CurrentCall->Arguments, 9325 cast<CXXConstructorDecl>(Definition), Info, 9326 Result); 9327 } 9328 9329 bool RecordExprEvaluator::VisitCXXStdInitializerListExpr( 9330 const CXXStdInitializerListExpr *E) { 9331 const ConstantArrayType *ArrayType = 9332 Info.Ctx.getAsConstantArrayType(E->getSubExpr()->getType()); 9333 9334 LValue Array; 9335 if (!EvaluateLValue(E->getSubExpr(), Array, Info)) 9336 return false; 9337 9338 // Get a pointer to the first element of the array. 9339 Array.addArray(Info, E, ArrayType); 9340 9341 auto InvalidType = [&] { 9342 Info.FFDiag(E, diag::note_constexpr_unsupported_layout) 9343 << E->getType(); 9344 return false; 9345 }; 9346 9347 // FIXME: Perform the checks on the field types in SemaInit. 9348 RecordDecl *Record = E->getType()->castAs<RecordType>()->getDecl(); 9349 RecordDecl::field_iterator Field = Record->field_begin(); 9350 if (Field == Record->field_end()) 9351 return InvalidType(); 9352 9353 // Start pointer. 9354 if (!Field->getType()->isPointerType() || 9355 !Info.Ctx.hasSameType(Field->getType()->getPointeeType(), 9356 ArrayType->getElementType())) 9357 return InvalidType(); 9358 9359 // FIXME: What if the initializer_list type has base classes, etc? 9360 Result = APValue(APValue::UninitStruct(), 0, 2); 9361 Array.moveInto(Result.getStructField(0)); 9362 9363 if (++Field == Record->field_end()) 9364 return InvalidType(); 9365 9366 if (Field->getType()->isPointerType() && 9367 Info.Ctx.hasSameType(Field->getType()->getPointeeType(), 9368 ArrayType->getElementType())) { 9369 // End pointer. 9370 if (!HandleLValueArrayAdjustment(Info, E, Array, 9371 ArrayType->getElementType(), 9372 ArrayType->getSize().getZExtValue())) 9373 return false; 9374 Array.moveInto(Result.getStructField(1)); 9375 } else if (Info.Ctx.hasSameType(Field->getType(), Info.Ctx.getSizeType())) 9376 // Length. 9377 Result.getStructField(1) = APValue(APSInt(ArrayType->getSize())); 9378 else 9379 return InvalidType(); 9380 9381 if (++Field != Record->field_end()) 9382 return InvalidType(); 9383 9384 return true; 9385 } 9386 9387 bool RecordExprEvaluator::VisitLambdaExpr(const LambdaExpr *E) { 9388 const CXXRecordDecl *ClosureClass = E->getLambdaClass(); 9389 if (ClosureClass->isInvalidDecl()) 9390 return false; 9391 9392 const size_t NumFields = 9393 std::distance(ClosureClass->field_begin(), ClosureClass->field_end()); 9394 9395 assert(NumFields == (size_t)std::distance(E->capture_init_begin(), 9396 E->capture_init_end()) && 9397 "The number of lambda capture initializers should equal the number of " 9398 "fields within the closure type"); 9399 9400 Result = APValue(APValue::UninitStruct(), /*NumBases*/0, NumFields); 9401 // Iterate through all the lambda's closure object's fields and initialize 9402 // them. 9403 auto *CaptureInitIt = E->capture_init_begin(); 9404 const LambdaCapture *CaptureIt = ClosureClass->captures_begin(); 9405 bool Success = true; 9406 for (const auto *Field : ClosureClass->fields()) { 9407 assert(CaptureInitIt != E->capture_init_end()); 9408 // Get the initializer for this field 9409 Expr *const CurFieldInit = *CaptureInitIt++; 9410 9411 // If there is no initializer, either this is a VLA or an error has 9412 // occurred. 9413 if (!CurFieldInit) 9414 return Error(E); 9415 9416 APValue &FieldVal = Result.getStructField(Field->getFieldIndex()); 9417 if (!EvaluateInPlace(FieldVal, Info, This, CurFieldInit)) { 9418 if (!Info.keepEvaluatingAfterFailure()) 9419 return false; 9420 Success = false; 9421 } 9422 ++CaptureIt; 9423 } 9424 return Success; 9425 } 9426 9427 static bool EvaluateRecord(const Expr *E, const LValue &This, 9428 APValue &Result, EvalInfo &Info) { 9429 assert(E->isRValue() && E->getType()->isRecordType() && 9430 "can't evaluate expression as a record rvalue"); 9431 return RecordExprEvaluator(Info, This, Result).Visit(E); 9432 } 9433 9434 //===----------------------------------------------------------------------===// 9435 // Temporary Evaluation 9436 // 9437 // Temporaries are represented in the AST as rvalues, but generally behave like 9438 // lvalues. The full-object of which the temporary is a subobject is implicitly 9439 // materialized so that a reference can bind to it. 9440 //===----------------------------------------------------------------------===// 9441 namespace { 9442 class TemporaryExprEvaluator 9443 : public LValueExprEvaluatorBase<TemporaryExprEvaluator> { 9444 public: 9445 TemporaryExprEvaluator(EvalInfo &Info, LValue &Result) : 9446 LValueExprEvaluatorBaseTy(Info, Result, false) {} 9447 9448 /// Visit an expression which constructs the value of this temporary. 9449 bool VisitConstructExpr(const Expr *E) { 9450 APValue &Value = 9451 Info.CurrentCall->createTemporary(E, E->getType(), false, Result); 9452 return EvaluateInPlace(Value, Info, Result, E); 9453 } 9454 9455 bool VisitCastExpr(const CastExpr *E) { 9456 switch (E->getCastKind()) { 9457 default: 9458 return LValueExprEvaluatorBaseTy::VisitCastExpr(E); 9459 9460 case CK_ConstructorConversion: 9461 return VisitConstructExpr(E->getSubExpr()); 9462 } 9463 } 9464 bool VisitInitListExpr(const InitListExpr *E) { 9465 return VisitConstructExpr(E); 9466 } 9467 bool VisitCXXConstructExpr(const CXXConstructExpr *E) { 9468 return VisitConstructExpr(E); 9469 } 9470 bool VisitCallExpr(const CallExpr *E) { 9471 return VisitConstructExpr(E); 9472 } 9473 bool VisitCXXStdInitializerListExpr(const CXXStdInitializerListExpr *E) { 9474 return VisitConstructExpr(E); 9475 } 9476 bool VisitLambdaExpr(const LambdaExpr *E) { 9477 return VisitConstructExpr(E); 9478 } 9479 }; 9480 } // end anonymous namespace 9481 9482 /// Evaluate an expression of record type as a temporary. 9483 static bool EvaluateTemporary(const Expr *E, LValue &Result, EvalInfo &Info) { 9484 assert(E->isRValue() && E->getType()->isRecordType()); 9485 return TemporaryExprEvaluator(Info, Result).Visit(E); 9486 } 9487 9488 //===----------------------------------------------------------------------===// 9489 // Vector Evaluation 9490 //===----------------------------------------------------------------------===// 9491 9492 namespace { 9493 class VectorExprEvaluator 9494 : public ExprEvaluatorBase<VectorExprEvaluator> { 9495 APValue &Result; 9496 public: 9497 9498 VectorExprEvaluator(EvalInfo &info, APValue &Result) 9499 : ExprEvaluatorBaseTy(info), Result(Result) {} 9500 9501 bool Success(ArrayRef<APValue> V, const Expr *E) { 9502 assert(V.size() == E->getType()->castAs<VectorType>()->getNumElements()); 9503 // FIXME: remove this APValue copy. 9504 Result = APValue(V.data(), V.size()); 9505 return true; 9506 } 9507 bool Success(const APValue &V, const Expr *E) { 9508 assert(V.isVector()); 9509 Result = V; 9510 return true; 9511 } 9512 bool ZeroInitialization(const Expr *E); 9513 9514 bool VisitUnaryReal(const UnaryOperator *E) 9515 { return Visit(E->getSubExpr()); } 9516 bool VisitCastExpr(const CastExpr* E); 9517 bool VisitInitListExpr(const InitListExpr *E); 9518 bool VisitUnaryImag(const UnaryOperator *E); 9519 // FIXME: Missing: unary -, unary ~, binary add/sub/mul/div, 9520 // binary comparisons, binary and/or/xor, 9521 // conditional operator (for GNU conditional select), 9522 // shufflevector, ExtVectorElementExpr 9523 }; 9524 } // end anonymous namespace 9525 9526 static bool EvaluateVector(const Expr* E, APValue& Result, EvalInfo &Info) { 9527 assert(E->isRValue() && E->getType()->isVectorType() &&"not a vector rvalue"); 9528 return VectorExprEvaluator(Info, Result).Visit(E); 9529 } 9530 9531 bool VectorExprEvaluator::VisitCastExpr(const CastExpr *E) { 9532 const VectorType *VTy = E->getType()->castAs<VectorType>(); 9533 unsigned NElts = VTy->getNumElements(); 9534 9535 const Expr *SE = E->getSubExpr(); 9536 QualType SETy = SE->getType(); 9537 9538 switch (E->getCastKind()) { 9539 case CK_VectorSplat: { 9540 APValue Val = APValue(); 9541 if (SETy->isIntegerType()) { 9542 APSInt IntResult; 9543 if (!EvaluateInteger(SE, IntResult, Info)) 9544 return false; 9545 Val = APValue(std::move(IntResult)); 9546 } else if (SETy->isRealFloatingType()) { 9547 APFloat FloatResult(0.0); 9548 if (!EvaluateFloat(SE, FloatResult, Info)) 9549 return false; 9550 Val = APValue(std::move(FloatResult)); 9551 } else { 9552 return Error(E); 9553 } 9554 9555 // Splat and create vector APValue. 9556 SmallVector<APValue, 4> Elts(NElts, Val); 9557 return Success(Elts, E); 9558 } 9559 case CK_BitCast: { 9560 // Evaluate the operand into an APInt we can extract from. 9561 llvm::APInt SValInt; 9562 if (!EvalAndBitcastToAPInt(Info, SE, SValInt)) 9563 return false; 9564 // Extract the elements 9565 QualType EltTy = VTy->getElementType(); 9566 unsigned EltSize = Info.Ctx.getTypeSize(EltTy); 9567 bool BigEndian = Info.Ctx.getTargetInfo().isBigEndian(); 9568 SmallVector<APValue, 4> Elts; 9569 if (EltTy->isRealFloatingType()) { 9570 const llvm::fltSemantics &Sem = Info.Ctx.getFloatTypeSemantics(EltTy); 9571 unsigned FloatEltSize = EltSize; 9572 if (&Sem == &APFloat::x87DoubleExtended()) 9573 FloatEltSize = 80; 9574 for (unsigned i = 0; i < NElts; i++) { 9575 llvm::APInt Elt; 9576 if (BigEndian) 9577 Elt = SValInt.rotl(i*EltSize+FloatEltSize).trunc(FloatEltSize); 9578 else 9579 Elt = SValInt.rotr(i*EltSize).trunc(FloatEltSize); 9580 Elts.push_back(APValue(APFloat(Sem, Elt))); 9581 } 9582 } else if (EltTy->isIntegerType()) { 9583 for (unsigned i = 0; i < NElts; i++) { 9584 llvm::APInt Elt; 9585 if (BigEndian) 9586 Elt = SValInt.rotl(i*EltSize+EltSize).zextOrTrunc(EltSize); 9587 else 9588 Elt = SValInt.rotr(i*EltSize).zextOrTrunc(EltSize); 9589 Elts.push_back(APValue(APSInt(Elt, EltTy->isSignedIntegerType()))); 9590 } 9591 } else { 9592 return Error(E); 9593 } 9594 return Success(Elts, E); 9595 } 9596 default: 9597 return ExprEvaluatorBaseTy::VisitCastExpr(E); 9598 } 9599 } 9600 9601 bool 9602 VectorExprEvaluator::VisitInitListExpr(const InitListExpr *E) { 9603 const VectorType *VT = E->getType()->castAs<VectorType>(); 9604 unsigned NumInits = E->getNumInits(); 9605 unsigned NumElements = VT->getNumElements(); 9606 9607 QualType EltTy = VT->getElementType(); 9608 SmallVector<APValue, 4> Elements; 9609 9610 // The number of initializers can be less than the number of 9611 // vector elements. For OpenCL, this can be due to nested vector 9612 // initialization. For GCC compatibility, missing trailing elements 9613 // should be initialized with zeroes. 9614 unsigned CountInits = 0, CountElts = 0; 9615 while (CountElts < NumElements) { 9616 // Handle nested vector initialization. 9617 if (CountInits < NumInits 9618 && E->getInit(CountInits)->getType()->isVectorType()) { 9619 APValue v; 9620 if (!EvaluateVector(E->getInit(CountInits), v, Info)) 9621 return Error(E); 9622 unsigned vlen = v.getVectorLength(); 9623 for (unsigned j = 0; j < vlen; j++) 9624 Elements.push_back(v.getVectorElt(j)); 9625 CountElts += vlen; 9626 } else if (EltTy->isIntegerType()) { 9627 llvm::APSInt sInt(32); 9628 if (CountInits < NumInits) { 9629 if (!EvaluateInteger(E->getInit(CountInits), sInt, Info)) 9630 return false; 9631 } else // trailing integer zero. 9632 sInt = Info.Ctx.MakeIntValue(0, EltTy); 9633 Elements.push_back(APValue(sInt)); 9634 CountElts++; 9635 } else { 9636 llvm::APFloat f(0.0); 9637 if (CountInits < NumInits) { 9638 if (!EvaluateFloat(E->getInit(CountInits), f, Info)) 9639 return false; 9640 } else // trailing float zero. 9641 f = APFloat::getZero(Info.Ctx.getFloatTypeSemantics(EltTy)); 9642 Elements.push_back(APValue(f)); 9643 CountElts++; 9644 } 9645 CountInits++; 9646 } 9647 return Success(Elements, E); 9648 } 9649 9650 bool 9651 VectorExprEvaluator::ZeroInitialization(const Expr *E) { 9652 const auto *VT = E->getType()->castAs<VectorType>(); 9653 QualType EltTy = VT->getElementType(); 9654 APValue ZeroElement; 9655 if (EltTy->isIntegerType()) 9656 ZeroElement = APValue(Info.Ctx.MakeIntValue(0, EltTy)); 9657 else 9658 ZeroElement = 9659 APValue(APFloat::getZero(Info.Ctx.getFloatTypeSemantics(EltTy))); 9660 9661 SmallVector<APValue, 4> Elements(VT->getNumElements(), ZeroElement); 9662 return Success(Elements, E); 9663 } 9664 9665 bool VectorExprEvaluator::VisitUnaryImag(const UnaryOperator *E) { 9666 VisitIgnoredValue(E->getSubExpr()); 9667 return ZeroInitialization(E); 9668 } 9669 9670 //===----------------------------------------------------------------------===// 9671 // Array Evaluation 9672 //===----------------------------------------------------------------------===// 9673 9674 namespace { 9675 class ArrayExprEvaluator 9676 : public ExprEvaluatorBase<ArrayExprEvaluator> { 9677 const LValue &This; 9678 APValue &Result; 9679 public: 9680 9681 ArrayExprEvaluator(EvalInfo &Info, const LValue &This, APValue &Result) 9682 : ExprEvaluatorBaseTy(Info), This(This), Result(Result) {} 9683 9684 bool Success(const APValue &V, const Expr *E) { 9685 assert(V.isArray() && "expected array"); 9686 Result = V; 9687 return true; 9688 } 9689 9690 bool ZeroInitialization(const Expr *E) { 9691 const ConstantArrayType *CAT = 9692 Info.Ctx.getAsConstantArrayType(E->getType()); 9693 if (!CAT) 9694 return Error(E); 9695 9696 Result = APValue(APValue::UninitArray(), 0, 9697 CAT->getSize().getZExtValue()); 9698 if (!Result.hasArrayFiller()) return true; 9699 9700 // Zero-initialize all elements. 9701 LValue Subobject = This; 9702 Subobject.addArray(Info, E, CAT); 9703 ImplicitValueInitExpr VIE(CAT->getElementType()); 9704 return EvaluateInPlace(Result.getArrayFiller(), Info, Subobject, &VIE); 9705 } 9706 9707 bool VisitCallExpr(const CallExpr *E) { 9708 return handleCallExpr(E, Result, &This); 9709 } 9710 bool VisitInitListExpr(const InitListExpr *E, 9711 QualType AllocType = QualType()); 9712 bool VisitArrayInitLoopExpr(const ArrayInitLoopExpr *E); 9713 bool VisitCXXConstructExpr(const CXXConstructExpr *E); 9714 bool VisitCXXConstructExpr(const CXXConstructExpr *E, 9715 const LValue &Subobject, 9716 APValue *Value, QualType Type); 9717 bool VisitStringLiteral(const StringLiteral *E, 9718 QualType AllocType = QualType()) { 9719 expandStringLiteral(Info, E, Result, AllocType); 9720 return true; 9721 } 9722 }; 9723 } // end anonymous namespace 9724 9725 static bool EvaluateArray(const Expr *E, const LValue &This, 9726 APValue &Result, EvalInfo &Info) { 9727 assert(E->isRValue() && E->getType()->isArrayType() && "not an array rvalue"); 9728 return ArrayExprEvaluator(Info, This, Result).Visit(E); 9729 } 9730 9731 static bool EvaluateArrayNewInitList(EvalInfo &Info, LValue &This, 9732 APValue &Result, const InitListExpr *ILE, 9733 QualType AllocType) { 9734 assert(ILE->isRValue() && ILE->getType()->isArrayType() && 9735 "not an array rvalue"); 9736 return ArrayExprEvaluator(Info, This, Result) 9737 .VisitInitListExpr(ILE, AllocType); 9738 } 9739 9740 static bool EvaluateArrayNewConstructExpr(EvalInfo &Info, LValue &This, 9741 APValue &Result, 9742 const CXXConstructExpr *CCE, 9743 QualType AllocType) { 9744 assert(CCE->isRValue() && CCE->getType()->isArrayType() && 9745 "not an array rvalue"); 9746 return ArrayExprEvaluator(Info, This, Result) 9747 .VisitCXXConstructExpr(CCE, This, &Result, AllocType); 9748 } 9749 9750 // Return true iff the given array filler may depend on the element index. 9751 static bool MaybeElementDependentArrayFiller(const Expr *FillerExpr) { 9752 // For now, just whitelist non-class value-initialization and initialization 9753 // lists comprised of them. 9754 if (isa<ImplicitValueInitExpr>(FillerExpr)) 9755 return false; 9756 if (const InitListExpr *ILE = dyn_cast<InitListExpr>(FillerExpr)) { 9757 for (unsigned I = 0, E = ILE->getNumInits(); I != E; ++I) { 9758 if (MaybeElementDependentArrayFiller(ILE->getInit(I))) 9759 return true; 9760 } 9761 return false; 9762 } 9763 return true; 9764 } 9765 9766 bool ArrayExprEvaluator::VisitInitListExpr(const InitListExpr *E, 9767 QualType AllocType) { 9768 const ConstantArrayType *CAT = Info.Ctx.getAsConstantArrayType( 9769 AllocType.isNull() ? E->getType() : AllocType); 9770 if (!CAT) 9771 return Error(E); 9772 9773 // C++11 [dcl.init.string]p1: A char array [...] can be initialized by [...] 9774 // an appropriately-typed string literal enclosed in braces. 9775 if (E->isStringLiteralInit()) { 9776 auto *SL = dyn_cast<StringLiteral>(E->getInit(0)->IgnoreParens()); 9777 // FIXME: Support ObjCEncodeExpr here once we support it in 9778 // ArrayExprEvaluator generally. 9779 if (!SL) 9780 return Error(E); 9781 return VisitStringLiteral(SL, AllocType); 9782 } 9783 9784 bool Success = true; 9785 9786 assert((!Result.isArray() || Result.getArrayInitializedElts() == 0) && 9787 "zero-initialized array shouldn't have any initialized elts"); 9788 APValue Filler; 9789 if (Result.isArray() && Result.hasArrayFiller()) 9790 Filler = Result.getArrayFiller(); 9791 9792 unsigned NumEltsToInit = E->getNumInits(); 9793 unsigned NumElts = CAT->getSize().getZExtValue(); 9794 const Expr *FillerExpr = E->hasArrayFiller() ? E->getArrayFiller() : nullptr; 9795 9796 // If the initializer might depend on the array index, run it for each 9797 // array element. 9798 if (NumEltsToInit != NumElts && MaybeElementDependentArrayFiller(FillerExpr)) 9799 NumEltsToInit = NumElts; 9800 9801 LLVM_DEBUG(llvm::dbgs() << "The number of elements to initialize: " 9802 << NumEltsToInit << ".\n"); 9803 9804 Result = APValue(APValue::UninitArray(), NumEltsToInit, NumElts); 9805 9806 // If the array was previously zero-initialized, preserve the 9807 // zero-initialized values. 9808 if (Filler.hasValue()) { 9809 for (unsigned I = 0, E = Result.getArrayInitializedElts(); I != E; ++I) 9810 Result.getArrayInitializedElt(I) = Filler; 9811 if (Result.hasArrayFiller()) 9812 Result.getArrayFiller() = Filler; 9813 } 9814 9815 LValue Subobject = This; 9816 Subobject.addArray(Info, E, CAT); 9817 for (unsigned Index = 0; Index != NumEltsToInit; ++Index) { 9818 const Expr *Init = 9819 Index < E->getNumInits() ? E->getInit(Index) : FillerExpr; 9820 if (!EvaluateInPlace(Result.getArrayInitializedElt(Index), 9821 Info, Subobject, Init) || 9822 !HandleLValueArrayAdjustment(Info, Init, Subobject, 9823 CAT->getElementType(), 1)) { 9824 if (!Info.noteFailure()) 9825 return false; 9826 Success = false; 9827 } 9828 } 9829 9830 if (!Result.hasArrayFiller()) 9831 return Success; 9832 9833 // If we get here, we have a trivial filler, which we can just evaluate 9834 // once and splat over the rest of the array elements. 9835 assert(FillerExpr && "no array filler for incomplete init list"); 9836 return EvaluateInPlace(Result.getArrayFiller(), Info, Subobject, 9837 FillerExpr) && Success; 9838 } 9839 9840 bool ArrayExprEvaluator::VisitArrayInitLoopExpr(const ArrayInitLoopExpr *E) { 9841 LValue CommonLV; 9842 if (E->getCommonExpr() && 9843 !Evaluate(Info.CurrentCall->createTemporary( 9844 E->getCommonExpr(), 9845 getStorageType(Info.Ctx, E->getCommonExpr()), false, 9846 CommonLV), 9847 Info, E->getCommonExpr()->getSourceExpr())) 9848 return false; 9849 9850 auto *CAT = cast<ConstantArrayType>(E->getType()->castAsArrayTypeUnsafe()); 9851 9852 uint64_t Elements = CAT->getSize().getZExtValue(); 9853 Result = APValue(APValue::UninitArray(), Elements, Elements); 9854 9855 LValue Subobject = This; 9856 Subobject.addArray(Info, E, CAT); 9857 9858 bool Success = true; 9859 for (EvalInfo::ArrayInitLoopIndex Index(Info); Index != Elements; ++Index) { 9860 if (!EvaluateInPlace(Result.getArrayInitializedElt(Index), 9861 Info, Subobject, E->getSubExpr()) || 9862 !HandleLValueArrayAdjustment(Info, E, Subobject, 9863 CAT->getElementType(), 1)) { 9864 if (!Info.noteFailure()) 9865 return false; 9866 Success = false; 9867 } 9868 } 9869 9870 return Success; 9871 } 9872 9873 bool ArrayExprEvaluator::VisitCXXConstructExpr(const CXXConstructExpr *E) { 9874 return VisitCXXConstructExpr(E, This, &Result, E->getType()); 9875 } 9876 9877 bool ArrayExprEvaluator::VisitCXXConstructExpr(const CXXConstructExpr *E, 9878 const LValue &Subobject, 9879 APValue *Value, 9880 QualType Type) { 9881 bool HadZeroInit = Value->hasValue(); 9882 9883 if (const ConstantArrayType *CAT = Info.Ctx.getAsConstantArrayType(Type)) { 9884 unsigned N = CAT->getSize().getZExtValue(); 9885 9886 // Preserve the array filler if we had prior zero-initialization. 9887 APValue Filler = 9888 HadZeroInit && Value->hasArrayFiller() ? Value->getArrayFiller() 9889 : APValue(); 9890 9891 *Value = APValue(APValue::UninitArray(), N, N); 9892 9893 if (HadZeroInit) 9894 for (unsigned I = 0; I != N; ++I) 9895 Value->getArrayInitializedElt(I) = Filler; 9896 9897 // Initialize the elements. 9898 LValue ArrayElt = Subobject; 9899 ArrayElt.addArray(Info, E, CAT); 9900 for (unsigned I = 0; I != N; ++I) 9901 if (!VisitCXXConstructExpr(E, ArrayElt, &Value->getArrayInitializedElt(I), 9902 CAT->getElementType()) || 9903 !HandleLValueArrayAdjustment(Info, E, ArrayElt, 9904 CAT->getElementType(), 1)) 9905 return false; 9906 9907 return true; 9908 } 9909 9910 if (!Type->isRecordType()) 9911 return Error(E); 9912 9913 return RecordExprEvaluator(Info, Subobject, *Value) 9914 .VisitCXXConstructExpr(E, Type); 9915 } 9916 9917 //===----------------------------------------------------------------------===// 9918 // Integer Evaluation 9919 // 9920 // As a GNU extension, we support casting pointers to sufficiently-wide integer 9921 // types and back in constant folding. Integer values are thus represented 9922 // either as an integer-valued APValue, or as an lvalue-valued APValue. 9923 //===----------------------------------------------------------------------===// 9924 9925 namespace { 9926 class IntExprEvaluator 9927 : public ExprEvaluatorBase<IntExprEvaluator> { 9928 APValue &Result; 9929 public: 9930 IntExprEvaluator(EvalInfo &info, APValue &result) 9931 : ExprEvaluatorBaseTy(info), Result(result) {} 9932 9933 bool Success(const llvm::APSInt &SI, const Expr *E, APValue &Result) { 9934 assert(E->getType()->isIntegralOrEnumerationType() && 9935 "Invalid evaluation result."); 9936 assert(SI.isSigned() == E->getType()->isSignedIntegerOrEnumerationType() && 9937 "Invalid evaluation result."); 9938 assert(SI.getBitWidth() == Info.Ctx.getIntWidth(E->getType()) && 9939 "Invalid evaluation result."); 9940 Result = APValue(SI); 9941 return true; 9942 } 9943 bool Success(const llvm::APSInt &SI, const Expr *E) { 9944 return Success(SI, E, Result); 9945 } 9946 9947 bool Success(const llvm::APInt &I, const Expr *E, APValue &Result) { 9948 assert(E->getType()->isIntegralOrEnumerationType() && 9949 "Invalid evaluation result."); 9950 assert(I.getBitWidth() == Info.Ctx.getIntWidth(E->getType()) && 9951 "Invalid evaluation result."); 9952 Result = APValue(APSInt(I)); 9953 Result.getInt().setIsUnsigned( 9954 E->getType()->isUnsignedIntegerOrEnumerationType()); 9955 return true; 9956 } 9957 bool Success(const llvm::APInt &I, const Expr *E) { 9958 return Success(I, E, Result); 9959 } 9960 9961 bool Success(uint64_t Value, const Expr *E, APValue &Result) { 9962 assert(E->getType()->isIntegralOrEnumerationType() && 9963 "Invalid evaluation result."); 9964 Result = APValue(Info.Ctx.MakeIntValue(Value, E->getType())); 9965 return true; 9966 } 9967 bool Success(uint64_t Value, const Expr *E) { 9968 return Success(Value, E, Result); 9969 } 9970 9971 bool Success(CharUnits Size, const Expr *E) { 9972 return Success(Size.getQuantity(), E); 9973 } 9974 9975 bool Success(const APValue &V, const Expr *E) { 9976 if (V.isLValue() || V.isAddrLabelDiff() || V.isIndeterminate()) { 9977 Result = V; 9978 return true; 9979 } 9980 return Success(V.getInt(), E); 9981 } 9982 9983 bool ZeroInitialization(const Expr *E) { return Success(0, E); } 9984 9985 //===--------------------------------------------------------------------===// 9986 // Visitor Methods 9987 //===--------------------------------------------------------------------===// 9988 9989 bool VisitConstantExpr(const ConstantExpr *E); 9990 9991 bool VisitIntegerLiteral(const IntegerLiteral *E) { 9992 return Success(E->getValue(), E); 9993 } 9994 bool VisitCharacterLiteral(const CharacterLiteral *E) { 9995 return Success(E->getValue(), E); 9996 } 9997 9998 bool CheckReferencedDecl(const Expr *E, const Decl *D); 9999 bool VisitDeclRefExpr(const DeclRefExpr *E) { 10000 if (CheckReferencedDecl(E, E->getDecl())) 10001 return true; 10002 10003 return ExprEvaluatorBaseTy::VisitDeclRefExpr(E); 10004 } 10005 bool VisitMemberExpr(const MemberExpr *E) { 10006 if (CheckReferencedDecl(E, E->getMemberDecl())) { 10007 VisitIgnoredBaseExpression(E->getBase()); 10008 return true; 10009 } 10010 10011 return ExprEvaluatorBaseTy::VisitMemberExpr(E); 10012 } 10013 10014 bool VisitCallExpr(const CallExpr *E); 10015 bool VisitBuiltinCallExpr(const CallExpr *E, unsigned BuiltinOp); 10016 bool VisitBinaryOperator(const BinaryOperator *E); 10017 bool VisitOffsetOfExpr(const OffsetOfExpr *E); 10018 bool VisitUnaryOperator(const UnaryOperator *E); 10019 10020 bool VisitCastExpr(const CastExpr* E); 10021 bool VisitUnaryExprOrTypeTraitExpr(const UnaryExprOrTypeTraitExpr *E); 10022 10023 bool VisitCXXBoolLiteralExpr(const CXXBoolLiteralExpr *E) { 10024 return Success(E->getValue(), E); 10025 } 10026 10027 bool VisitObjCBoolLiteralExpr(const ObjCBoolLiteralExpr *E) { 10028 return Success(E->getValue(), E); 10029 } 10030 10031 bool VisitArrayInitIndexExpr(const ArrayInitIndexExpr *E) { 10032 if (Info.ArrayInitIndex == uint64_t(-1)) { 10033 // We were asked to evaluate this subexpression independent of the 10034 // enclosing ArrayInitLoopExpr. We can't do that. 10035 Info.FFDiag(E); 10036 return false; 10037 } 10038 return Success(Info.ArrayInitIndex, E); 10039 } 10040 10041 // Note, GNU defines __null as an integer, not a pointer. 10042 bool VisitGNUNullExpr(const GNUNullExpr *E) { 10043 return ZeroInitialization(E); 10044 } 10045 10046 bool VisitTypeTraitExpr(const TypeTraitExpr *E) { 10047 return Success(E->getValue(), E); 10048 } 10049 10050 bool VisitArrayTypeTraitExpr(const ArrayTypeTraitExpr *E) { 10051 return Success(E->getValue(), E); 10052 } 10053 10054 bool VisitExpressionTraitExpr(const ExpressionTraitExpr *E) { 10055 return Success(E->getValue(), E); 10056 } 10057 10058 bool VisitUnaryReal(const UnaryOperator *E); 10059 bool VisitUnaryImag(const UnaryOperator *E); 10060 10061 bool VisitCXXNoexceptExpr(const CXXNoexceptExpr *E); 10062 bool VisitSizeOfPackExpr(const SizeOfPackExpr *E); 10063 bool VisitSourceLocExpr(const SourceLocExpr *E); 10064 bool VisitConceptSpecializationExpr(const ConceptSpecializationExpr *E); 10065 bool VisitRequiresExpr(const RequiresExpr *E); 10066 // FIXME: Missing: array subscript of vector, member of vector 10067 }; 10068 10069 class FixedPointExprEvaluator 10070 : public ExprEvaluatorBase<FixedPointExprEvaluator> { 10071 APValue &Result; 10072 10073 public: 10074 FixedPointExprEvaluator(EvalInfo &info, APValue &result) 10075 : ExprEvaluatorBaseTy(info), Result(result) {} 10076 10077 bool Success(const llvm::APInt &I, const Expr *E) { 10078 return Success( 10079 APFixedPoint(I, Info.Ctx.getFixedPointSemantics(E->getType())), E); 10080 } 10081 10082 bool Success(uint64_t Value, const Expr *E) { 10083 return Success( 10084 APFixedPoint(Value, Info.Ctx.getFixedPointSemantics(E->getType())), E); 10085 } 10086 10087 bool Success(const APValue &V, const Expr *E) { 10088 return Success(V.getFixedPoint(), E); 10089 } 10090 10091 bool Success(const APFixedPoint &V, const Expr *E) { 10092 assert(E->getType()->isFixedPointType() && "Invalid evaluation result."); 10093 assert(V.getWidth() == Info.Ctx.getIntWidth(E->getType()) && 10094 "Invalid evaluation result."); 10095 Result = APValue(V); 10096 return true; 10097 } 10098 10099 //===--------------------------------------------------------------------===// 10100 // Visitor Methods 10101 //===--------------------------------------------------------------------===// 10102 10103 bool VisitFixedPointLiteral(const FixedPointLiteral *E) { 10104 return Success(E->getValue(), E); 10105 } 10106 10107 bool VisitCastExpr(const CastExpr *E); 10108 bool VisitUnaryOperator(const UnaryOperator *E); 10109 bool VisitBinaryOperator(const BinaryOperator *E); 10110 }; 10111 } // end anonymous namespace 10112 10113 /// EvaluateIntegerOrLValue - Evaluate an rvalue integral-typed expression, and 10114 /// produce either the integer value or a pointer. 10115 /// 10116 /// GCC has a heinous extension which folds casts between pointer types and 10117 /// pointer-sized integral types. We support this by allowing the evaluation of 10118 /// an integer rvalue to produce a pointer (represented as an lvalue) instead. 10119 /// Some simple arithmetic on such values is supported (they are treated much 10120 /// like char*). 10121 static bool EvaluateIntegerOrLValue(const Expr *E, APValue &Result, 10122 EvalInfo &Info) { 10123 assert(E->isRValue() && E->getType()->isIntegralOrEnumerationType()); 10124 return IntExprEvaluator(Info, Result).Visit(E); 10125 } 10126 10127 static bool EvaluateInteger(const Expr *E, APSInt &Result, EvalInfo &Info) { 10128 APValue Val; 10129 if (!EvaluateIntegerOrLValue(E, Val, Info)) 10130 return false; 10131 if (!Val.isInt()) { 10132 // FIXME: It would be better to produce the diagnostic for casting 10133 // a pointer to an integer. 10134 Info.FFDiag(E, diag::note_invalid_subexpr_in_const_expr); 10135 return false; 10136 } 10137 Result = Val.getInt(); 10138 return true; 10139 } 10140 10141 bool IntExprEvaluator::VisitSourceLocExpr(const SourceLocExpr *E) { 10142 APValue Evaluated = E->EvaluateInContext( 10143 Info.Ctx, Info.CurrentCall->CurSourceLocExprScope.getDefaultExpr()); 10144 return Success(Evaluated, E); 10145 } 10146 10147 static bool EvaluateFixedPoint(const Expr *E, APFixedPoint &Result, 10148 EvalInfo &Info) { 10149 if (E->getType()->isFixedPointType()) { 10150 APValue Val; 10151 if (!FixedPointExprEvaluator(Info, Val).Visit(E)) 10152 return false; 10153 if (!Val.isFixedPoint()) 10154 return false; 10155 10156 Result = Val.getFixedPoint(); 10157 return true; 10158 } 10159 return false; 10160 } 10161 10162 static bool EvaluateFixedPointOrInteger(const Expr *E, APFixedPoint &Result, 10163 EvalInfo &Info) { 10164 if (E->getType()->isIntegerType()) { 10165 auto FXSema = Info.Ctx.getFixedPointSemantics(E->getType()); 10166 APSInt Val; 10167 if (!EvaluateInteger(E, Val, Info)) 10168 return false; 10169 Result = APFixedPoint(Val, FXSema); 10170 return true; 10171 } else if (E->getType()->isFixedPointType()) { 10172 return EvaluateFixedPoint(E, Result, Info); 10173 } 10174 return false; 10175 } 10176 10177 /// Check whether the given declaration can be directly converted to an integral 10178 /// rvalue. If not, no diagnostic is produced; there are other things we can 10179 /// try. 10180 bool IntExprEvaluator::CheckReferencedDecl(const Expr* E, const Decl* D) { 10181 // Enums are integer constant exprs. 10182 if (const EnumConstantDecl *ECD = dyn_cast<EnumConstantDecl>(D)) { 10183 // Check for signedness/width mismatches between E type and ECD value. 10184 bool SameSign = (ECD->getInitVal().isSigned() 10185 == E->getType()->isSignedIntegerOrEnumerationType()); 10186 bool SameWidth = (ECD->getInitVal().getBitWidth() 10187 == Info.Ctx.getIntWidth(E->getType())); 10188 if (SameSign && SameWidth) 10189 return Success(ECD->getInitVal(), E); 10190 else { 10191 // Get rid of mismatch (otherwise Success assertions will fail) 10192 // by computing a new value matching the type of E. 10193 llvm::APSInt Val = ECD->getInitVal(); 10194 if (!SameSign) 10195 Val.setIsSigned(!ECD->getInitVal().isSigned()); 10196 if (!SameWidth) 10197 Val = Val.extOrTrunc(Info.Ctx.getIntWidth(E->getType())); 10198 return Success(Val, E); 10199 } 10200 } 10201 return false; 10202 } 10203 10204 /// Values returned by __builtin_classify_type, chosen to match the values 10205 /// produced by GCC's builtin. 10206 enum class GCCTypeClass { 10207 None = -1, 10208 Void = 0, 10209 Integer = 1, 10210 // GCC reserves 2 for character types, but instead classifies them as 10211 // integers. 10212 Enum = 3, 10213 Bool = 4, 10214 Pointer = 5, 10215 // GCC reserves 6 for references, but appears to never use it (because 10216 // expressions never have reference type, presumably). 10217 PointerToDataMember = 7, 10218 RealFloat = 8, 10219 Complex = 9, 10220 // GCC reserves 10 for functions, but does not use it since GCC version 6 due 10221 // to decay to pointer. (Prior to version 6 it was only used in C++ mode). 10222 // GCC claims to reserve 11 for pointers to member functions, but *actually* 10223 // uses 12 for that purpose, same as for a class or struct. Maybe it 10224 // internally implements a pointer to member as a struct? Who knows. 10225 PointerToMemberFunction = 12, // Not a bug, see above. 10226 ClassOrStruct = 12, 10227 Union = 13, 10228 // GCC reserves 14 for arrays, but does not use it since GCC version 6 due to 10229 // decay to pointer. (Prior to version 6 it was only used in C++ mode). 10230 // GCC reserves 15 for strings, but actually uses 5 (pointer) for string 10231 // literals. 10232 }; 10233 10234 /// EvaluateBuiltinClassifyType - Evaluate __builtin_classify_type the same way 10235 /// as GCC. 10236 static GCCTypeClass 10237 EvaluateBuiltinClassifyType(QualType T, const LangOptions &LangOpts) { 10238 assert(!T->isDependentType() && "unexpected dependent type"); 10239 10240 QualType CanTy = T.getCanonicalType(); 10241 const BuiltinType *BT = dyn_cast<BuiltinType>(CanTy); 10242 10243 switch (CanTy->getTypeClass()) { 10244 #define TYPE(ID, BASE) 10245 #define DEPENDENT_TYPE(ID, BASE) case Type::ID: 10246 #define NON_CANONICAL_TYPE(ID, BASE) case Type::ID: 10247 #define NON_CANONICAL_UNLESS_DEPENDENT_TYPE(ID, BASE) case Type::ID: 10248 #include "clang/AST/TypeNodes.inc" 10249 case Type::Auto: 10250 case Type::DeducedTemplateSpecialization: 10251 llvm_unreachable("unexpected non-canonical or dependent type"); 10252 10253 case Type::Builtin: 10254 switch (BT->getKind()) { 10255 #define BUILTIN_TYPE(ID, SINGLETON_ID) 10256 #define SIGNED_TYPE(ID, SINGLETON_ID) \ 10257 case BuiltinType::ID: return GCCTypeClass::Integer; 10258 #define FLOATING_TYPE(ID, SINGLETON_ID) \ 10259 case BuiltinType::ID: return GCCTypeClass::RealFloat; 10260 #define PLACEHOLDER_TYPE(ID, SINGLETON_ID) \ 10261 case BuiltinType::ID: break; 10262 #include "clang/AST/BuiltinTypes.def" 10263 case BuiltinType::Void: 10264 return GCCTypeClass::Void; 10265 10266 case BuiltinType::Bool: 10267 return GCCTypeClass::Bool; 10268 10269 case BuiltinType::Char_U: 10270 case BuiltinType::UChar: 10271 case BuiltinType::WChar_U: 10272 case BuiltinType::Char8: 10273 case BuiltinType::Char16: 10274 case BuiltinType::Char32: 10275 case BuiltinType::UShort: 10276 case BuiltinType::UInt: 10277 case BuiltinType::ULong: 10278 case BuiltinType::ULongLong: 10279 case BuiltinType::UInt128: 10280 return GCCTypeClass::Integer; 10281 10282 case BuiltinType::UShortAccum: 10283 case BuiltinType::UAccum: 10284 case BuiltinType::ULongAccum: 10285 case BuiltinType::UShortFract: 10286 case BuiltinType::UFract: 10287 case BuiltinType::ULongFract: 10288 case BuiltinType::SatUShortAccum: 10289 case BuiltinType::SatUAccum: 10290 case BuiltinType::SatULongAccum: 10291 case BuiltinType::SatUShortFract: 10292 case BuiltinType::SatUFract: 10293 case BuiltinType::SatULongFract: 10294 return GCCTypeClass::None; 10295 10296 case BuiltinType::NullPtr: 10297 10298 case BuiltinType::ObjCId: 10299 case BuiltinType::ObjCClass: 10300 case BuiltinType::ObjCSel: 10301 #define IMAGE_TYPE(ImgType, Id, SingletonId, Access, Suffix) \ 10302 case BuiltinType::Id: 10303 #include "clang/Basic/OpenCLImageTypes.def" 10304 #define EXT_OPAQUE_TYPE(ExtType, Id, Ext) \ 10305 case BuiltinType::Id: 10306 #include "clang/Basic/OpenCLExtensionTypes.def" 10307 case BuiltinType::OCLSampler: 10308 case BuiltinType::OCLEvent: 10309 case BuiltinType::OCLClkEvent: 10310 case BuiltinType::OCLQueue: 10311 case BuiltinType::OCLReserveID: 10312 #define SVE_TYPE(Name, Id, SingletonId) \ 10313 case BuiltinType::Id: 10314 #include "clang/Basic/AArch64SVEACLETypes.def" 10315 return GCCTypeClass::None; 10316 10317 case BuiltinType::Dependent: 10318 llvm_unreachable("unexpected dependent type"); 10319 }; 10320 llvm_unreachable("unexpected placeholder type"); 10321 10322 case Type::Enum: 10323 return LangOpts.CPlusPlus ? GCCTypeClass::Enum : GCCTypeClass::Integer; 10324 10325 case Type::Pointer: 10326 case Type::ConstantArray: 10327 case Type::VariableArray: 10328 case Type::IncompleteArray: 10329 case Type::FunctionNoProto: 10330 case Type::FunctionProto: 10331 return GCCTypeClass::Pointer; 10332 10333 case Type::MemberPointer: 10334 return CanTy->isMemberDataPointerType() 10335 ? GCCTypeClass::PointerToDataMember 10336 : GCCTypeClass::PointerToMemberFunction; 10337 10338 case Type::Complex: 10339 return GCCTypeClass::Complex; 10340 10341 case Type::Record: 10342 return CanTy->isUnionType() ? GCCTypeClass::Union 10343 : GCCTypeClass::ClassOrStruct; 10344 10345 case Type::Atomic: 10346 // GCC classifies _Atomic T the same as T. 10347 return EvaluateBuiltinClassifyType( 10348 CanTy->castAs<AtomicType>()->getValueType(), LangOpts); 10349 10350 case Type::BlockPointer: 10351 case Type::Vector: 10352 case Type::ExtVector: 10353 case Type::ObjCObject: 10354 case Type::ObjCInterface: 10355 case Type::ObjCObjectPointer: 10356 case Type::Pipe: 10357 case Type::ExtInt: 10358 // GCC classifies vectors as None. We follow its lead and classify all 10359 // other types that don't fit into the regular classification the same way. 10360 return GCCTypeClass::None; 10361 10362 case Type::LValueReference: 10363 case Type::RValueReference: 10364 llvm_unreachable("invalid type for expression"); 10365 } 10366 10367 llvm_unreachable("unexpected type class"); 10368 } 10369 10370 /// EvaluateBuiltinClassifyType - Evaluate __builtin_classify_type the same way 10371 /// as GCC. 10372 static GCCTypeClass 10373 EvaluateBuiltinClassifyType(const CallExpr *E, const LangOptions &LangOpts) { 10374 // If no argument was supplied, default to None. This isn't 10375 // ideal, however it is what gcc does. 10376 if (E->getNumArgs() == 0) 10377 return GCCTypeClass::None; 10378 10379 // FIXME: Bizarrely, GCC treats a call with more than one argument as not 10380 // being an ICE, but still folds it to a constant using the type of the first 10381 // argument. 10382 return EvaluateBuiltinClassifyType(E->getArg(0)->getType(), LangOpts); 10383 } 10384 10385 /// EvaluateBuiltinConstantPForLValue - Determine the result of 10386 /// __builtin_constant_p when applied to the given pointer. 10387 /// 10388 /// A pointer is only "constant" if it is null (or a pointer cast to integer) 10389 /// or it points to the first character of a string literal. 10390 static bool EvaluateBuiltinConstantPForLValue(const APValue &LV) { 10391 APValue::LValueBase Base = LV.getLValueBase(); 10392 if (Base.isNull()) { 10393 // A null base is acceptable. 10394 return true; 10395 } else if (const Expr *E = Base.dyn_cast<const Expr *>()) { 10396 if (!isa<StringLiteral>(E)) 10397 return false; 10398 return LV.getLValueOffset().isZero(); 10399 } else if (Base.is<TypeInfoLValue>()) { 10400 // Surprisingly, GCC considers __builtin_constant_p(&typeid(int)) to 10401 // evaluate to true. 10402 return true; 10403 } else { 10404 // Any other base is not constant enough for GCC. 10405 return false; 10406 } 10407 } 10408 10409 /// EvaluateBuiltinConstantP - Evaluate __builtin_constant_p as similarly to 10410 /// GCC as we can manage. 10411 static bool EvaluateBuiltinConstantP(EvalInfo &Info, const Expr *Arg) { 10412 // This evaluation is not permitted to have side-effects, so evaluate it in 10413 // a speculative evaluation context. 10414 SpeculativeEvaluationRAII SpeculativeEval(Info); 10415 10416 // Constant-folding is always enabled for the operand of __builtin_constant_p 10417 // (even when the enclosing evaluation context otherwise requires a strict 10418 // language-specific constant expression). 10419 FoldConstant Fold(Info, true); 10420 10421 QualType ArgType = Arg->getType(); 10422 10423 // __builtin_constant_p always has one operand. The rules which gcc follows 10424 // are not precisely documented, but are as follows: 10425 // 10426 // - If the operand is of integral, floating, complex or enumeration type, 10427 // and can be folded to a known value of that type, it returns 1. 10428 // - If the operand can be folded to a pointer to the first character 10429 // of a string literal (or such a pointer cast to an integral type) 10430 // or to a null pointer or an integer cast to a pointer, it returns 1. 10431 // 10432 // Otherwise, it returns 0. 10433 // 10434 // FIXME: GCC also intends to return 1 for literals of aggregate types, but 10435 // its support for this did not work prior to GCC 9 and is not yet well 10436 // understood. 10437 if (ArgType->isIntegralOrEnumerationType() || ArgType->isFloatingType() || 10438 ArgType->isAnyComplexType() || ArgType->isPointerType() || 10439 ArgType->isNullPtrType()) { 10440 APValue V; 10441 if (!::EvaluateAsRValue(Info, Arg, V)) { 10442 Fold.keepDiagnostics(); 10443 return false; 10444 } 10445 10446 // For a pointer (possibly cast to integer), there are special rules. 10447 if (V.getKind() == APValue::LValue) 10448 return EvaluateBuiltinConstantPForLValue(V); 10449 10450 // Otherwise, any constant value is good enough. 10451 return V.hasValue(); 10452 } 10453 10454 // Anything else isn't considered to be sufficiently constant. 10455 return false; 10456 } 10457 10458 /// Retrieves the "underlying object type" of the given expression, 10459 /// as used by __builtin_object_size. 10460 static QualType getObjectType(APValue::LValueBase B) { 10461 if (const ValueDecl *D = B.dyn_cast<const ValueDecl*>()) { 10462 if (const VarDecl *VD = dyn_cast<VarDecl>(D)) 10463 return VD->getType(); 10464 } else if (const Expr *E = B.dyn_cast<const Expr*>()) { 10465 if (isa<CompoundLiteralExpr>(E)) 10466 return E->getType(); 10467 } else if (B.is<TypeInfoLValue>()) { 10468 return B.getTypeInfoType(); 10469 } else if (B.is<DynamicAllocLValue>()) { 10470 return B.getDynamicAllocType(); 10471 } 10472 10473 return QualType(); 10474 } 10475 10476 /// A more selective version of E->IgnoreParenCasts for 10477 /// tryEvaluateBuiltinObjectSize. This ignores some casts/parens that serve only 10478 /// to change the type of E. 10479 /// Ex. For E = `(short*)((char*)(&foo))`, returns `&foo` 10480 /// 10481 /// Always returns an RValue with a pointer representation. 10482 static const Expr *ignorePointerCastsAndParens(const Expr *E) { 10483 assert(E->isRValue() && E->getType()->hasPointerRepresentation()); 10484 10485 auto *NoParens = E->IgnoreParens(); 10486 auto *Cast = dyn_cast<CastExpr>(NoParens); 10487 if (Cast == nullptr) 10488 return NoParens; 10489 10490 // We only conservatively allow a few kinds of casts, because this code is 10491 // inherently a simple solution that seeks to support the common case. 10492 auto CastKind = Cast->getCastKind(); 10493 if (CastKind != CK_NoOp && CastKind != CK_BitCast && 10494 CastKind != CK_AddressSpaceConversion) 10495 return NoParens; 10496 10497 auto *SubExpr = Cast->getSubExpr(); 10498 if (!SubExpr->getType()->hasPointerRepresentation() || !SubExpr->isRValue()) 10499 return NoParens; 10500 return ignorePointerCastsAndParens(SubExpr); 10501 } 10502 10503 /// Checks to see if the given LValue's Designator is at the end of the LValue's 10504 /// record layout. e.g. 10505 /// struct { struct { int a, b; } fst, snd; } obj; 10506 /// obj.fst // no 10507 /// obj.snd // yes 10508 /// obj.fst.a // no 10509 /// obj.fst.b // no 10510 /// obj.snd.a // no 10511 /// obj.snd.b // yes 10512 /// 10513 /// Please note: this function is specialized for how __builtin_object_size 10514 /// views "objects". 10515 /// 10516 /// If this encounters an invalid RecordDecl or otherwise cannot determine the 10517 /// correct result, it will always return true. 10518 static bool isDesignatorAtObjectEnd(const ASTContext &Ctx, const LValue &LVal) { 10519 assert(!LVal.Designator.Invalid); 10520 10521 auto IsLastOrInvalidFieldDecl = [&Ctx](const FieldDecl *FD, bool &Invalid) { 10522 const RecordDecl *Parent = FD->getParent(); 10523 Invalid = Parent->isInvalidDecl(); 10524 if (Invalid || Parent->isUnion()) 10525 return true; 10526 const ASTRecordLayout &Layout = Ctx.getASTRecordLayout(Parent); 10527 return FD->getFieldIndex() + 1 == Layout.getFieldCount(); 10528 }; 10529 10530 auto &Base = LVal.getLValueBase(); 10531 if (auto *ME = dyn_cast_or_null<MemberExpr>(Base.dyn_cast<const Expr *>())) { 10532 if (auto *FD = dyn_cast<FieldDecl>(ME->getMemberDecl())) { 10533 bool Invalid; 10534 if (!IsLastOrInvalidFieldDecl(FD, Invalid)) 10535 return Invalid; 10536 } else if (auto *IFD = dyn_cast<IndirectFieldDecl>(ME->getMemberDecl())) { 10537 for (auto *FD : IFD->chain()) { 10538 bool Invalid; 10539 if (!IsLastOrInvalidFieldDecl(cast<FieldDecl>(FD), Invalid)) 10540 return Invalid; 10541 } 10542 } 10543 } 10544 10545 unsigned I = 0; 10546 QualType BaseType = getType(Base); 10547 if (LVal.Designator.FirstEntryIsAnUnsizedArray) { 10548 // If we don't know the array bound, conservatively assume we're looking at 10549 // the final array element. 10550 ++I; 10551 if (BaseType->isIncompleteArrayType()) 10552 BaseType = Ctx.getAsArrayType(BaseType)->getElementType(); 10553 else 10554 BaseType = BaseType->castAs<PointerType>()->getPointeeType(); 10555 } 10556 10557 for (unsigned E = LVal.Designator.Entries.size(); I != E; ++I) { 10558 const auto &Entry = LVal.Designator.Entries[I]; 10559 if (BaseType->isArrayType()) { 10560 // Because __builtin_object_size treats arrays as objects, we can ignore 10561 // the index iff this is the last array in the Designator. 10562 if (I + 1 == E) 10563 return true; 10564 const auto *CAT = cast<ConstantArrayType>(Ctx.getAsArrayType(BaseType)); 10565 uint64_t Index = Entry.getAsArrayIndex(); 10566 if (Index + 1 != CAT->getSize()) 10567 return false; 10568 BaseType = CAT->getElementType(); 10569 } else if (BaseType->isAnyComplexType()) { 10570 const auto *CT = BaseType->castAs<ComplexType>(); 10571 uint64_t Index = Entry.getAsArrayIndex(); 10572 if (Index != 1) 10573 return false; 10574 BaseType = CT->getElementType(); 10575 } else if (auto *FD = getAsField(Entry)) { 10576 bool Invalid; 10577 if (!IsLastOrInvalidFieldDecl(FD, Invalid)) 10578 return Invalid; 10579 BaseType = FD->getType(); 10580 } else { 10581 assert(getAsBaseClass(Entry) && "Expecting cast to a base class"); 10582 return false; 10583 } 10584 } 10585 return true; 10586 } 10587 10588 /// Tests to see if the LValue has a user-specified designator (that isn't 10589 /// necessarily valid). Note that this always returns 'true' if the LValue has 10590 /// an unsized array as its first designator entry, because there's currently no 10591 /// way to tell if the user typed *foo or foo[0]. 10592 static bool refersToCompleteObject(const LValue &LVal) { 10593 if (LVal.Designator.Invalid) 10594 return false; 10595 10596 if (!LVal.Designator.Entries.empty()) 10597 return LVal.Designator.isMostDerivedAnUnsizedArray(); 10598 10599 if (!LVal.InvalidBase) 10600 return true; 10601 10602 // If `E` is a MemberExpr, then the first part of the designator is hiding in 10603 // the LValueBase. 10604 const auto *E = LVal.Base.dyn_cast<const Expr *>(); 10605 return !E || !isa<MemberExpr>(E); 10606 } 10607 10608 /// Attempts to detect a user writing into a piece of memory that's impossible 10609 /// to figure out the size of by just using types. 10610 static bool isUserWritingOffTheEnd(const ASTContext &Ctx, const LValue &LVal) { 10611 const SubobjectDesignator &Designator = LVal.Designator; 10612 // Notes: 10613 // - Users can only write off of the end when we have an invalid base. Invalid 10614 // bases imply we don't know where the memory came from. 10615 // - We used to be a bit more aggressive here; we'd only be conservative if 10616 // the array at the end was flexible, or if it had 0 or 1 elements. This 10617 // broke some common standard library extensions (PR30346), but was 10618 // otherwise seemingly fine. It may be useful to reintroduce this behavior 10619 // with some sort of whitelist. OTOH, it seems that GCC is always 10620 // conservative with the last element in structs (if it's an array), so our 10621 // current behavior is more compatible than a whitelisting approach would 10622 // be. 10623 return LVal.InvalidBase && 10624 Designator.Entries.size() == Designator.MostDerivedPathLength && 10625 Designator.MostDerivedIsArrayElement && 10626 isDesignatorAtObjectEnd(Ctx, LVal); 10627 } 10628 10629 /// Converts the given APInt to CharUnits, assuming the APInt is unsigned. 10630 /// Fails if the conversion would cause loss of precision. 10631 static bool convertUnsignedAPIntToCharUnits(const llvm::APInt &Int, 10632 CharUnits &Result) { 10633 auto CharUnitsMax = std::numeric_limits<CharUnits::QuantityType>::max(); 10634 if (Int.ugt(CharUnitsMax)) 10635 return false; 10636 Result = CharUnits::fromQuantity(Int.getZExtValue()); 10637 return true; 10638 } 10639 10640 /// Helper for tryEvaluateBuiltinObjectSize -- Given an LValue, this will 10641 /// determine how many bytes exist from the beginning of the object to either 10642 /// the end of the current subobject, or the end of the object itself, depending 10643 /// on what the LValue looks like + the value of Type. 10644 /// 10645 /// If this returns false, the value of Result is undefined. 10646 static bool determineEndOffset(EvalInfo &Info, SourceLocation ExprLoc, 10647 unsigned Type, const LValue &LVal, 10648 CharUnits &EndOffset) { 10649 bool DetermineForCompleteObject = refersToCompleteObject(LVal); 10650 10651 auto CheckedHandleSizeof = [&](QualType Ty, CharUnits &Result) { 10652 if (Ty.isNull() || Ty->isIncompleteType() || Ty->isFunctionType()) 10653 return false; 10654 return HandleSizeof(Info, ExprLoc, Ty, Result); 10655 }; 10656 10657 // We want to evaluate the size of the entire object. This is a valid fallback 10658 // for when Type=1 and the designator is invalid, because we're asked for an 10659 // upper-bound. 10660 if (!(Type & 1) || LVal.Designator.Invalid || DetermineForCompleteObject) { 10661 // Type=3 wants a lower bound, so we can't fall back to this. 10662 if (Type == 3 && !DetermineForCompleteObject) 10663 return false; 10664 10665 llvm::APInt APEndOffset; 10666 if (isBaseAnAllocSizeCall(LVal.getLValueBase()) && 10667 getBytesReturnedByAllocSizeCall(Info.Ctx, LVal, APEndOffset)) 10668 return convertUnsignedAPIntToCharUnits(APEndOffset, EndOffset); 10669 10670 if (LVal.InvalidBase) 10671 return false; 10672 10673 QualType BaseTy = getObjectType(LVal.getLValueBase()); 10674 return CheckedHandleSizeof(BaseTy, EndOffset); 10675 } 10676 10677 // We want to evaluate the size of a subobject. 10678 const SubobjectDesignator &Designator = LVal.Designator; 10679 10680 // The following is a moderately common idiom in C: 10681 // 10682 // struct Foo { int a; char c[1]; }; 10683 // struct Foo *F = (struct Foo *)malloc(sizeof(struct Foo) + strlen(Bar)); 10684 // strcpy(&F->c[0], Bar); 10685 // 10686 // In order to not break too much legacy code, we need to support it. 10687 if (isUserWritingOffTheEnd(Info.Ctx, LVal)) { 10688 // If we can resolve this to an alloc_size call, we can hand that back, 10689 // because we know for certain how many bytes there are to write to. 10690 llvm::APInt APEndOffset; 10691 if (isBaseAnAllocSizeCall(LVal.getLValueBase()) && 10692 getBytesReturnedByAllocSizeCall(Info.Ctx, LVal, APEndOffset)) 10693 return convertUnsignedAPIntToCharUnits(APEndOffset, EndOffset); 10694 10695 // If we cannot determine the size of the initial allocation, then we can't 10696 // given an accurate upper-bound. However, we are still able to give 10697 // conservative lower-bounds for Type=3. 10698 if (Type == 1) 10699 return false; 10700 } 10701 10702 CharUnits BytesPerElem; 10703 if (!CheckedHandleSizeof(Designator.MostDerivedType, BytesPerElem)) 10704 return false; 10705 10706 // According to the GCC documentation, we want the size of the subobject 10707 // denoted by the pointer. But that's not quite right -- what we actually 10708 // want is the size of the immediately-enclosing array, if there is one. 10709 int64_t ElemsRemaining; 10710 if (Designator.MostDerivedIsArrayElement && 10711 Designator.Entries.size() == Designator.MostDerivedPathLength) { 10712 uint64_t ArraySize = Designator.getMostDerivedArraySize(); 10713 uint64_t ArrayIndex = Designator.Entries.back().getAsArrayIndex(); 10714 ElemsRemaining = ArraySize <= ArrayIndex ? 0 : ArraySize - ArrayIndex; 10715 } else { 10716 ElemsRemaining = Designator.isOnePastTheEnd() ? 0 : 1; 10717 } 10718 10719 EndOffset = LVal.getLValueOffset() + BytesPerElem * ElemsRemaining; 10720 return true; 10721 } 10722 10723 /// Tries to evaluate the __builtin_object_size for @p E. If successful, 10724 /// returns true and stores the result in @p Size. 10725 /// 10726 /// If @p WasError is non-null, this will report whether the failure to evaluate 10727 /// is to be treated as an Error in IntExprEvaluator. 10728 static bool tryEvaluateBuiltinObjectSize(const Expr *E, unsigned Type, 10729 EvalInfo &Info, uint64_t &Size) { 10730 // Determine the denoted object. 10731 LValue LVal; 10732 { 10733 // The operand of __builtin_object_size is never evaluated for side-effects. 10734 // If there are any, but we can determine the pointed-to object anyway, then 10735 // ignore the side-effects. 10736 SpeculativeEvaluationRAII SpeculativeEval(Info); 10737 IgnoreSideEffectsRAII Fold(Info); 10738 10739 if (E->isGLValue()) { 10740 // It's possible for us to be given GLValues if we're called via 10741 // Expr::tryEvaluateObjectSize. 10742 APValue RVal; 10743 if (!EvaluateAsRValue(Info, E, RVal)) 10744 return false; 10745 LVal.setFrom(Info.Ctx, RVal); 10746 } else if (!EvaluatePointer(ignorePointerCastsAndParens(E), LVal, Info, 10747 /*InvalidBaseOK=*/true)) 10748 return false; 10749 } 10750 10751 // If we point to before the start of the object, there are no accessible 10752 // bytes. 10753 if (LVal.getLValueOffset().isNegative()) { 10754 Size = 0; 10755 return true; 10756 } 10757 10758 CharUnits EndOffset; 10759 if (!determineEndOffset(Info, E->getExprLoc(), Type, LVal, EndOffset)) 10760 return false; 10761 10762 // If we've fallen outside of the end offset, just pretend there's nothing to 10763 // write to/read from. 10764 if (EndOffset <= LVal.getLValueOffset()) 10765 Size = 0; 10766 else 10767 Size = (EndOffset - LVal.getLValueOffset()).getQuantity(); 10768 return true; 10769 } 10770 10771 bool IntExprEvaluator::VisitConstantExpr(const ConstantExpr *E) { 10772 llvm::SaveAndRestore<bool> InConstantContext(Info.InConstantContext, true); 10773 if (E->getResultAPValueKind() != APValue::None) 10774 return Success(E->getAPValueResult(), E); 10775 return ExprEvaluatorBaseTy::VisitConstantExpr(E); 10776 } 10777 10778 bool IntExprEvaluator::VisitCallExpr(const CallExpr *E) { 10779 if (unsigned BuiltinOp = E->getBuiltinCallee()) 10780 return VisitBuiltinCallExpr(E, BuiltinOp); 10781 10782 return ExprEvaluatorBaseTy::VisitCallExpr(E); 10783 } 10784 10785 static bool getBuiltinAlignArguments(const CallExpr *E, EvalInfo &Info, 10786 APValue &Val, APSInt &Alignment) { 10787 QualType SrcTy = E->getArg(0)->getType(); 10788 if (!getAlignmentArgument(E->getArg(1), SrcTy, Info, Alignment)) 10789 return false; 10790 // Even though we are evaluating integer expressions we could get a pointer 10791 // argument for the __builtin_is_aligned() case. 10792 if (SrcTy->isPointerType()) { 10793 LValue Ptr; 10794 if (!EvaluatePointer(E->getArg(0), Ptr, Info)) 10795 return false; 10796 Ptr.moveInto(Val); 10797 } else if (!SrcTy->isIntegralOrEnumerationType()) { 10798 Info.FFDiag(E->getArg(0)); 10799 return false; 10800 } else { 10801 APSInt SrcInt; 10802 if (!EvaluateInteger(E->getArg(0), SrcInt, Info)) 10803 return false; 10804 assert(SrcInt.getBitWidth() >= Alignment.getBitWidth() && 10805 "Bit widths must be the same"); 10806 Val = APValue(SrcInt); 10807 } 10808 assert(Val.hasValue()); 10809 return true; 10810 } 10811 10812 bool IntExprEvaluator::VisitBuiltinCallExpr(const CallExpr *E, 10813 unsigned BuiltinOp) { 10814 switch (BuiltinOp) { 10815 default: 10816 return ExprEvaluatorBaseTy::VisitCallExpr(E); 10817 10818 case Builtin::BI__builtin_dynamic_object_size: 10819 case Builtin::BI__builtin_object_size: { 10820 // The type was checked when we built the expression. 10821 unsigned Type = 10822 E->getArg(1)->EvaluateKnownConstInt(Info.Ctx).getZExtValue(); 10823 assert(Type <= 3 && "unexpected type"); 10824 10825 uint64_t Size; 10826 if (tryEvaluateBuiltinObjectSize(E->getArg(0), Type, Info, Size)) 10827 return Success(Size, E); 10828 10829 if (E->getArg(0)->HasSideEffects(Info.Ctx)) 10830 return Success((Type & 2) ? 0 : -1, E); 10831 10832 // Expression had no side effects, but we couldn't statically determine the 10833 // size of the referenced object. 10834 switch (Info.EvalMode) { 10835 case EvalInfo::EM_ConstantExpression: 10836 case EvalInfo::EM_ConstantFold: 10837 case EvalInfo::EM_IgnoreSideEffects: 10838 // Leave it to IR generation. 10839 return Error(E); 10840 case EvalInfo::EM_ConstantExpressionUnevaluated: 10841 // Reduce it to a constant now. 10842 return Success((Type & 2) ? 0 : -1, E); 10843 } 10844 10845 llvm_unreachable("unexpected EvalMode"); 10846 } 10847 10848 case Builtin::BI__builtin_os_log_format_buffer_size: { 10849 analyze_os_log::OSLogBufferLayout Layout; 10850 analyze_os_log::computeOSLogBufferLayout(Info.Ctx, E, Layout); 10851 return Success(Layout.size().getQuantity(), E); 10852 } 10853 10854 case Builtin::BI__builtin_is_aligned: { 10855 APValue Src; 10856 APSInt Alignment; 10857 if (!getBuiltinAlignArguments(E, Info, Src, Alignment)) 10858 return false; 10859 if (Src.isLValue()) { 10860 // If we evaluated a pointer, check the minimum known alignment. 10861 LValue Ptr; 10862 Ptr.setFrom(Info.Ctx, Src); 10863 CharUnits BaseAlignment = getBaseAlignment(Info, Ptr); 10864 CharUnits PtrAlign = BaseAlignment.alignmentAtOffset(Ptr.Offset); 10865 // We can return true if the known alignment at the computed offset is 10866 // greater than the requested alignment. 10867 assert(PtrAlign.isPowerOfTwo()); 10868 assert(Alignment.isPowerOf2()); 10869 if (PtrAlign.getQuantity() >= Alignment) 10870 return Success(1, E); 10871 // If the alignment is not known to be sufficient, some cases could still 10872 // be aligned at run time. However, if the requested alignment is less or 10873 // equal to the base alignment and the offset is not aligned, we know that 10874 // the run-time value can never be aligned. 10875 if (BaseAlignment.getQuantity() >= Alignment && 10876 PtrAlign.getQuantity() < Alignment) 10877 return Success(0, E); 10878 // Otherwise we can't infer whether the value is sufficiently aligned. 10879 // TODO: __builtin_is_aligned(__builtin_align_{down,up{(expr, N), N) 10880 // in cases where we can't fully evaluate the pointer. 10881 Info.FFDiag(E->getArg(0), diag::note_constexpr_alignment_compute) 10882 << Alignment; 10883 return false; 10884 } 10885 assert(Src.isInt()); 10886 return Success((Src.getInt() & (Alignment - 1)) == 0 ? 1 : 0, E); 10887 } 10888 case Builtin::BI__builtin_align_up: { 10889 APValue Src; 10890 APSInt Alignment; 10891 if (!getBuiltinAlignArguments(E, Info, Src, Alignment)) 10892 return false; 10893 if (!Src.isInt()) 10894 return Error(E); 10895 APSInt AlignedVal = 10896 APSInt((Src.getInt() + (Alignment - 1)) & ~(Alignment - 1), 10897 Src.getInt().isUnsigned()); 10898 assert(AlignedVal.getBitWidth() == Src.getInt().getBitWidth()); 10899 return Success(AlignedVal, E); 10900 } 10901 case Builtin::BI__builtin_align_down: { 10902 APValue Src; 10903 APSInt Alignment; 10904 if (!getBuiltinAlignArguments(E, Info, Src, Alignment)) 10905 return false; 10906 if (!Src.isInt()) 10907 return Error(E); 10908 APSInt AlignedVal = 10909 APSInt(Src.getInt() & ~(Alignment - 1), Src.getInt().isUnsigned()); 10910 assert(AlignedVal.getBitWidth() == Src.getInt().getBitWidth()); 10911 return Success(AlignedVal, E); 10912 } 10913 10914 case Builtin::BI__builtin_bswap16: 10915 case Builtin::BI__builtin_bswap32: 10916 case Builtin::BI__builtin_bswap64: { 10917 APSInt Val; 10918 if (!EvaluateInteger(E->getArg(0), Val, Info)) 10919 return false; 10920 10921 return Success(Val.byteSwap(), E); 10922 } 10923 10924 case Builtin::BI__builtin_classify_type: 10925 return Success((int)EvaluateBuiltinClassifyType(E, Info.getLangOpts()), E); 10926 10927 case Builtin::BI__builtin_clrsb: 10928 case Builtin::BI__builtin_clrsbl: 10929 case Builtin::BI__builtin_clrsbll: { 10930 APSInt Val; 10931 if (!EvaluateInteger(E->getArg(0), Val, Info)) 10932 return false; 10933 10934 return Success(Val.getBitWidth() - Val.getMinSignedBits(), E); 10935 } 10936 10937 case Builtin::BI__builtin_clz: 10938 case Builtin::BI__builtin_clzl: 10939 case Builtin::BI__builtin_clzll: 10940 case Builtin::BI__builtin_clzs: { 10941 APSInt Val; 10942 if (!EvaluateInteger(E->getArg(0), Val, Info)) 10943 return false; 10944 if (!Val) 10945 return Error(E); 10946 10947 return Success(Val.countLeadingZeros(), E); 10948 } 10949 10950 case Builtin::BI__builtin_constant_p: { 10951 const Expr *Arg = E->getArg(0); 10952 if (EvaluateBuiltinConstantP(Info, Arg)) 10953 return Success(true, E); 10954 if (Info.InConstantContext || Arg->HasSideEffects(Info.Ctx)) { 10955 // Outside a constant context, eagerly evaluate to false in the presence 10956 // of side-effects in order to avoid -Wunsequenced false-positives in 10957 // a branch on __builtin_constant_p(expr). 10958 return Success(false, E); 10959 } 10960 Info.FFDiag(E, diag::note_invalid_subexpr_in_const_expr); 10961 return false; 10962 } 10963 10964 case Builtin::BI__builtin_is_constant_evaluated: { 10965 const auto *Callee = Info.CurrentCall->getCallee(); 10966 if (Info.InConstantContext && !Info.CheckingPotentialConstantExpression && 10967 (Info.CallStackDepth == 1 || 10968 (Info.CallStackDepth == 2 && Callee->isInStdNamespace() && 10969 Callee->getIdentifier() && 10970 Callee->getIdentifier()->isStr("is_constant_evaluated")))) { 10971 // FIXME: Find a better way to avoid duplicated diagnostics. 10972 if (Info.EvalStatus.Diag) 10973 Info.report((Info.CallStackDepth == 1) ? E->getExprLoc() 10974 : Info.CurrentCall->CallLoc, 10975 diag::warn_is_constant_evaluated_always_true_constexpr) 10976 << (Info.CallStackDepth == 1 ? "__builtin_is_constant_evaluated" 10977 : "std::is_constant_evaluated"); 10978 } 10979 10980 return Success(Info.InConstantContext, E); 10981 } 10982 10983 case Builtin::BI__builtin_ctz: 10984 case Builtin::BI__builtin_ctzl: 10985 case Builtin::BI__builtin_ctzll: 10986 case Builtin::BI__builtin_ctzs: { 10987 APSInt Val; 10988 if (!EvaluateInteger(E->getArg(0), Val, Info)) 10989 return false; 10990 if (!Val) 10991 return Error(E); 10992 10993 return Success(Val.countTrailingZeros(), E); 10994 } 10995 10996 case Builtin::BI__builtin_eh_return_data_regno: { 10997 int Operand = E->getArg(0)->EvaluateKnownConstInt(Info.Ctx).getZExtValue(); 10998 Operand = Info.Ctx.getTargetInfo().getEHDataRegisterNumber(Operand); 10999 return Success(Operand, E); 11000 } 11001 11002 case Builtin::BI__builtin_expect: 11003 return Visit(E->getArg(0)); 11004 11005 case Builtin::BI__builtin_ffs: 11006 case Builtin::BI__builtin_ffsl: 11007 case Builtin::BI__builtin_ffsll: { 11008 APSInt Val; 11009 if (!EvaluateInteger(E->getArg(0), Val, Info)) 11010 return false; 11011 11012 unsigned N = Val.countTrailingZeros(); 11013 return Success(N == Val.getBitWidth() ? 0 : N + 1, E); 11014 } 11015 11016 case Builtin::BI__builtin_fpclassify: { 11017 APFloat Val(0.0); 11018 if (!EvaluateFloat(E->getArg(5), Val, Info)) 11019 return false; 11020 unsigned Arg; 11021 switch (Val.getCategory()) { 11022 case APFloat::fcNaN: Arg = 0; break; 11023 case APFloat::fcInfinity: Arg = 1; break; 11024 case APFloat::fcNormal: Arg = Val.isDenormal() ? 3 : 2; break; 11025 case APFloat::fcZero: Arg = 4; break; 11026 } 11027 return Visit(E->getArg(Arg)); 11028 } 11029 11030 case Builtin::BI__builtin_isinf_sign: { 11031 APFloat Val(0.0); 11032 return EvaluateFloat(E->getArg(0), Val, Info) && 11033 Success(Val.isInfinity() ? (Val.isNegative() ? -1 : 1) : 0, E); 11034 } 11035 11036 case Builtin::BI__builtin_isinf: { 11037 APFloat Val(0.0); 11038 return EvaluateFloat(E->getArg(0), Val, Info) && 11039 Success(Val.isInfinity() ? 1 : 0, E); 11040 } 11041 11042 case Builtin::BI__builtin_isfinite: { 11043 APFloat Val(0.0); 11044 return EvaluateFloat(E->getArg(0), Val, Info) && 11045 Success(Val.isFinite() ? 1 : 0, E); 11046 } 11047 11048 case Builtin::BI__builtin_isnan: { 11049 APFloat Val(0.0); 11050 return EvaluateFloat(E->getArg(0), Val, Info) && 11051 Success(Val.isNaN() ? 1 : 0, E); 11052 } 11053 11054 case Builtin::BI__builtin_isnormal: { 11055 APFloat Val(0.0); 11056 return EvaluateFloat(E->getArg(0), Val, Info) && 11057 Success(Val.isNormal() ? 1 : 0, E); 11058 } 11059 11060 case Builtin::BI__builtin_parity: 11061 case Builtin::BI__builtin_parityl: 11062 case Builtin::BI__builtin_parityll: { 11063 APSInt Val; 11064 if (!EvaluateInteger(E->getArg(0), Val, Info)) 11065 return false; 11066 11067 return Success(Val.countPopulation() % 2, E); 11068 } 11069 11070 case Builtin::BI__builtin_popcount: 11071 case Builtin::BI__builtin_popcountl: 11072 case Builtin::BI__builtin_popcountll: { 11073 APSInt Val; 11074 if (!EvaluateInteger(E->getArg(0), Val, Info)) 11075 return false; 11076 11077 return Success(Val.countPopulation(), E); 11078 } 11079 11080 case Builtin::BIstrlen: 11081 case Builtin::BIwcslen: 11082 // A call to strlen is not a constant expression. 11083 if (Info.getLangOpts().CPlusPlus11) 11084 Info.CCEDiag(E, diag::note_constexpr_invalid_function) 11085 << /*isConstexpr*/0 << /*isConstructor*/0 11086 << (std::string("'") + Info.Ctx.BuiltinInfo.getName(BuiltinOp) + "'"); 11087 else 11088 Info.CCEDiag(E, diag::note_invalid_subexpr_in_const_expr); 11089 LLVM_FALLTHROUGH; 11090 case Builtin::BI__builtin_strlen: 11091 case Builtin::BI__builtin_wcslen: { 11092 // As an extension, we support __builtin_strlen() as a constant expression, 11093 // and support folding strlen() to a constant. 11094 LValue String; 11095 if (!EvaluatePointer(E->getArg(0), String, Info)) 11096 return false; 11097 11098 QualType CharTy = E->getArg(0)->getType()->getPointeeType(); 11099 11100 // Fast path: if it's a string literal, search the string value. 11101 if (const StringLiteral *S = dyn_cast_or_null<StringLiteral>( 11102 String.getLValueBase().dyn_cast<const Expr *>())) { 11103 // The string literal may have embedded null characters. Find the first 11104 // one and truncate there. 11105 StringRef Str = S->getBytes(); 11106 int64_t Off = String.Offset.getQuantity(); 11107 if (Off >= 0 && (uint64_t)Off <= (uint64_t)Str.size() && 11108 S->getCharByteWidth() == 1 && 11109 // FIXME: Add fast-path for wchar_t too. 11110 Info.Ctx.hasSameUnqualifiedType(CharTy, Info.Ctx.CharTy)) { 11111 Str = Str.substr(Off); 11112 11113 StringRef::size_type Pos = Str.find(0); 11114 if (Pos != StringRef::npos) 11115 Str = Str.substr(0, Pos); 11116 11117 return Success(Str.size(), E); 11118 } 11119 11120 // Fall through to slow path to issue appropriate diagnostic. 11121 } 11122 11123 // Slow path: scan the bytes of the string looking for the terminating 0. 11124 for (uint64_t Strlen = 0; /**/; ++Strlen) { 11125 APValue Char; 11126 if (!handleLValueToRValueConversion(Info, E, CharTy, String, Char) || 11127 !Char.isInt()) 11128 return false; 11129 if (!Char.getInt()) 11130 return Success(Strlen, E); 11131 if (!HandleLValueArrayAdjustment(Info, E, String, CharTy, 1)) 11132 return false; 11133 } 11134 } 11135 11136 case Builtin::BIstrcmp: 11137 case Builtin::BIwcscmp: 11138 case Builtin::BIstrncmp: 11139 case Builtin::BIwcsncmp: 11140 case Builtin::BImemcmp: 11141 case Builtin::BIbcmp: 11142 case Builtin::BIwmemcmp: 11143 // A call to strlen is not a constant expression. 11144 if (Info.getLangOpts().CPlusPlus11) 11145 Info.CCEDiag(E, diag::note_constexpr_invalid_function) 11146 << /*isConstexpr*/0 << /*isConstructor*/0 11147 << (std::string("'") + Info.Ctx.BuiltinInfo.getName(BuiltinOp) + "'"); 11148 else 11149 Info.CCEDiag(E, diag::note_invalid_subexpr_in_const_expr); 11150 LLVM_FALLTHROUGH; 11151 case Builtin::BI__builtin_strcmp: 11152 case Builtin::BI__builtin_wcscmp: 11153 case Builtin::BI__builtin_strncmp: 11154 case Builtin::BI__builtin_wcsncmp: 11155 case Builtin::BI__builtin_memcmp: 11156 case Builtin::BI__builtin_bcmp: 11157 case Builtin::BI__builtin_wmemcmp: { 11158 LValue String1, String2; 11159 if (!EvaluatePointer(E->getArg(0), String1, Info) || 11160 !EvaluatePointer(E->getArg(1), String2, Info)) 11161 return false; 11162 11163 uint64_t MaxLength = uint64_t(-1); 11164 if (BuiltinOp != Builtin::BIstrcmp && 11165 BuiltinOp != Builtin::BIwcscmp && 11166 BuiltinOp != Builtin::BI__builtin_strcmp && 11167 BuiltinOp != Builtin::BI__builtin_wcscmp) { 11168 APSInt N; 11169 if (!EvaluateInteger(E->getArg(2), N, Info)) 11170 return false; 11171 MaxLength = N.getExtValue(); 11172 } 11173 11174 // Empty substrings compare equal by definition. 11175 if (MaxLength == 0u) 11176 return Success(0, E); 11177 11178 if (!String1.checkNullPointerForFoldAccess(Info, E, AK_Read) || 11179 !String2.checkNullPointerForFoldAccess(Info, E, AK_Read) || 11180 String1.Designator.Invalid || String2.Designator.Invalid) 11181 return false; 11182 11183 QualType CharTy1 = String1.Designator.getType(Info.Ctx); 11184 QualType CharTy2 = String2.Designator.getType(Info.Ctx); 11185 11186 bool IsRawByte = BuiltinOp == Builtin::BImemcmp || 11187 BuiltinOp == Builtin::BIbcmp || 11188 BuiltinOp == Builtin::BI__builtin_memcmp || 11189 BuiltinOp == Builtin::BI__builtin_bcmp; 11190 11191 assert(IsRawByte || 11192 (Info.Ctx.hasSameUnqualifiedType( 11193 CharTy1, E->getArg(0)->getType()->getPointeeType()) && 11194 Info.Ctx.hasSameUnqualifiedType(CharTy1, CharTy2))); 11195 11196 // For memcmp, allow comparing any arrays of '[[un]signed] char' or 11197 // 'char8_t', but no other types. 11198 if (IsRawByte && 11199 !(isOneByteCharacterType(CharTy1) && isOneByteCharacterType(CharTy2))) { 11200 // FIXME: Consider using our bit_cast implementation to support this. 11201 Info.FFDiag(E, diag::note_constexpr_memcmp_unsupported) 11202 << (std::string("'") + Info.Ctx.BuiltinInfo.getName(BuiltinOp) + "'") 11203 << CharTy1 << CharTy2; 11204 return false; 11205 } 11206 11207 const auto &ReadCurElems = [&](APValue &Char1, APValue &Char2) { 11208 return handleLValueToRValueConversion(Info, E, CharTy1, String1, Char1) && 11209 handleLValueToRValueConversion(Info, E, CharTy2, String2, Char2) && 11210 Char1.isInt() && Char2.isInt(); 11211 }; 11212 const auto &AdvanceElems = [&] { 11213 return HandleLValueArrayAdjustment(Info, E, String1, CharTy1, 1) && 11214 HandleLValueArrayAdjustment(Info, E, String2, CharTy2, 1); 11215 }; 11216 11217 bool StopAtNull = 11218 (BuiltinOp != Builtin::BImemcmp && BuiltinOp != Builtin::BIbcmp && 11219 BuiltinOp != Builtin::BIwmemcmp && 11220 BuiltinOp != Builtin::BI__builtin_memcmp && 11221 BuiltinOp != Builtin::BI__builtin_bcmp && 11222 BuiltinOp != Builtin::BI__builtin_wmemcmp); 11223 bool IsWide = BuiltinOp == Builtin::BIwcscmp || 11224 BuiltinOp == Builtin::BIwcsncmp || 11225 BuiltinOp == Builtin::BIwmemcmp || 11226 BuiltinOp == Builtin::BI__builtin_wcscmp || 11227 BuiltinOp == Builtin::BI__builtin_wcsncmp || 11228 BuiltinOp == Builtin::BI__builtin_wmemcmp; 11229 11230 for (; MaxLength; --MaxLength) { 11231 APValue Char1, Char2; 11232 if (!ReadCurElems(Char1, Char2)) 11233 return false; 11234 if (Char1.getInt().ne(Char2.getInt())) { 11235 if (IsWide) // wmemcmp compares with wchar_t signedness. 11236 return Success(Char1.getInt() < Char2.getInt() ? -1 : 1, E); 11237 // memcmp always compares unsigned chars. 11238 return Success(Char1.getInt().ult(Char2.getInt()) ? -1 : 1, E); 11239 } 11240 if (StopAtNull && !Char1.getInt()) 11241 return Success(0, E); 11242 assert(!(StopAtNull && !Char2.getInt())); 11243 if (!AdvanceElems()) 11244 return false; 11245 } 11246 // We hit the strncmp / memcmp limit. 11247 return Success(0, E); 11248 } 11249 11250 case Builtin::BI__atomic_always_lock_free: 11251 case Builtin::BI__atomic_is_lock_free: 11252 case Builtin::BI__c11_atomic_is_lock_free: { 11253 APSInt SizeVal; 11254 if (!EvaluateInteger(E->getArg(0), SizeVal, Info)) 11255 return false; 11256 11257 // For __atomic_is_lock_free(sizeof(_Atomic(T))), if the size is a power 11258 // of two less than the maximum inline atomic width, we know it is 11259 // lock-free. If the size isn't a power of two, or greater than the 11260 // maximum alignment where we promote atomics, we know it is not lock-free 11261 // (at least not in the sense of atomic_is_lock_free). Otherwise, 11262 // the answer can only be determined at runtime; for example, 16-byte 11263 // atomics have lock-free implementations on some, but not all, 11264 // x86-64 processors. 11265 11266 // Check power-of-two. 11267 CharUnits Size = CharUnits::fromQuantity(SizeVal.getZExtValue()); 11268 if (Size.isPowerOfTwo()) { 11269 // Check against inlining width. 11270 unsigned InlineWidthBits = 11271 Info.Ctx.getTargetInfo().getMaxAtomicInlineWidth(); 11272 if (Size <= Info.Ctx.toCharUnitsFromBits(InlineWidthBits)) { 11273 if (BuiltinOp == Builtin::BI__c11_atomic_is_lock_free || 11274 Size == CharUnits::One() || 11275 E->getArg(1)->isNullPointerConstant(Info.Ctx, 11276 Expr::NPC_NeverValueDependent)) 11277 // OK, we will inline appropriately-aligned operations of this size, 11278 // and _Atomic(T) is appropriately-aligned. 11279 return Success(1, E); 11280 11281 QualType PointeeType = E->getArg(1)->IgnoreImpCasts()->getType()-> 11282 castAs<PointerType>()->getPointeeType(); 11283 if (!PointeeType->isIncompleteType() && 11284 Info.Ctx.getTypeAlignInChars(PointeeType) >= Size) { 11285 // OK, we will inline operations on this object. 11286 return Success(1, E); 11287 } 11288 } 11289 } 11290 11291 return BuiltinOp == Builtin::BI__atomic_always_lock_free ? 11292 Success(0, E) : Error(E); 11293 } 11294 case Builtin::BIomp_is_initial_device: 11295 // We can decide statically which value the runtime would return if called. 11296 return Success(Info.getLangOpts().OpenMPIsDevice ? 0 : 1, E); 11297 case Builtin::BI__builtin_add_overflow: 11298 case Builtin::BI__builtin_sub_overflow: 11299 case Builtin::BI__builtin_mul_overflow: 11300 case Builtin::BI__builtin_sadd_overflow: 11301 case Builtin::BI__builtin_uadd_overflow: 11302 case Builtin::BI__builtin_uaddl_overflow: 11303 case Builtin::BI__builtin_uaddll_overflow: 11304 case Builtin::BI__builtin_usub_overflow: 11305 case Builtin::BI__builtin_usubl_overflow: 11306 case Builtin::BI__builtin_usubll_overflow: 11307 case Builtin::BI__builtin_umul_overflow: 11308 case Builtin::BI__builtin_umull_overflow: 11309 case Builtin::BI__builtin_umulll_overflow: 11310 case Builtin::BI__builtin_saddl_overflow: 11311 case Builtin::BI__builtin_saddll_overflow: 11312 case Builtin::BI__builtin_ssub_overflow: 11313 case Builtin::BI__builtin_ssubl_overflow: 11314 case Builtin::BI__builtin_ssubll_overflow: 11315 case Builtin::BI__builtin_smul_overflow: 11316 case Builtin::BI__builtin_smull_overflow: 11317 case Builtin::BI__builtin_smulll_overflow: { 11318 LValue ResultLValue; 11319 APSInt LHS, RHS; 11320 11321 QualType ResultType = E->getArg(2)->getType()->getPointeeType(); 11322 if (!EvaluateInteger(E->getArg(0), LHS, Info) || 11323 !EvaluateInteger(E->getArg(1), RHS, Info) || 11324 !EvaluatePointer(E->getArg(2), ResultLValue, Info)) 11325 return false; 11326 11327 APSInt Result; 11328 bool DidOverflow = false; 11329 11330 // If the types don't have to match, enlarge all 3 to the largest of them. 11331 if (BuiltinOp == Builtin::BI__builtin_add_overflow || 11332 BuiltinOp == Builtin::BI__builtin_sub_overflow || 11333 BuiltinOp == Builtin::BI__builtin_mul_overflow) { 11334 bool IsSigned = LHS.isSigned() || RHS.isSigned() || 11335 ResultType->isSignedIntegerOrEnumerationType(); 11336 bool AllSigned = LHS.isSigned() && RHS.isSigned() && 11337 ResultType->isSignedIntegerOrEnumerationType(); 11338 uint64_t LHSSize = LHS.getBitWidth(); 11339 uint64_t RHSSize = RHS.getBitWidth(); 11340 uint64_t ResultSize = Info.Ctx.getTypeSize(ResultType); 11341 uint64_t MaxBits = std::max(std::max(LHSSize, RHSSize), ResultSize); 11342 11343 // Add an additional bit if the signedness isn't uniformly agreed to. We 11344 // could do this ONLY if there is a signed and an unsigned that both have 11345 // MaxBits, but the code to check that is pretty nasty. The issue will be 11346 // caught in the shrink-to-result later anyway. 11347 if (IsSigned && !AllSigned) 11348 ++MaxBits; 11349 11350 LHS = APSInt(LHS.extOrTrunc(MaxBits), !IsSigned); 11351 RHS = APSInt(RHS.extOrTrunc(MaxBits), !IsSigned); 11352 Result = APSInt(MaxBits, !IsSigned); 11353 } 11354 11355 // Find largest int. 11356 switch (BuiltinOp) { 11357 default: 11358 llvm_unreachable("Invalid value for BuiltinOp"); 11359 case Builtin::BI__builtin_add_overflow: 11360 case Builtin::BI__builtin_sadd_overflow: 11361 case Builtin::BI__builtin_saddl_overflow: 11362 case Builtin::BI__builtin_saddll_overflow: 11363 case Builtin::BI__builtin_uadd_overflow: 11364 case Builtin::BI__builtin_uaddl_overflow: 11365 case Builtin::BI__builtin_uaddll_overflow: 11366 Result = LHS.isSigned() ? LHS.sadd_ov(RHS, DidOverflow) 11367 : LHS.uadd_ov(RHS, DidOverflow); 11368 break; 11369 case Builtin::BI__builtin_sub_overflow: 11370 case Builtin::BI__builtin_ssub_overflow: 11371 case Builtin::BI__builtin_ssubl_overflow: 11372 case Builtin::BI__builtin_ssubll_overflow: 11373 case Builtin::BI__builtin_usub_overflow: 11374 case Builtin::BI__builtin_usubl_overflow: 11375 case Builtin::BI__builtin_usubll_overflow: 11376 Result = LHS.isSigned() ? LHS.ssub_ov(RHS, DidOverflow) 11377 : LHS.usub_ov(RHS, DidOverflow); 11378 break; 11379 case Builtin::BI__builtin_mul_overflow: 11380 case Builtin::BI__builtin_smul_overflow: 11381 case Builtin::BI__builtin_smull_overflow: 11382 case Builtin::BI__builtin_smulll_overflow: 11383 case Builtin::BI__builtin_umul_overflow: 11384 case Builtin::BI__builtin_umull_overflow: 11385 case Builtin::BI__builtin_umulll_overflow: 11386 Result = LHS.isSigned() ? LHS.smul_ov(RHS, DidOverflow) 11387 : LHS.umul_ov(RHS, DidOverflow); 11388 break; 11389 } 11390 11391 // In the case where multiple sizes are allowed, truncate and see if 11392 // the values are the same. 11393 if (BuiltinOp == Builtin::BI__builtin_add_overflow || 11394 BuiltinOp == Builtin::BI__builtin_sub_overflow || 11395 BuiltinOp == Builtin::BI__builtin_mul_overflow) { 11396 // APSInt doesn't have a TruncOrSelf, so we use extOrTrunc instead, 11397 // since it will give us the behavior of a TruncOrSelf in the case where 11398 // its parameter <= its size. We previously set Result to be at least the 11399 // type-size of the result, so getTypeSize(ResultType) <= Result.BitWidth 11400 // will work exactly like TruncOrSelf. 11401 APSInt Temp = Result.extOrTrunc(Info.Ctx.getTypeSize(ResultType)); 11402 Temp.setIsSigned(ResultType->isSignedIntegerOrEnumerationType()); 11403 11404 if (!APSInt::isSameValue(Temp, Result)) 11405 DidOverflow = true; 11406 Result = Temp; 11407 } 11408 11409 APValue APV{Result}; 11410 if (!handleAssignment(Info, E, ResultLValue, ResultType, APV)) 11411 return false; 11412 return Success(DidOverflow, E); 11413 } 11414 } 11415 } 11416 11417 /// Determine whether this is a pointer past the end of the complete 11418 /// object referred to by the lvalue. 11419 static bool isOnePastTheEndOfCompleteObject(const ASTContext &Ctx, 11420 const LValue &LV) { 11421 // A null pointer can be viewed as being "past the end" but we don't 11422 // choose to look at it that way here. 11423 if (!LV.getLValueBase()) 11424 return false; 11425 11426 // If the designator is valid and refers to a subobject, we're not pointing 11427 // past the end. 11428 if (!LV.getLValueDesignator().Invalid && 11429 !LV.getLValueDesignator().isOnePastTheEnd()) 11430 return false; 11431 11432 // A pointer to an incomplete type might be past-the-end if the type's size is 11433 // zero. We cannot tell because the type is incomplete. 11434 QualType Ty = getType(LV.getLValueBase()); 11435 if (Ty->isIncompleteType()) 11436 return true; 11437 11438 // We're a past-the-end pointer if we point to the byte after the object, 11439 // no matter what our type or path is. 11440 auto Size = Ctx.getTypeSizeInChars(Ty); 11441 return LV.getLValueOffset() == Size; 11442 } 11443 11444 namespace { 11445 11446 /// Data recursive integer evaluator of certain binary operators. 11447 /// 11448 /// We use a data recursive algorithm for binary operators so that we are able 11449 /// to handle extreme cases of chained binary operators without causing stack 11450 /// overflow. 11451 class DataRecursiveIntBinOpEvaluator { 11452 struct EvalResult { 11453 APValue Val; 11454 bool Failed; 11455 11456 EvalResult() : Failed(false) { } 11457 11458 void swap(EvalResult &RHS) { 11459 Val.swap(RHS.Val); 11460 Failed = RHS.Failed; 11461 RHS.Failed = false; 11462 } 11463 }; 11464 11465 struct Job { 11466 const Expr *E; 11467 EvalResult LHSResult; // meaningful only for binary operator expression. 11468 enum { AnyExprKind, BinOpKind, BinOpVisitedLHSKind } Kind; 11469 11470 Job() = default; 11471 Job(Job &&) = default; 11472 11473 void startSpeculativeEval(EvalInfo &Info) { 11474 SpecEvalRAII = SpeculativeEvaluationRAII(Info); 11475 } 11476 11477 private: 11478 SpeculativeEvaluationRAII SpecEvalRAII; 11479 }; 11480 11481 SmallVector<Job, 16> Queue; 11482 11483 IntExprEvaluator &IntEval; 11484 EvalInfo &Info; 11485 APValue &FinalResult; 11486 11487 public: 11488 DataRecursiveIntBinOpEvaluator(IntExprEvaluator &IntEval, APValue &Result) 11489 : IntEval(IntEval), Info(IntEval.getEvalInfo()), FinalResult(Result) { } 11490 11491 /// True if \param E is a binary operator that we are going to handle 11492 /// data recursively. 11493 /// We handle binary operators that are comma, logical, or that have operands 11494 /// with integral or enumeration type. 11495 static bool shouldEnqueue(const BinaryOperator *E) { 11496 return E->getOpcode() == BO_Comma || E->isLogicalOp() || 11497 (E->isRValue() && E->getType()->isIntegralOrEnumerationType() && 11498 E->getLHS()->getType()->isIntegralOrEnumerationType() && 11499 E->getRHS()->getType()->isIntegralOrEnumerationType()); 11500 } 11501 11502 bool Traverse(const BinaryOperator *E) { 11503 enqueue(E); 11504 EvalResult PrevResult; 11505 while (!Queue.empty()) 11506 process(PrevResult); 11507 11508 if (PrevResult.Failed) return false; 11509 11510 FinalResult.swap(PrevResult.Val); 11511 return true; 11512 } 11513 11514 private: 11515 bool Success(uint64_t Value, const Expr *E, APValue &Result) { 11516 return IntEval.Success(Value, E, Result); 11517 } 11518 bool Success(const APSInt &Value, const Expr *E, APValue &Result) { 11519 return IntEval.Success(Value, E, Result); 11520 } 11521 bool Error(const Expr *E) { 11522 return IntEval.Error(E); 11523 } 11524 bool Error(const Expr *E, diag::kind D) { 11525 return IntEval.Error(E, D); 11526 } 11527 11528 OptionalDiagnostic CCEDiag(const Expr *E, diag::kind D) { 11529 return Info.CCEDiag(E, D); 11530 } 11531 11532 // Returns true if visiting the RHS is necessary, false otherwise. 11533 bool VisitBinOpLHSOnly(EvalResult &LHSResult, const BinaryOperator *E, 11534 bool &SuppressRHSDiags); 11535 11536 bool VisitBinOp(const EvalResult &LHSResult, const EvalResult &RHSResult, 11537 const BinaryOperator *E, APValue &Result); 11538 11539 void EvaluateExpr(const Expr *E, EvalResult &Result) { 11540 Result.Failed = !Evaluate(Result.Val, Info, E); 11541 if (Result.Failed) 11542 Result.Val = APValue(); 11543 } 11544 11545 void process(EvalResult &Result); 11546 11547 void enqueue(const Expr *E) { 11548 E = E->IgnoreParens(); 11549 Queue.resize(Queue.size()+1); 11550 Queue.back().E = E; 11551 Queue.back().Kind = Job::AnyExprKind; 11552 } 11553 }; 11554 11555 } 11556 11557 bool DataRecursiveIntBinOpEvaluator:: 11558 VisitBinOpLHSOnly(EvalResult &LHSResult, const BinaryOperator *E, 11559 bool &SuppressRHSDiags) { 11560 if (E->getOpcode() == BO_Comma) { 11561 // Ignore LHS but note if we could not evaluate it. 11562 if (LHSResult.Failed) 11563 return Info.noteSideEffect(); 11564 return true; 11565 } 11566 11567 if (E->isLogicalOp()) { 11568 bool LHSAsBool; 11569 if (!LHSResult.Failed && HandleConversionToBool(LHSResult.Val, LHSAsBool)) { 11570 // We were able to evaluate the LHS, see if we can get away with not 11571 // evaluating the RHS: 0 && X -> 0, 1 || X -> 1 11572 if (LHSAsBool == (E->getOpcode() == BO_LOr)) { 11573 Success(LHSAsBool, E, LHSResult.Val); 11574 return false; // Ignore RHS 11575 } 11576 } else { 11577 LHSResult.Failed = true; 11578 11579 // Since we weren't able to evaluate the left hand side, it 11580 // might have had side effects. 11581 if (!Info.noteSideEffect()) 11582 return false; 11583 11584 // We can't evaluate the LHS; however, sometimes the result 11585 // is determined by the RHS: X && 0 -> 0, X || 1 -> 1. 11586 // Don't ignore RHS and suppress diagnostics from this arm. 11587 SuppressRHSDiags = true; 11588 } 11589 11590 return true; 11591 } 11592 11593 assert(E->getLHS()->getType()->isIntegralOrEnumerationType() && 11594 E->getRHS()->getType()->isIntegralOrEnumerationType()); 11595 11596 if (LHSResult.Failed && !Info.noteFailure()) 11597 return false; // Ignore RHS; 11598 11599 return true; 11600 } 11601 11602 static void addOrSubLValueAsInteger(APValue &LVal, const APSInt &Index, 11603 bool IsSub) { 11604 // Compute the new offset in the appropriate width, wrapping at 64 bits. 11605 // FIXME: When compiling for a 32-bit target, we should use 32-bit 11606 // offsets. 11607 assert(!LVal.hasLValuePath() && "have designator for integer lvalue"); 11608 CharUnits &Offset = LVal.getLValueOffset(); 11609 uint64_t Offset64 = Offset.getQuantity(); 11610 uint64_t Index64 = Index.extOrTrunc(64).getZExtValue(); 11611 Offset = CharUnits::fromQuantity(IsSub ? Offset64 - Index64 11612 : Offset64 + Index64); 11613 } 11614 11615 bool DataRecursiveIntBinOpEvaluator:: 11616 VisitBinOp(const EvalResult &LHSResult, const EvalResult &RHSResult, 11617 const BinaryOperator *E, APValue &Result) { 11618 if (E->getOpcode() == BO_Comma) { 11619 if (RHSResult.Failed) 11620 return false; 11621 Result = RHSResult.Val; 11622 return true; 11623 } 11624 11625 if (E->isLogicalOp()) { 11626 bool lhsResult, rhsResult; 11627 bool LHSIsOK = HandleConversionToBool(LHSResult.Val, lhsResult); 11628 bool RHSIsOK = HandleConversionToBool(RHSResult.Val, rhsResult); 11629 11630 if (LHSIsOK) { 11631 if (RHSIsOK) { 11632 if (E->getOpcode() == BO_LOr) 11633 return Success(lhsResult || rhsResult, E, Result); 11634 else 11635 return Success(lhsResult && rhsResult, E, Result); 11636 } 11637 } else { 11638 if (RHSIsOK) { 11639 // We can't evaluate the LHS; however, sometimes the result 11640 // is determined by the RHS: X && 0 -> 0, X || 1 -> 1. 11641 if (rhsResult == (E->getOpcode() == BO_LOr)) 11642 return Success(rhsResult, E, Result); 11643 } 11644 } 11645 11646 return false; 11647 } 11648 11649 assert(E->getLHS()->getType()->isIntegralOrEnumerationType() && 11650 E->getRHS()->getType()->isIntegralOrEnumerationType()); 11651 11652 if (LHSResult.Failed || RHSResult.Failed) 11653 return false; 11654 11655 const APValue &LHSVal = LHSResult.Val; 11656 const APValue &RHSVal = RHSResult.Val; 11657 11658 // Handle cases like (unsigned long)&a + 4. 11659 if (E->isAdditiveOp() && LHSVal.isLValue() && RHSVal.isInt()) { 11660 Result = LHSVal; 11661 addOrSubLValueAsInteger(Result, RHSVal.getInt(), E->getOpcode() == BO_Sub); 11662 return true; 11663 } 11664 11665 // Handle cases like 4 + (unsigned long)&a 11666 if (E->getOpcode() == BO_Add && 11667 RHSVal.isLValue() && LHSVal.isInt()) { 11668 Result = RHSVal; 11669 addOrSubLValueAsInteger(Result, LHSVal.getInt(), /*IsSub*/false); 11670 return true; 11671 } 11672 11673 if (E->getOpcode() == BO_Sub && LHSVal.isLValue() && RHSVal.isLValue()) { 11674 // Handle (intptr_t)&&A - (intptr_t)&&B. 11675 if (!LHSVal.getLValueOffset().isZero() || 11676 !RHSVal.getLValueOffset().isZero()) 11677 return false; 11678 const Expr *LHSExpr = LHSVal.getLValueBase().dyn_cast<const Expr*>(); 11679 const Expr *RHSExpr = RHSVal.getLValueBase().dyn_cast<const Expr*>(); 11680 if (!LHSExpr || !RHSExpr) 11681 return false; 11682 const AddrLabelExpr *LHSAddrExpr = dyn_cast<AddrLabelExpr>(LHSExpr); 11683 const AddrLabelExpr *RHSAddrExpr = dyn_cast<AddrLabelExpr>(RHSExpr); 11684 if (!LHSAddrExpr || !RHSAddrExpr) 11685 return false; 11686 // Make sure both labels come from the same function. 11687 if (LHSAddrExpr->getLabel()->getDeclContext() != 11688 RHSAddrExpr->getLabel()->getDeclContext()) 11689 return false; 11690 Result = APValue(LHSAddrExpr, RHSAddrExpr); 11691 return true; 11692 } 11693 11694 // All the remaining cases expect both operands to be an integer 11695 if (!LHSVal.isInt() || !RHSVal.isInt()) 11696 return Error(E); 11697 11698 // Set up the width and signedness manually, in case it can't be deduced 11699 // from the operation we're performing. 11700 // FIXME: Don't do this in the cases where we can deduce it. 11701 APSInt Value(Info.Ctx.getIntWidth(E->getType()), 11702 E->getType()->isUnsignedIntegerOrEnumerationType()); 11703 if (!handleIntIntBinOp(Info, E, LHSVal.getInt(), E->getOpcode(), 11704 RHSVal.getInt(), Value)) 11705 return false; 11706 return Success(Value, E, Result); 11707 } 11708 11709 void DataRecursiveIntBinOpEvaluator::process(EvalResult &Result) { 11710 Job &job = Queue.back(); 11711 11712 switch (job.Kind) { 11713 case Job::AnyExprKind: { 11714 if (const BinaryOperator *Bop = dyn_cast<BinaryOperator>(job.E)) { 11715 if (shouldEnqueue(Bop)) { 11716 job.Kind = Job::BinOpKind; 11717 enqueue(Bop->getLHS()); 11718 return; 11719 } 11720 } 11721 11722 EvaluateExpr(job.E, Result); 11723 Queue.pop_back(); 11724 return; 11725 } 11726 11727 case Job::BinOpKind: { 11728 const BinaryOperator *Bop = cast<BinaryOperator>(job.E); 11729 bool SuppressRHSDiags = false; 11730 if (!VisitBinOpLHSOnly(Result, Bop, SuppressRHSDiags)) { 11731 Queue.pop_back(); 11732 return; 11733 } 11734 if (SuppressRHSDiags) 11735 job.startSpeculativeEval(Info); 11736 job.LHSResult.swap(Result); 11737 job.Kind = Job::BinOpVisitedLHSKind; 11738 enqueue(Bop->getRHS()); 11739 return; 11740 } 11741 11742 case Job::BinOpVisitedLHSKind: { 11743 const BinaryOperator *Bop = cast<BinaryOperator>(job.E); 11744 EvalResult RHS; 11745 RHS.swap(Result); 11746 Result.Failed = !VisitBinOp(job.LHSResult, RHS, Bop, Result.Val); 11747 Queue.pop_back(); 11748 return; 11749 } 11750 } 11751 11752 llvm_unreachable("Invalid Job::Kind!"); 11753 } 11754 11755 namespace { 11756 /// Used when we determine that we should fail, but can keep evaluating prior to 11757 /// noting that we had a failure. 11758 class DelayedNoteFailureRAII { 11759 EvalInfo &Info; 11760 bool NoteFailure; 11761 11762 public: 11763 DelayedNoteFailureRAII(EvalInfo &Info, bool NoteFailure = true) 11764 : Info(Info), NoteFailure(NoteFailure) {} 11765 ~DelayedNoteFailureRAII() { 11766 if (NoteFailure) { 11767 bool ContinueAfterFailure = Info.noteFailure(); 11768 (void)ContinueAfterFailure; 11769 assert(ContinueAfterFailure && 11770 "Shouldn't have kept evaluating on failure."); 11771 } 11772 } 11773 }; 11774 11775 enum class CmpResult { 11776 Unequal, 11777 Less, 11778 Equal, 11779 Greater, 11780 Unordered, 11781 }; 11782 } 11783 11784 template <class SuccessCB, class AfterCB> 11785 static bool 11786 EvaluateComparisonBinaryOperator(EvalInfo &Info, const BinaryOperator *E, 11787 SuccessCB &&Success, AfterCB &&DoAfter) { 11788 assert(E->isComparisonOp() && "expected comparison operator"); 11789 assert((E->getOpcode() == BO_Cmp || 11790 E->getType()->isIntegralOrEnumerationType()) && 11791 "unsupported binary expression evaluation"); 11792 auto Error = [&](const Expr *E) { 11793 Info.FFDiag(E, diag::note_invalid_subexpr_in_const_expr); 11794 return false; 11795 }; 11796 11797 bool IsRelational = E->isRelationalOp() || E->getOpcode() == BO_Cmp; 11798 bool IsEquality = E->isEqualityOp(); 11799 11800 QualType LHSTy = E->getLHS()->getType(); 11801 QualType RHSTy = E->getRHS()->getType(); 11802 11803 if (LHSTy->isIntegralOrEnumerationType() && 11804 RHSTy->isIntegralOrEnumerationType()) { 11805 APSInt LHS, RHS; 11806 bool LHSOK = EvaluateInteger(E->getLHS(), LHS, Info); 11807 if (!LHSOK && !Info.noteFailure()) 11808 return false; 11809 if (!EvaluateInteger(E->getRHS(), RHS, Info) || !LHSOK) 11810 return false; 11811 if (LHS < RHS) 11812 return Success(CmpResult::Less, E); 11813 if (LHS > RHS) 11814 return Success(CmpResult::Greater, E); 11815 return Success(CmpResult::Equal, E); 11816 } 11817 11818 if (LHSTy->isFixedPointType() || RHSTy->isFixedPointType()) { 11819 APFixedPoint LHSFX(Info.Ctx.getFixedPointSemantics(LHSTy)); 11820 APFixedPoint RHSFX(Info.Ctx.getFixedPointSemantics(RHSTy)); 11821 11822 bool LHSOK = EvaluateFixedPointOrInteger(E->getLHS(), LHSFX, Info); 11823 if (!LHSOK && !Info.noteFailure()) 11824 return false; 11825 if (!EvaluateFixedPointOrInteger(E->getRHS(), RHSFX, Info) || !LHSOK) 11826 return false; 11827 if (LHSFX < RHSFX) 11828 return Success(CmpResult::Less, E); 11829 if (LHSFX > RHSFX) 11830 return Success(CmpResult::Greater, E); 11831 return Success(CmpResult::Equal, E); 11832 } 11833 11834 if (LHSTy->isAnyComplexType() || RHSTy->isAnyComplexType()) { 11835 ComplexValue LHS, RHS; 11836 bool LHSOK; 11837 if (E->isAssignmentOp()) { 11838 LValue LV; 11839 EvaluateLValue(E->getLHS(), LV, Info); 11840 LHSOK = false; 11841 } else if (LHSTy->isRealFloatingType()) { 11842 LHSOK = EvaluateFloat(E->getLHS(), LHS.FloatReal, Info); 11843 if (LHSOK) { 11844 LHS.makeComplexFloat(); 11845 LHS.FloatImag = APFloat(LHS.FloatReal.getSemantics()); 11846 } 11847 } else { 11848 LHSOK = EvaluateComplex(E->getLHS(), LHS, Info); 11849 } 11850 if (!LHSOK && !Info.noteFailure()) 11851 return false; 11852 11853 if (E->getRHS()->getType()->isRealFloatingType()) { 11854 if (!EvaluateFloat(E->getRHS(), RHS.FloatReal, Info) || !LHSOK) 11855 return false; 11856 RHS.makeComplexFloat(); 11857 RHS.FloatImag = APFloat(RHS.FloatReal.getSemantics()); 11858 } else if (!EvaluateComplex(E->getRHS(), RHS, Info) || !LHSOK) 11859 return false; 11860 11861 if (LHS.isComplexFloat()) { 11862 APFloat::cmpResult CR_r = 11863 LHS.getComplexFloatReal().compare(RHS.getComplexFloatReal()); 11864 APFloat::cmpResult CR_i = 11865 LHS.getComplexFloatImag().compare(RHS.getComplexFloatImag()); 11866 bool IsEqual = CR_r == APFloat::cmpEqual && CR_i == APFloat::cmpEqual; 11867 return Success(IsEqual ? CmpResult::Equal : CmpResult::Unequal, E); 11868 } else { 11869 assert(IsEquality && "invalid complex comparison"); 11870 bool IsEqual = LHS.getComplexIntReal() == RHS.getComplexIntReal() && 11871 LHS.getComplexIntImag() == RHS.getComplexIntImag(); 11872 return Success(IsEqual ? CmpResult::Equal : CmpResult::Unequal, E); 11873 } 11874 } 11875 11876 if (LHSTy->isRealFloatingType() && 11877 RHSTy->isRealFloatingType()) { 11878 APFloat RHS(0.0), LHS(0.0); 11879 11880 bool LHSOK = EvaluateFloat(E->getRHS(), RHS, Info); 11881 if (!LHSOK && !Info.noteFailure()) 11882 return false; 11883 11884 if (!EvaluateFloat(E->getLHS(), LHS, Info) || !LHSOK) 11885 return false; 11886 11887 assert(E->isComparisonOp() && "Invalid binary operator!"); 11888 auto GetCmpRes = [&]() { 11889 switch (LHS.compare(RHS)) { 11890 case APFloat::cmpEqual: 11891 return CmpResult::Equal; 11892 case APFloat::cmpLessThan: 11893 return CmpResult::Less; 11894 case APFloat::cmpGreaterThan: 11895 return CmpResult::Greater; 11896 case APFloat::cmpUnordered: 11897 return CmpResult::Unordered; 11898 } 11899 llvm_unreachable("Unrecognised APFloat::cmpResult enum"); 11900 }; 11901 return Success(GetCmpRes(), E); 11902 } 11903 11904 if (LHSTy->isPointerType() && RHSTy->isPointerType()) { 11905 LValue LHSValue, RHSValue; 11906 11907 bool LHSOK = EvaluatePointer(E->getLHS(), LHSValue, Info); 11908 if (!LHSOK && !Info.noteFailure()) 11909 return false; 11910 11911 if (!EvaluatePointer(E->getRHS(), RHSValue, Info) || !LHSOK) 11912 return false; 11913 11914 // Reject differing bases from the normal codepath; we special-case 11915 // comparisons to null. 11916 if (!HasSameBase(LHSValue, RHSValue)) { 11917 // Inequalities and subtractions between unrelated pointers have 11918 // unspecified or undefined behavior. 11919 if (!IsEquality) { 11920 Info.FFDiag(E, diag::note_constexpr_pointer_comparison_unspecified); 11921 return false; 11922 } 11923 // A constant address may compare equal to the address of a symbol. 11924 // The one exception is that address of an object cannot compare equal 11925 // to a null pointer constant. 11926 if ((!LHSValue.Base && !LHSValue.Offset.isZero()) || 11927 (!RHSValue.Base && !RHSValue.Offset.isZero())) 11928 return Error(E); 11929 // It's implementation-defined whether distinct literals will have 11930 // distinct addresses. In clang, the result of such a comparison is 11931 // unspecified, so it is not a constant expression. However, we do know 11932 // that the address of a literal will be non-null. 11933 if ((IsLiteralLValue(LHSValue) || IsLiteralLValue(RHSValue)) && 11934 LHSValue.Base && RHSValue.Base) 11935 return Error(E); 11936 // We can't tell whether weak symbols will end up pointing to the same 11937 // object. 11938 if (IsWeakLValue(LHSValue) || IsWeakLValue(RHSValue)) 11939 return Error(E); 11940 // We can't compare the address of the start of one object with the 11941 // past-the-end address of another object, per C++ DR1652. 11942 if ((LHSValue.Base && LHSValue.Offset.isZero() && 11943 isOnePastTheEndOfCompleteObject(Info.Ctx, RHSValue)) || 11944 (RHSValue.Base && RHSValue.Offset.isZero() && 11945 isOnePastTheEndOfCompleteObject(Info.Ctx, LHSValue))) 11946 return Error(E); 11947 // We can't tell whether an object is at the same address as another 11948 // zero sized object. 11949 if ((RHSValue.Base && isZeroSized(LHSValue)) || 11950 (LHSValue.Base && isZeroSized(RHSValue))) 11951 return Error(E); 11952 return Success(CmpResult::Unequal, E); 11953 } 11954 11955 const CharUnits &LHSOffset = LHSValue.getLValueOffset(); 11956 const CharUnits &RHSOffset = RHSValue.getLValueOffset(); 11957 11958 SubobjectDesignator &LHSDesignator = LHSValue.getLValueDesignator(); 11959 SubobjectDesignator &RHSDesignator = RHSValue.getLValueDesignator(); 11960 11961 // C++11 [expr.rel]p3: 11962 // Pointers to void (after pointer conversions) can be compared, with a 11963 // result defined as follows: If both pointers represent the same 11964 // address or are both the null pointer value, the result is true if the 11965 // operator is <= or >= and false otherwise; otherwise the result is 11966 // unspecified. 11967 // We interpret this as applying to pointers to *cv* void. 11968 if (LHSTy->isVoidPointerType() && LHSOffset != RHSOffset && IsRelational) 11969 Info.CCEDiag(E, diag::note_constexpr_void_comparison); 11970 11971 // C++11 [expr.rel]p2: 11972 // - If two pointers point to non-static data members of the same object, 11973 // or to subobjects or array elements fo such members, recursively, the 11974 // pointer to the later declared member compares greater provided the 11975 // two members have the same access control and provided their class is 11976 // not a union. 11977 // [...] 11978 // - Otherwise pointer comparisons are unspecified. 11979 if (!LHSDesignator.Invalid && !RHSDesignator.Invalid && IsRelational) { 11980 bool WasArrayIndex; 11981 unsigned Mismatch = FindDesignatorMismatch( 11982 getType(LHSValue.Base), LHSDesignator, RHSDesignator, WasArrayIndex); 11983 // At the point where the designators diverge, the comparison has a 11984 // specified value if: 11985 // - we are comparing array indices 11986 // - we are comparing fields of a union, or fields with the same access 11987 // Otherwise, the result is unspecified and thus the comparison is not a 11988 // constant expression. 11989 if (!WasArrayIndex && Mismatch < LHSDesignator.Entries.size() && 11990 Mismatch < RHSDesignator.Entries.size()) { 11991 const FieldDecl *LF = getAsField(LHSDesignator.Entries[Mismatch]); 11992 const FieldDecl *RF = getAsField(RHSDesignator.Entries[Mismatch]); 11993 if (!LF && !RF) 11994 Info.CCEDiag(E, diag::note_constexpr_pointer_comparison_base_classes); 11995 else if (!LF) 11996 Info.CCEDiag(E, diag::note_constexpr_pointer_comparison_base_field) 11997 << getAsBaseClass(LHSDesignator.Entries[Mismatch]) 11998 << RF->getParent() << RF; 11999 else if (!RF) 12000 Info.CCEDiag(E, diag::note_constexpr_pointer_comparison_base_field) 12001 << getAsBaseClass(RHSDesignator.Entries[Mismatch]) 12002 << LF->getParent() << LF; 12003 else if (!LF->getParent()->isUnion() && 12004 LF->getAccess() != RF->getAccess()) 12005 Info.CCEDiag(E, 12006 diag::note_constexpr_pointer_comparison_differing_access) 12007 << LF << LF->getAccess() << RF << RF->getAccess() 12008 << LF->getParent(); 12009 } 12010 } 12011 12012 // The comparison here must be unsigned, and performed with the same 12013 // width as the pointer. 12014 unsigned PtrSize = Info.Ctx.getTypeSize(LHSTy); 12015 uint64_t CompareLHS = LHSOffset.getQuantity(); 12016 uint64_t CompareRHS = RHSOffset.getQuantity(); 12017 assert(PtrSize <= 64 && "Unexpected pointer width"); 12018 uint64_t Mask = ~0ULL >> (64 - PtrSize); 12019 CompareLHS &= Mask; 12020 CompareRHS &= Mask; 12021 12022 // If there is a base and this is a relational operator, we can only 12023 // compare pointers within the object in question; otherwise, the result 12024 // depends on where the object is located in memory. 12025 if (!LHSValue.Base.isNull() && IsRelational) { 12026 QualType BaseTy = getType(LHSValue.Base); 12027 if (BaseTy->isIncompleteType()) 12028 return Error(E); 12029 CharUnits Size = Info.Ctx.getTypeSizeInChars(BaseTy); 12030 uint64_t OffsetLimit = Size.getQuantity(); 12031 if (CompareLHS > OffsetLimit || CompareRHS > OffsetLimit) 12032 return Error(E); 12033 } 12034 12035 if (CompareLHS < CompareRHS) 12036 return Success(CmpResult::Less, E); 12037 if (CompareLHS > CompareRHS) 12038 return Success(CmpResult::Greater, E); 12039 return Success(CmpResult::Equal, E); 12040 } 12041 12042 if (LHSTy->isMemberPointerType()) { 12043 assert(IsEquality && "unexpected member pointer operation"); 12044 assert(RHSTy->isMemberPointerType() && "invalid comparison"); 12045 12046 MemberPtr LHSValue, RHSValue; 12047 12048 bool LHSOK = EvaluateMemberPointer(E->getLHS(), LHSValue, Info); 12049 if (!LHSOK && !Info.noteFailure()) 12050 return false; 12051 12052 if (!EvaluateMemberPointer(E->getRHS(), RHSValue, Info) || !LHSOK) 12053 return false; 12054 12055 // C++11 [expr.eq]p2: 12056 // If both operands are null, they compare equal. Otherwise if only one is 12057 // null, they compare unequal. 12058 if (!LHSValue.getDecl() || !RHSValue.getDecl()) { 12059 bool Equal = !LHSValue.getDecl() && !RHSValue.getDecl(); 12060 return Success(Equal ? CmpResult::Equal : CmpResult::Unequal, E); 12061 } 12062 12063 // Otherwise if either is a pointer to a virtual member function, the 12064 // result is unspecified. 12065 if (const CXXMethodDecl *MD = dyn_cast<CXXMethodDecl>(LHSValue.getDecl())) 12066 if (MD->isVirtual()) 12067 Info.CCEDiag(E, diag::note_constexpr_compare_virtual_mem_ptr) << MD; 12068 if (const CXXMethodDecl *MD = dyn_cast<CXXMethodDecl>(RHSValue.getDecl())) 12069 if (MD->isVirtual()) 12070 Info.CCEDiag(E, diag::note_constexpr_compare_virtual_mem_ptr) << MD; 12071 12072 // Otherwise they compare equal if and only if they would refer to the 12073 // same member of the same most derived object or the same subobject if 12074 // they were dereferenced with a hypothetical object of the associated 12075 // class type. 12076 bool Equal = LHSValue == RHSValue; 12077 return Success(Equal ? CmpResult::Equal : CmpResult::Unequal, E); 12078 } 12079 12080 if (LHSTy->isNullPtrType()) { 12081 assert(E->isComparisonOp() && "unexpected nullptr operation"); 12082 assert(RHSTy->isNullPtrType() && "missing pointer conversion"); 12083 // C++11 [expr.rel]p4, [expr.eq]p3: If two operands of type std::nullptr_t 12084 // are compared, the result is true of the operator is <=, >= or ==, and 12085 // false otherwise. 12086 return Success(CmpResult::Equal, E); 12087 } 12088 12089 return DoAfter(); 12090 } 12091 12092 bool RecordExprEvaluator::VisitBinCmp(const BinaryOperator *E) { 12093 if (!CheckLiteralType(Info, E)) 12094 return false; 12095 12096 auto OnSuccess = [&](CmpResult CR, const BinaryOperator *E) { 12097 ComparisonCategoryResult CCR; 12098 switch (CR) { 12099 case CmpResult::Unequal: 12100 llvm_unreachable("should never produce Unequal for three-way comparison"); 12101 case CmpResult::Less: 12102 CCR = ComparisonCategoryResult::Less; 12103 break; 12104 case CmpResult::Equal: 12105 CCR = ComparisonCategoryResult::Equal; 12106 break; 12107 case CmpResult::Greater: 12108 CCR = ComparisonCategoryResult::Greater; 12109 break; 12110 case CmpResult::Unordered: 12111 CCR = ComparisonCategoryResult::Unordered; 12112 break; 12113 } 12114 // Evaluation succeeded. Lookup the information for the comparison category 12115 // type and fetch the VarDecl for the result. 12116 const ComparisonCategoryInfo &CmpInfo = 12117 Info.Ctx.CompCategories.getInfoForType(E->getType()); 12118 const VarDecl *VD = CmpInfo.getValueInfo(CmpInfo.makeWeakResult(CCR))->VD; 12119 // Check and evaluate the result as a constant expression. 12120 LValue LV; 12121 LV.set(VD); 12122 if (!handleLValueToRValueConversion(Info, E, E->getType(), LV, Result)) 12123 return false; 12124 return CheckConstantExpression(Info, E->getExprLoc(), E->getType(), Result); 12125 }; 12126 return EvaluateComparisonBinaryOperator(Info, E, OnSuccess, [&]() { 12127 return ExprEvaluatorBaseTy::VisitBinCmp(E); 12128 }); 12129 } 12130 12131 bool IntExprEvaluator::VisitBinaryOperator(const BinaryOperator *E) { 12132 // We don't call noteFailure immediately because the assignment happens after 12133 // we evaluate LHS and RHS. 12134 if (!Info.keepEvaluatingAfterFailure() && E->isAssignmentOp()) 12135 return Error(E); 12136 12137 DelayedNoteFailureRAII MaybeNoteFailureLater(Info, E->isAssignmentOp()); 12138 if (DataRecursiveIntBinOpEvaluator::shouldEnqueue(E)) 12139 return DataRecursiveIntBinOpEvaluator(*this, Result).Traverse(E); 12140 12141 assert((!E->getLHS()->getType()->isIntegralOrEnumerationType() || 12142 !E->getRHS()->getType()->isIntegralOrEnumerationType()) && 12143 "DataRecursiveIntBinOpEvaluator should have handled integral types"); 12144 12145 if (E->isComparisonOp()) { 12146 // Evaluate builtin binary comparisons by evaluating them as three-way 12147 // comparisons and then translating the result. 12148 auto OnSuccess = [&](CmpResult CR, const BinaryOperator *E) { 12149 assert((CR != CmpResult::Unequal || E->isEqualityOp()) && 12150 "should only produce Unequal for equality comparisons"); 12151 bool IsEqual = CR == CmpResult::Equal, 12152 IsLess = CR == CmpResult::Less, 12153 IsGreater = CR == CmpResult::Greater; 12154 auto Op = E->getOpcode(); 12155 switch (Op) { 12156 default: 12157 llvm_unreachable("unsupported binary operator"); 12158 case BO_EQ: 12159 case BO_NE: 12160 return Success(IsEqual == (Op == BO_EQ), E); 12161 case BO_LT: 12162 return Success(IsLess, E); 12163 case BO_GT: 12164 return Success(IsGreater, E); 12165 case BO_LE: 12166 return Success(IsEqual || IsLess, E); 12167 case BO_GE: 12168 return Success(IsEqual || IsGreater, E); 12169 } 12170 }; 12171 return EvaluateComparisonBinaryOperator(Info, E, OnSuccess, [&]() { 12172 return ExprEvaluatorBaseTy::VisitBinaryOperator(E); 12173 }); 12174 } 12175 12176 QualType LHSTy = E->getLHS()->getType(); 12177 QualType RHSTy = E->getRHS()->getType(); 12178 12179 if (LHSTy->isPointerType() && RHSTy->isPointerType() && 12180 E->getOpcode() == BO_Sub) { 12181 LValue LHSValue, RHSValue; 12182 12183 bool LHSOK = EvaluatePointer(E->getLHS(), LHSValue, Info); 12184 if (!LHSOK && !Info.noteFailure()) 12185 return false; 12186 12187 if (!EvaluatePointer(E->getRHS(), RHSValue, Info) || !LHSOK) 12188 return false; 12189 12190 // Reject differing bases from the normal codepath; we special-case 12191 // comparisons to null. 12192 if (!HasSameBase(LHSValue, RHSValue)) { 12193 // Handle &&A - &&B. 12194 if (!LHSValue.Offset.isZero() || !RHSValue.Offset.isZero()) 12195 return Error(E); 12196 const Expr *LHSExpr = LHSValue.Base.dyn_cast<const Expr *>(); 12197 const Expr *RHSExpr = RHSValue.Base.dyn_cast<const Expr *>(); 12198 if (!LHSExpr || !RHSExpr) 12199 return Error(E); 12200 const AddrLabelExpr *LHSAddrExpr = dyn_cast<AddrLabelExpr>(LHSExpr); 12201 const AddrLabelExpr *RHSAddrExpr = dyn_cast<AddrLabelExpr>(RHSExpr); 12202 if (!LHSAddrExpr || !RHSAddrExpr) 12203 return Error(E); 12204 // Make sure both labels come from the same function. 12205 if (LHSAddrExpr->getLabel()->getDeclContext() != 12206 RHSAddrExpr->getLabel()->getDeclContext()) 12207 return Error(E); 12208 return Success(APValue(LHSAddrExpr, RHSAddrExpr), E); 12209 } 12210 const CharUnits &LHSOffset = LHSValue.getLValueOffset(); 12211 const CharUnits &RHSOffset = RHSValue.getLValueOffset(); 12212 12213 SubobjectDesignator &LHSDesignator = LHSValue.getLValueDesignator(); 12214 SubobjectDesignator &RHSDesignator = RHSValue.getLValueDesignator(); 12215 12216 // C++11 [expr.add]p6: 12217 // Unless both pointers point to elements of the same array object, or 12218 // one past the last element of the array object, the behavior is 12219 // undefined. 12220 if (!LHSDesignator.Invalid && !RHSDesignator.Invalid && 12221 !AreElementsOfSameArray(getType(LHSValue.Base), LHSDesignator, 12222 RHSDesignator)) 12223 Info.CCEDiag(E, diag::note_constexpr_pointer_subtraction_not_same_array); 12224 12225 QualType Type = E->getLHS()->getType(); 12226 QualType ElementType = Type->castAs<PointerType>()->getPointeeType(); 12227 12228 CharUnits ElementSize; 12229 if (!HandleSizeof(Info, E->getExprLoc(), ElementType, ElementSize)) 12230 return false; 12231 12232 // As an extension, a type may have zero size (empty struct or union in 12233 // C, array of zero length). Pointer subtraction in such cases has 12234 // undefined behavior, so is not constant. 12235 if (ElementSize.isZero()) { 12236 Info.FFDiag(E, diag::note_constexpr_pointer_subtraction_zero_size) 12237 << ElementType; 12238 return false; 12239 } 12240 12241 // FIXME: LLVM and GCC both compute LHSOffset - RHSOffset at runtime, 12242 // and produce incorrect results when it overflows. Such behavior 12243 // appears to be non-conforming, but is common, so perhaps we should 12244 // assume the standard intended for such cases to be undefined behavior 12245 // and check for them. 12246 12247 // Compute (LHSOffset - RHSOffset) / Size carefully, checking for 12248 // overflow in the final conversion to ptrdiff_t. 12249 APSInt LHS(llvm::APInt(65, (int64_t)LHSOffset.getQuantity(), true), false); 12250 APSInt RHS(llvm::APInt(65, (int64_t)RHSOffset.getQuantity(), true), false); 12251 APSInt ElemSize(llvm::APInt(65, (int64_t)ElementSize.getQuantity(), true), 12252 false); 12253 APSInt TrueResult = (LHS - RHS) / ElemSize; 12254 APSInt Result = TrueResult.trunc(Info.Ctx.getIntWidth(E->getType())); 12255 12256 if (Result.extend(65) != TrueResult && 12257 !HandleOverflow(Info, E, TrueResult, E->getType())) 12258 return false; 12259 return Success(Result, E); 12260 } 12261 12262 return ExprEvaluatorBaseTy::VisitBinaryOperator(E); 12263 } 12264 12265 /// VisitUnaryExprOrTypeTraitExpr - Evaluate a sizeof, alignof or vec_step with 12266 /// a result as the expression's type. 12267 bool IntExprEvaluator::VisitUnaryExprOrTypeTraitExpr( 12268 const UnaryExprOrTypeTraitExpr *E) { 12269 switch(E->getKind()) { 12270 case UETT_PreferredAlignOf: 12271 case UETT_AlignOf: { 12272 if (E->isArgumentType()) 12273 return Success(GetAlignOfType(Info, E->getArgumentType(), E->getKind()), 12274 E); 12275 else 12276 return Success(GetAlignOfExpr(Info, E->getArgumentExpr(), E->getKind()), 12277 E); 12278 } 12279 12280 case UETT_VecStep: { 12281 QualType Ty = E->getTypeOfArgument(); 12282 12283 if (Ty->isVectorType()) { 12284 unsigned n = Ty->castAs<VectorType>()->getNumElements(); 12285 12286 // The vec_step built-in functions that take a 3-component 12287 // vector return 4. (OpenCL 1.1 spec 6.11.12) 12288 if (n == 3) 12289 n = 4; 12290 12291 return Success(n, E); 12292 } else 12293 return Success(1, E); 12294 } 12295 12296 case UETT_SizeOf: { 12297 QualType SrcTy = E->getTypeOfArgument(); 12298 // C++ [expr.sizeof]p2: "When applied to a reference or a reference type, 12299 // the result is the size of the referenced type." 12300 if (const ReferenceType *Ref = SrcTy->getAs<ReferenceType>()) 12301 SrcTy = Ref->getPointeeType(); 12302 12303 CharUnits Sizeof; 12304 if (!HandleSizeof(Info, E->getExprLoc(), SrcTy, Sizeof)) 12305 return false; 12306 return Success(Sizeof, E); 12307 } 12308 case UETT_OpenMPRequiredSimdAlign: 12309 assert(E->isArgumentType()); 12310 return Success( 12311 Info.Ctx.toCharUnitsFromBits( 12312 Info.Ctx.getOpenMPDefaultSimdAlign(E->getArgumentType())) 12313 .getQuantity(), 12314 E); 12315 } 12316 12317 llvm_unreachable("unknown expr/type trait"); 12318 } 12319 12320 bool IntExprEvaluator::VisitOffsetOfExpr(const OffsetOfExpr *OOE) { 12321 CharUnits Result; 12322 unsigned n = OOE->getNumComponents(); 12323 if (n == 0) 12324 return Error(OOE); 12325 QualType CurrentType = OOE->getTypeSourceInfo()->getType(); 12326 for (unsigned i = 0; i != n; ++i) { 12327 OffsetOfNode ON = OOE->getComponent(i); 12328 switch (ON.getKind()) { 12329 case OffsetOfNode::Array: { 12330 const Expr *Idx = OOE->getIndexExpr(ON.getArrayExprIndex()); 12331 APSInt IdxResult; 12332 if (!EvaluateInteger(Idx, IdxResult, Info)) 12333 return false; 12334 const ArrayType *AT = Info.Ctx.getAsArrayType(CurrentType); 12335 if (!AT) 12336 return Error(OOE); 12337 CurrentType = AT->getElementType(); 12338 CharUnits ElementSize = Info.Ctx.getTypeSizeInChars(CurrentType); 12339 Result += IdxResult.getSExtValue() * ElementSize; 12340 break; 12341 } 12342 12343 case OffsetOfNode::Field: { 12344 FieldDecl *MemberDecl = ON.getField(); 12345 const RecordType *RT = CurrentType->getAs<RecordType>(); 12346 if (!RT) 12347 return Error(OOE); 12348 RecordDecl *RD = RT->getDecl(); 12349 if (RD->isInvalidDecl()) return false; 12350 const ASTRecordLayout &RL = Info.Ctx.getASTRecordLayout(RD); 12351 unsigned i = MemberDecl->getFieldIndex(); 12352 assert(i < RL.getFieldCount() && "offsetof field in wrong type"); 12353 Result += Info.Ctx.toCharUnitsFromBits(RL.getFieldOffset(i)); 12354 CurrentType = MemberDecl->getType().getNonReferenceType(); 12355 break; 12356 } 12357 12358 case OffsetOfNode::Identifier: 12359 llvm_unreachable("dependent __builtin_offsetof"); 12360 12361 case OffsetOfNode::Base: { 12362 CXXBaseSpecifier *BaseSpec = ON.getBase(); 12363 if (BaseSpec->isVirtual()) 12364 return Error(OOE); 12365 12366 // Find the layout of the class whose base we are looking into. 12367 const RecordType *RT = CurrentType->getAs<RecordType>(); 12368 if (!RT) 12369 return Error(OOE); 12370 RecordDecl *RD = RT->getDecl(); 12371 if (RD->isInvalidDecl()) return false; 12372 const ASTRecordLayout &RL = Info.Ctx.getASTRecordLayout(RD); 12373 12374 // Find the base class itself. 12375 CurrentType = BaseSpec->getType(); 12376 const RecordType *BaseRT = CurrentType->getAs<RecordType>(); 12377 if (!BaseRT) 12378 return Error(OOE); 12379 12380 // Add the offset to the base. 12381 Result += RL.getBaseClassOffset(cast<CXXRecordDecl>(BaseRT->getDecl())); 12382 break; 12383 } 12384 } 12385 } 12386 return Success(Result, OOE); 12387 } 12388 12389 bool IntExprEvaluator::VisitUnaryOperator(const UnaryOperator *E) { 12390 switch (E->getOpcode()) { 12391 default: 12392 // Address, indirect, pre/post inc/dec, etc are not valid constant exprs. 12393 // See C99 6.6p3. 12394 return Error(E); 12395 case UO_Extension: 12396 // FIXME: Should extension allow i-c-e extension expressions in its scope? 12397 // If so, we could clear the diagnostic ID. 12398 return Visit(E->getSubExpr()); 12399 case UO_Plus: 12400 // The result is just the value. 12401 return Visit(E->getSubExpr()); 12402 case UO_Minus: { 12403 if (!Visit(E->getSubExpr())) 12404 return false; 12405 if (!Result.isInt()) return Error(E); 12406 const APSInt &Value = Result.getInt(); 12407 if (Value.isSigned() && Value.isMinSignedValue() && E->canOverflow() && 12408 !HandleOverflow(Info, E, -Value.extend(Value.getBitWidth() + 1), 12409 E->getType())) 12410 return false; 12411 return Success(-Value, E); 12412 } 12413 case UO_Not: { 12414 if (!Visit(E->getSubExpr())) 12415 return false; 12416 if (!Result.isInt()) return Error(E); 12417 return Success(~Result.getInt(), E); 12418 } 12419 case UO_LNot: { 12420 bool bres; 12421 if (!EvaluateAsBooleanCondition(E->getSubExpr(), bres, Info)) 12422 return false; 12423 return Success(!bres, E); 12424 } 12425 } 12426 } 12427 12428 /// HandleCast - This is used to evaluate implicit or explicit casts where the 12429 /// result type is integer. 12430 bool IntExprEvaluator::VisitCastExpr(const CastExpr *E) { 12431 const Expr *SubExpr = E->getSubExpr(); 12432 QualType DestType = E->getType(); 12433 QualType SrcType = SubExpr->getType(); 12434 12435 switch (E->getCastKind()) { 12436 case CK_BaseToDerived: 12437 case CK_DerivedToBase: 12438 case CK_UncheckedDerivedToBase: 12439 case CK_Dynamic: 12440 case CK_ToUnion: 12441 case CK_ArrayToPointerDecay: 12442 case CK_FunctionToPointerDecay: 12443 case CK_NullToPointer: 12444 case CK_NullToMemberPointer: 12445 case CK_BaseToDerivedMemberPointer: 12446 case CK_DerivedToBaseMemberPointer: 12447 case CK_ReinterpretMemberPointer: 12448 case CK_ConstructorConversion: 12449 case CK_IntegralToPointer: 12450 case CK_ToVoid: 12451 case CK_VectorSplat: 12452 case CK_IntegralToFloating: 12453 case CK_FloatingCast: 12454 case CK_CPointerToObjCPointerCast: 12455 case CK_BlockPointerToObjCPointerCast: 12456 case CK_AnyPointerToBlockPointerCast: 12457 case CK_ObjCObjectLValueCast: 12458 case CK_FloatingRealToComplex: 12459 case CK_FloatingComplexToReal: 12460 case CK_FloatingComplexCast: 12461 case CK_FloatingComplexToIntegralComplex: 12462 case CK_IntegralRealToComplex: 12463 case CK_IntegralComplexCast: 12464 case CK_IntegralComplexToFloatingComplex: 12465 case CK_BuiltinFnToFnPtr: 12466 case CK_ZeroToOCLOpaqueType: 12467 case CK_NonAtomicToAtomic: 12468 case CK_AddressSpaceConversion: 12469 case CK_IntToOCLSampler: 12470 case CK_FixedPointCast: 12471 case CK_IntegralToFixedPoint: 12472 llvm_unreachable("invalid cast kind for integral value"); 12473 12474 case CK_BitCast: 12475 case CK_Dependent: 12476 case CK_LValueBitCast: 12477 case CK_ARCProduceObject: 12478 case CK_ARCConsumeObject: 12479 case CK_ARCReclaimReturnedObject: 12480 case CK_ARCExtendBlockObject: 12481 case CK_CopyAndAutoreleaseBlockObject: 12482 return Error(E); 12483 12484 case CK_UserDefinedConversion: 12485 case CK_LValueToRValue: 12486 case CK_AtomicToNonAtomic: 12487 case CK_NoOp: 12488 case CK_LValueToRValueBitCast: 12489 return ExprEvaluatorBaseTy::VisitCastExpr(E); 12490 12491 case CK_MemberPointerToBoolean: 12492 case CK_PointerToBoolean: 12493 case CK_IntegralToBoolean: 12494 case CK_FloatingToBoolean: 12495 case CK_BooleanToSignedIntegral: 12496 case CK_FloatingComplexToBoolean: 12497 case CK_IntegralComplexToBoolean: { 12498 bool BoolResult; 12499 if (!EvaluateAsBooleanCondition(SubExpr, BoolResult, Info)) 12500 return false; 12501 uint64_t IntResult = BoolResult; 12502 if (BoolResult && E->getCastKind() == CK_BooleanToSignedIntegral) 12503 IntResult = (uint64_t)-1; 12504 return Success(IntResult, E); 12505 } 12506 12507 case CK_FixedPointToIntegral: { 12508 APFixedPoint Src(Info.Ctx.getFixedPointSemantics(SrcType)); 12509 if (!EvaluateFixedPoint(SubExpr, Src, Info)) 12510 return false; 12511 bool Overflowed; 12512 llvm::APSInt Result = Src.convertToInt( 12513 Info.Ctx.getIntWidth(DestType), 12514 DestType->isSignedIntegerOrEnumerationType(), &Overflowed); 12515 if (Overflowed && !HandleOverflow(Info, E, Result, DestType)) 12516 return false; 12517 return Success(Result, E); 12518 } 12519 12520 case CK_FixedPointToBoolean: { 12521 // Unsigned padding does not affect this. 12522 APValue Val; 12523 if (!Evaluate(Val, Info, SubExpr)) 12524 return false; 12525 return Success(Val.getFixedPoint().getBoolValue(), E); 12526 } 12527 12528 case CK_IntegralCast: { 12529 if (!Visit(SubExpr)) 12530 return false; 12531 12532 if (!Result.isInt()) { 12533 // Allow casts of address-of-label differences if they are no-ops 12534 // or narrowing. (The narrowing case isn't actually guaranteed to 12535 // be constant-evaluatable except in some narrow cases which are hard 12536 // to detect here. We let it through on the assumption the user knows 12537 // what they are doing.) 12538 if (Result.isAddrLabelDiff()) 12539 return Info.Ctx.getTypeSize(DestType) <= Info.Ctx.getTypeSize(SrcType); 12540 // Only allow casts of lvalues if they are lossless. 12541 return Info.Ctx.getTypeSize(DestType) == Info.Ctx.getTypeSize(SrcType); 12542 } 12543 12544 return Success(HandleIntToIntCast(Info, E, DestType, SrcType, 12545 Result.getInt()), E); 12546 } 12547 12548 case CK_PointerToIntegral: { 12549 CCEDiag(E, diag::note_constexpr_invalid_cast) << 2; 12550 12551 LValue LV; 12552 if (!EvaluatePointer(SubExpr, LV, Info)) 12553 return false; 12554 12555 if (LV.getLValueBase()) { 12556 // Only allow based lvalue casts if they are lossless. 12557 // FIXME: Allow a larger integer size than the pointer size, and allow 12558 // narrowing back down to pointer width in subsequent integral casts. 12559 // FIXME: Check integer type's active bits, not its type size. 12560 if (Info.Ctx.getTypeSize(DestType) != Info.Ctx.getTypeSize(SrcType)) 12561 return Error(E); 12562 12563 LV.Designator.setInvalid(); 12564 LV.moveInto(Result); 12565 return true; 12566 } 12567 12568 APSInt AsInt; 12569 APValue V; 12570 LV.moveInto(V); 12571 if (!V.toIntegralConstant(AsInt, SrcType, Info.Ctx)) 12572 llvm_unreachable("Can't cast this!"); 12573 12574 return Success(HandleIntToIntCast(Info, E, DestType, SrcType, AsInt), E); 12575 } 12576 12577 case CK_IntegralComplexToReal: { 12578 ComplexValue C; 12579 if (!EvaluateComplex(SubExpr, C, Info)) 12580 return false; 12581 return Success(C.getComplexIntReal(), E); 12582 } 12583 12584 case CK_FloatingToIntegral: { 12585 APFloat F(0.0); 12586 if (!EvaluateFloat(SubExpr, F, Info)) 12587 return false; 12588 12589 APSInt Value; 12590 if (!HandleFloatToIntCast(Info, E, SrcType, F, DestType, Value)) 12591 return false; 12592 return Success(Value, E); 12593 } 12594 } 12595 12596 llvm_unreachable("unknown cast resulting in integral value"); 12597 } 12598 12599 bool IntExprEvaluator::VisitUnaryReal(const UnaryOperator *E) { 12600 if (E->getSubExpr()->getType()->isAnyComplexType()) { 12601 ComplexValue LV; 12602 if (!EvaluateComplex(E->getSubExpr(), LV, Info)) 12603 return false; 12604 if (!LV.isComplexInt()) 12605 return Error(E); 12606 return Success(LV.getComplexIntReal(), E); 12607 } 12608 12609 return Visit(E->getSubExpr()); 12610 } 12611 12612 bool IntExprEvaluator::VisitUnaryImag(const UnaryOperator *E) { 12613 if (E->getSubExpr()->getType()->isComplexIntegerType()) { 12614 ComplexValue LV; 12615 if (!EvaluateComplex(E->getSubExpr(), LV, Info)) 12616 return false; 12617 if (!LV.isComplexInt()) 12618 return Error(E); 12619 return Success(LV.getComplexIntImag(), E); 12620 } 12621 12622 VisitIgnoredValue(E->getSubExpr()); 12623 return Success(0, E); 12624 } 12625 12626 bool IntExprEvaluator::VisitSizeOfPackExpr(const SizeOfPackExpr *E) { 12627 return Success(E->getPackLength(), E); 12628 } 12629 12630 bool IntExprEvaluator::VisitCXXNoexceptExpr(const CXXNoexceptExpr *E) { 12631 return Success(E->getValue(), E); 12632 } 12633 12634 bool IntExprEvaluator::VisitConceptSpecializationExpr( 12635 const ConceptSpecializationExpr *E) { 12636 return Success(E->isSatisfied(), E); 12637 } 12638 12639 bool IntExprEvaluator::VisitRequiresExpr(const RequiresExpr *E) { 12640 return Success(E->isSatisfied(), E); 12641 } 12642 12643 bool FixedPointExprEvaluator::VisitUnaryOperator(const UnaryOperator *E) { 12644 switch (E->getOpcode()) { 12645 default: 12646 // Invalid unary operators 12647 return Error(E); 12648 case UO_Plus: 12649 // The result is just the value. 12650 return Visit(E->getSubExpr()); 12651 case UO_Minus: { 12652 if (!Visit(E->getSubExpr())) return false; 12653 if (!Result.isFixedPoint()) 12654 return Error(E); 12655 bool Overflowed; 12656 APFixedPoint Negated = Result.getFixedPoint().negate(&Overflowed); 12657 if (Overflowed && !HandleOverflow(Info, E, Negated, E->getType())) 12658 return false; 12659 return Success(Negated, E); 12660 } 12661 case UO_LNot: { 12662 bool bres; 12663 if (!EvaluateAsBooleanCondition(E->getSubExpr(), bres, Info)) 12664 return false; 12665 return Success(!bres, E); 12666 } 12667 } 12668 } 12669 12670 bool FixedPointExprEvaluator::VisitCastExpr(const CastExpr *E) { 12671 const Expr *SubExpr = E->getSubExpr(); 12672 QualType DestType = E->getType(); 12673 assert(DestType->isFixedPointType() && 12674 "Expected destination type to be a fixed point type"); 12675 auto DestFXSema = Info.Ctx.getFixedPointSemantics(DestType); 12676 12677 switch (E->getCastKind()) { 12678 case CK_FixedPointCast: { 12679 APFixedPoint Src(Info.Ctx.getFixedPointSemantics(SubExpr->getType())); 12680 if (!EvaluateFixedPoint(SubExpr, Src, Info)) 12681 return false; 12682 bool Overflowed; 12683 APFixedPoint Result = Src.convert(DestFXSema, &Overflowed); 12684 if (Overflowed && !HandleOverflow(Info, E, Result, DestType)) 12685 return false; 12686 return Success(Result, E); 12687 } 12688 case CK_IntegralToFixedPoint: { 12689 APSInt Src; 12690 if (!EvaluateInteger(SubExpr, Src, Info)) 12691 return false; 12692 12693 bool Overflowed; 12694 APFixedPoint IntResult = APFixedPoint::getFromIntValue( 12695 Src, Info.Ctx.getFixedPointSemantics(DestType), &Overflowed); 12696 12697 if (Overflowed && !HandleOverflow(Info, E, IntResult, DestType)) 12698 return false; 12699 12700 return Success(IntResult, E); 12701 } 12702 case CK_NoOp: 12703 case CK_LValueToRValue: 12704 return ExprEvaluatorBaseTy::VisitCastExpr(E); 12705 default: 12706 return Error(E); 12707 } 12708 } 12709 12710 bool FixedPointExprEvaluator::VisitBinaryOperator(const BinaryOperator *E) { 12711 const Expr *LHS = E->getLHS(); 12712 const Expr *RHS = E->getRHS(); 12713 FixedPointSemantics ResultFXSema = 12714 Info.Ctx.getFixedPointSemantics(E->getType()); 12715 12716 APFixedPoint LHSFX(Info.Ctx.getFixedPointSemantics(LHS->getType())); 12717 if (!EvaluateFixedPointOrInteger(LHS, LHSFX, Info)) 12718 return false; 12719 APFixedPoint RHSFX(Info.Ctx.getFixedPointSemantics(RHS->getType())); 12720 if (!EvaluateFixedPointOrInteger(RHS, RHSFX, Info)) 12721 return false; 12722 12723 switch (E->getOpcode()) { 12724 case BO_Add: { 12725 bool AddOverflow, ConversionOverflow; 12726 APFixedPoint Result = LHSFX.add(RHSFX, &AddOverflow) 12727 .convert(ResultFXSema, &ConversionOverflow); 12728 if ((AddOverflow || ConversionOverflow) && 12729 !HandleOverflow(Info, E, Result, E->getType())) 12730 return false; 12731 return Success(Result, E); 12732 } 12733 default: 12734 return false; 12735 } 12736 llvm_unreachable("Should've exited before this"); 12737 } 12738 12739 //===----------------------------------------------------------------------===// 12740 // Float Evaluation 12741 //===----------------------------------------------------------------------===// 12742 12743 namespace { 12744 class FloatExprEvaluator 12745 : public ExprEvaluatorBase<FloatExprEvaluator> { 12746 APFloat &Result; 12747 public: 12748 FloatExprEvaluator(EvalInfo &info, APFloat &result) 12749 : ExprEvaluatorBaseTy(info), Result(result) {} 12750 12751 bool Success(const APValue &V, const Expr *e) { 12752 Result = V.getFloat(); 12753 return true; 12754 } 12755 12756 bool ZeroInitialization(const Expr *E) { 12757 Result = APFloat::getZero(Info.Ctx.getFloatTypeSemantics(E->getType())); 12758 return true; 12759 } 12760 12761 bool VisitCallExpr(const CallExpr *E); 12762 12763 bool VisitUnaryOperator(const UnaryOperator *E); 12764 bool VisitBinaryOperator(const BinaryOperator *E); 12765 bool VisitFloatingLiteral(const FloatingLiteral *E); 12766 bool VisitCastExpr(const CastExpr *E); 12767 12768 bool VisitUnaryReal(const UnaryOperator *E); 12769 bool VisitUnaryImag(const UnaryOperator *E); 12770 12771 // FIXME: Missing: array subscript of vector, member of vector 12772 }; 12773 } // end anonymous namespace 12774 12775 static bool EvaluateFloat(const Expr* E, APFloat& Result, EvalInfo &Info) { 12776 assert(E->isRValue() && E->getType()->isRealFloatingType()); 12777 return FloatExprEvaluator(Info, Result).Visit(E); 12778 } 12779 12780 static bool TryEvaluateBuiltinNaN(const ASTContext &Context, 12781 QualType ResultTy, 12782 const Expr *Arg, 12783 bool SNaN, 12784 llvm::APFloat &Result) { 12785 const StringLiteral *S = dyn_cast<StringLiteral>(Arg->IgnoreParenCasts()); 12786 if (!S) return false; 12787 12788 const llvm::fltSemantics &Sem = Context.getFloatTypeSemantics(ResultTy); 12789 12790 llvm::APInt fill; 12791 12792 // Treat empty strings as if they were zero. 12793 if (S->getString().empty()) 12794 fill = llvm::APInt(32, 0); 12795 else if (S->getString().getAsInteger(0, fill)) 12796 return false; 12797 12798 if (Context.getTargetInfo().isNan2008()) { 12799 if (SNaN) 12800 Result = llvm::APFloat::getSNaN(Sem, false, &fill); 12801 else 12802 Result = llvm::APFloat::getQNaN(Sem, false, &fill); 12803 } else { 12804 // Prior to IEEE 754-2008, architectures were allowed to choose whether 12805 // the first bit of their significand was set for qNaN or sNaN. MIPS chose 12806 // a different encoding to what became a standard in 2008, and for pre- 12807 // 2008 revisions, MIPS interpreted sNaN-2008 as qNan and qNaN-2008 as 12808 // sNaN. This is now known as "legacy NaN" encoding. 12809 if (SNaN) 12810 Result = llvm::APFloat::getQNaN(Sem, false, &fill); 12811 else 12812 Result = llvm::APFloat::getSNaN(Sem, false, &fill); 12813 } 12814 12815 return true; 12816 } 12817 12818 bool FloatExprEvaluator::VisitCallExpr(const CallExpr *E) { 12819 switch (E->getBuiltinCallee()) { 12820 default: 12821 return ExprEvaluatorBaseTy::VisitCallExpr(E); 12822 12823 case Builtin::BI__builtin_huge_val: 12824 case Builtin::BI__builtin_huge_valf: 12825 case Builtin::BI__builtin_huge_vall: 12826 case Builtin::BI__builtin_huge_valf128: 12827 case Builtin::BI__builtin_inf: 12828 case Builtin::BI__builtin_inff: 12829 case Builtin::BI__builtin_infl: 12830 case Builtin::BI__builtin_inff128: { 12831 const llvm::fltSemantics &Sem = 12832 Info.Ctx.getFloatTypeSemantics(E->getType()); 12833 Result = llvm::APFloat::getInf(Sem); 12834 return true; 12835 } 12836 12837 case Builtin::BI__builtin_nans: 12838 case Builtin::BI__builtin_nansf: 12839 case Builtin::BI__builtin_nansl: 12840 case Builtin::BI__builtin_nansf128: 12841 if (!TryEvaluateBuiltinNaN(Info.Ctx, E->getType(), E->getArg(0), 12842 true, Result)) 12843 return Error(E); 12844 return true; 12845 12846 case Builtin::BI__builtin_nan: 12847 case Builtin::BI__builtin_nanf: 12848 case Builtin::BI__builtin_nanl: 12849 case Builtin::BI__builtin_nanf128: 12850 // If this is __builtin_nan() turn this into a nan, otherwise we 12851 // can't constant fold it. 12852 if (!TryEvaluateBuiltinNaN(Info.Ctx, E->getType(), E->getArg(0), 12853 false, Result)) 12854 return Error(E); 12855 return true; 12856 12857 case Builtin::BI__builtin_fabs: 12858 case Builtin::BI__builtin_fabsf: 12859 case Builtin::BI__builtin_fabsl: 12860 case Builtin::BI__builtin_fabsf128: 12861 if (!EvaluateFloat(E->getArg(0), Result, Info)) 12862 return false; 12863 12864 if (Result.isNegative()) 12865 Result.changeSign(); 12866 return true; 12867 12868 // FIXME: Builtin::BI__builtin_powi 12869 // FIXME: Builtin::BI__builtin_powif 12870 // FIXME: Builtin::BI__builtin_powil 12871 12872 case Builtin::BI__builtin_copysign: 12873 case Builtin::BI__builtin_copysignf: 12874 case Builtin::BI__builtin_copysignl: 12875 case Builtin::BI__builtin_copysignf128: { 12876 APFloat RHS(0.); 12877 if (!EvaluateFloat(E->getArg(0), Result, Info) || 12878 !EvaluateFloat(E->getArg(1), RHS, Info)) 12879 return false; 12880 Result.copySign(RHS); 12881 return true; 12882 } 12883 } 12884 } 12885 12886 bool FloatExprEvaluator::VisitUnaryReal(const UnaryOperator *E) { 12887 if (E->getSubExpr()->getType()->isAnyComplexType()) { 12888 ComplexValue CV; 12889 if (!EvaluateComplex(E->getSubExpr(), CV, Info)) 12890 return false; 12891 Result = CV.FloatReal; 12892 return true; 12893 } 12894 12895 return Visit(E->getSubExpr()); 12896 } 12897 12898 bool FloatExprEvaluator::VisitUnaryImag(const UnaryOperator *E) { 12899 if (E->getSubExpr()->getType()->isAnyComplexType()) { 12900 ComplexValue CV; 12901 if (!EvaluateComplex(E->getSubExpr(), CV, Info)) 12902 return false; 12903 Result = CV.FloatImag; 12904 return true; 12905 } 12906 12907 VisitIgnoredValue(E->getSubExpr()); 12908 const llvm::fltSemantics &Sem = Info.Ctx.getFloatTypeSemantics(E->getType()); 12909 Result = llvm::APFloat::getZero(Sem); 12910 return true; 12911 } 12912 12913 bool FloatExprEvaluator::VisitUnaryOperator(const UnaryOperator *E) { 12914 switch (E->getOpcode()) { 12915 default: return Error(E); 12916 case UO_Plus: 12917 return EvaluateFloat(E->getSubExpr(), Result, Info); 12918 case UO_Minus: 12919 if (!EvaluateFloat(E->getSubExpr(), Result, Info)) 12920 return false; 12921 Result.changeSign(); 12922 return true; 12923 } 12924 } 12925 12926 bool FloatExprEvaluator::VisitBinaryOperator(const BinaryOperator *E) { 12927 if (E->isPtrMemOp() || E->isAssignmentOp() || E->getOpcode() == BO_Comma) 12928 return ExprEvaluatorBaseTy::VisitBinaryOperator(E); 12929 12930 APFloat RHS(0.0); 12931 bool LHSOK = EvaluateFloat(E->getLHS(), Result, Info); 12932 if (!LHSOK && !Info.noteFailure()) 12933 return false; 12934 return EvaluateFloat(E->getRHS(), RHS, Info) && LHSOK && 12935 handleFloatFloatBinOp(Info, E, Result, E->getOpcode(), RHS); 12936 } 12937 12938 bool FloatExprEvaluator::VisitFloatingLiteral(const FloatingLiteral *E) { 12939 Result = E->getValue(); 12940 return true; 12941 } 12942 12943 bool FloatExprEvaluator::VisitCastExpr(const CastExpr *E) { 12944 const Expr* SubExpr = E->getSubExpr(); 12945 12946 switch (E->getCastKind()) { 12947 default: 12948 return ExprEvaluatorBaseTy::VisitCastExpr(E); 12949 12950 case CK_IntegralToFloating: { 12951 APSInt IntResult; 12952 return EvaluateInteger(SubExpr, IntResult, Info) && 12953 HandleIntToFloatCast(Info, E, SubExpr->getType(), IntResult, 12954 E->getType(), Result); 12955 } 12956 12957 case CK_FloatingCast: { 12958 if (!Visit(SubExpr)) 12959 return false; 12960 return HandleFloatToFloatCast(Info, E, SubExpr->getType(), E->getType(), 12961 Result); 12962 } 12963 12964 case CK_FloatingComplexToReal: { 12965 ComplexValue V; 12966 if (!EvaluateComplex(SubExpr, V, Info)) 12967 return false; 12968 Result = V.getComplexFloatReal(); 12969 return true; 12970 } 12971 } 12972 } 12973 12974 //===----------------------------------------------------------------------===// 12975 // Complex Evaluation (for float and integer) 12976 //===----------------------------------------------------------------------===// 12977 12978 namespace { 12979 class ComplexExprEvaluator 12980 : public ExprEvaluatorBase<ComplexExprEvaluator> { 12981 ComplexValue &Result; 12982 12983 public: 12984 ComplexExprEvaluator(EvalInfo &info, ComplexValue &Result) 12985 : ExprEvaluatorBaseTy(info), Result(Result) {} 12986 12987 bool Success(const APValue &V, const Expr *e) { 12988 Result.setFrom(V); 12989 return true; 12990 } 12991 12992 bool ZeroInitialization(const Expr *E); 12993 12994 //===--------------------------------------------------------------------===// 12995 // Visitor Methods 12996 //===--------------------------------------------------------------------===// 12997 12998 bool VisitImaginaryLiteral(const ImaginaryLiteral *E); 12999 bool VisitCastExpr(const CastExpr *E); 13000 bool VisitBinaryOperator(const BinaryOperator *E); 13001 bool VisitUnaryOperator(const UnaryOperator *E); 13002 bool VisitInitListExpr(const InitListExpr *E); 13003 }; 13004 } // end anonymous namespace 13005 13006 static bool EvaluateComplex(const Expr *E, ComplexValue &Result, 13007 EvalInfo &Info) { 13008 assert(E->isRValue() && E->getType()->isAnyComplexType()); 13009 return ComplexExprEvaluator(Info, Result).Visit(E); 13010 } 13011 13012 bool ComplexExprEvaluator::ZeroInitialization(const Expr *E) { 13013 QualType ElemTy = E->getType()->castAs<ComplexType>()->getElementType(); 13014 if (ElemTy->isRealFloatingType()) { 13015 Result.makeComplexFloat(); 13016 APFloat Zero = APFloat::getZero(Info.Ctx.getFloatTypeSemantics(ElemTy)); 13017 Result.FloatReal = Zero; 13018 Result.FloatImag = Zero; 13019 } else { 13020 Result.makeComplexInt(); 13021 APSInt Zero = Info.Ctx.MakeIntValue(0, ElemTy); 13022 Result.IntReal = Zero; 13023 Result.IntImag = Zero; 13024 } 13025 return true; 13026 } 13027 13028 bool ComplexExprEvaluator::VisitImaginaryLiteral(const ImaginaryLiteral *E) { 13029 const Expr* SubExpr = E->getSubExpr(); 13030 13031 if (SubExpr->getType()->isRealFloatingType()) { 13032 Result.makeComplexFloat(); 13033 APFloat &Imag = Result.FloatImag; 13034 if (!EvaluateFloat(SubExpr, Imag, Info)) 13035 return false; 13036 13037 Result.FloatReal = APFloat(Imag.getSemantics()); 13038 return true; 13039 } else { 13040 assert(SubExpr->getType()->isIntegerType() && 13041 "Unexpected imaginary literal."); 13042 13043 Result.makeComplexInt(); 13044 APSInt &Imag = Result.IntImag; 13045 if (!EvaluateInteger(SubExpr, Imag, Info)) 13046 return false; 13047 13048 Result.IntReal = APSInt(Imag.getBitWidth(), !Imag.isSigned()); 13049 return true; 13050 } 13051 } 13052 13053 bool ComplexExprEvaluator::VisitCastExpr(const CastExpr *E) { 13054 13055 switch (E->getCastKind()) { 13056 case CK_BitCast: 13057 case CK_BaseToDerived: 13058 case CK_DerivedToBase: 13059 case CK_UncheckedDerivedToBase: 13060 case CK_Dynamic: 13061 case CK_ToUnion: 13062 case CK_ArrayToPointerDecay: 13063 case CK_FunctionToPointerDecay: 13064 case CK_NullToPointer: 13065 case CK_NullToMemberPointer: 13066 case CK_BaseToDerivedMemberPointer: 13067 case CK_DerivedToBaseMemberPointer: 13068 case CK_MemberPointerToBoolean: 13069 case CK_ReinterpretMemberPointer: 13070 case CK_ConstructorConversion: 13071 case CK_IntegralToPointer: 13072 case CK_PointerToIntegral: 13073 case CK_PointerToBoolean: 13074 case CK_ToVoid: 13075 case CK_VectorSplat: 13076 case CK_IntegralCast: 13077 case CK_BooleanToSignedIntegral: 13078 case CK_IntegralToBoolean: 13079 case CK_IntegralToFloating: 13080 case CK_FloatingToIntegral: 13081 case CK_FloatingToBoolean: 13082 case CK_FloatingCast: 13083 case CK_CPointerToObjCPointerCast: 13084 case CK_BlockPointerToObjCPointerCast: 13085 case CK_AnyPointerToBlockPointerCast: 13086 case CK_ObjCObjectLValueCast: 13087 case CK_FloatingComplexToReal: 13088 case CK_FloatingComplexToBoolean: 13089 case CK_IntegralComplexToReal: 13090 case CK_IntegralComplexToBoolean: 13091 case CK_ARCProduceObject: 13092 case CK_ARCConsumeObject: 13093 case CK_ARCReclaimReturnedObject: 13094 case CK_ARCExtendBlockObject: 13095 case CK_CopyAndAutoreleaseBlockObject: 13096 case CK_BuiltinFnToFnPtr: 13097 case CK_ZeroToOCLOpaqueType: 13098 case CK_NonAtomicToAtomic: 13099 case CK_AddressSpaceConversion: 13100 case CK_IntToOCLSampler: 13101 case CK_FixedPointCast: 13102 case CK_FixedPointToBoolean: 13103 case CK_FixedPointToIntegral: 13104 case CK_IntegralToFixedPoint: 13105 llvm_unreachable("invalid cast kind for complex value"); 13106 13107 case CK_LValueToRValue: 13108 case CK_AtomicToNonAtomic: 13109 case CK_NoOp: 13110 case CK_LValueToRValueBitCast: 13111 return ExprEvaluatorBaseTy::VisitCastExpr(E); 13112 13113 case CK_Dependent: 13114 case CK_LValueBitCast: 13115 case CK_UserDefinedConversion: 13116 return Error(E); 13117 13118 case CK_FloatingRealToComplex: { 13119 APFloat &Real = Result.FloatReal; 13120 if (!EvaluateFloat(E->getSubExpr(), Real, Info)) 13121 return false; 13122 13123 Result.makeComplexFloat(); 13124 Result.FloatImag = APFloat(Real.getSemantics()); 13125 return true; 13126 } 13127 13128 case CK_FloatingComplexCast: { 13129 if (!Visit(E->getSubExpr())) 13130 return false; 13131 13132 QualType To = E->getType()->castAs<ComplexType>()->getElementType(); 13133 QualType From 13134 = E->getSubExpr()->getType()->castAs<ComplexType>()->getElementType(); 13135 13136 return HandleFloatToFloatCast(Info, E, From, To, Result.FloatReal) && 13137 HandleFloatToFloatCast(Info, E, From, To, Result.FloatImag); 13138 } 13139 13140 case CK_FloatingComplexToIntegralComplex: { 13141 if (!Visit(E->getSubExpr())) 13142 return false; 13143 13144 QualType To = E->getType()->castAs<ComplexType>()->getElementType(); 13145 QualType From 13146 = E->getSubExpr()->getType()->castAs<ComplexType>()->getElementType(); 13147 Result.makeComplexInt(); 13148 return HandleFloatToIntCast(Info, E, From, Result.FloatReal, 13149 To, Result.IntReal) && 13150 HandleFloatToIntCast(Info, E, From, Result.FloatImag, 13151 To, Result.IntImag); 13152 } 13153 13154 case CK_IntegralRealToComplex: { 13155 APSInt &Real = Result.IntReal; 13156 if (!EvaluateInteger(E->getSubExpr(), Real, Info)) 13157 return false; 13158 13159 Result.makeComplexInt(); 13160 Result.IntImag = APSInt(Real.getBitWidth(), !Real.isSigned()); 13161 return true; 13162 } 13163 13164 case CK_IntegralComplexCast: { 13165 if (!Visit(E->getSubExpr())) 13166 return false; 13167 13168 QualType To = E->getType()->castAs<ComplexType>()->getElementType(); 13169 QualType From 13170 = E->getSubExpr()->getType()->castAs<ComplexType>()->getElementType(); 13171 13172 Result.IntReal = HandleIntToIntCast(Info, E, To, From, Result.IntReal); 13173 Result.IntImag = HandleIntToIntCast(Info, E, To, From, Result.IntImag); 13174 return true; 13175 } 13176 13177 case CK_IntegralComplexToFloatingComplex: { 13178 if (!Visit(E->getSubExpr())) 13179 return false; 13180 13181 QualType To = E->getType()->castAs<ComplexType>()->getElementType(); 13182 QualType From 13183 = E->getSubExpr()->getType()->castAs<ComplexType>()->getElementType(); 13184 Result.makeComplexFloat(); 13185 return HandleIntToFloatCast(Info, E, From, Result.IntReal, 13186 To, Result.FloatReal) && 13187 HandleIntToFloatCast(Info, E, From, Result.IntImag, 13188 To, Result.FloatImag); 13189 } 13190 } 13191 13192 llvm_unreachable("unknown cast resulting in complex value"); 13193 } 13194 13195 bool ComplexExprEvaluator::VisitBinaryOperator(const BinaryOperator *E) { 13196 if (E->isPtrMemOp() || E->isAssignmentOp() || E->getOpcode() == BO_Comma) 13197 return ExprEvaluatorBaseTy::VisitBinaryOperator(E); 13198 13199 // Track whether the LHS or RHS is real at the type system level. When this is 13200 // the case we can simplify our evaluation strategy. 13201 bool LHSReal = false, RHSReal = false; 13202 13203 bool LHSOK; 13204 if (E->getLHS()->getType()->isRealFloatingType()) { 13205 LHSReal = true; 13206 APFloat &Real = Result.FloatReal; 13207 LHSOK = EvaluateFloat(E->getLHS(), Real, Info); 13208 if (LHSOK) { 13209 Result.makeComplexFloat(); 13210 Result.FloatImag = APFloat(Real.getSemantics()); 13211 } 13212 } else { 13213 LHSOK = Visit(E->getLHS()); 13214 } 13215 if (!LHSOK && !Info.noteFailure()) 13216 return false; 13217 13218 ComplexValue RHS; 13219 if (E->getRHS()->getType()->isRealFloatingType()) { 13220 RHSReal = true; 13221 APFloat &Real = RHS.FloatReal; 13222 if (!EvaluateFloat(E->getRHS(), Real, Info) || !LHSOK) 13223 return false; 13224 RHS.makeComplexFloat(); 13225 RHS.FloatImag = APFloat(Real.getSemantics()); 13226 } else if (!EvaluateComplex(E->getRHS(), RHS, Info) || !LHSOK) 13227 return false; 13228 13229 assert(!(LHSReal && RHSReal) && 13230 "Cannot have both operands of a complex operation be real."); 13231 switch (E->getOpcode()) { 13232 default: return Error(E); 13233 case BO_Add: 13234 if (Result.isComplexFloat()) { 13235 Result.getComplexFloatReal().add(RHS.getComplexFloatReal(), 13236 APFloat::rmNearestTiesToEven); 13237 if (LHSReal) 13238 Result.getComplexFloatImag() = RHS.getComplexFloatImag(); 13239 else if (!RHSReal) 13240 Result.getComplexFloatImag().add(RHS.getComplexFloatImag(), 13241 APFloat::rmNearestTiesToEven); 13242 } else { 13243 Result.getComplexIntReal() += RHS.getComplexIntReal(); 13244 Result.getComplexIntImag() += RHS.getComplexIntImag(); 13245 } 13246 break; 13247 case BO_Sub: 13248 if (Result.isComplexFloat()) { 13249 Result.getComplexFloatReal().subtract(RHS.getComplexFloatReal(), 13250 APFloat::rmNearestTiesToEven); 13251 if (LHSReal) { 13252 Result.getComplexFloatImag() = RHS.getComplexFloatImag(); 13253 Result.getComplexFloatImag().changeSign(); 13254 } else if (!RHSReal) { 13255 Result.getComplexFloatImag().subtract(RHS.getComplexFloatImag(), 13256 APFloat::rmNearestTiesToEven); 13257 } 13258 } else { 13259 Result.getComplexIntReal() -= RHS.getComplexIntReal(); 13260 Result.getComplexIntImag() -= RHS.getComplexIntImag(); 13261 } 13262 break; 13263 case BO_Mul: 13264 if (Result.isComplexFloat()) { 13265 // This is an implementation of complex multiplication according to the 13266 // constraints laid out in C11 Annex G. The implementation uses the 13267 // following naming scheme: 13268 // (a + ib) * (c + id) 13269 ComplexValue LHS = Result; 13270 APFloat &A = LHS.getComplexFloatReal(); 13271 APFloat &B = LHS.getComplexFloatImag(); 13272 APFloat &C = RHS.getComplexFloatReal(); 13273 APFloat &D = RHS.getComplexFloatImag(); 13274 APFloat &ResR = Result.getComplexFloatReal(); 13275 APFloat &ResI = Result.getComplexFloatImag(); 13276 if (LHSReal) { 13277 assert(!RHSReal && "Cannot have two real operands for a complex op!"); 13278 ResR = A * C; 13279 ResI = A * D; 13280 } else if (RHSReal) { 13281 ResR = C * A; 13282 ResI = C * B; 13283 } else { 13284 // In the fully general case, we need to handle NaNs and infinities 13285 // robustly. 13286 APFloat AC = A * C; 13287 APFloat BD = B * D; 13288 APFloat AD = A * D; 13289 APFloat BC = B * C; 13290 ResR = AC - BD; 13291 ResI = AD + BC; 13292 if (ResR.isNaN() && ResI.isNaN()) { 13293 bool Recalc = false; 13294 if (A.isInfinity() || B.isInfinity()) { 13295 A = APFloat::copySign( 13296 APFloat(A.getSemantics(), A.isInfinity() ? 1 : 0), A); 13297 B = APFloat::copySign( 13298 APFloat(B.getSemantics(), B.isInfinity() ? 1 : 0), B); 13299 if (C.isNaN()) 13300 C = APFloat::copySign(APFloat(C.getSemantics()), C); 13301 if (D.isNaN()) 13302 D = APFloat::copySign(APFloat(D.getSemantics()), D); 13303 Recalc = true; 13304 } 13305 if (C.isInfinity() || D.isInfinity()) { 13306 C = APFloat::copySign( 13307 APFloat(C.getSemantics(), C.isInfinity() ? 1 : 0), C); 13308 D = APFloat::copySign( 13309 APFloat(D.getSemantics(), D.isInfinity() ? 1 : 0), D); 13310 if (A.isNaN()) 13311 A = APFloat::copySign(APFloat(A.getSemantics()), A); 13312 if (B.isNaN()) 13313 B = APFloat::copySign(APFloat(B.getSemantics()), B); 13314 Recalc = true; 13315 } 13316 if (!Recalc && (AC.isInfinity() || BD.isInfinity() || 13317 AD.isInfinity() || BC.isInfinity())) { 13318 if (A.isNaN()) 13319 A = APFloat::copySign(APFloat(A.getSemantics()), A); 13320 if (B.isNaN()) 13321 B = APFloat::copySign(APFloat(B.getSemantics()), B); 13322 if (C.isNaN()) 13323 C = APFloat::copySign(APFloat(C.getSemantics()), C); 13324 if (D.isNaN()) 13325 D = APFloat::copySign(APFloat(D.getSemantics()), D); 13326 Recalc = true; 13327 } 13328 if (Recalc) { 13329 ResR = APFloat::getInf(A.getSemantics()) * (A * C - B * D); 13330 ResI = APFloat::getInf(A.getSemantics()) * (A * D + B * C); 13331 } 13332 } 13333 } 13334 } else { 13335 ComplexValue LHS = Result; 13336 Result.getComplexIntReal() = 13337 (LHS.getComplexIntReal() * RHS.getComplexIntReal() - 13338 LHS.getComplexIntImag() * RHS.getComplexIntImag()); 13339 Result.getComplexIntImag() = 13340 (LHS.getComplexIntReal() * RHS.getComplexIntImag() + 13341 LHS.getComplexIntImag() * RHS.getComplexIntReal()); 13342 } 13343 break; 13344 case BO_Div: 13345 if (Result.isComplexFloat()) { 13346 // This is an implementation of complex division according to the 13347 // constraints laid out in C11 Annex G. The implementation uses the 13348 // following naming scheme: 13349 // (a + ib) / (c + id) 13350 ComplexValue LHS = Result; 13351 APFloat &A = LHS.getComplexFloatReal(); 13352 APFloat &B = LHS.getComplexFloatImag(); 13353 APFloat &C = RHS.getComplexFloatReal(); 13354 APFloat &D = RHS.getComplexFloatImag(); 13355 APFloat &ResR = Result.getComplexFloatReal(); 13356 APFloat &ResI = Result.getComplexFloatImag(); 13357 if (RHSReal) { 13358 ResR = A / C; 13359 ResI = B / C; 13360 } else { 13361 if (LHSReal) { 13362 // No real optimizations we can do here, stub out with zero. 13363 B = APFloat::getZero(A.getSemantics()); 13364 } 13365 int DenomLogB = 0; 13366 APFloat MaxCD = maxnum(abs(C), abs(D)); 13367 if (MaxCD.isFinite()) { 13368 DenomLogB = ilogb(MaxCD); 13369 C = scalbn(C, -DenomLogB, APFloat::rmNearestTiesToEven); 13370 D = scalbn(D, -DenomLogB, APFloat::rmNearestTiesToEven); 13371 } 13372 APFloat Denom = C * C + D * D; 13373 ResR = scalbn((A * C + B * D) / Denom, -DenomLogB, 13374 APFloat::rmNearestTiesToEven); 13375 ResI = scalbn((B * C - A * D) / Denom, -DenomLogB, 13376 APFloat::rmNearestTiesToEven); 13377 if (ResR.isNaN() && ResI.isNaN()) { 13378 if (Denom.isPosZero() && (!A.isNaN() || !B.isNaN())) { 13379 ResR = APFloat::getInf(ResR.getSemantics(), C.isNegative()) * A; 13380 ResI = APFloat::getInf(ResR.getSemantics(), C.isNegative()) * B; 13381 } else if ((A.isInfinity() || B.isInfinity()) && C.isFinite() && 13382 D.isFinite()) { 13383 A = APFloat::copySign( 13384 APFloat(A.getSemantics(), A.isInfinity() ? 1 : 0), A); 13385 B = APFloat::copySign( 13386 APFloat(B.getSemantics(), B.isInfinity() ? 1 : 0), B); 13387 ResR = APFloat::getInf(ResR.getSemantics()) * (A * C + B * D); 13388 ResI = APFloat::getInf(ResI.getSemantics()) * (B * C - A * D); 13389 } else if (MaxCD.isInfinity() && A.isFinite() && B.isFinite()) { 13390 C = APFloat::copySign( 13391 APFloat(C.getSemantics(), C.isInfinity() ? 1 : 0), C); 13392 D = APFloat::copySign( 13393 APFloat(D.getSemantics(), D.isInfinity() ? 1 : 0), D); 13394 ResR = APFloat::getZero(ResR.getSemantics()) * (A * C + B * D); 13395 ResI = APFloat::getZero(ResI.getSemantics()) * (B * C - A * D); 13396 } 13397 } 13398 } 13399 } else { 13400 if (RHS.getComplexIntReal() == 0 && RHS.getComplexIntImag() == 0) 13401 return Error(E, diag::note_expr_divide_by_zero); 13402 13403 ComplexValue LHS = Result; 13404 APSInt Den = RHS.getComplexIntReal() * RHS.getComplexIntReal() + 13405 RHS.getComplexIntImag() * RHS.getComplexIntImag(); 13406 Result.getComplexIntReal() = 13407 (LHS.getComplexIntReal() * RHS.getComplexIntReal() + 13408 LHS.getComplexIntImag() * RHS.getComplexIntImag()) / Den; 13409 Result.getComplexIntImag() = 13410 (LHS.getComplexIntImag() * RHS.getComplexIntReal() - 13411 LHS.getComplexIntReal() * RHS.getComplexIntImag()) / Den; 13412 } 13413 break; 13414 } 13415 13416 return true; 13417 } 13418 13419 bool ComplexExprEvaluator::VisitUnaryOperator(const UnaryOperator *E) { 13420 // Get the operand value into 'Result'. 13421 if (!Visit(E->getSubExpr())) 13422 return false; 13423 13424 switch (E->getOpcode()) { 13425 default: 13426 return Error(E); 13427 case UO_Extension: 13428 return true; 13429 case UO_Plus: 13430 // The result is always just the subexpr. 13431 return true; 13432 case UO_Minus: 13433 if (Result.isComplexFloat()) { 13434 Result.getComplexFloatReal().changeSign(); 13435 Result.getComplexFloatImag().changeSign(); 13436 } 13437 else { 13438 Result.getComplexIntReal() = -Result.getComplexIntReal(); 13439 Result.getComplexIntImag() = -Result.getComplexIntImag(); 13440 } 13441 return true; 13442 case UO_Not: 13443 if (Result.isComplexFloat()) 13444 Result.getComplexFloatImag().changeSign(); 13445 else 13446 Result.getComplexIntImag() = -Result.getComplexIntImag(); 13447 return true; 13448 } 13449 } 13450 13451 bool ComplexExprEvaluator::VisitInitListExpr(const InitListExpr *E) { 13452 if (E->getNumInits() == 2) { 13453 if (E->getType()->isComplexType()) { 13454 Result.makeComplexFloat(); 13455 if (!EvaluateFloat(E->getInit(0), Result.FloatReal, Info)) 13456 return false; 13457 if (!EvaluateFloat(E->getInit(1), Result.FloatImag, Info)) 13458 return false; 13459 } else { 13460 Result.makeComplexInt(); 13461 if (!EvaluateInteger(E->getInit(0), Result.IntReal, Info)) 13462 return false; 13463 if (!EvaluateInteger(E->getInit(1), Result.IntImag, Info)) 13464 return false; 13465 } 13466 return true; 13467 } 13468 return ExprEvaluatorBaseTy::VisitInitListExpr(E); 13469 } 13470 13471 //===----------------------------------------------------------------------===// 13472 // Atomic expression evaluation, essentially just handling the NonAtomicToAtomic 13473 // implicit conversion. 13474 //===----------------------------------------------------------------------===// 13475 13476 namespace { 13477 class AtomicExprEvaluator : 13478 public ExprEvaluatorBase<AtomicExprEvaluator> { 13479 const LValue *This; 13480 APValue &Result; 13481 public: 13482 AtomicExprEvaluator(EvalInfo &Info, const LValue *This, APValue &Result) 13483 : ExprEvaluatorBaseTy(Info), This(This), Result(Result) {} 13484 13485 bool Success(const APValue &V, const Expr *E) { 13486 Result = V; 13487 return true; 13488 } 13489 13490 bool ZeroInitialization(const Expr *E) { 13491 ImplicitValueInitExpr VIE( 13492 E->getType()->castAs<AtomicType>()->getValueType()); 13493 // For atomic-qualified class (and array) types in C++, initialize the 13494 // _Atomic-wrapped subobject directly, in-place. 13495 return This ? EvaluateInPlace(Result, Info, *This, &VIE) 13496 : Evaluate(Result, Info, &VIE); 13497 } 13498 13499 bool VisitCastExpr(const CastExpr *E) { 13500 switch (E->getCastKind()) { 13501 default: 13502 return ExprEvaluatorBaseTy::VisitCastExpr(E); 13503 case CK_NonAtomicToAtomic: 13504 return This ? EvaluateInPlace(Result, Info, *This, E->getSubExpr()) 13505 : Evaluate(Result, Info, E->getSubExpr()); 13506 } 13507 } 13508 }; 13509 } // end anonymous namespace 13510 13511 static bool EvaluateAtomic(const Expr *E, const LValue *This, APValue &Result, 13512 EvalInfo &Info) { 13513 assert(E->isRValue() && E->getType()->isAtomicType()); 13514 return AtomicExprEvaluator(Info, This, Result).Visit(E); 13515 } 13516 13517 //===----------------------------------------------------------------------===// 13518 // Void expression evaluation, primarily for a cast to void on the LHS of a 13519 // comma operator 13520 //===----------------------------------------------------------------------===// 13521 13522 namespace { 13523 class VoidExprEvaluator 13524 : public ExprEvaluatorBase<VoidExprEvaluator> { 13525 public: 13526 VoidExprEvaluator(EvalInfo &Info) : ExprEvaluatorBaseTy(Info) {} 13527 13528 bool Success(const APValue &V, const Expr *e) { return true; } 13529 13530 bool ZeroInitialization(const Expr *E) { return true; } 13531 13532 bool VisitCastExpr(const CastExpr *E) { 13533 switch (E->getCastKind()) { 13534 default: 13535 return ExprEvaluatorBaseTy::VisitCastExpr(E); 13536 case CK_ToVoid: 13537 VisitIgnoredValue(E->getSubExpr()); 13538 return true; 13539 } 13540 } 13541 13542 bool VisitCallExpr(const CallExpr *E) { 13543 switch (E->getBuiltinCallee()) { 13544 case Builtin::BI__assume: 13545 case Builtin::BI__builtin_assume: 13546 // The argument is not evaluated! 13547 return true; 13548 13549 case Builtin::BI__builtin_operator_delete: 13550 return HandleOperatorDeleteCall(Info, E); 13551 13552 default: 13553 break; 13554 } 13555 13556 return ExprEvaluatorBaseTy::VisitCallExpr(E); 13557 } 13558 13559 bool VisitCXXDeleteExpr(const CXXDeleteExpr *E); 13560 }; 13561 } // end anonymous namespace 13562 13563 bool VoidExprEvaluator::VisitCXXDeleteExpr(const CXXDeleteExpr *E) { 13564 // We cannot speculatively evaluate a delete expression. 13565 if (Info.SpeculativeEvaluationDepth) 13566 return false; 13567 13568 FunctionDecl *OperatorDelete = E->getOperatorDelete(); 13569 if (!OperatorDelete->isReplaceableGlobalAllocationFunction()) { 13570 Info.FFDiag(E, diag::note_constexpr_new_non_replaceable) 13571 << isa<CXXMethodDecl>(OperatorDelete) << OperatorDelete; 13572 return false; 13573 } 13574 13575 const Expr *Arg = E->getArgument(); 13576 13577 LValue Pointer; 13578 if (!EvaluatePointer(Arg, Pointer, Info)) 13579 return false; 13580 if (Pointer.Designator.Invalid) 13581 return false; 13582 13583 // Deleting a null pointer has no effect. 13584 if (Pointer.isNullPointer()) { 13585 // This is the only case where we need to produce an extension warning: 13586 // the only other way we can succeed is if we find a dynamic allocation, 13587 // and we will have warned when we allocated it in that case. 13588 if (!Info.getLangOpts().CPlusPlus2a) 13589 Info.CCEDiag(E, diag::note_constexpr_new); 13590 return true; 13591 } 13592 13593 Optional<DynAlloc *> Alloc = CheckDeleteKind( 13594 Info, E, Pointer, E->isArrayForm() ? DynAlloc::ArrayNew : DynAlloc::New); 13595 if (!Alloc) 13596 return false; 13597 QualType AllocType = Pointer.Base.getDynamicAllocType(); 13598 13599 // For the non-array case, the designator must be empty if the static type 13600 // does not have a virtual destructor. 13601 if (!E->isArrayForm() && Pointer.Designator.Entries.size() != 0 && 13602 !hasVirtualDestructor(Arg->getType()->getPointeeType())) { 13603 Info.FFDiag(E, diag::note_constexpr_delete_base_nonvirt_dtor) 13604 << Arg->getType()->getPointeeType() << AllocType; 13605 return false; 13606 } 13607 13608 // For a class type with a virtual destructor, the selected operator delete 13609 // is the one looked up when building the destructor. 13610 if (!E->isArrayForm() && !E->isGlobalDelete()) { 13611 const FunctionDecl *VirtualDelete = getVirtualOperatorDelete(AllocType); 13612 if (VirtualDelete && 13613 !VirtualDelete->isReplaceableGlobalAllocationFunction()) { 13614 Info.FFDiag(E, diag::note_constexpr_new_non_replaceable) 13615 << isa<CXXMethodDecl>(VirtualDelete) << VirtualDelete; 13616 return false; 13617 } 13618 } 13619 13620 if (!HandleDestruction(Info, E->getExprLoc(), Pointer.getLValueBase(), 13621 (*Alloc)->Value, AllocType)) 13622 return false; 13623 13624 if (!Info.HeapAllocs.erase(Pointer.Base.dyn_cast<DynamicAllocLValue>())) { 13625 // The element was already erased. This means the destructor call also 13626 // deleted the object. 13627 // FIXME: This probably results in undefined behavior before we get this 13628 // far, and should be diagnosed elsewhere first. 13629 Info.FFDiag(E, diag::note_constexpr_double_delete); 13630 return false; 13631 } 13632 13633 return true; 13634 } 13635 13636 static bool EvaluateVoid(const Expr *E, EvalInfo &Info) { 13637 assert(E->isRValue() && E->getType()->isVoidType()); 13638 return VoidExprEvaluator(Info).Visit(E); 13639 } 13640 13641 //===----------------------------------------------------------------------===// 13642 // Top level Expr::EvaluateAsRValue method. 13643 //===----------------------------------------------------------------------===// 13644 13645 static bool Evaluate(APValue &Result, EvalInfo &Info, const Expr *E) { 13646 // In C, function designators are not lvalues, but we evaluate them as if they 13647 // are. 13648 QualType T = E->getType(); 13649 if (E->isGLValue() || T->isFunctionType()) { 13650 LValue LV; 13651 if (!EvaluateLValue(E, LV, Info)) 13652 return false; 13653 LV.moveInto(Result); 13654 } else if (T->isVectorType()) { 13655 if (!EvaluateVector(E, Result, Info)) 13656 return false; 13657 } else if (T->isIntegralOrEnumerationType()) { 13658 if (!IntExprEvaluator(Info, Result).Visit(E)) 13659 return false; 13660 } else if (T->hasPointerRepresentation()) { 13661 LValue LV; 13662 if (!EvaluatePointer(E, LV, Info)) 13663 return false; 13664 LV.moveInto(Result); 13665 } else if (T->isRealFloatingType()) { 13666 llvm::APFloat F(0.0); 13667 if (!EvaluateFloat(E, F, Info)) 13668 return false; 13669 Result = APValue(F); 13670 } else if (T->isAnyComplexType()) { 13671 ComplexValue C; 13672 if (!EvaluateComplex(E, C, Info)) 13673 return false; 13674 C.moveInto(Result); 13675 } else if (T->isFixedPointType()) { 13676 if (!FixedPointExprEvaluator(Info, Result).Visit(E)) return false; 13677 } else if (T->isMemberPointerType()) { 13678 MemberPtr P; 13679 if (!EvaluateMemberPointer(E, P, Info)) 13680 return false; 13681 P.moveInto(Result); 13682 return true; 13683 } else if (T->isArrayType()) { 13684 LValue LV; 13685 APValue &Value = 13686 Info.CurrentCall->createTemporary(E, T, false, LV); 13687 if (!EvaluateArray(E, LV, Value, Info)) 13688 return false; 13689 Result = Value; 13690 } else if (T->isRecordType()) { 13691 LValue LV; 13692 APValue &Value = Info.CurrentCall->createTemporary(E, T, false, LV); 13693 if (!EvaluateRecord(E, LV, Value, Info)) 13694 return false; 13695 Result = Value; 13696 } else if (T->isVoidType()) { 13697 if (!Info.getLangOpts().CPlusPlus11) 13698 Info.CCEDiag(E, diag::note_constexpr_nonliteral) 13699 << E->getType(); 13700 if (!EvaluateVoid(E, Info)) 13701 return false; 13702 } else if (T->isAtomicType()) { 13703 QualType Unqual = T.getAtomicUnqualifiedType(); 13704 if (Unqual->isArrayType() || Unqual->isRecordType()) { 13705 LValue LV; 13706 APValue &Value = Info.CurrentCall->createTemporary(E, Unqual, false, LV); 13707 if (!EvaluateAtomic(E, &LV, Value, Info)) 13708 return false; 13709 } else { 13710 if (!EvaluateAtomic(E, nullptr, Result, Info)) 13711 return false; 13712 } 13713 } else if (Info.getLangOpts().CPlusPlus11) { 13714 Info.FFDiag(E, diag::note_constexpr_nonliteral) << E->getType(); 13715 return false; 13716 } else { 13717 Info.FFDiag(E, diag::note_invalid_subexpr_in_const_expr); 13718 return false; 13719 } 13720 13721 return true; 13722 } 13723 13724 /// EvaluateInPlace - Evaluate an expression in-place in an APValue. In some 13725 /// cases, the in-place evaluation is essential, since later initializers for 13726 /// an object can indirectly refer to subobjects which were initialized earlier. 13727 static bool EvaluateInPlace(APValue &Result, EvalInfo &Info, const LValue &This, 13728 const Expr *E, bool AllowNonLiteralTypes) { 13729 assert(!E->isValueDependent()); 13730 13731 if (!AllowNonLiteralTypes && !CheckLiteralType(Info, E, &This)) 13732 return false; 13733 13734 if (E->isRValue()) { 13735 // Evaluate arrays and record types in-place, so that later initializers can 13736 // refer to earlier-initialized members of the object. 13737 QualType T = E->getType(); 13738 if (T->isArrayType()) 13739 return EvaluateArray(E, This, Result, Info); 13740 else if (T->isRecordType()) 13741 return EvaluateRecord(E, This, Result, Info); 13742 else if (T->isAtomicType()) { 13743 QualType Unqual = T.getAtomicUnqualifiedType(); 13744 if (Unqual->isArrayType() || Unqual->isRecordType()) 13745 return EvaluateAtomic(E, &This, Result, Info); 13746 } 13747 } 13748 13749 // For any other type, in-place evaluation is unimportant. 13750 return Evaluate(Result, Info, E); 13751 } 13752 13753 /// EvaluateAsRValue - Try to evaluate this expression, performing an implicit 13754 /// lvalue-to-rvalue cast if it is an lvalue. 13755 static bool EvaluateAsRValue(EvalInfo &Info, const Expr *E, APValue &Result) { 13756 if (Info.EnableNewConstInterp) { 13757 if (!Info.Ctx.getInterpContext().evaluateAsRValue(Info, E, Result)) 13758 return false; 13759 } else { 13760 if (E->getType().isNull()) 13761 return false; 13762 13763 if (!CheckLiteralType(Info, E)) 13764 return false; 13765 13766 if (!::Evaluate(Result, Info, E)) 13767 return false; 13768 13769 if (E->isGLValue()) { 13770 LValue LV; 13771 LV.setFrom(Info.Ctx, Result); 13772 if (!handleLValueToRValueConversion(Info, E, E->getType(), LV, Result)) 13773 return false; 13774 } 13775 } 13776 13777 // Check this core constant expression is a constant expression. 13778 return CheckConstantExpression(Info, E->getExprLoc(), E->getType(), Result) && 13779 CheckMemoryLeaks(Info); 13780 } 13781 13782 static bool FastEvaluateAsRValue(const Expr *Exp, Expr::EvalResult &Result, 13783 const ASTContext &Ctx, bool &IsConst) { 13784 // Fast-path evaluations of integer literals, since we sometimes see files 13785 // containing vast quantities of these. 13786 if (const IntegerLiteral *L = dyn_cast<IntegerLiteral>(Exp)) { 13787 Result.Val = APValue(APSInt(L->getValue(), 13788 L->getType()->isUnsignedIntegerType())); 13789 IsConst = true; 13790 return true; 13791 } 13792 13793 // This case should be rare, but we need to check it before we check on 13794 // the type below. 13795 if (Exp->getType().isNull()) { 13796 IsConst = false; 13797 return true; 13798 } 13799 13800 // FIXME: Evaluating values of large array and record types can cause 13801 // performance problems. Only do so in C++11 for now. 13802 if (Exp->isRValue() && (Exp->getType()->isArrayType() || 13803 Exp->getType()->isRecordType()) && 13804 !Ctx.getLangOpts().CPlusPlus11) { 13805 IsConst = false; 13806 return true; 13807 } 13808 return false; 13809 } 13810 13811 static bool hasUnacceptableSideEffect(Expr::EvalStatus &Result, 13812 Expr::SideEffectsKind SEK) { 13813 return (SEK < Expr::SE_AllowSideEffects && Result.HasSideEffects) || 13814 (SEK < Expr::SE_AllowUndefinedBehavior && Result.HasUndefinedBehavior); 13815 } 13816 13817 static bool EvaluateAsRValue(const Expr *E, Expr::EvalResult &Result, 13818 const ASTContext &Ctx, EvalInfo &Info) { 13819 bool IsConst; 13820 if (FastEvaluateAsRValue(E, Result, Ctx, IsConst)) 13821 return IsConst; 13822 13823 return EvaluateAsRValue(Info, E, Result.Val); 13824 } 13825 13826 static bool EvaluateAsInt(const Expr *E, Expr::EvalResult &ExprResult, 13827 const ASTContext &Ctx, 13828 Expr::SideEffectsKind AllowSideEffects, 13829 EvalInfo &Info) { 13830 if (!E->getType()->isIntegralOrEnumerationType()) 13831 return false; 13832 13833 if (!::EvaluateAsRValue(E, ExprResult, Ctx, Info) || 13834 !ExprResult.Val.isInt() || 13835 hasUnacceptableSideEffect(ExprResult, AllowSideEffects)) 13836 return false; 13837 13838 return true; 13839 } 13840 13841 static bool EvaluateAsFixedPoint(const Expr *E, Expr::EvalResult &ExprResult, 13842 const ASTContext &Ctx, 13843 Expr::SideEffectsKind AllowSideEffects, 13844 EvalInfo &Info) { 13845 if (!E->getType()->isFixedPointType()) 13846 return false; 13847 13848 if (!::EvaluateAsRValue(E, ExprResult, Ctx, Info)) 13849 return false; 13850 13851 if (!ExprResult.Val.isFixedPoint() || 13852 hasUnacceptableSideEffect(ExprResult, AllowSideEffects)) 13853 return false; 13854 13855 return true; 13856 } 13857 13858 /// EvaluateAsRValue - Return true if this is a constant which we can fold using 13859 /// any crazy technique (that has nothing to do with language standards) that 13860 /// we want to. If this function returns true, it returns the folded constant 13861 /// in Result. If this expression is a glvalue, an lvalue-to-rvalue conversion 13862 /// will be applied to the result. 13863 bool Expr::EvaluateAsRValue(EvalResult &Result, const ASTContext &Ctx, 13864 bool InConstantContext) const { 13865 assert(!isValueDependent() && 13866 "Expression evaluator can't be called on a dependent expression."); 13867 EvalInfo Info(Ctx, Result, EvalInfo::EM_IgnoreSideEffects); 13868 Info.InConstantContext = InConstantContext; 13869 return ::EvaluateAsRValue(this, Result, Ctx, Info); 13870 } 13871 13872 bool Expr::EvaluateAsBooleanCondition(bool &Result, const ASTContext &Ctx, 13873 bool InConstantContext) const { 13874 assert(!isValueDependent() && 13875 "Expression evaluator can't be called on a dependent expression."); 13876 EvalResult Scratch; 13877 return EvaluateAsRValue(Scratch, Ctx, InConstantContext) && 13878 HandleConversionToBool(Scratch.Val, Result); 13879 } 13880 13881 bool Expr::EvaluateAsInt(EvalResult &Result, const ASTContext &Ctx, 13882 SideEffectsKind AllowSideEffects, 13883 bool InConstantContext) const { 13884 assert(!isValueDependent() && 13885 "Expression evaluator can't be called on a dependent expression."); 13886 EvalInfo Info(Ctx, Result, EvalInfo::EM_IgnoreSideEffects); 13887 Info.InConstantContext = InConstantContext; 13888 return ::EvaluateAsInt(this, Result, Ctx, AllowSideEffects, Info); 13889 } 13890 13891 bool Expr::EvaluateAsFixedPoint(EvalResult &Result, const ASTContext &Ctx, 13892 SideEffectsKind AllowSideEffects, 13893 bool InConstantContext) const { 13894 assert(!isValueDependent() && 13895 "Expression evaluator can't be called on a dependent expression."); 13896 EvalInfo Info(Ctx, Result, EvalInfo::EM_IgnoreSideEffects); 13897 Info.InConstantContext = InConstantContext; 13898 return ::EvaluateAsFixedPoint(this, Result, Ctx, AllowSideEffects, Info); 13899 } 13900 13901 bool Expr::EvaluateAsFloat(APFloat &Result, const ASTContext &Ctx, 13902 SideEffectsKind AllowSideEffects, 13903 bool InConstantContext) const { 13904 assert(!isValueDependent() && 13905 "Expression evaluator can't be called on a dependent expression."); 13906 13907 if (!getType()->isRealFloatingType()) 13908 return false; 13909 13910 EvalResult ExprResult; 13911 if (!EvaluateAsRValue(ExprResult, Ctx, InConstantContext) || 13912 !ExprResult.Val.isFloat() || 13913 hasUnacceptableSideEffect(ExprResult, AllowSideEffects)) 13914 return false; 13915 13916 Result = ExprResult.Val.getFloat(); 13917 return true; 13918 } 13919 13920 bool Expr::EvaluateAsLValue(EvalResult &Result, const ASTContext &Ctx, 13921 bool InConstantContext) const { 13922 assert(!isValueDependent() && 13923 "Expression evaluator can't be called on a dependent expression."); 13924 13925 EvalInfo Info(Ctx, Result, EvalInfo::EM_ConstantFold); 13926 Info.InConstantContext = InConstantContext; 13927 LValue LV; 13928 CheckedTemporaries CheckedTemps; 13929 if (!EvaluateLValue(this, LV, Info) || !Info.discardCleanups() || 13930 Result.HasSideEffects || 13931 !CheckLValueConstantExpression(Info, getExprLoc(), 13932 Ctx.getLValueReferenceType(getType()), LV, 13933 Expr::EvaluateForCodeGen, CheckedTemps)) 13934 return false; 13935 13936 LV.moveInto(Result.Val); 13937 return true; 13938 } 13939 13940 bool Expr::EvaluateAsConstantExpr(EvalResult &Result, ConstExprUsage Usage, 13941 const ASTContext &Ctx, bool InPlace) const { 13942 assert(!isValueDependent() && 13943 "Expression evaluator can't be called on a dependent expression."); 13944 13945 EvalInfo::EvaluationMode EM = EvalInfo::EM_ConstantExpression; 13946 EvalInfo Info(Ctx, Result, EM); 13947 Info.InConstantContext = true; 13948 13949 if (InPlace) { 13950 Info.setEvaluatingDecl(this, Result.Val); 13951 LValue LVal; 13952 LVal.set(this); 13953 if (!::EvaluateInPlace(Result.Val, Info, LVal, this) || 13954 Result.HasSideEffects) 13955 return false; 13956 } else if (!::Evaluate(Result.Val, Info, this) || Result.HasSideEffects) 13957 return false; 13958 13959 if (!Info.discardCleanups()) 13960 llvm_unreachable("Unhandled cleanup; missing full expression marker?"); 13961 13962 return CheckConstantExpression(Info, getExprLoc(), getStorageType(Ctx, this), 13963 Result.Val, Usage) && 13964 CheckMemoryLeaks(Info); 13965 } 13966 13967 bool Expr::EvaluateAsInitializer(APValue &Value, const ASTContext &Ctx, 13968 const VarDecl *VD, 13969 SmallVectorImpl<PartialDiagnosticAt> &Notes) const { 13970 assert(!isValueDependent() && 13971 "Expression evaluator can't be called on a dependent expression."); 13972 13973 // FIXME: Evaluating initializers for large array and record types can cause 13974 // performance problems. Only do so in C++11 for now. 13975 if (isRValue() && (getType()->isArrayType() || getType()->isRecordType()) && 13976 !Ctx.getLangOpts().CPlusPlus11) 13977 return false; 13978 13979 Expr::EvalStatus EStatus; 13980 EStatus.Diag = &Notes; 13981 13982 EvalInfo Info(Ctx, EStatus, VD->isConstexpr() 13983 ? EvalInfo::EM_ConstantExpression 13984 : EvalInfo::EM_ConstantFold); 13985 Info.setEvaluatingDecl(VD, Value); 13986 Info.InConstantContext = true; 13987 13988 SourceLocation DeclLoc = VD->getLocation(); 13989 QualType DeclTy = VD->getType(); 13990 13991 if (Info.EnableNewConstInterp) { 13992 auto &InterpCtx = const_cast<ASTContext &>(Ctx).getInterpContext(); 13993 if (!InterpCtx.evaluateAsInitializer(Info, VD, Value)) 13994 return false; 13995 } else { 13996 LValue LVal; 13997 LVal.set(VD); 13998 13999 if (!EvaluateInPlace(Value, Info, LVal, this, 14000 /*AllowNonLiteralTypes=*/true) || 14001 EStatus.HasSideEffects) 14002 return false; 14003 14004 // At this point, any lifetime-extended temporaries are completely 14005 // initialized. 14006 Info.performLifetimeExtension(); 14007 14008 if (!Info.discardCleanups()) 14009 llvm_unreachable("Unhandled cleanup; missing full expression marker?"); 14010 } 14011 return CheckConstantExpression(Info, DeclLoc, DeclTy, Value) && 14012 CheckMemoryLeaks(Info); 14013 } 14014 14015 bool VarDecl::evaluateDestruction( 14016 SmallVectorImpl<PartialDiagnosticAt> &Notes) const { 14017 Expr::EvalStatus EStatus; 14018 EStatus.Diag = &Notes; 14019 14020 // Make a copy of the value for the destructor to mutate, if we know it. 14021 // Otherwise, treat the value as default-initialized; if the destructor works 14022 // anyway, then the destruction is constant (and must be essentially empty). 14023 APValue DestroyedValue = 14024 (getEvaluatedValue() && !getEvaluatedValue()->isAbsent()) 14025 ? *getEvaluatedValue() 14026 : getDefaultInitValue(getType()); 14027 14028 EvalInfo Info(getASTContext(), EStatus, EvalInfo::EM_ConstantExpression); 14029 Info.setEvaluatingDecl(this, DestroyedValue, 14030 EvalInfo::EvaluatingDeclKind::Dtor); 14031 Info.InConstantContext = true; 14032 14033 SourceLocation DeclLoc = getLocation(); 14034 QualType DeclTy = getType(); 14035 14036 LValue LVal; 14037 LVal.set(this); 14038 14039 if (!HandleDestruction(Info, DeclLoc, LVal.Base, DestroyedValue, DeclTy) || 14040 EStatus.HasSideEffects) 14041 return false; 14042 14043 if (!Info.discardCleanups()) 14044 llvm_unreachable("Unhandled cleanup; missing full expression marker?"); 14045 14046 ensureEvaluatedStmt()->HasConstantDestruction = true; 14047 return true; 14048 } 14049 14050 /// isEvaluatable - Call EvaluateAsRValue to see if this expression can be 14051 /// constant folded, but discard the result. 14052 bool Expr::isEvaluatable(const ASTContext &Ctx, SideEffectsKind SEK) const { 14053 assert(!isValueDependent() && 14054 "Expression evaluator can't be called on a dependent expression."); 14055 14056 EvalResult Result; 14057 return EvaluateAsRValue(Result, Ctx, /* in constant context */ true) && 14058 !hasUnacceptableSideEffect(Result, SEK); 14059 } 14060 14061 APSInt Expr::EvaluateKnownConstInt(const ASTContext &Ctx, 14062 SmallVectorImpl<PartialDiagnosticAt> *Diag) const { 14063 assert(!isValueDependent() && 14064 "Expression evaluator can't be called on a dependent expression."); 14065 14066 EvalResult EVResult; 14067 EVResult.Diag = Diag; 14068 EvalInfo Info(Ctx, EVResult, EvalInfo::EM_IgnoreSideEffects); 14069 Info.InConstantContext = true; 14070 14071 bool Result = ::EvaluateAsRValue(this, EVResult, Ctx, Info); 14072 (void)Result; 14073 assert(Result && "Could not evaluate expression"); 14074 assert(EVResult.Val.isInt() && "Expression did not evaluate to integer"); 14075 14076 return EVResult.Val.getInt(); 14077 } 14078 14079 APSInt Expr::EvaluateKnownConstIntCheckOverflow( 14080 const ASTContext &Ctx, SmallVectorImpl<PartialDiagnosticAt> *Diag) const { 14081 assert(!isValueDependent() && 14082 "Expression evaluator can't be called on a dependent expression."); 14083 14084 EvalResult EVResult; 14085 EVResult.Diag = Diag; 14086 EvalInfo Info(Ctx, EVResult, EvalInfo::EM_IgnoreSideEffects); 14087 Info.InConstantContext = true; 14088 Info.CheckingForUndefinedBehavior = true; 14089 14090 bool Result = ::EvaluateAsRValue(Info, this, EVResult.Val); 14091 (void)Result; 14092 assert(Result && "Could not evaluate expression"); 14093 assert(EVResult.Val.isInt() && "Expression did not evaluate to integer"); 14094 14095 return EVResult.Val.getInt(); 14096 } 14097 14098 void Expr::EvaluateForOverflow(const ASTContext &Ctx) const { 14099 assert(!isValueDependent() && 14100 "Expression evaluator can't be called on a dependent expression."); 14101 14102 bool IsConst; 14103 EvalResult EVResult; 14104 if (!FastEvaluateAsRValue(this, EVResult, Ctx, IsConst)) { 14105 EvalInfo Info(Ctx, EVResult, EvalInfo::EM_IgnoreSideEffects); 14106 Info.CheckingForUndefinedBehavior = true; 14107 (void)::EvaluateAsRValue(Info, this, EVResult.Val); 14108 } 14109 } 14110 14111 bool Expr::EvalResult::isGlobalLValue() const { 14112 assert(Val.isLValue()); 14113 return IsGlobalLValue(Val.getLValueBase()); 14114 } 14115 14116 14117 /// isIntegerConstantExpr - this recursive routine will test if an expression is 14118 /// an integer constant expression. 14119 14120 /// FIXME: Pass up a reason why! Invalid operation in i-c-e, division by zero, 14121 /// comma, etc 14122 14123 // CheckICE - This function does the fundamental ICE checking: the returned 14124 // ICEDiag contains an ICEKind indicating whether the expression is an ICE, 14125 // and a (possibly null) SourceLocation indicating the location of the problem. 14126 // 14127 // Note that to reduce code duplication, this helper does no evaluation 14128 // itself; the caller checks whether the expression is evaluatable, and 14129 // in the rare cases where CheckICE actually cares about the evaluated 14130 // value, it calls into Evaluate. 14131 14132 namespace { 14133 14134 enum ICEKind { 14135 /// This expression is an ICE. 14136 IK_ICE, 14137 /// This expression is not an ICE, but if it isn't evaluated, it's 14138 /// a legal subexpression for an ICE. This return value is used to handle 14139 /// the comma operator in C99 mode, and non-constant subexpressions. 14140 IK_ICEIfUnevaluated, 14141 /// This expression is not an ICE, and is not a legal subexpression for one. 14142 IK_NotICE 14143 }; 14144 14145 struct ICEDiag { 14146 ICEKind Kind; 14147 SourceLocation Loc; 14148 14149 ICEDiag(ICEKind IK, SourceLocation l) : Kind(IK), Loc(l) {} 14150 }; 14151 14152 } 14153 14154 static ICEDiag NoDiag() { return ICEDiag(IK_ICE, SourceLocation()); } 14155 14156 static ICEDiag Worst(ICEDiag A, ICEDiag B) { return A.Kind >= B.Kind ? A : B; } 14157 14158 static ICEDiag CheckEvalInICE(const Expr* E, const ASTContext &Ctx) { 14159 Expr::EvalResult EVResult; 14160 Expr::EvalStatus Status; 14161 EvalInfo Info(Ctx, Status, EvalInfo::EM_ConstantExpression); 14162 14163 Info.InConstantContext = true; 14164 if (!::EvaluateAsRValue(E, EVResult, Ctx, Info) || EVResult.HasSideEffects || 14165 !EVResult.Val.isInt()) 14166 return ICEDiag(IK_NotICE, E->getBeginLoc()); 14167 14168 return NoDiag(); 14169 } 14170 14171 static ICEDiag CheckICE(const Expr* E, const ASTContext &Ctx) { 14172 assert(!E->isValueDependent() && "Should not see value dependent exprs!"); 14173 if (!E->getType()->isIntegralOrEnumerationType()) 14174 return ICEDiag(IK_NotICE, E->getBeginLoc()); 14175 14176 switch (E->getStmtClass()) { 14177 #define ABSTRACT_STMT(Node) 14178 #define STMT(Node, Base) case Expr::Node##Class: 14179 #define EXPR(Node, Base) 14180 #include "clang/AST/StmtNodes.inc" 14181 case Expr::PredefinedExprClass: 14182 case Expr::FloatingLiteralClass: 14183 case Expr::ImaginaryLiteralClass: 14184 case Expr::StringLiteralClass: 14185 case Expr::ArraySubscriptExprClass: 14186 case Expr::OMPArraySectionExprClass: 14187 case Expr::OMPArrayShapingExprClass: 14188 case Expr::OMPIteratorExprClass: 14189 case Expr::MemberExprClass: 14190 case Expr::CompoundAssignOperatorClass: 14191 case Expr::CompoundLiteralExprClass: 14192 case Expr::ExtVectorElementExprClass: 14193 case Expr::DesignatedInitExprClass: 14194 case Expr::ArrayInitLoopExprClass: 14195 case Expr::ArrayInitIndexExprClass: 14196 case Expr::NoInitExprClass: 14197 case Expr::DesignatedInitUpdateExprClass: 14198 case Expr::ImplicitValueInitExprClass: 14199 case Expr::ParenListExprClass: 14200 case Expr::VAArgExprClass: 14201 case Expr::AddrLabelExprClass: 14202 case Expr::StmtExprClass: 14203 case Expr::CXXMemberCallExprClass: 14204 case Expr::CUDAKernelCallExprClass: 14205 case Expr::CXXDynamicCastExprClass: 14206 case Expr::CXXTypeidExprClass: 14207 case Expr::CXXUuidofExprClass: 14208 case Expr::MSPropertyRefExprClass: 14209 case Expr::MSPropertySubscriptExprClass: 14210 case Expr::CXXNullPtrLiteralExprClass: 14211 case Expr::UserDefinedLiteralClass: 14212 case Expr::CXXThisExprClass: 14213 case Expr::CXXThrowExprClass: 14214 case Expr::CXXNewExprClass: 14215 case Expr::CXXDeleteExprClass: 14216 case Expr::CXXPseudoDestructorExprClass: 14217 case Expr::UnresolvedLookupExprClass: 14218 case Expr::TypoExprClass: 14219 case Expr::RecoveryExprClass: 14220 case Expr::DependentScopeDeclRefExprClass: 14221 case Expr::CXXConstructExprClass: 14222 case Expr::CXXInheritedCtorInitExprClass: 14223 case Expr::CXXStdInitializerListExprClass: 14224 case Expr::CXXBindTemporaryExprClass: 14225 case Expr::ExprWithCleanupsClass: 14226 case Expr::CXXTemporaryObjectExprClass: 14227 case Expr::CXXUnresolvedConstructExprClass: 14228 case Expr::CXXDependentScopeMemberExprClass: 14229 case Expr::UnresolvedMemberExprClass: 14230 case Expr::ObjCStringLiteralClass: 14231 case Expr::ObjCBoxedExprClass: 14232 case Expr::ObjCArrayLiteralClass: 14233 case Expr::ObjCDictionaryLiteralClass: 14234 case Expr::ObjCEncodeExprClass: 14235 case Expr::ObjCMessageExprClass: 14236 case Expr::ObjCSelectorExprClass: 14237 case Expr::ObjCProtocolExprClass: 14238 case Expr::ObjCIvarRefExprClass: 14239 case Expr::ObjCPropertyRefExprClass: 14240 case Expr::ObjCSubscriptRefExprClass: 14241 case Expr::ObjCIsaExprClass: 14242 case Expr::ObjCAvailabilityCheckExprClass: 14243 case Expr::ShuffleVectorExprClass: 14244 case Expr::ConvertVectorExprClass: 14245 case Expr::BlockExprClass: 14246 case Expr::NoStmtClass: 14247 case Expr::OpaqueValueExprClass: 14248 case Expr::PackExpansionExprClass: 14249 case Expr::SubstNonTypeTemplateParmPackExprClass: 14250 case Expr::FunctionParmPackExprClass: 14251 case Expr::AsTypeExprClass: 14252 case Expr::ObjCIndirectCopyRestoreExprClass: 14253 case Expr::MaterializeTemporaryExprClass: 14254 case Expr::PseudoObjectExprClass: 14255 case Expr::AtomicExprClass: 14256 case Expr::LambdaExprClass: 14257 case Expr::CXXFoldExprClass: 14258 case Expr::CoawaitExprClass: 14259 case Expr::DependentCoawaitExprClass: 14260 case Expr::CoyieldExprClass: 14261 return ICEDiag(IK_NotICE, E->getBeginLoc()); 14262 14263 case Expr::InitListExprClass: { 14264 // C++03 [dcl.init]p13: If T is a scalar type, then a declaration of the 14265 // form "T x = { a };" is equivalent to "T x = a;". 14266 // Unless we're initializing a reference, T is a scalar as it is known to be 14267 // of integral or enumeration type. 14268 if (E->isRValue()) 14269 if (cast<InitListExpr>(E)->getNumInits() == 1) 14270 return CheckICE(cast<InitListExpr>(E)->getInit(0), Ctx); 14271 return ICEDiag(IK_NotICE, E->getBeginLoc()); 14272 } 14273 14274 case Expr::SizeOfPackExprClass: 14275 case Expr::GNUNullExprClass: 14276 case Expr::SourceLocExprClass: 14277 return NoDiag(); 14278 14279 case Expr::SubstNonTypeTemplateParmExprClass: 14280 return 14281 CheckICE(cast<SubstNonTypeTemplateParmExpr>(E)->getReplacement(), Ctx); 14282 14283 case Expr::ConstantExprClass: 14284 return CheckICE(cast<ConstantExpr>(E)->getSubExpr(), Ctx); 14285 14286 case Expr::ParenExprClass: 14287 return CheckICE(cast<ParenExpr>(E)->getSubExpr(), Ctx); 14288 case Expr::GenericSelectionExprClass: 14289 return CheckICE(cast<GenericSelectionExpr>(E)->getResultExpr(), Ctx); 14290 case Expr::IntegerLiteralClass: 14291 case Expr::FixedPointLiteralClass: 14292 case Expr::CharacterLiteralClass: 14293 case Expr::ObjCBoolLiteralExprClass: 14294 case Expr::CXXBoolLiteralExprClass: 14295 case Expr::CXXScalarValueInitExprClass: 14296 case Expr::TypeTraitExprClass: 14297 case Expr::ConceptSpecializationExprClass: 14298 case Expr::RequiresExprClass: 14299 case Expr::ArrayTypeTraitExprClass: 14300 case Expr::ExpressionTraitExprClass: 14301 case Expr::CXXNoexceptExprClass: 14302 return NoDiag(); 14303 case Expr::CallExprClass: 14304 case Expr::CXXOperatorCallExprClass: { 14305 // C99 6.6/3 allows function calls within unevaluated subexpressions of 14306 // constant expressions, but they can never be ICEs because an ICE cannot 14307 // contain an operand of (pointer to) function type. 14308 const CallExpr *CE = cast<CallExpr>(E); 14309 if (CE->getBuiltinCallee()) 14310 return CheckEvalInICE(E, Ctx); 14311 return ICEDiag(IK_NotICE, E->getBeginLoc()); 14312 } 14313 case Expr::CXXRewrittenBinaryOperatorClass: 14314 return CheckICE(cast<CXXRewrittenBinaryOperator>(E)->getSemanticForm(), 14315 Ctx); 14316 case Expr::DeclRefExprClass: { 14317 if (isa<EnumConstantDecl>(cast<DeclRefExpr>(E)->getDecl())) 14318 return NoDiag(); 14319 const ValueDecl *D = cast<DeclRefExpr>(E)->getDecl(); 14320 if (Ctx.getLangOpts().CPlusPlus && 14321 D && IsConstNonVolatile(D->getType())) { 14322 // Parameter variables are never constants. Without this check, 14323 // getAnyInitializer() can find a default argument, which leads 14324 // to chaos. 14325 if (isa<ParmVarDecl>(D)) 14326 return ICEDiag(IK_NotICE, cast<DeclRefExpr>(E)->getLocation()); 14327 14328 // C++ 7.1.5.1p2 14329 // A variable of non-volatile const-qualified integral or enumeration 14330 // type initialized by an ICE can be used in ICEs. 14331 if (const VarDecl *Dcl = dyn_cast<VarDecl>(D)) { 14332 if (!Dcl->getType()->isIntegralOrEnumerationType()) 14333 return ICEDiag(IK_NotICE, cast<DeclRefExpr>(E)->getLocation()); 14334 14335 const VarDecl *VD; 14336 // Look for a declaration of this variable that has an initializer, and 14337 // check whether it is an ICE. 14338 if (Dcl->getAnyInitializer(VD) && VD->checkInitIsICE()) 14339 return NoDiag(); 14340 else 14341 return ICEDiag(IK_NotICE, cast<DeclRefExpr>(E)->getLocation()); 14342 } 14343 } 14344 return ICEDiag(IK_NotICE, E->getBeginLoc()); 14345 } 14346 case Expr::UnaryOperatorClass: { 14347 const UnaryOperator *Exp = cast<UnaryOperator>(E); 14348 switch (Exp->getOpcode()) { 14349 case UO_PostInc: 14350 case UO_PostDec: 14351 case UO_PreInc: 14352 case UO_PreDec: 14353 case UO_AddrOf: 14354 case UO_Deref: 14355 case UO_Coawait: 14356 // C99 6.6/3 allows increment and decrement within unevaluated 14357 // subexpressions of constant expressions, but they can never be ICEs 14358 // because an ICE cannot contain an lvalue operand. 14359 return ICEDiag(IK_NotICE, E->getBeginLoc()); 14360 case UO_Extension: 14361 case UO_LNot: 14362 case UO_Plus: 14363 case UO_Minus: 14364 case UO_Not: 14365 case UO_Real: 14366 case UO_Imag: 14367 return CheckICE(Exp->getSubExpr(), Ctx); 14368 } 14369 llvm_unreachable("invalid unary operator class"); 14370 } 14371 case Expr::OffsetOfExprClass: { 14372 // Note that per C99, offsetof must be an ICE. And AFAIK, using 14373 // EvaluateAsRValue matches the proposed gcc behavior for cases like 14374 // "offsetof(struct s{int x[4];}, x[1.0])". This doesn't affect 14375 // compliance: we should warn earlier for offsetof expressions with 14376 // array subscripts that aren't ICEs, and if the array subscripts 14377 // are ICEs, the value of the offsetof must be an integer constant. 14378 return CheckEvalInICE(E, Ctx); 14379 } 14380 case Expr::UnaryExprOrTypeTraitExprClass: { 14381 const UnaryExprOrTypeTraitExpr *Exp = cast<UnaryExprOrTypeTraitExpr>(E); 14382 if ((Exp->getKind() == UETT_SizeOf) && 14383 Exp->getTypeOfArgument()->isVariableArrayType()) 14384 return ICEDiag(IK_NotICE, E->getBeginLoc()); 14385 return NoDiag(); 14386 } 14387 case Expr::BinaryOperatorClass: { 14388 const BinaryOperator *Exp = cast<BinaryOperator>(E); 14389 switch (Exp->getOpcode()) { 14390 case BO_PtrMemD: 14391 case BO_PtrMemI: 14392 case BO_Assign: 14393 case BO_MulAssign: 14394 case BO_DivAssign: 14395 case BO_RemAssign: 14396 case BO_AddAssign: 14397 case BO_SubAssign: 14398 case BO_ShlAssign: 14399 case BO_ShrAssign: 14400 case BO_AndAssign: 14401 case BO_XorAssign: 14402 case BO_OrAssign: 14403 // C99 6.6/3 allows assignments within unevaluated subexpressions of 14404 // constant expressions, but they can never be ICEs because an ICE cannot 14405 // contain an lvalue operand. 14406 return ICEDiag(IK_NotICE, E->getBeginLoc()); 14407 14408 case BO_Mul: 14409 case BO_Div: 14410 case BO_Rem: 14411 case BO_Add: 14412 case BO_Sub: 14413 case BO_Shl: 14414 case BO_Shr: 14415 case BO_LT: 14416 case BO_GT: 14417 case BO_LE: 14418 case BO_GE: 14419 case BO_EQ: 14420 case BO_NE: 14421 case BO_And: 14422 case BO_Xor: 14423 case BO_Or: 14424 case BO_Comma: 14425 case BO_Cmp: { 14426 ICEDiag LHSResult = CheckICE(Exp->getLHS(), Ctx); 14427 ICEDiag RHSResult = CheckICE(Exp->getRHS(), Ctx); 14428 if (Exp->getOpcode() == BO_Div || 14429 Exp->getOpcode() == BO_Rem) { 14430 // EvaluateAsRValue gives an error for undefined Div/Rem, so make sure 14431 // we don't evaluate one. 14432 if (LHSResult.Kind == IK_ICE && RHSResult.Kind == IK_ICE) { 14433 llvm::APSInt REval = Exp->getRHS()->EvaluateKnownConstInt(Ctx); 14434 if (REval == 0) 14435 return ICEDiag(IK_ICEIfUnevaluated, E->getBeginLoc()); 14436 if (REval.isSigned() && REval.isAllOnesValue()) { 14437 llvm::APSInt LEval = Exp->getLHS()->EvaluateKnownConstInt(Ctx); 14438 if (LEval.isMinSignedValue()) 14439 return ICEDiag(IK_ICEIfUnevaluated, E->getBeginLoc()); 14440 } 14441 } 14442 } 14443 if (Exp->getOpcode() == BO_Comma) { 14444 if (Ctx.getLangOpts().C99) { 14445 // C99 6.6p3 introduces a strange edge case: comma can be in an ICE 14446 // if it isn't evaluated. 14447 if (LHSResult.Kind == IK_ICE && RHSResult.Kind == IK_ICE) 14448 return ICEDiag(IK_ICEIfUnevaluated, E->getBeginLoc()); 14449 } else { 14450 // In both C89 and C++, commas in ICEs are illegal. 14451 return ICEDiag(IK_NotICE, E->getBeginLoc()); 14452 } 14453 } 14454 return Worst(LHSResult, RHSResult); 14455 } 14456 case BO_LAnd: 14457 case BO_LOr: { 14458 ICEDiag LHSResult = CheckICE(Exp->getLHS(), Ctx); 14459 ICEDiag RHSResult = CheckICE(Exp->getRHS(), Ctx); 14460 if (LHSResult.Kind == IK_ICE && RHSResult.Kind == IK_ICEIfUnevaluated) { 14461 // Rare case where the RHS has a comma "side-effect"; we need 14462 // to actually check the condition to see whether the side 14463 // with the comma is evaluated. 14464 if ((Exp->getOpcode() == BO_LAnd) != 14465 (Exp->getLHS()->EvaluateKnownConstInt(Ctx) == 0)) 14466 return RHSResult; 14467 return NoDiag(); 14468 } 14469 14470 return Worst(LHSResult, RHSResult); 14471 } 14472 } 14473 llvm_unreachable("invalid binary operator kind"); 14474 } 14475 case Expr::ImplicitCastExprClass: 14476 case Expr::CStyleCastExprClass: 14477 case Expr::CXXFunctionalCastExprClass: 14478 case Expr::CXXStaticCastExprClass: 14479 case Expr::CXXReinterpretCastExprClass: 14480 case Expr::CXXConstCastExprClass: 14481 case Expr::ObjCBridgedCastExprClass: { 14482 const Expr *SubExpr = cast<CastExpr>(E)->getSubExpr(); 14483 if (isa<ExplicitCastExpr>(E)) { 14484 if (const FloatingLiteral *FL 14485 = dyn_cast<FloatingLiteral>(SubExpr->IgnoreParenImpCasts())) { 14486 unsigned DestWidth = Ctx.getIntWidth(E->getType()); 14487 bool DestSigned = E->getType()->isSignedIntegerOrEnumerationType(); 14488 APSInt IgnoredVal(DestWidth, !DestSigned); 14489 bool Ignored; 14490 // If the value does not fit in the destination type, the behavior is 14491 // undefined, so we are not required to treat it as a constant 14492 // expression. 14493 if (FL->getValue().convertToInteger(IgnoredVal, 14494 llvm::APFloat::rmTowardZero, 14495 &Ignored) & APFloat::opInvalidOp) 14496 return ICEDiag(IK_NotICE, E->getBeginLoc()); 14497 return NoDiag(); 14498 } 14499 } 14500 switch (cast<CastExpr>(E)->getCastKind()) { 14501 case CK_LValueToRValue: 14502 case CK_AtomicToNonAtomic: 14503 case CK_NonAtomicToAtomic: 14504 case CK_NoOp: 14505 case CK_IntegralToBoolean: 14506 case CK_IntegralCast: 14507 return CheckICE(SubExpr, Ctx); 14508 default: 14509 return ICEDiag(IK_NotICE, E->getBeginLoc()); 14510 } 14511 } 14512 case Expr::BinaryConditionalOperatorClass: { 14513 const BinaryConditionalOperator *Exp = cast<BinaryConditionalOperator>(E); 14514 ICEDiag CommonResult = CheckICE(Exp->getCommon(), Ctx); 14515 if (CommonResult.Kind == IK_NotICE) return CommonResult; 14516 ICEDiag FalseResult = CheckICE(Exp->getFalseExpr(), Ctx); 14517 if (FalseResult.Kind == IK_NotICE) return FalseResult; 14518 if (CommonResult.Kind == IK_ICEIfUnevaluated) return CommonResult; 14519 if (FalseResult.Kind == IK_ICEIfUnevaluated && 14520 Exp->getCommon()->EvaluateKnownConstInt(Ctx) != 0) return NoDiag(); 14521 return FalseResult; 14522 } 14523 case Expr::ConditionalOperatorClass: { 14524 const ConditionalOperator *Exp = cast<ConditionalOperator>(E); 14525 // If the condition (ignoring parens) is a __builtin_constant_p call, 14526 // then only the true side is actually considered in an integer constant 14527 // expression, and it is fully evaluated. This is an important GNU 14528 // extension. See GCC PR38377 for discussion. 14529 if (const CallExpr *CallCE 14530 = dyn_cast<CallExpr>(Exp->getCond()->IgnoreParenCasts())) 14531 if (CallCE->getBuiltinCallee() == Builtin::BI__builtin_constant_p) 14532 return CheckEvalInICE(E, Ctx); 14533 ICEDiag CondResult = CheckICE(Exp->getCond(), Ctx); 14534 if (CondResult.Kind == IK_NotICE) 14535 return CondResult; 14536 14537 ICEDiag TrueResult = CheckICE(Exp->getTrueExpr(), Ctx); 14538 ICEDiag FalseResult = CheckICE(Exp->getFalseExpr(), Ctx); 14539 14540 if (TrueResult.Kind == IK_NotICE) 14541 return TrueResult; 14542 if (FalseResult.Kind == IK_NotICE) 14543 return FalseResult; 14544 if (CondResult.Kind == IK_ICEIfUnevaluated) 14545 return CondResult; 14546 if (TrueResult.Kind == IK_ICE && FalseResult.Kind == IK_ICE) 14547 return NoDiag(); 14548 // Rare case where the diagnostics depend on which side is evaluated 14549 // Note that if we get here, CondResult is 0, and at least one of 14550 // TrueResult and FalseResult is non-zero. 14551 if (Exp->getCond()->EvaluateKnownConstInt(Ctx) == 0) 14552 return FalseResult; 14553 return TrueResult; 14554 } 14555 case Expr::CXXDefaultArgExprClass: 14556 return CheckICE(cast<CXXDefaultArgExpr>(E)->getExpr(), Ctx); 14557 case Expr::CXXDefaultInitExprClass: 14558 return CheckICE(cast<CXXDefaultInitExpr>(E)->getExpr(), Ctx); 14559 case Expr::ChooseExprClass: { 14560 return CheckICE(cast<ChooseExpr>(E)->getChosenSubExpr(), Ctx); 14561 } 14562 case Expr::BuiltinBitCastExprClass: { 14563 if (!checkBitCastConstexprEligibility(nullptr, Ctx, cast<CastExpr>(E))) 14564 return ICEDiag(IK_NotICE, E->getBeginLoc()); 14565 return CheckICE(cast<CastExpr>(E)->getSubExpr(), Ctx); 14566 } 14567 } 14568 14569 llvm_unreachable("Invalid StmtClass!"); 14570 } 14571 14572 /// Evaluate an expression as a C++11 integral constant expression. 14573 static bool EvaluateCPlusPlus11IntegralConstantExpr(const ASTContext &Ctx, 14574 const Expr *E, 14575 llvm::APSInt *Value, 14576 SourceLocation *Loc) { 14577 if (!E->getType()->isIntegralOrUnscopedEnumerationType()) { 14578 if (Loc) *Loc = E->getExprLoc(); 14579 return false; 14580 } 14581 14582 APValue Result; 14583 if (!E->isCXX11ConstantExpr(Ctx, &Result, Loc)) 14584 return false; 14585 14586 if (!Result.isInt()) { 14587 if (Loc) *Loc = E->getExprLoc(); 14588 return false; 14589 } 14590 14591 if (Value) *Value = Result.getInt(); 14592 return true; 14593 } 14594 14595 bool Expr::isIntegerConstantExpr(const ASTContext &Ctx, 14596 SourceLocation *Loc) const { 14597 assert(!isValueDependent() && 14598 "Expression evaluator can't be called on a dependent expression."); 14599 14600 if (Ctx.getLangOpts().CPlusPlus11) 14601 return EvaluateCPlusPlus11IntegralConstantExpr(Ctx, this, nullptr, Loc); 14602 14603 ICEDiag D = CheckICE(this, Ctx); 14604 if (D.Kind != IK_ICE) { 14605 if (Loc) *Loc = D.Loc; 14606 return false; 14607 } 14608 return true; 14609 } 14610 14611 bool Expr::isIntegerConstantExpr(llvm::APSInt &Value, const ASTContext &Ctx, 14612 SourceLocation *Loc, bool isEvaluated) const { 14613 assert(!isValueDependent() && 14614 "Expression evaluator can't be called on a dependent expression."); 14615 14616 if (Ctx.getLangOpts().CPlusPlus11) 14617 return EvaluateCPlusPlus11IntegralConstantExpr(Ctx, this, &Value, Loc); 14618 14619 if (!isIntegerConstantExpr(Ctx, Loc)) 14620 return false; 14621 14622 // The only possible side-effects here are due to UB discovered in the 14623 // evaluation (for instance, INT_MAX + 1). In such a case, we are still 14624 // required to treat the expression as an ICE, so we produce the folded 14625 // value. 14626 EvalResult ExprResult; 14627 Expr::EvalStatus Status; 14628 EvalInfo Info(Ctx, Status, EvalInfo::EM_IgnoreSideEffects); 14629 Info.InConstantContext = true; 14630 14631 if (!::EvaluateAsInt(this, ExprResult, Ctx, SE_AllowSideEffects, Info)) 14632 llvm_unreachable("ICE cannot be evaluated!"); 14633 14634 Value = ExprResult.Val.getInt(); 14635 return true; 14636 } 14637 14638 bool Expr::isCXX98IntegralConstantExpr(const ASTContext &Ctx) const { 14639 assert(!isValueDependent() && 14640 "Expression evaluator can't be called on a dependent expression."); 14641 14642 return CheckICE(this, Ctx).Kind == IK_ICE; 14643 } 14644 14645 bool Expr::isCXX11ConstantExpr(const ASTContext &Ctx, APValue *Result, 14646 SourceLocation *Loc) const { 14647 assert(!isValueDependent() && 14648 "Expression evaluator can't be called on a dependent expression."); 14649 14650 // We support this checking in C++98 mode in order to diagnose compatibility 14651 // issues. 14652 assert(Ctx.getLangOpts().CPlusPlus); 14653 14654 // Build evaluation settings. 14655 Expr::EvalStatus Status; 14656 SmallVector<PartialDiagnosticAt, 8> Diags; 14657 Status.Diag = &Diags; 14658 EvalInfo Info(Ctx, Status, EvalInfo::EM_ConstantExpression); 14659 14660 APValue Scratch; 14661 bool IsConstExpr = 14662 ::EvaluateAsRValue(Info, this, Result ? *Result : Scratch) && 14663 // FIXME: We don't produce a diagnostic for this, but the callers that 14664 // call us on arbitrary full-expressions should generally not care. 14665 Info.discardCleanups() && !Status.HasSideEffects; 14666 14667 if (!Diags.empty()) { 14668 IsConstExpr = false; 14669 if (Loc) *Loc = Diags[0].first; 14670 } else if (!IsConstExpr) { 14671 // FIXME: This shouldn't happen. 14672 if (Loc) *Loc = getExprLoc(); 14673 } 14674 14675 return IsConstExpr; 14676 } 14677 14678 bool Expr::EvaluateWithSubstitution(APValue &Value, ASTContext &Ctx, 14679 const FunctionDecl *Callee, 14680 ArrayRef<const Expr*> Args, 14681 const Expr *This) const { 14682 assert(!isValueDependent() && 14683 "Expression evaluator can't be called on a dependent expression."); 14684 14685 Expr::EvalStatus Status; 14686 EvalInfo Info(Ctx, Status, EvalInfo::EM_ConstantExpressionUnevaluated); 14687 Info.InConstantContext = true; 14688 14689 LValue ThisVal; 14690 const LValue *ThisPtr = nullptr; 14691 if (This) { 14692 #ifndef NDEBUG 14693 auto *MD = dyn_cast<CXXMethodDecl>(Callee); 14694 assert(MD && "Don't provide `this` for non-methods."); 14695 assert(!MD->isStatic() && "Don't provide `this` for static methods."); 14696 #endif 14697 if (!This->isValueDependent() && 14698 EvaluateObjectArgument(Info, This, ThisVal) && 14699 !Info.EvalStatus.HasSideEffects) 14700 ThisPtr = &ThisVal; 14701 14702 // Ignore any side-effects from a failed evaluation. This is safe because 14703 // they can't interfere with any other argument evaluation. 14704 Info.EvalStatus.HasSideEffects = false; 14705 } 14706 14707 ArgVector ArgValues(Args.size()); 14708 for (ArrayRef<const Expr*>::iterator I = Args.begin(), E = Args.end(); 14709 I != E; ++I) { 14710 if ((*I)->isValueDependent() || 14711 !Evaluate(ArgValues[I - Args.begin()], Info, *I) || 14712 Info.EvalStatus.HasSideEffects) 14713 // If evaluation fails, throw away the argument entirely. 14714 ArgValues[I - Args.begin()] = APValue(); 14715 14716 // Ignore any side-effects from a failed evaluation. This is safe because 14717 // they can't interfere with any other argument evaluation. 14718 Info.EvalStatus.HasSideEffects = false; 14719 } 14720 14721 // Parameter cleanups happen in the caller and are not part of this 14722 // evaluation. 14723 Info.discardCleanups(); 14724 Info.EvalStatus.HasSideEffects = false; 14725 14726 // Build fake call to Callee. 14727 CallStackFrame Frame(Info, Callee->getLocation(), Callee, ThisPtr, 14728 ArgValues.data()); 14729 // FIXME: Missing ExprWithCleanups in enable_if conditions? 14730 FullExpressionRAII Scope(Info); 14731 return Evaluate(Value, Info, this) && Scope.destroy() && 14732 !Info.EvalStatus.HasSideEffects; 14733 } 14734 14735 bool Expr::isPotentialConstantExpr(const FunctionDecl *FD, 14736 SmallVectorImpl< 14737 PartialDiagnosticAt> &Diags) { 14738 // FIXME: It would be useful to check constexpr function templates, but at the 14739 // moment the constant expression evaluator cannot cope with the non-rigorous 14740 // ASTs which we build for dependent expressions. 14741 if (FD->isDependentContext()) 14742 return true; 14743 14744 // Bail out if a constexpr constructor has an initializer that contains an 14745 // error. We deliberately don't produce a diagnostic, as we have produced a 14746 // relevant diagnostic when parsing the error initializer. 14747 if (const auto *Ctor = dyn_cast<CXXConstructorDecl>(FD)) { 14748 for (const auto *InitExpr : Ctor->inits()) { 14749 if (InitExpr->getInit() && InitExpr->getInit()->containsErrors()) 14750 return false; 14751 } 14752 } 14753 Expr::EvalStatus Status; 14754 Status.Diag = &Diags; 14755 14756 EvalInfo Info(FD->getASTContext(), Status, EvalInfo::EM_ConstantExpression); 14757 Info.InConstantContext = true; 14758 Info.CheckingPotentialConstantExpression = true; 14759 14760 // The constexpr VM attempts to compile all methods to bytecode here. 14761 if (Info.EnableNewConstInterp) { 14762 Info.Ctx.getInterpContext().isPotentialConstantExpr(Info, FD); 14763 return Diags.empty(); 14764 } 14765 14766 const CXXMethodDecl *MD = dyn_cast<CXXMethodDecl>(FD); 14767 const CXXRecordDecl *RD = MD ? MD->getParent()->getCanonicalDecl() : nullptr; 14768 14769 // Fabricate an arbitrary expression on the stack and pretend that it 14770 // is a temporary being used as the 'this' pointer. 14771 LValue This; 14772 ImplicitValueInitExpr VIE(RD ? Info.Ctx.getRecordType(RD) : Info.Ctx.IntTy); 14773 This.set({&VIE, Info.CurrentCall->Index}); 14774 14775 ArrayRef<const Expr*> Args; 14776 14777 APValue Scratch; 14778 if (const CXXConstructorDecl *CD = dyn_cast<CXXConstructorDecl>(FD)) { 14779 // Evaluate the call as a constant initializer, to allow the construction 14780 // of objects of non-literal types. 14781 Info.setEvaluatingDecl(This.getLValueBase(), Scratch); 14782 HandleConstructorCall(&VIE, This, Args, CD, Info, Scratch); 14783 } else { 14784 SourceLocation Loc = FD->getLocation(); 14785 HandleFunctionCall(Loc, FD, (MD && MD->isInstance()) ? &This : nullptr, 14786 Args, FD->getBody(), Info, Scratch, nullptr); 14787 } 14788 14789 return Diags.empty(); 14790 } 14791 14792 bool Expr::isPotentialConstantExprUnevaluated(Expr *E, 14793 const FunctionDecl *FD, 14794 SmallVectorImpl< 14795 PartialDiagnosticAt> &Diags) { 14796 assert(!E->isValueDependent() && 14797 "Expression evaluator can't be called on a dependent expression."); 14798 14799 Expr::EvalStatus Status; 14800 Status.Diag = &Diags; 14801 14802 EvalInfo Info(FD->getASTContext(), Status, 14803 EvalInfo::EM_ConstantExpressionUnevaluated); 14804 Info.InConstantContext = true; 14805 Info.CheckingPotentialConstantExpression = true; 14806 14807 // Fabricate a call stack frame to give the arguments a plausible cover story. 14808 ArrayRef<const Expr*> Args; 14809 ArgVector ArgValues(0); 14810 bool Success = EvaluateArgs(Args, ArgValues, Info, FD); 14811 (void)Success; 14812 assert(Success && 14813 "Failed to set up arguments for potential constant evaluation"); 14814 CallStackFrame Frame(Info, SourceLocation(), FD, nullptr, ArgValues.data()); 14815 14816 APValue ResultScratch; 14817 Evaluate(ResultScratch, Info, E); 14818 return Diags.empty(); 14819 } 14820 14821 bool Expr::tryEvaluateObjectSize(uint64_t &Result, ASTContext &Ctx, 14822 unsigned Type) const { 14823 if (!getType()->isPointerType()) 14824 return false; 14825 14826 Expr::EvalStatus Status; 14827 EvalInfo Info(Ctx, Status, EvalInfo::EM_ConstantFold); 14828 return tryEvaluateBuiltinObjectSize(this, Type, Info, Result); 14829 } 14830