1 //===--- APValue.cpp - Union class for APFloat/APSInt/Complex -------------===// 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 APValue class. 10 // 11 //===----------------------------------------------------------------------===// 12 13 #include "clang/AST/APValue.h" 14 #include "clang/AST/ASTContext.h" 15 #include "clang/AST/CharUnits.h" 16 #include "clang/AST/DeclCXX.h" 17 #include "clang/AST/Expr.h" 18 #include "clang/AST/Type.h" 19 #include "llvm/Support/ErrorHandling.h" 20 #include "llvm/Support/raw_ostream.h" 21 using namespace clang; 22 23 /// The identity of a type_info object depends on the canonical unqualified 24 /// type only. 25 TypeInfoLValue::TypeInfoLValue(const Type *T) 26 : T(T->getCanonicalTypeUnqualified().getTypePtr()) {} 27 28 void TypeInfoLValue::print(llvm::raw_ostream &Out, 29 const PrintingPolicy &Policy) const { 30 Out << "typeid("; 31 QualType(getType(), 0).print(Out, Policy); 32 Out << ")"; 33 } 34 35 static_assert( 36 1 << llvm::PointerLikeTypeTraits<TypeInfoLValue>::NumLowBitsAvailable <= 37 alignof(Type), 38 "Type is insufficiently aligned"); 39 40 APValue::LValueBase::LValueBase(const ValueDecl *P, unsigned I, unsigned V) 41 : Ptr(P), Local{I, V} {} 42 APValue::LValueBase::LValueBase(const Expr *P, unsigned I, unsigned V) 43 : Ptr(P), Local{I, V} {} 44 45 APValue::LValueBase APValue::LValueBase::getDynamicAlloc(DynamicAllocLValue LV, 46 QualType Type) { 47 LValueBase Base; 48 Base.Ptr = LV; 49 Base.DynamicAllocType = Type.getAsOpaquePtr(); 50 return Base; 51 } 52 53 APValue::LValueBase APValue::LValueBase::getTypeInfo(TypeInfoLValue LV, 54 QualType TypeInfo) { 55 LValueBase Base; 56 Base.Ptr = LV; 57 Base.TypeInfoType = TypeInfo.getAsOpaquePtr(); 58 return Base; 59 } 60 61 unsigned APValue::LValueBase::getCallIndex() const { 62 return (is<TypeInfoLValue>() || is<DynamicAllocLValue>()) ? 0 63 : Local.CallIndex; 64 } 65 66 unsigned APValue::LValueBase::getVersion() const { 67 return (is<TypeInfoLValue>() || is<DynamicAllocLValue>()) ? 0 : Local.Version; 68 } 69 70 QualType APValue::LValueBase::getTypeInfoType() const { 71 assert(is<TypeInfoLValue>() && "not a type_info lvalue"); 72 return QualType::getFromOpaquePtr(TypeInfoType); 73 } 74 75 QualType APValue::LValueBase::getDynamicAllocType() const { 76 assert(is<DynamicAllocLValue>() && "not a dynamic allocation lvalue"); 77 return QualType::getFromOpaquePtr(DynamicAllocType); 78 } 79 80 namespace clang { 81 bool operator==(const APValue::LValueBase &LHS, 82 const APValue::LValueBase &RHS) { 83 if (LHS.Ptr != RHS.Ptr) 84 return false; 85 if (LHS.is<TypeInfoLValue>()) 86 return true; 87 return LHS.Local.CallIndex == RHS.Local.CallIndex && 88 LHS.Local.Version == RHS.Local.Version; 89 } 90 } 91 92 namespace { 93 struct LVBase { 94 APValue::LValueBase Base; 95 CharUnits Offset; 96 unsigned PathLength; 97 bool IsNullPtr : 1; 98 bool IsOnePastTheEnd : 1; 99 }; 100 } 101 102 void *APValue::LValueBase::getOpaqueValue() const { 103 return Ptr.getOpaqueValue(); 104 } 105 106 bool APValue::LValueBase::isNull() const { 107 return Ptr.isNull(); 108 } 109 110 APValue::LValueBase::operator bool () const { 111 return static_cast<bool>(Ptr); 112 } 113 114 clang::APValue::LValueBase 115 llvm::DenseMapInfo<clang::APValue::LValueBase>::getEmptyKey() { 116 return clang::APValue::LValueBase( 117 DenseMapInfo<const ValueDecl*>::getEmptyKey()); 118 } 119 120 clang::APValue::LValueBase 121 llvm::DenseMapInfo<clang::APValue::LValueBase>::getTombstoneKey() { 122 return clang::APValue::LValueBase( 123 DenseMapInfo<const ValueDecl*>::getTombstoneKey()); 124 } 125 126 namespace clang { 127 llvm::hash_code hash_value(const APValue::LValueBase &Base) { 128 if (Base.is<TypeInfoLValue>() || Base.is<DynamicAllocLValue>()) 129 return llvm::hash_value(Base.getOpaqueValue()); 130 return llvm::hash_combine(Base.getOpaqueValue(), Base.getCallIndex(), 131 Base.getVersion()); 132 } 133 } 134 135 unsigned llvm::DenseMapInfo<clang::APValue::LValueBase>::getHashValue( 136 const clang::APValue::LValueBase &Base) { 137 return hash_value(Base); 138 } 139 140 bool llvm::DenseMapInfo<clang::APValue::LValueBase>::isEqual( 141 const clang::APValue::LValueBase &LHS, 142 const clang::APValue::LValueBase &RHS) { 143 return LHS == RHS; 144 } 145 146 struct APValue::LV : LVBase { 147 static const unsigned InlinePathSpace = 148 (DataSize - sizeof(LVBase)) / sizeof(LValuePathEntry); 149 150 /// Path - The sequence of base classes, fields and array indices to follow to 151 /// walk from Base to the subobject. When performing GCC-style folding, there 152 /// may not be such a path. 153 union { 154 LValuePathEntry Path[InlinePathSpace]; 155 LValuePathEntry *PathPtr; 156 }; 157 158 LV() { PathLength = (unsigned)-1; } 159 ~LV() { resizePath(0); } 160 161 void resizePath(unsigned Length) { 162 if (Length == PathLength) 163 return; 164 if (hasPathPtr()) 165 delete [] PathPtr; 166 PathLength = Length; 167 if (hasPathPtr()) 168 PathPtr = new LValuePathEntry[Length]; 169 } 170 171 bool hasPath() const { return PathLength != (unsigned)-1; } 172 bool hasPathPtr() const { return hasPath() && PathLength > InlinePathSpace; } 173 174 LValuePathEntry *getPath() { return hasPathPtr() ? PathPtr : Path; } 175 const LValuePathEntry *getPath() const { 176 return hasPathPtr() ? PathPtr : Path; 177 } 178 }; 179 180 namespace { 181 struct MemberPointerBase { 182 llvm::PointerIntPair<const ValueDecl*, 1, bool> MemberAndIsDerivedMember; 183 unsigned PathLength; 184 }; 185 } 186 187 struct APValue::MemberPointerData : MemberPointerBase { 188 static const unsigned InlinePathSpace = 189 (DataSize - sizeof(MemberPointerBase)) / sizeof(const CXXRecordDecl*); 190 typedef const CXXRecordDecl *PathElem; 191 union { 192 PathElem Path[InlinePathSpace]; 193 PathElem *PathPtr; 194 }; 195 196 MemberPointerData() { PathLength = 0; } 197 ~MemberPointerData() { resizePath(0); } 198 199 void resizePath(unsigned Length) { 200 if (Length == PathLength) 201 return; 202 if (hasPathPtr()) 203 delete [] PathPtr; 204 PathLength = Length; 205 if (hasPathPtr()) 206 PathPtr = new PathElem[Length]; 207 } 208 209 bool hasPathPtr() const { return PathLength > InlinePathSpace; } 210 211 PathElem *getPath() { return hasPathPtr() ? PathPtr : Path; } 212 const PathElem *getPath() const { 213 return hasPathPtr() ? PathPtr : Path; 214 } 215 }; 216 217 // FIXME: Reduce the malloc traffic here. 218 219 APValue::Arr::Arr(unsigned NumElts, unsigned Size) : 220 Elts(new APValue[NumElts + (NumElts != Size ? 1 : 0)]), 221 NumElts(NumElts), ArrSize(Size) {} 222 APValue::Arr::~Arr() { delete [] Elts; } 223 224 APValue::StructData::StructData(unsigned NumBases, unsigned NumFields) : 225 Elts(new APValue[NumBases+NumFields]), 226 NumBases(NumBases), NumFields(NumFields) {} 227 APValue::StructData::~StructData() { 228 delete [] Elts; 229 } 230 231 APValue::UnionData::UnionData() : Field(nullptr), Value(new APValue) {} 232 APValue::UnionData::~UnionData () { 233 delete Value; 234 } 235 236 APValue::APValue(const APValue &RHS) : Kind(None) { 237 switch (RHS.getKind()) { 238 case None: 239 case Indeterminate: 240 Kind = RHS.getKind(); 241 break; 242 case Int: 243 MakeInt(); 244 setInt(RHS.getInt()); 245 break; 246 case Float: 247 MakeFloat(); 248 setFloat(RHS.getFloat()); 249 break; 250 case FixedPoint: { 251 APFixedPoint FXCopy = RHS.getFixedPoint(); 252 MakeFixedPoint(std::move(FXCopy)); 253 break; 254 } 255 case Vector: 256 MakeVector(); 257 setVector(((const Vec *)(const char *)RHS.Data.buffer)->Elts, 258 RHS.getVectorLength()); 259 break; 260 case ComplexInt: 261 MakeComplexInt(); 262 setComplexInt(RHS.getComplexIntReal(), RHS.getComplexIntImag()); 263 break; 264 case ComplexFloat: 265 MakeComplexFloat(); 266 setComplexFloat(RHS.getComplexFloatReal(), RHS.getComplexFloatImag()); 267 break; 268 case LValue: 269 MakeLValue(); 270 if (RHS.hasLValuePath()) 271 setLValue(RHS.getLValueBase(), RHS.getLValueOffset(), RHS.getLValuePath(), 272 RHS.isLValueOnePastTheEnd(), RHS.isNullPointer()); 273 else 274 setLValue(RHS.getLValueBase(), RHS.getLValueOffset(), NoLValuePath(), 275 RHS.isNullPointer()); 276 break; 277 case Array: 278 MakeArray(RHS.getArrayInitializedElts(), RHS.getArraySize()); 279 for (unsigned I = 0, N = RHS.getArrayInitializedElts(); I != N; ++I) 280 getArrayInitializedElt(I) = RHS.getArrayInitializedElt(I); 281 if (RHS.hasArrayFiller()) 282 getArrayFiller() = RHS.getArrayFiller(); 283 break; 284 case Struct: 285 MakeStruct(RHS.getStructNumBases(), RHS.getStructNumFields()); 286 for (unsigned I = 0, N = RHS.getStructNumBases(); I != N; ++I) 287 getStructBase(I) = RHS.getStructBase(I); 288 for (unsigned I = 0, N = RHS.getStructNumFields(); I != N; ++I) 289 getStructField(I) = RHS.getStructField(I); 290 break; 291 case Union: 292 MakeUnion(); 293 setUnion(RHS.getUnionField(), RHS.getUnionValue()); 294 break; 295 case MemberPointer: 296 MakeMemberPointer(RHS.getMemberPointerDecl(), 297 RHS.isMemberPointerToDerivedMember(), 298 RHS.getMemberPointerPath()); 299 break; 300 case AddrLabelDiff: 301 MakeAddrLabelDiff(); 302 setAddrLabelDiff(RHS.getAddrLabelDiffLHS(), RHS.getAddrLabelDiffRHS()); 303 break; 304 } 305 } 306 307 void APValue::DestroyDataAndMakeUninit() { 308 if (Kind == Int) 309 ((APSInt*)(char*)Data.buffer)->~APSInt(); 310 else if (Kind == Float) 311 ((APFloat*)(char*)Data.buffer)->~APFloat(); 312 else if (Kind == FixedPoint) 313 ((APFixedPoint *)(char *)Data.buffer)->~APFixedPoint(); 314 else if (Kind == Vector) 315 ((Vec*)(char*)Data.buffer)->~Vec(); 316 else if (Kind == ComplexInt) 317 ((ComplexAPSInt*)(char*)Data.buffer)->~ComplexAPSInt(); 318 else if (Kind == ComplexFloat) 319 ((ComplexAPFloat*)(char*)Data.buffer)->~ComplexAPFloat(); 320 else if (Kind == LValue) 321 ((LV*)(char*)Data.buffer)->~LV(); 322 else if (Kind == Array) 323 ((Arr*)(char*)Data.buffer)->~Arr(); 324 else if (Kind == Struct) 325 ((StructData*)(char*)Data.buffer)->~StructData(); 326 else if (Kind == Union) 327 ((UnionData*)(char*)Data.buffer)->~UnionData(); 328 else if (Kind == MemberPointer) 329 ((MemberPointerData*)(char*)Data.buffer)->~MemberPointerData(); 330 else if (Kind == AddrLabelDiff) 331 ((AddrLabelDiffData*)(char*)Data.buffer)->~AddrLabelDiffData(); 332 Kind = None; 333 } 334 335 bool APValue::needsCleanup() const { 336 switch (getKind()) { 337 case None: 338 case Indeterminate: 339 case AddrLabelDiff: 340 return false; 341 case Struct: 342 case Union: 343 case Array: 344 case Vector: 345 return true; 346 case Int: 347 return getInt().needsCleanup(); 348 case Float: 349 return getFloat().needsCleanup(); 350 case FixedPoint: 351 return getFixedPoint().getValue().needsCleanup(); 352 case ComplexFloat: 353 assert(getComplexFloatImag().needsCleanup() == 354 getComplexFloatReal().needsCleanup() && 355 "In _Complex float types, real and imaginary values always have the " 356 "same size."); 357 return getComplexFloatReal().needsCleanup(); 358 case ComplexInt: 359 assert(getComplexIntImag().needsCleanup() == 360 getComplexIntReal().needsCleanup() && 361 "In _Complex int types, real and imaginary values must have the " 362 "same size."); 363 return getComplexIntReal().needsCleanup(); 364 case LValue: 365 return reinterpret_cast<const LV *>(Data.buffer)->hasPathPtr(); 366 case MemberPointer: 367 return reinterpret_cast<const MemberPointerData *>(Data.buffer) 368 ->hasPathPtr(); 369 } 370 llvm_unreachable("Unknown APValue kind!"); 371 } 372 373 void APValue::swap(APValue &RHS) { 374 std::swap(Kind, RHS.Kind); 375 char TmpData[DataSize]; 376 memcpy(TmpData, Data.buffer, DataSize); 377 memcpy(Data.buffer, RHS.Data.buffer, DataSize); 378 memcpy(RHS.Data.buffer, TmpData, DataSize); 379 } 380 381 static double GetApproxValue(const llvm::APFloat &F) { 382 llvm::APFloat V = F; 383 bool ignored; 384 V.convert(llvm::APFloat::IEEEdouble(), llvm::APFloat::rmNearestTiesToEven, 385 &ignored); 386 return V.convertToDouble(); 387 } 388 389 void APValue::printPretty(raw_ostream &Out, const ASTContext &Ctx, 390 QualType Ty) const { 391 // There are no objects of type 'void', but values of this type can be 392 // returned from functions. 393 if (Ty->isVoidType()) { 394 Out << "void()"; 395 return; 396 } 397 398 switch (getKind()) { 399 case APValue::None: 400 Out << "<out of lifetime>"; 401 return; 402 case APValue::Indeterminate: 403 Out << "<uninitialized>"; 404 return; 405 case APValue::Int: 406 if (Ty->isBooleanType()) 407 Out << (getInt().getBoolValue() ? "true" : "false"); 408 else 409 Out << getInt(); 410 return; 411 case APValue::Float: 412 Out << GetApproxValue(getFloat()); 413 return; 414 case APValue::FixedPoint: 415 Out << getFixedPoint(); 416 return; 417 case APValue::Vector: { 418 Out << '{'; 419 QualType ElemTy = Ty->castAs<VectorType>()->getElementType(); 420 getVectorElt(0).printPretty(Out, Ctx, ElemTy); 421 for (unsigned i = 1; i != getVectorLength(); ++i) { 422 Out << ", "; 423 getVectorElt(i).printPretty(Out, Ctx, ElemTy); 424 } 425 Out << '}'; 426 return; 427 } 428 case APValue::ComplexInt: 429 Out << getComplexIntReal() << "+" << getComplexIntImag() << "i"; 430 return; 431 case APValue::ComplexFloat: 432 Out << GetApproxValue(getComplexFloatReal()) << "+" 433 << GetApproxValue(getComplexFloatImag()) << "i"; 434 return; 435 case APValue::LValue: { 436 bool IsReference = Ty->isReferenceType(); 437 QualType InnerTy 438 = IsReference ? Ty.getNonReferenceType() : Ty->getPointeeType(); 439 if (InnerTy.isNull()) 440 InnerTy = Ty; 441 442 LValueBase Base = getLValueBase(); 443 if (!Base) { 444 if (isNullPointer()) { 445 Out << (Ctx.getLangOpts().CPlusPlus11 ? "nullptr" : "0"); 446 } else if (IsReference) { 447 Out << "*(" << InnerTy.stream(Ctx.getPrintingPolicy()) << "*)" 448 << getLValueOffset().getQuantity(); 449 } else { 450 Out << "(" << Ty.stream(Ctx.getPrintingPolicy()) << ")" 451 << getLValueOffset().getQuantity(); 452 } 453 return; 454 } 455 456 if (!hasLValuePath()) { 457 // No lvalue path: just print the offset. 458 CharUnits O = getLValueOffset(); 459 CharUnits S = Ctx.getTypeSizeInChars(InnerTy); 460 if (!O.isZero()) { 461 if (IsReference) 462 Out << "*("; 463 if (O % S) { 464 Out << "(char*)"; 465 S = CharUnits::One(); 466 } 467 Out << '&'; 468 } else if (!IsReference) { 469 Out << '&'; 470 } 471 472 if (const ValueDecl *VD = Base.dyn_cast<const ValueDecl*>()) 473 Out << *VD; 474 else if (TypeInfoLValue TI = Base.dyn_cast<TypeInfoLValue>()) { 475 TI.print(Out, Ctx.getPrintingPolicy()); 476 } else if (DynamicAllocLValue DA = Base.dyn_cast<DynamicAllocLValue>()) { 477 Out << "{*new " 478 << Base.getDynamicAllocType().stream(Ctx.getPrintingPolicy()) << "#" 479 << DA.getIndex() << "}"; 480 } else { 481 assert(Base.get<const Expr *>() != nullptr && 482 "Expecting non-null Expr"); 483 Base.get<const Expr*>()->printPretty(Out, nullptr, 484 Ctx.getPrintingPolicy()); 485 } 486 487 if (!O.isZero()) { 488 Out << " + " << (O / S); 489 if (IsReference) 490 Out << ')'; 491 } 492 return; 493 } 494 495 // We have an lvalue path. Print it out nicely. 496 if (!IsReference) 497 Out << '&'; 498 else if (isLValueOnePastTheEnd()) 499 Out << "*(&"; 500 501 QualType ElemTy; 502 if (const ValueDecl *VD = Base.dyn_cast<const ValueDecl*>()) { 503 Out << *VD; 504 ElemTy = VD->getType(); 505 } else if (TypeInfoLValue TI = Base.dyn_cast<TypeInfoLValue>()) { 506 TI.print(Out, Ctx.getPrintingPolicy()); 507 ElemTy = Base.getTypeInfoType(); 508 } else if (DynamicAllocLValue DA = Base.dyn_cast<DynamicAllocLValue>()) { 509 Out << "{*new " 510 << Base.getDynamicAllocType().stream(Ctx.getPrintingPolicy()) << "#" 511 << DA.getIndex() << "}"; 512 ElemTy = Base.getDynamicAllocType(); 513 } else { 514 const Expr *E = Base.get<const Expr*>(); 515 assert(E != nullptr && "Expecting non-null Expr"); 516 E->printPretty(Out, nullptr, Ctx.getPrintingPolicy()); 517 // FIXME: This is wrong if E is a MaterializeTemporaryExpr with an lvalue 518 // adjustment. 519 ElemTy = E->getType(); 520 } 521 522 ArrayRef<LValuePathEntry> Path = getLValuePath(); 523 const CXXRecordDecl *CastToBase = nullptr; 524 for (unsigned I = 0, N = Path.size(); I != N; ++I) { 525 if (ElemTy->getAs<RecordType>()) { 526 // The lvalue refers to a class type, so the next path entry is a base 527 // or member. 528 const Decl *BaseOrMember = Path[I].getAsBaseOrMember().getPointer(); 529 if (const CXXRecordDecl *RD = dyn_cast<CXXRecordDecl>(BaseOrMember)) { 530 CastToBase = RD; 531 ElemTy = Ctx.getRecordType(RD); 532 } else { 533 const ValueDecl *VD = cast<ValueDecl>(BaseOrMember); 534 Out << "."; 535 if (CastToBase) 536 Out << *CastToBase << "::"; 537 Out << *VD; 538 ElemTy = VD->getType(); 539 } 540 } else { 541 // The lvalue must refer to an array. 542 Out << '[' << Path[I].getAsArrayIndex() << ']'; 543 ElemTy = Ctx.getAsArrayType(ElemTy)->getElementType(); 544 } 545 } 546 547 // Handle formatting of one-past-the-end lvalues. 548 if (isLValueOnePastTheEnd()) { 549 // FIXME: If CastToBase is non-0, we should prefix the output with 550 // "(CastToBase*)". 551 Out << " + 1"; 552 if (IsReference) 553 Out << ')'; 554 } 555 return; 556 } 557 case APValue::Array: { 558 const ArrayType *AT = Ctx.getAsArrayType(Ty); 559 QualType ElemTy = AT->getElementType(); 560 Out << '{'; 561 if (unsigned N = getArrayInitializedElts()) { 562 getArrayInitializedElt(0).printPretty(Out, Ctx, ElemTy); 563 for (unsigned I = 1; I != N; ++I) { 564 Out << ", "; 565 if (I == 10) { 566 // Avoid printing out the entire contents of large arrays. 567 Out << "..."; 568 break; 569 } 570 getArrayInitializedElt(I).printPretty(Out, Ctx, ElemTy); 571 } 572 } 573 Out << '}'; 574 return; 575 } 576 case APValue::Struct: { 577 Out << '{'; 578 const RecordDecl *RD = Ty->castAs<RecordType>()->getDecl(); 579 bool First = true; 580 if (unsigned N = getStructNumBases()) { 581 const CXXRecordDecl *CD = cast<CXXRecordDecl>(RD); 582 CXXRecordDecl::base_class_const_iterator BI = CD->bases_begin(); 583 for (unsigned I = 0; I != N; ++I, ++BI) { 584 assert(BI != CD->bases_end()); 585 if (!First) 586 Out << ", "; 587 getStructBase(I).printPretty(Out, Ctx, BI->getType()); 588 First = false; 589 } 590 } 591 for (const auto *FI : RD->fields()) { 592 if (!First) 593 Out << ", "; 594 if (FI->isUnnamedBitfield()) continue; 595 getStructField(FI->getFieldIndex()). 596 printPretty(Out, Ctx, FI->getType()); 597 First = false; 598 } 599 Out << '}'; 600 return; 601 } 602 case APValue::Union: 603 Out << '{'; 604 if (const FieldDecl *FD = getUnionField()) { 605 Out << "." << *FD << " = "; 606 getUnionValue().printPretty(Out, Ctx, FD->getType()); 607 } 608 Out << '}'; 609 return; 610 case APValue::MemberPointer: 611 // FIXME: This is not enough to unambiguously identify the member in a 612 // multiple-inheritance scenario. 613 if (const ValueDecl *VD = getMemberPointerDecl()) { 614 Out << '&' << *cast<CXXRecordDecl>(VD->getDeclContext()) << "::" << *VD; 615 return; 616 } 617 Out << "0"; 618 return; 619 case APValue::AddrLabelDiff: 620 Out << "&&" << getAddrLabelDiffLHS()->getLabel()->getName(); 621 Out << " - "; 622 Out << "&&" << getAddrLabelDiffRHS()->getLabel()->getName(); 623 return; 624 } 625 llvm_unreachable("Unknown APValue kind!"); 626 } 627 628 std::string APValue::getAsString(const ASTContext &Ctx, QualType Ty) const { 629 std::string Result; 630 llvm::raw_string_ostream Out(Result); 631 printPretty(Out, Ctx, Ty); 632 Out.flush(); 633 return Result; 634 } 635 636 bool APValue::toIntegralConstant(APSInt &Result, QualType SrcTy, 637 const ASTContext &Ctx) const { 638 if (isInt()) { 639 Result = getInt(); 640 return true; 641 } 642 643 if (isLValue() && isNullPointer()) { 644 Result = Ctx.MakeIntValue(Ctx.getTargetNullPointerValue(SrcTy), SrcTy); 645 return true; 646 } 647 648 if (isLValue() && !getLValueBase()) { 649 Result = Ctx.MakeIntValue(getLValueOffset().getQuantity(), SrcTy); 650 return true; 651 } 652 653 return false; 654 } 655 656 const APValue::LValueBase APValue::getLValueBase() const { 657 assert(isLValue() && "Invalid accessor"); 658 return ((const LV*)(const void*)Data.buffer)->Base; 659 } 660 661 bool APValue::isLValueOnePastTheEnd() const { 662 assert(isLValue() && "Invalid accessor"); 663 return ((const LV*)(const void*)Data.buffer)->IsOnePastTheEnd; 664 } 665 666 CharUnits &APValue::getLValueOffset() { 667 assert(isLValue() && "Invalid accessor"); 668 return ((LV*)(void*)Data.buffer)->Offset; 669 } 670 671 bool APValue::hasLValuePath() const { 672 assert(isLValue() && "Invalid accessor"); 673 return ((const LV*)(const char*)Data.buffer)->hasPath(); 674 } 675 676 ArrayRef<APValue::LValuePathEntry> APValue::getLValuePath() const { 677 assert(isLValue() && hasLValuePath() && "Invalid accessor"); 678 const LV &LVal = *((const LV*)(const char*)Data.buffer); 679 return llvm::makeArrayRef(LVal.getPath(), LVal.PathLength); 680 } 681 682 unsigned APValue::getLValueCallIndex() const { 683 assert(isLValue() && "Invalid accessor"); 684 return ((const LV*)(const char*)Data.buffer)->Base.getCallIndex(); 685 } 686 687 unsigned APValue::getLValueVersion() const { 688 assert(isLValue() && "Invalid accessor"); 689 return ((const LV*)(const char*)Data.buffer)->Base.getVersion(); 690 } 691 692 bool APValue::isNullPointer() const { 693 assert(isLValue() && "Invalid usage"); 694 return ((const LV*)(const char*)Data.buffer)->IsNullPtr; 695 } 696 697 void APValue::setLValue(LValueBase B, const CharUnits &O, NoLValuePath, 698 bool IsNullPtr) { 699 assert(isLValue() && "Invalid accessor"); 700 LV &LVal = *((LV*)(char*)Data.buffer); 701 LVal.Base = B; 702 LVal.IsOnePastTheEnd = false; 703 LVal.Offset = O; 704 LVal.resizePath((unsigned)-1); 705 LVal.IsNullPtr = IsNullPtr; 706 } 707 708 void APValue::setLValue(LValueBase B, const CharUnits &O, 709 ArrayRef<LValuePathEntry> Path, bool IsOnePastTheEnd, 710 bool IsNullPtr) { 711 assert(isLValue() && "Invalid accessor"); 712 LV &LVal = *((LV*)(char*)Data.buffer); 713 LVal.Base = B; 714 LVal.IsOnePastTheEnd = IsOnePastTheEnd; 715 LVal.Offset = O; 716 LVal.resizePath(Path.size()); 717 memcpy(LVal.getPath(), Path.data(), Path.size() * sizeof(LValuePathEntry)); 718 LVal.IsNullPtr = IsNullPtr; 719 } 720 721 const ValueDecl *APValue::getMemberPointerDecl() const { 722 assert(isMemberPointer() && "Invalid accessor"); 723 const MemberPointerData &MPD = 724 *((const MemberPointerData *)(const char *)Data.buffer); 725 return MPD.MemberAndIsDerivedMember.getPointer(); 726 } 727 728 bool APValue::isMemberPointerToDerivedMember() const { 729 assert(isMemberPointer() && "Invalid accessor"); 730 const MemberPointerData &MPD = 731 *((const MemberPointerData *)(const char *)Data.buffer); 732 return MPD.MemberAndIsDerivedMember.getInt(); 733 } 734 735 ArrayRef<const CXXRecordDecl*> APValue::getMemberPointerPath() const { 736 assert(isMemberPointer() && "Invalid accessor"); 737 const MemberPointerData &MPD = 738 *((const MemberPointerData *)(const char *)Data.buffer); 739 return llvm::makeArrayRef(MPD.getPath(), MPD.PathLength); 740 } 741 742 void APValue::MakeLValue() { 743 assert(isAbsent() && "Bad state change"); 744 static_assert(sizeof(LV) <= DataSize, "LV too big"); 745 new ((void*)(char*)Data.buffer) LV(); 746 Kind = LValue; 747 } 748 749 void APValue::MakeArray(unsigned InitElts, unsigned Size) { 750 assert(isAbsent() && "Bad state change"); 751 new ((void*)(char*)Data.buffer) Arr(InitElts, Size); 752 Kind = Array; 753 } 754 755 void APValue::MakeMemberPointer(const ValueDecl *Member, bool IsDerivedMember, 756 ArrayRef<const CXXRecordDecl*> Path) { 757 assert(isAbsent() && "Bad state change"); 758 MemberPointerData *MPD = new ((void*)(char*)Data.buffer) MemberPointerData; 759 Kind = MemberPointer; 760 MPD->MemberAndIsDerivedMember.setPointer(Member); 761 MPD->MemberAndIsDerivedMember.setInt(IsDerivedMember); 762 MPD->resizePath(Path.size()); 763 memcpy(MPD->getPath(), Path.data(), Path.size()*sizeof(const CXXRecordDecl*)); 764 } 765