clang 23.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 , Matrix , 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 (const APValue *E, unsigned NumRows, unsigned NumCols)
 Creates a matrix APValue with given dimensions.
 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 isMatrix () 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
unsigned getMatrixNumRows () const
unsigned getMatrixNumColumns () const
unsigned getMatrixNumElements () const
APValuegetMatrixElt (unsigned Idx)
const APValuegetMatrixElt (unsigned Idx) const
APValuegetMatrixElt (unsigned Row, unsigned Col)
const APValuegetMatrixElt (unsigned Row, unsigned Col) 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 setMatrix (const APValue *E, unsigned NumRows, unsigned NumCols)
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 205 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 
Matrix 
Array 
Struct 
Union 
MemberPointer 
AddrLabelDiff 

Definition at line 127 of file APValue.h.

Constructor & Destructor Documentation

◆ APValue() [1/18]

◆ APValue() [2/18]

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

Creates an integer APValue holding the given value.

Definition at line 338 of file APValue.h.

References false, None, and setInt().

◆ APValue() [3/18]

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

Creates a float APValue holding the given value.

Definition at line 342 of file APValue.h.

References false, None, and setFloat().

◆ APValue() [4/18]

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

Creates a fixed-point APValue holding the given value.

Definition at line 346 of file APValue.h.

References false, and None.

◆ APValue() [5/18]

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 351 of file APValue.h.

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

◆ APValue() [6/18]

clang::APValue::APValue ( const APValue * E,
unsigned NumRows,
unsigned NumCols )
inlineexplicit

Creates a matrix APValue with given dimensions.

The elements are read from E and assumed to be in row-major order.

Definition at line 357 of file APValue.h.

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

◆ APValue() [7/18]

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

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

Definition at line 364 of file APValue.h.

References false, None, and setComplexInt().

◆ APValue() [8/18]

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

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

Definition at line 368 of file APValue.h.

References false, None, and setComplexFloat().

◆ APValue() [9/18]

◆ APValue() [10/18]

APValue::APValue ( APValue && RHS)

Definition at line 388 of file APValue.cpp.

References APValue(), and None.

◆ APValue() [11/18]

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 377 of file APValue.h.

References false, None, and setLValue().

◆ APValue() [12/18]

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 390 of file APValue.h.

References false, None, and setLValue().

◆ APValue() [13/18]

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 401 of file APValue.h.

References None, setLValue(), and true.

◆ APValue() [14/18]

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 413 of file APValue.h.

References false, and None.

◆ APValue() [15/18]

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 421 of file APValue.h.

References false, and None.

◆ APValue() [16/18]

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 428 of file APValue.h.

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

◆ APValue() [17/18]

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 438 of file APValue.h.

References false, clang::Member, and None.

◆ APValue() [18/18]

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 446 of file APValue.h.

References false, None, and setAddrLabelDiff().

◆ ~APValue()

clang::APValue::~APValue ( )
inline

Definition at line 459 of file APValue.h.

References Indeterminate, and None.

Member Function Documentation

◆ allowConstexprUnknown()

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

Definition at line 329 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 695 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 699 of file APValue.h.

References isAddrLabelDiff().

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

◆ getArrayFiller() [1/2]

◆ getArrayFiller() [2/2]

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

Definition at line 642 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 631 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 566 of file APValue.h.

References APValue(), and getComplexFloatImag().

◆ getComplexFloatReal() [1/2]

◆ getComplexFloatReal() [2/2]

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

Definition at line 558 of file APValue.h.

References APValue(), and getComplexFloatReal().

◆ getComplexIntImag() [1/2]

◆ getComplexIntImag() [2/2]

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

Definition at line 550 of file APValue.h.

References APValue(), and getComplexIntImag().

◆ getComplexIntReal() [1/2]

◆ getComplexIntReal() [2/2]

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

Definition at line 542 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 534 of file APValue.h.

References APValue(), and getFixedPoint().

◆ getFloat() [1/2]

◆ getFloat() [2/2]

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

Definition at line 526 of file APValue.h.

References APValue(), and getFloat().

◆ getInt() [1/2]

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

Definition at line 508 of file APValue.h.

References isInt().

Referenced by clang::SemaOpenACC::ActOnArraySectionExpr(), clang::SemaOpenMP::ActOnOMPArrayShapingExpr(), clang::SemaOpenMP::ActOnOpenMPDeviceNum(), areEqualIntegers(), buildConstantDataArrayFromElements(), BuildExpressionFromNonTypeTemplateArgumentValue(), BuiltinAlignment(), canConvertIntToOtherIntTy(), canConvertIntTyToFloatTy(), clang::Sema::CheckAdditionOperands(), clang::SemaAMDGPU::CheckAMDGCNBuiltinFunctionCall(), checkArrayExpressionDoesNotReferToUnitySize(), checkArrayExpressionDoesNotReferToWholeSize(), clang::SemaAMDGPU::checkAtomicOrderingCABIArg(), clang::Sema::checkCall(), checkFormatStringExpr(), clang::Sema::CheckLogicalOperands(), checkOMPArraySectionConstantForReduction(), checkOpenMPLoop(), checkSimdlenSafelenSpecified(), clang::Sema::CheckSubtractionOperands(), CheckUnicodeArithmeticConversions(), clang::CIRGen::CIRGenFunction::constantFoldsToSimpleInteger(), ConvertBoolVectorToInt(), DiagnoseBadDivideOrRemainderValues(), DiagnoseBadShiftValues(), diagnoseWellFormedUnsatisfiedConstraintExpr(), clang::CIRGen::CIRGenFunction::emitAsmInput(), emitAtomicCmpXchgFailureSet(), clang::CIRGen::CIRGenFunction::emitAtomicExprWithMemOrder(), clang::CodeGen::CodeGenFunction::EmitBuiltinExpr(), clang::CIRGen::CIRGenFunction::emitBuiltinExpr(), evalPackBuiltin(), evalShiftWithCount(), 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 512 of file APValue.h.

References APValue(), and getInt().

◆ getKind()

◆ getLValueBase()

◆ getLValueCallIndex()

unsigned APValue::getLValueCallIndex ( ) const

Definition at line 1041 of file APValue.cpp.

References isLValue().

◆ getLValueOffset() [1/2]

◆ getLValueOffset() [2/2]

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

Definition at line 572 of file APValue.h.

References APValue(), and getLValueOffset().

◆ getLValuePath()

◆ getLValueVersion()

unsigned APValue::getLValueVersion ( ) const

Definition at line 1046 of file APValue.cpp.

References isLValue().

◆ getMatrixElt() [1/4]

APValue & clang::APValue::getMatrixElt ( unsigned Idx)
inline

◆ getMatrixElt() [2/4]

const APValue & clang::APValue::getMatrixElt ( unsigned Idx) const
inline

Definition at line 611 of file APValue.h.

References APValue(), and getMatrixElt().

◆ getMatrixElt() [3/4]

APValue & clang::APValue::getMatrixElt ( unsigned Row,
unsigned Col )
inline

Definition at line 614 of file APValue.h.

References APValue(), getMatrixElt(), getMatrixNumColumns(), getMatrixNumRows(), and isMatrix().

◆ getMatrixElt() [4/4]

const APValue & clang::APValue::getMatrixElt ( unsigned Row,
unsigned Col ) const
inline

Definition at line 622 of file APValue.h.

References APValue(), and getMatrixElt().

◆ getMatrixNumColumns()

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

Definition at line 599 of file APValue.h.

References isMatrix().

Referenced by APValue(), getMatrixElt(), getMatrixNumElements(), printPretty(), and Profile().

◆ getMatrixNumElements()

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

Definition at line 603 of file APValue.h.

References getMatrixNumColumns(), and getMatrixNumRows().

Referenced by getMatrixElt(), and IsSameFloatAfterCast().

◆ getMatrixNumRows()

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

Definition at line 595 of file APValue.h.

References isMatrix().

Referenced by APValue(), getMatrixElt(), getMatrixNumElements(), printPretty(), and Profile().

◆ getMemberPointerDecl()

◆ getMemberPointerPath()

◆ getStructBase() [1/2]

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

Definition at line 662 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 672 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 675 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 687 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 587 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

◆ isAbsent()

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

Definition at line 481 of file APValue.h.

References None.

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

◆ isAddrLabelDiff()

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

Definition at line 497 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 488 of file APValue.h.

References ComplexInt.

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

◆ isFixedPoint()

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

Definition at line 487 of file APValue.h.

References FixedPoint.

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

◆ isFloat()

◆ isIndeterminate()

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

◆ isInt()

◆ isLValue()

◆ isLValueOnePastTheEnd()

bool APValue::isLValueOnePastTheEnd ( ) const

Definition at line 1020 of file APValue.cpp.

References isLValue().

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

◆ isMatrix()

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

◆ isMemberPointer()

◆ isMemberPointerToDerivedMember()

◆ isNullPointer()

◆ isStruct()

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

◆ isUnion()

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

◆ isVector()

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

◆ 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 444 of file APValue.cpp.

References AddrLabelDiff, Array, ComplexFloat, ComplexInt, FixedPoint, Float, getComplexFloatImag(), getComplexFloatReal(), getComplexIntImag(), getComplexIntReal(), getFixedPoint(), getFloat(), getInt(), getKind(), Indeterminate, Int, LValue, Matrix, 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 401 of file APValue.cpp.

References APValue(), Indeterminate, and None.

◆ operator=() [2/2]

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

Definition at line 394 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 722 of file APValue.cpp.

References AddrLabelDiff, Array, clang::CXXRecordDecl::bases_begin(), clang::CXXRecordDecl::bases_end(), clang::C, 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(), getMatrixElt(), getMatrixNumColumns(), getMatrixNumRows(), 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::CharUnits::isMultipleOf(), clang::QualType::isNull(), isNullPointer(), clang::Type::isRecordType(), clang::Type::isReferenceType(), clang::Type::isVoidType(), clang::CharUnits::isZero(), LValue, Matrix, 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 746 of file APValue.h.

Referenced by APValue(), and APValue().

◆ setComplexFloat()

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

Definition at line 733 of file APValue.h.

References isComplexFloat().

Referenced by APValue(), and APValue().

◆ setComplexInt()

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

Definition at line 726 of file APValue.h.

References isComplexInt().

Referenced by APValue(), and APValue().

◆ setConstexprUnknown()

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

Definition at line 331 of file APValue.h.

◆ setFixedPoint()

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

Definition at line 712 of file APValue.h.

References isFixedPoint().

◆ setFloat()

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

Definition at line 708 of file APValue.h.

References isFloat().

Referenced by APValue().

◆ setInt()

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

Definition at line 704 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 1080 of file APValue.cpp.

References memcpy().

◆ setLValue() [2/2]

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

Definition at line 1056 of file APValue.cpp.

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

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

◆ setMatrix()

void clang::APValue::setMatrix ( const APValue * E,
unsigned NumRows,
unsigned NumCols )
inline

Definition at line 721 of file APValue.h.

References APValue().

Referenced by APValue(), and APValue().

◆ setUnion()

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

Definition at line 1091 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 716 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 482 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 995 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(), and clang::CIRGen::CIRGenFunction::emitAsmInput().

◆ ASTImporter

friend class ASTImporter
friend

Definition at line 255 of file APValue.h.

References ASTImporter.

Referenced by ASTImporter.

◆ ASTNodeImporter

friend class ASTNodeImporter
friend

Definition at line 256 of file APValue.h.

References ASTNodeImporter.

Referenced by ASTNodeImporter.

◆ clang::serialization::BasicReaderBase

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

Definition at line 254 of file APValue.h.


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