clang 22.0.0git
clang::APValue Class Reference

APValue - This class implements a discriminated union of [uninitialized] [APSInt] [APFloat], [Complex APSInt] [Complex APFloat], [Expr + Offset], [Vector: N * APValue], [Array: N * APValue]. More...

#include "clang/AST/APValue.h"

Classes

struct  ConstexprUnknown
struct  LV
class  LValueBase
class  LValuePathEntry
 A non-discriminated union of a base, field, or array index. More...
class  LValuePathSerializationHelper
struct  MemberPointerData
struct  NoLValuePath
struct  UninitArray
struct  UninitStruct

Public Types

enum  ValueKind {
  None , Indeterminate , Int , Float ,
  FixedPoint , ComplexInt , ComplexFloat , LValue ,
  Vector , Array , Struct , Union ,
  MemberPointer , AddrLabelDiff
}
typedef llvm::PointerIntPair< const Decl *, 1, boolBaseOrMemberType
 A FieldDecl or CXXRecordDecl, along with a flag indicating whether we mean a virtual or non-virtual base class subobject.

Public Member Functions

bool allowConstexprUnknown () const
void setConstexprUnknown (bool IsConstexprUnknown=true)
 APValue ()
 Creates an empty APValue of type None.
 APValue (APSInt I)
 Creates an integer APValue holding the given value.
 APValue (APFloat F)
 Creates a float APValue holding the given value.
 APValue (APFixedPoint FX)
 Creates a fixed-point APValue holding the given value.
 APValue (const APValue *E, unsigned N)
 Creates a vector APValue with N elements.
 APValue (APSInt R, APSInt I)
 Creates an integer complex APValue with the given real and imaginary values.
 APValue (APFloat R, APFloat I)
 Creates a float complex APValue with the given real and imaginary values.
 APValue (const APValue &RHS)
 APValue (APValue &&RHS)
 APValue (LValueBase Base, const CharUnits &Offset, NoLValuePath, bool IsNullPtr=false)
 Creates an lvalue APValue without an lvalue path.
 APValue (LValueBase Base, const CharUnits &Offset, ArrayRef< LValuePathEntry > Path, bool OnePastTheEnd, bool IsNullPtr=false)
 Creates an lvalue APValue with an lvalue path.
 APValue (LValueBase Base, const CharUnits &Offset, ConstexprUnknown, bool IsNullPtr=false)
 Creates a constexpr unknown lvalue APValue.
 APValue (UninitArray, unsigned InitElts, unsigned Size)
 Creates a new array APValue.
 APValue (UninitStruct, unsigned NumBases, unsigned NumMembers)
 Creates a new struct APValue.
 APValue (const FieldDecl *ActiveDecl, const APValue &ActiveValue=APValue())
 Creates a new union APValue.
 APValue (const ValueDecl *Member, bool IsDerivedMember, ArrayRef< const CXXRecordDecl * > Path)
 Creates a new member pointer APValue.
 APValue (const AddrLabelExpr *LHSExpr, const AddrLabelExpr *RHSExpr)
 Creates a new address label diff APValue.
APValueoperator= (const APValue &RHS)
APValueoperator= (APValue &&RHS)
 ~APValue ()
bool needsCleanup () const
 Returns whether the object performed allocations.
void swap (APValue &RHS)
 Swaps the contents of this and the given APValue.
void Profile (llvm::FoldingSetNodeID &ID) const
 profile this value.
ValueKind getKind () const
bool isAbsent () const
bool isIndeterminate () const
bool hasValue () const
bool isInt () const
bool isFloat () const
bool isFixedPoint () const
bool isComplexInt () const
bool isComplexFloat () const
bool isLValue () const
bool isVector () const
bool isArray () const
bool isStruct () const
bool isUnion () const
bool isMemberPointer () const
bool isAddrLabelDiff () const
void dump () const
void dump (raw_ostream &OS, const ASTContext &Context) const
void printPretty (raw_ostream &OS, const ASTContext &Ctx, QualType Ty) const
void printPretty (raw_ostream &OS, const PrintingPolicy &Policy, QualType Ty, const ASTContext *Ctx=nullptr) const
std::string getAsString (const ASTContext &Ctx, QualType Ty) const
APSIntgetInt ()
const APSIntgetInt () const
bool toIntegralConstant (APSInt &Result, QualType SrcTy, const ASTContext &Ctx) const
 Try to convert this value to an integral constant.
APFloat & getFloat ()
const APFloat & getFloat () const
APFixedPoint & getFixedPoint ()
const APFixedPoint & getFixedPoint () const
APSIntgetComplexIntReal ()
const APSIntgetComplexIntReal () const
APSIntgetComplexIntImag ()
const APSIntgetComplexIntImag () const
APFloat & getComplexFloatReal ()
const APFloat & getComplexFloatReal () const
APFloat & getComplexFloatImag ()
const APFloat & getComplexFloatImag () const
const LValueBase getLValueBase () const
CharUnitsgetLValueOffset ()
const CharUnitsgetLValueOffset () const
bool isLValueOnePastTheEnd () const
bool hasLValuePath () const
ArrayRef< LValuePathEntrygetLValuePath () const
unsigned getLValueCallIndex () const
unsigned getLValueVersion () const
bool isNullPointer () const
APValuegetVectorElt (unsigned I)
const APValuegetVectorElt (unsigned I) const
unsigned getVectorLength () const
APValuegetArrayInitializedElt (unsigned I)
const APValuegetArrayInitializedElt (unsigned I) const
bool hasArrayFiller () const
APValuegetArrayFiller ()
const APValuegetArrayFiller () const
unsigned getArrayInitializedElts () const
unsigned getArraySize () const
unsigned getStructNumBases () const
unsigned getStructNumFields () const
APValuegetStructBase (unsigned i)
APValuegetStructField (unsigned i)
const APValuegetStructBase (unsigned i) const
const APValuegetStructField (unsigned i) const
const FieldDeclgetUnionField () const
APValuegetUnionValue ()
const APValuegetUnionValue () const
const ValueDeclgetMemberPointerDecl () const
bool isMemberPointerToDerivedMember () const
ArrayRef< const CXXRecordDecl * > getMemberPointerPath () const
const AddrLabelExprgetAddrLabelDiffLHS () const
const AddrLabelExprgetAddrLabelDiffRHS () const
void setInt (APSInt I)
void setFloat (APFloat F)
void setFixedPoint (APFixedPoint FX)
void setVector (const APValue *E, unsigned N)
void setComplexInt (APSInt R, APSInt I)
void setComplexFloat (APFloat R, APFloat I)
void setLValue (LValueBase B, const CharUnits &O, NoLValuePath, bool IsNullPtr)
void setLValue (LValueBase B, const CharUnits &O, ArrayRef< LValuePathEntry > Path, bool OnePastTheEnd, bool IsNullPtr)
void setUnion (const FieldDecl *Field, const APValue &Value)
void setAddrLabelDiff (const AddrLabelExpr *LHSExpr, const AddrLabelExpr *RHSExpr)

Static Public Member Functions

static APValue IndeterminateValue ()

Friends

template<typename Impl>
class clang::serialization::BasicReaderBase
class ASTImporter
class ASTNodeImporter

Detailed Description

APValue - This class implements a discriminated union of [uninitialized] [APSInt] [APFloat], [Complex APSInt] [Complex APFloat], [Expr + Offset], [Vector: N * APValue], [Array: N * APValue].

Definition at line 122 of file APValue.h.

Member Typedef Documentation

◆ BaseOrMemberType

typedef llvm::PointerIntPair<const Decl *, 1, bool> clang::APValue::BaseOrMemberType

A FieldDecl or CXXRecordDecl, along with a flag indicating whether we mean a virtual or non-virtual base class subobject.

Definition at line 204 of file APValue.h.

Member Enumeration Documentation

◆ ValueKind

Enumerator
None 

There is no such object (it's outside its lifetime).

Indeterminate 

This object has an indeterminate value (C++ [basic.indet]).

Int 
Float 
FixedPoint 
ComplexInt 
ComplexFloat 
LValue 
Vector 
Array 
Struct 
Union 
MemberPointer 
AddrLabelDiff 

Definition at line 127 of file APValue.h.

Constructor & Destructor Documentation

◆ APValue() [1/17]

◆ APValue() [2/17]

clang::APValue::APValue ( APSInt I)
inlineexplicit

Creates an integer APValue holding the given value.

Definition at line 327 of file APValue.h.

References false, None, and setInt().

◆ APValue() [3/17]

clang::APValue::APValue ( APFloat F)
inlineexplicit

Creates a float APValue holding the given value.

Definition at line 331 of file APValue.h.

References false, None, and setFloat().

◆ APValue() [4/17]

clang::APValue::APValue ( APFixedPoint FX)
inlineexplicit

Creates a fixed-point APValue holding the given value.

Definition at line 335 of file APValue.h.

References false, and None.

◆ APValue() [5/17]

clang::APValue::APValue ( const APValue * E,
unsigned N )
inlineexplicit

Creates a vector APValue with N elements.

The elements are read from E.

Definition at line 340 of file APValue.h.

References APValue(), false, None, and setVector().

◆ APValue() [6/17]

clang::APValue::APValue ( APSInt R,
APSInt I )
inline

Creates an integer complex APValue with the given real and imaginary values.

Definition at line 346 of file APValue.h.

References false, None, and setComplexInt().

◆ APValue() [7/17]

clang::APValue::APValue ( APFloat R,
APFloat I )
inline

Creates a float complex APValue with the given real and imaginary values.

Definition at line 350 of file APValue.h.

References false, None, and setComplexFloat().

◆ APValue() [8/17]

◆ APValue() [9/17]

APValue::APValue ( APValue && RHS)

Definition at line 383 of file APValue.cpp.

References APValue(), and None.

◆ APValue() [10/17]

clang::APValue::APValue ( LValueBase Base,
const CharUnits & Offset,
NoLValuePath ,
bool IsNullPtr = false )
inline

Creates an lvalue APValue without an lvalue path.

Parameters
BaseThe base of the lvalue.
OffsetThe offset of the lvalue.
IsNullPtrWhether this lvalue is a null pointer.

Definition at line 359 of file APValue.h.

References false, None, and setLValue().

◆ APValue() [11/17]

clang::APValue::APValue ( LValueBase Base,
const CharUnits & Offset,
ArrayRef< LValuePathEntry > Path,
bool OnePastTheEnd,
bool IsNullPtr = false )
inline

Creates an lvalue APValue with an lvalue path.

Parameters
BaseThe base of the lvalue.
OffsetThe offset of the lvalue.
PathThe lvalue path.
OnePastTheEndWhether this lvalue is one-past-the-end of the subobject it points to.
IsNullPtrWhether this lvalue is a null pointer.

Definition at line 372 of file APValue.h.

References false, None, and setLValue().

◆ APValue() [12/17]

clang::APValue::APValue ( LValueBase Base,
const CharUnits & Offset,
ConstexprUnknown ,
bool IsNullPtr = false )
inline

Creates a constexpr unknown lvalue APValue.

Parameters
BaseThe base of the lvalue.
OffsetThe offset of the lvalue.
IsNullPtrWhether this lvalue is a null pointer.

Definition at line 383 of file APValue.h.

References None, setLValue(), and true.

◆ APValue() [13/17]

clang::APValue::APValue ( UninitArray ,
unsigned InitElts,
unsigned Size )
inline

Creates a new array APValue.

Parameters
UninitArrayMarker. Pass an empty UninitArray.
InitEltsNumber of elements you're going to initialize in the array.
SizeFull size of the array.

Definition at line 395 of file APValue.h.

References false, and None.

◆ APValue() [14/17]

clang::APValue::APValue ( UninitStruct ,
unsigned NumBases,
unsigned NumMembers )
inline

Creates a new struct APValue.

Parameters
UninitStructMarker. Pass an empty UninitStruct.
NumBasesNumber of bases.
NumMembersNumber of members.

Definition at line 403 of file APValue.h.

References false, and None.

◆ APValue() [15/17]

clang::APValue::APValue ( const FieldDecl * ActiveDecl,
const APValue & ActiveValue = APValue() )
inlineexplicit

Creates a new union APValue.

Parameters
ActiveDeclThe FieldDecl of the active union member.
ActiveValueThe value of the active union member.

Definition at line 410 of file APValue.h.

References APValue(), false, None, and setUnion().

◆ APValue() [16/17]

clang::APValue::APValue ( const ValueDecl * Member,
bool IsDerivedMember,
ArrayRef< const CXXRecordDecl * > Path )
inline

Creates a new member pointer APValue.

Parameters
MemberDeclaration of the member
IsDerivedMemberWhether member is a derived one.
PathThe path of the member.

Definition at line 420 of file APValue.h.

References false, clang::Member, and None.

◆ APValue() [17/17]

clang::APValue::APValue ( const AddrLabelExpr * LHSExpr,
const AddrLabelExpr * RHSExpr )
inline

Creates a new address label diff APValue.

Parameters
LHSExprThe left-hand side of the difference.
RHSExprThe right-hand side of the difference.

Definition at line 428 of file APValue.h.

References false, None, and setAddrLabelDiff().

◆ ~APValue()

clang::APValue::~APValue ( )
inline

Definition at line 441 of file APValue.h.

References Indeterminate, and None.

Member Function Documentation

◆ allowConstexprUnknown()

bool clang::APValue::allowConstexprUnknown ( ) const
inline

Definition at line 318 of file APValue.h.

Referenced by HandleLambdaCapture().

◆ dump() [1/2]

LLVM_DUMP_METHOD void APValue::dump ( ) const

◆ dump() [2/2]

LLVM_DUMP_METHOD void APValue::dump ( raw_ostream & OS,
const ASTContext & Context ) const

◆ getAddrLabelDiffLHS()

const AddrLabelExpr * clang::APValue::getAddrLabelDiffLHS ( ) const
inline

Definition at line 645 of file APValue.h.

References isAddrLabelDiff().

Referenced by APValue(), clang::ASTNodeImporter::ImportAPValue(), printPretty(), and Profile().

◆ getAddrLabelDiffRHS()

const AddrLabelExpr * clang::APValue::getAddrLabelDiffRHS ( ) const
inline

Definition at line 649 of file APValue.h.

References isAddrLabelDiff().

Referenced by APValue(), clang::ASTNodeImporter::ImportAPValue(), printPretty(), and Profile().

◆ getArrayFiller() [1/2]

APValue & clang::APValue::getArrayFiller ( )
inline

◆ getArrayFiller() [2/2]

const APValue & clang::APValue::getArrayFiller ( ) const
inline

Definition at line 592 of file APValue.h.

References APValue(), and getArrayFiller().

◆ getArrayInitializedElt() [1/2]

◆ getArrayInitializedElt() [2/2]

const APValue & clang::APValue::getArrayInitializedElt ( unsigned I) const
inline

Definition at line 581 of file APValue.h.

References APValue(), and getArrayInitializedElt().

◆ getArrayInitializedElts()

◆ getArraySize()

◆ getAsString()

◆ getComplexFloatImag() [1/2]

◆ getComplexFloatImag() [2/2]

const APFloat & clang::APValue::getComplexFloatImag ( ) const
inline

Definition at line 547 of file APValue.h.

References APValue(), and getComplexFloatImag().

◆ getComplexFloatReal() [1/2]

◆ getComplexFloatReal() [2/2]

const APFloat & clang::APValue::getComplexFloatReal ( ) const
inline

Definition at line 539 of file APValue.h.

References APValue(), and getComplexFloatReal().

◆ getComplexIntImag() [1/2]

◆ getComplexIntImag() [2/2]

const APSInt & clang::APValue::getComplexIntImag ( ) const
inline

Definition at line 531 of file APValue.h.

References APValue(), and getComplexIntImag().

◆ getComplexIntReal() [1/2]

◆ getComplexIntReal() [2/2]

const APSInt & clang::APValue::getComplexIntReal ( ) const
inline

Definition at line 523 of file APValue.h.

References APValue(), and getComplexIntReal().

◆ getFixedPoint() [1/2]

APFixedPoint & clang::APValue::getFixedPoint ( )
inline

◆ getFixedPoint() [2/2]

const APFixedPoint & clang::APValue::getFixedPoint ( ) const
inline

Definition at line 515 of file APValue.h.

References APValue(), and getFixedPoint().

◆ getFloat() [1/2]

◆ getFloat() [2/2]

const APFloat & clang::APValue::getFloat ( ) const
inline

Definition at line 507 of file APValue.h.

References APValue(), and getFloat().

◆ getInt() [1/2]

APSInt & clang::APValue::getInt ( )
inline

Definition at line 489 of file APValue.h.

References isInt().

Referenced by clang::SemaOpenACC::ActOnArraySectionExpr(), clang::SemaOpenMP::ActOnOMPArrayShapingExpr(), clang::SemaOpenMP::ActOnOpenMPDeviceNum(), areEqualIntegers(), BuildExpressionFromNonTypeTemplateArgumentValue(), BuiltinAlignment(), calculateConstraintSatisfaction(), canConvertIntToOtherIntTy(), canConvertIntTyToFloatTy(), clang::Sema::CheckAdditionOperands(), clang::SemaAMDGPU::CheckAMDGCNBuiltinFunctionCall(), checkArrayExpressionDoesNotReferToUnitySize(), checkArrayExpressionDoesNotReferToWholeSize(), clang::Sema::checkCall(), clang::SemaAMDGPU::checkCoopAtomicFunctionCall(), checkFormatStringExpr(), clang::Sema::CheckLogicalOperands(), checkOMPArraySectionConstantForReduction(), checkOpenMPLoop(), checkSimdlenSafelenSpecified(), clang::Sema::CheckSubtractionOperands(), CheckUnicodeArithmeticConversions(), clang::CIRGen::CIRGenFunction::constantFoldsToSimpleInteger(), ConvertBoolVectorToInt(), DiagnoseBadDivideOrRemainderValues(), DiagnoseBadShiftValues(), diagnoseWellFormedUnsatisfiedConstraintExpr(), emitAtomicCmpXchgFailureSet(), clang::CIRGen::CIRGenFunction::emitAtomicExpr(), clang::CodeGen::CodeGenFunction::EmitBuiltinExpr(), clang::CIRGen::CIRGenFunction::emitBuiltinExpr(), EvaluateBuiltinStrLen(), EvaluateCharRangeAsStringImpl(), EvaluateInteger(), clang::Sema::FillInlineAsmIdentifierInfo(), getInt(), GetValueRange(), handleCompareOpForVector(), HandleConversionToBool(), handleLogicalOpForVector(), handleVectorUnaryOperator(), handleVectorVectorBinOp(), isInLoop(), isPtrBufferSafe(), isSafeArraySubscript(), needsCleanup(), clang::InitializationSequence::Perform(), printPretty(), clang::processConstant32BitIntArgument(), Profile(), shouldAddCase(), toIntegralConstant(), clang::CIRGen::ConstantEmitter::tryEmitPrivate(), clang::CodeGen::ConstantEmitter::tryEmitPrivate(), clang::Sema::VerifyIntegerConstantExpression(), clang::interp::Compiler< Emitter >::visitAPValue(), and clang::interp::Compiler< Emitter >::VisitSourceLocExpr().

◆ getInt() [2/2]

const APSInt & clang::APValue::getInt ( ) const
inline

Definition at line 493 of file APValue.h.

References APValue(), and getInt().

◆ getKind()

◆ getLValueBase()

◆ getLValueCallIndex()

unsigned APValue::getLValueCallIndex ( ) const

Definition at line 1009 of file APValue.cpp.

References isLValue().

◆ getLValueOffset() [1/2]

◆ getLValueOffset() [2/2]

const CharUnits & clang::APValue::getLValueOffset ( ) const
inline

Definition at line 553 of file APValue.h.

References APValue(), and getLValueOffset().

◆ getLValuePath()

◆ getLValueVersion()

unsigned APValue::getLValueVersion ( ) const

Definition at line 1014 of file APValue.cpp.

References isLValue().

◆ getMemberPointerDecl()

◆ getMemberPointerPath()

◆ getStructBase() [1/2]

APValue & clang::APValue::getStructBase ( unsigned i)
inline

Definition at line 612 of file APValue.h.

References APValue(), getStructNumBases(), and isStruct().

Referenced by APValue(), findSubobject(), getStructBase(), printPretty(), and Profile().

◆ getStructBase() [2/2]

const APValue & clang::APValue::getStructBase ( unsigned i) const
inline

Definition at line 622 of file APValue.h.

References APValue(), and getStructBase().

◆ getStructField() [1/2]

◆ getStructField() [2/2]

const APValue & clang::APValue::getStructField ( unsigned i) const
inline

Definition at line 625 of file APValue.h.

References APValue(), and getStructField().

◆ getStructNumBases()

unsigned clang::APValue::getStructNumBases ( ) const
inline

◆ getStructNumFields()

unsigned clang::APValue::getStructNumFields ( ) const
inline

◆ getUnionField()

const FieldDecl * clang::APValue::getUnionField ( ) const
inline

◆ getUnionValue() [1/2]

◆ getUnionValue() [2/2]

const APValue & clang::APValue::getUnionValue ( ) const
inline

Definition at line 637 of file APValue.h.

References APValue(), and getUnionValue().

◆ getVectorElt() [1/2]

◆ getVectorElt() [2/2]

const APValue & clang::APValue::getVectorElt ( unsigned I) const
inline

Definition at line 568 of file APValue.h.

References APValue(), and getVectorElt().

◆ getVectorLength()

◆ hasArrayFiller()

bool clang::APValue::hasArrayFiller ( ) const
inline

◆ hasLValuePath()

bool APValue::hasLValuePath ( ) const

◆ hasValue()

bool clang::APValue::hasValue ( ) const
inline

◆ IndeterminateValue()

APValue clang::APValue::IndeterminateValue ( )
inlinestatic

Definition at line 432 of file APValue.h.

References APValue(), Indeterminate, and clang::Result.

Referenced by clang::ConstantExpr::getAPValueResult(), and handleDefaultInitValue().

◆ isAbsent()

bool clang::APValue::isAbsent ( ) const
inline

Definition at line 463 of file APValue.h.

References None.

Referenced by clang::Sema::EvaluateConvertedConstantExpression(), and findSubobject().

◆ isAddrLabelDiff()

bool clang::APValue::isAddrLabelDiff ( ) const
inline

Definition at line 478 of file APValue.h.

References AddrLabelDiff.

Referenced by getAddrLabelDiffLHS(), getAddrLabelDiffRHS(), and GetValueRange().

◆ isArray()

◆ isComplexFloat()

bool clang::APValue::isComplexFloat ( ) const
inline

◆ isComplexInt()

bool clang::APValue::isComplexInt ( ) const
inline

Definition at line 470 of file APValue.h.

References ComplexInt.

Referenced by findSubobject(), getComplexIntImag(), getComplexIntReal(), GetValueRange(), and setComplexInt().

◆ isFixedPoint()

bool clang::APValue::isFixedPoint ( ) const
inline

Definition at line 469 of file APValue.h.

References FixedPoint.

Referenced by EvaluateFixedPoint(), getFixedPoint(), and setFixedPoint().

◆ isFloat()

◆ isIndeterminate()

bool clang::APValue::isIndeterminate ( ) const
inline

Definition at line 464 of file APValue.h.

References Indeterminate.

Referenced by findSubobject(), and clang::CodeGen::ConstantEmitter::tryEmitPrivate().

◆ isInt()

◆ isLValue()

◆ isLValueOnePastTheEnd()

bool APValue::isLValueOnePastTheEnd ( ) const

Definition at line 988 of file APValue.cpp.

References isLValue().

Referenced by APValue(), clang::ASTNodeImporter::ImportAPValue(), printPretty(), and Profile().

◆ isMemberPointer()

◆ isMemberPointerToDerivedMember()

bool APValue::isMemberPointerToDerivedMember ( ) const

◆ isNullPointer()

◆ isStruct()

bool clang::APValue::isStruct ( ) const
inline

◆ isUnion()

bool clang::APValue::isUnion ( ) const
inline

◆ isVector()

bool clang::APValue::isVector ( ) const
inline

Definition at line 473 of file APValue.h.

References Vector.

Referenced by ConvertBoolVectorToInt(), GetValueRange(), handleVectorVectorBinOp(), and IsSameFloatAfterCast().

◆ needsCleanup()

bool APValue::needsCleanup ( ) const

Returns whether the object performed allocations.

If APValues are constructed via placement new, needsCleanup() indicates whether the destructor must be called in order to correctly free all allocated memory.

Definition at line 437 of file APValue.cpp.

References AddrLabelDiff, Array, ComplexFloat, ComplexInt, FixedPoint, Float, getComplexFloatImag(), getComplexFloatReal(), getComplexIntImag(), getComplexIntReal(), getFixedPoint(), getFloat(), getInt(), getKind(), Indeterminate, Int, LValue, MemberPointer, needsCleanup(), None, Struct, Union, and Vector.

Referenced by needsCleanup(), and clang::ASTDeclReader::ReadVarDeclInit().

◆ operator=() [1/2]

APValue & APValue::operator= ( APValue && RHS)

Definition at line 396 of file APValue.cpp.

References APValue(), Indeterminate, and None.

◆ operator=() [2/2]

APValue & APValue::operator= ( const APValue & RHS)

Definition at line 389 of file APValue.cpp.

References APValue().

◆ printPretty() [1/2]

void APValue::printPretty ( raw_ostream & OS,
const ASTContext & Ctx,
QualType Ty ) const

◆ printPretty() [2/2]

void APValue::printPretty ( raw_ostream & OS,
const PrintingPolicy & Policy,
QualType Ty,
const ASTContext * Ctx = nullptr ) const

Definition at line 708 of file APValue.cpp.

References AddrLabelDiff, Array, clang::CXXRecordDecl::bases_begin(), clang::CXXRecordDecl::bases_end(), clang::cast(), clang::Type::castAs(), clang::Type::castAsArrayTypeUnsafe(), clang::Type::castAsRecordDecl(), ComplexFloat, ComplexInt, clang::PrintingPolicy::EntireContentsOfLargeArray, clang::First, FixedPoint, Float, getAddrLabelDiffLHS(), getAddrLabelDiffRHS(), GetApproxValue(), getArrayInitializedElt(), getArrayInitializedElts(), clang::Type::getAs(), getComplexFloatImag(), getComplexFloatReal(), getComplexIntImag(), getComplexIntReal(), clang::ArrayType::getElementType(), getFixedPoint(), getFloat(), getInt(), getKind(), clang::AddrLabelExpr::getLabel(), getLValueBase(), getLValueOffset(), getLValuePath(), getMemberPointerDecl(), clang::NamedDecl::getName(), clang::QualType::getNonReferenceType(), clang::Type::getPointeeType(), clang::CharUnits::getQuantity(), getStructBase(), getStructField(), getStructNumBases(), clang::CXXBaseSpecifier::getType(), clang::ValueDecl::getType(), clang::ASTContext::getTypeSizeInCharsIfKnown(), getUnionField(), getUnionValue(), getVectorElt(), getVectorLength(), hasLValuePath(), Indeterminate, Int, clang::Type::isAnyComplexType(), clang::Type::isBooleanType(), isLValueOnePastTheEnd(), clang::QualType::isNull(), isNullPointer(), clang::Type::isRecordType(), clang::Type::isReferenceType(), clang::Type::isVoidType(), clang::CharUnits::isZero(), LValue, MemberPointer, None, clang::PrintingPolicy::Nullptr, clang::CharUnits::One(), printPretty(), clang::Stmt::printPretty(), clang::QualType::stream(), Struct, TryPrintAsStringLiteral(), Union, Vector, and clang::CharUnits::Zero().

◆ Profile()

◆ setAddrLabelDiff()

void clang::APValue::setAddrLabelDiff ( const AddrLabelExpr * LHSExpr,
const AddrLabelExpr * RHSExpr )
inline

Definition at line 691 of file APValue.h.

Referenced by APValue(), and APValue().

◆ setComplexFloat()

void clang::APValue::setComplexFloat ( APFloat R,
APFloat I )
inline

Definition at line 678 of file APValue.h.

References isComplexFloat().

Referenced by APValue(), and APValue().

◆ setComplexInt()

void clang::APValue::setComplexInt ( APSInt R,
APSInt I )
inline

Definition at line 671 of file APValue.h.

References isComplexInt().

Referenced by APValue(), and APValue().

◆ setConstexprUnknown()

void clang::APValue::setConstexprUnknown ( bool IsConstexprUnknown = true)
inline

Definition at line 320 of file APValue.h.

◆ setFixedPoint()

void clang::APValue::setFixedPoint ( APFixedPoint FX)
inline

Definition at line 662 of file APValue.h.

References isFixedPoint().

◆ setFloat()

void clang::APValue::setFloat ( APFloat F)
inline

Definition at line 658 of file APValue.h.

References isFloat().

Referenced by APValue().

◆ setInt()

void clang::APValue::setInt ( APSInt I)
inline

Definition at line 654 of file APValue.h.

References isInt().

Referenced by APValue().

◆ setLValue() [1/2]

void APValue::setLValue ( LValueBase B,
const CharUnits & O,
ArrayRef< LValuePathEntry > Path,
bool OnePastTheEnd,
bool IsNullPtr )

Definition at line 1048 of file APValue.cpp.

References memcpy().

◆ setLValue() [2/2]

void APValue::setLValue ( LValueBase B,
const CharUnits & O,
NoLValuePath ,
bool IsNullPtr )

Definition at line 1024 of file APValue.cpp.

References isLValue(), and clang::APValue::LV::resizePath().

Referenced by APValue(), APValue(), APValue(), and APValue().

◆ setUnion()

void APValue::setUnion ( const FieldDecl * Field,
const APValue & Value )

Definition at line 1059 of file APValue.cpp.

References APValue(), and isUnion().

Referenced by APValue(), APValue(), and findSubobject().

◆ setVector()

void clang::APValue::setVector ( const APValue * E,
unsigned N )
inline

Definition at line 666 of file APValue.h.

References APValue().

Referenced by APValue(), and APValue().

◆ swap()

void APValue::swap ( APValue & RHS)

Swaps the contents of this and the given APValue.

Definition at line 474 of file APValue.cpp.

References APValue().

Referenced by expandArray().

◆ toIntegralConstant()

bool APValue::toIntegralConstant ( APSInt & Result,
QualType SrcTy,
const ASTContext & Ctx ) const

Try to convert this value to an integral constant.

This works if it's an integer, null pointer, or offset from a null pointer. Returns true on success.

Definition at line 963 of file APValue.cpp.

References getInt(), getLValueBase(), getLValueOffset(), clang::ASTContext::getTargetNullPointerValue(), isInt(), isLValue(), isNullPointer(), clang::ASTContext::MakeIntValue(), and clang::Result.

Referenced by clang::Sema::ActOnGCCAsmStmt().

◆ ASTImporter

friend class ASTImporter
friend

Definition at line 254 of file APValue.h.

References ASTImporter.

Referenced by ASTImporter.

◆ ASTNodeImporter

friend class ASTNodeImporter
friend

Definition at line 255 of file APValue.h.

References ASTNodeImporter.

Referenced by ASTNodeImporter.

◆ clang::serialization::BasicReaderBase

template<typename Impl>
friend class clang::serialization::BasicReaderBase
friend

Definition at line 253 of file APValue.h.


The documentation for this class was generated from the following files: