clang
10.0.0git
|
#include "Interp/Context.h"
#include "Interp/Frame.h"
#include "Interp/State.h"
#include "clang/AST/APValue.h"
#include "clang/AST/ASTContext.h"
#include "clang/AST/ASTDiagnostic.h"
#include "clang/AST/ASTLambda.h"
#include "clang/AST/Attr.h"
#include "clang/AST/CXXInheritance.h"
#include "clang/AST/CharUnits.h"
#include "clang/AST/CurrentSourceLocExprScope.h"
#include "clang/AST/Expr.h"
#include "clang/AST/OSLog.h"
#include "clang/AST/OptionalDiagnostic.h"
#include "clang/AST/RecordLayout.h"
#include "clang/AST/StmtVisitor.h"
#include "clang/AST/TypeLoc.h"
#include "clang/Basic/Builtins.h"
#include "clang/Basic/FixedPoint.h"
#include "clang/Basic/TargetInfo.h"
#include "llvm/ADT/Optional.h"
#include "llvm/ADT/SmallBitVector.h"
#include "llvm/Support/SaveAndRestore.h"
#include "llvm/Support/raw_ostream.h"
#include <cstring>
#include <functional>
#include "clang/AST/TypeNodes.inc"
#include "clang/AST/BuiltinTypes.def"
#include "clang/Basic/OpenCLImageTypes.def"
#include "clang/Basic/OpenCLExtensionTypes.def"
#include "clang/Basic/AArch64SVEACLETypes.def"
#include "clang/AST/StmtNodes.inc"
Go to the source code of this file.
Classes | |
struct | llvm::DenseMapInfo< ObjectUnderConstruction > |
struct | DynamicType |
Namespaces | |
llvm | |
Specialize PointerLikeTypeTraits to allow LazyGenerationalUpdatePtr to be placed into a PointerUnion. | |
Macros | |
#define | DEBUG_TYPE "exprconstant" |
#define | TYPE(Class, Base) |
#define | ABSTRACT_TYPE(Class, Base) |
#define | NON_CANONICAL_TYPE(Class, Base) |
#define | DEPENDENT_TYPE(Class, Base) |
#define | NON_CANONICAL_UNLESS_DEPENDENT(Class, Base) |
#define | TYPE(ID, BASE) |
#define | DEPENDENT_TYPE(ID, BASE) case Type::ID: |
#define | NON_CANONICAL_TYPE(ID, BASE) case Type::ID: |
#define | NON_CANONICAL_UNLESS_DEPENDENT_TYPE(ID, BASE) case Type::ID: |
#define | BUILTIN_TYPE(ID, SINGLETON_ID) |
#define | SIGNED_TYPE(ID, SINGLETON_ID) case BuiltinType::ID: return GCCTypeClass::Integer; |
#define | FLOATING_TYPE(ID, SINGLETON_ID) case BuiltinType::ID: return GCCTypeClass::RealFloat; |
#define | PLACEHOLDER_TYPE(ID, SINGLETON_ID) case BuiltinType::ID: break; |
#define | IMAGE_TYPE(ImgType, Id, SingletonId, Access, Suffix) case BuiltinType::Id: |
#define | EXT_OPAQUE_TYPE(ExtType, Id, Ext) case BuiltinType::Id: |
#define | SVE_TYPE(Name, Id, SingletonId) case BuiltinType::Id: |
#define | ABSTRACT_STMT(Node) |
#define | STMT(Node, Base) case Expr::Node##Class: |
#define | EXPR(Node, Base) |
Typedefs | |
using | CheckedTemporaries = llvm::SmallPtrSet< const MaterializeTemporaryExpr *, 8 > |
Materialized temporaries that we've already checked to determine if they're initializsed by a constant expression. More... | |
Enumerations | |
enum | ConstructionPhase |
enum | CheckEvaluationResultKind { CheckEvaluationResultKind::ConstantExpression, CheckEvaluationResultKind::FullyInitialized } |
enum | EvalStmtResult |
enum | GCCTypeClass { GCCTypeClass::None = -1, GCCTypeClass::Void = 0, GCCTypeClass::Integer = 1, GCCTypeClass::Enum = 3, GCCTypeClass::Bool = 4, GCCTypeClass::Pointer = 5, GCCTypeClass::PointerToDataMember = 7, GCCTypeClass::RealFloat = 8, GCCTypeClass::Complex = 9, GCCTypeClass::PointerToMemberFunction = 12, GCCTypeClass::ClassOrStruct = 12, GCCTypeClass::Union = 13 } |
Values returned by __builtin_classify_type, chosen to match the values produced by GCC's builtin. More... | |
enum | CmpResult |
enum | ICEKind |
Functions | |
static bool | HandleDestruction (EvalInfo &Info, const Expr *E, const LValue &This, QualType ThisType) |
Perform a destructor or pseudo-destructor call on the given object, which might in general not be a complete object. More... | |
static bool | HandleDestruction (EvalInfo &Info, SourceLocation Loc, APValue::LValueBase LVBase, APValue &Value, QualType T) |
Destroy and end the lifetime of the given complete object. More... | |
static bool | isRead (AccessKinds AK) |
static bool | isModification (AccessKinds AK) |
static bool | isAnyAccess (AccessKinds AK) |
static bool | isFormalAccess (AccessKinds AK) |
Is this an access per the C++ definition? More... | |
static bool | Evaluate (APValue &Result, EvalInfo &Info, const Expr *E) |
static bool | EvaluateInPlace (APValue &Result, EvalInfo &Info, const LValue &This, const Expr *E, bool AllowNonLiteralTypes) |
EvaluateInPlace - Evaluate an expression in-place in an APValue. More... | |
static bool | EvaluateLValue (const Expr *E, LValue &Result, EvalInfo &Info, bool InvalidBaseOK) |
Evaluate an expression as an lvalue. More... | |
static bool | EvaluatePointer (const Expr *E, LValue &Result, EvalInfo &Info, bool InvalidBaseOK=false) |
static bool | EvaluateMemberPointer (const Expr *E, MemberPtr &Result, EvalInfo &Info) |
static bool | EvaluateTemporary (const Expr *E, LValue &Result, EvalInfo &Info) |
Evaluate an expression of record type as a temporary. More... | |
static bool | EvaluateInteger (const Expr *E, APSInt &Result, EvalInfo &Info) |
static bool | EvaluateIntegerOrLValue (const Expr *E, APValue &Result, EvalInfo &Info) |
EvaluateIntegerOrLValue - Evaluate an rvalue integral-typed expression, and produce either the integer value or a pointer. More... | |
static bool | EvaluateFloat (const Expr *E, APFloat &Result, EvalInfo &Info) |
static bool | EvaluateComplex (const Expr *E, ComplexValue &Res, EvalInfo &Info) |
static bool | EvaluateAtomic (const Expr *E, const LValue *This, APValue &Result, EvalInfo &Info) |
static bool | EvaluateAsRValue (EvalInfo &Info, const Expr *E, APValue &Result) |
EvaluateAsRValue - Try to evaluate this expression, performing an implicit lvalue-to-rvalue cast if it is an lvalue. More... | |
static bool | EvaluateFixedPointOrInteger (const Expr *E, APFixedPoint &Result, EvalInfo &Info) |
Evaluate an integer or fixed point expression into an APResult. More... | |
static bool | EvaluateFixedPoint (const Expr *E, APFixedPoint &Result, EvalInfo &Info) |
Evaluate only a fixed point expression into an APResult. More... | |
static void | negateAsSigned (APSInt &Int) |
Negate an APSInt in place, converting it to a signed form if necessary, and preserving its value (by extending by up to one bit as needed). More... | |
static bool | EvaluateIgnoredValue (EvalInfo &Info, const Expr *E) |
Evaluate an expression to see if it had side-effects, and discard its result. More... | |
static bool | IsStringLiteralCall (const CallExpr *E) |
Should this call expression be treated as a string literal? More... | |
static bool | IsGlobalLValue (APValue::LValueBase B) |
static const ValueDecl * | GetLValueBaseDecl (const LValue &LVal) |
static bool | IsLiteralLValue (const LValue &Value) |
static bool | IsWeakLValue (const LValue &Value) |
static bool | isZeroSized (const LValue &Value) |
static bool | HasSameBase (const LValue &A, const LValue &B) |
static void | NoteLValueLocation (EvalInfo &Info, APValue::LValueBase Base) |
static bool | CheckEvaluationResult (CheckEvaluationResultKind CERK, EvalInfo &Info, SourceLocation DiagLoc, QualType Type, const APValue &Value, Expr::ConstExprUsage Usage, SourceLocation SubobjectLoc, CheckedTemporaries &CheckedTemps) |
static bool | CheckLValueConstantExpression (EvalInfo &Info, SourceLocation Loc, QualType Type, const LValue &LVal, Expr::ConstExprUsage Usage, CheckedTemporaries &CheckedTemps) |
Check that this reference or pointer core constant expression is a valid value for an address or reference constant expression. More... | |
static bool | CheckMemberPointerConstantExpression (EvalInfo &Info, SourceLocation Loc, QualType Type, const APValue &Value, Expr::ConstExprUsage Usage) |
Member pointers are constant expressions unless they point to a non-virtual dllimport member function. More... | |
static bool | CheckLiteralType (EvalInfo &Info, const Expr *E, const LValue *This=nullptr) |
Check that this core constant expression is of literal type, and if not, produce an appropriate diagnostic. More... | |
static bool | CheckConstantExpression (EvalInfo &Info, SourceLocation DiagLoc, QualType Type, const APValue &Value, Expr::ConstExprUsage Usage=Expr::EvaluateForCodeGen) |
Check that this core constant expression value is a valid value for a constant expression. More... | |
static bool | CheckFullyInitialized (EvalInfo &Info, SourceLocation DiagLoc, QualType Type, const APValue &Value) |
Check that this evaluated value is fully-initialized and can be loaded by an lvalue-to-rvalue conversion. More... | |
static bool | CheckMemoryLeaks (EvalInfo &Info) |
Enforce C++2a [expr.const]/4.17, which disallows new-expressions unless "the allocated storage is deallocated within the evaluation". More... | |
static bool | EvalPointerValueAsBool (const APValue &Value, bool &Result) |
static bool | HandleConversionToBool (const APValue &Val, bool &Result) |
static bool | EvaluateAsBooleanCondition (const Expr *E, bool &Result, EvalInfo &Info) |
template<typename T > | |
static bool | HandleOverflow (EvalInfo &Info, const Expr *E, const T &SrcValue, QualType DestType) |
static bool | HandleFloatToIntCast (EvalInfo &Info, const Expr *E, QualType SrcType, const APFloat &Value, QualType DestType, APSInt &Result) |
static bool | HandleFloatToFloatCast (EvalInfo &Info, const Expr *E, QualType SrcType, QualType DestType, APFloat &Result) |
static APSInt | HandleIntToIntCast (EvalInfo &Info, const Expr *E, QualType DestType, QualType SrcType, const APSInt &Value) |
static bool | HandleIntToFloatCast (EvalInfo &Info, const Expr *E, QualType SrcType, const APSInt &Value, QualType DestType, APFloat &Result) |
static bool | truncateBitfieldValue (EvalInfo &Info, const Expr *E, APValue &Value, const FieldDecl *FD) |
static bool | EvalAndBitcastToAPInt (EvalInfo &Info, const Expr *E, llvm::APInt &Res) |
template<typename Operation > | |
static bool | CheckedIntArithmetic (EvalInfo &Info, const Expr *E, const APSInt &LHS, const APSInt &RHS, unsigned BitWidth, Operation Op, APSInt &Result) |
Perform the given integer operation, which is known to need at most BitWidth bits, and check for overflow in the original type (if that type was not an unsigned type). More... | |
static bool | handleIntIntBinOp (EvalInfo &Info, const Expr *E, const APSInt &LHS, BinaryOperatorKind Opcode, APSInt RHS, APSInt &Result) |
Perform the given binary integer operation. More... | |
static bool | handleFloatFloatBinOp (EvalInfo &Info, const Expr *E, APFloat &LHS, BinaryOperatorKind Opcode, const APFloat &RHS) |
Perform the given binary floating-point operation, in-place, on LHS. More... | |
static bool | CastToDerivedClass (EvalInfo &Info, const Expr *E, LValue &Result, const RecordDecl *TruncatedType, unsigned TruncatedElements) |
Cast an lvalue referring to a base subobject to a derived class, by truncating the lvalue's path to the given length. More... | |
static bool | HandleLValueDirectBase (EvalInfo &Info, const Expr *E, LValue &Obj, const CXXRecordDecl *Derived, const CXXRecordDecl *Base, const ASTRecordLayout *RL=nullptr) |
static bool | HandleLValueBase (EvalInfo &Info, const Expr *E, LValue &Obj, const CXXRecordDecl *DerivedDecl, const CXXBaseSpecifier *Base) |
static bool | HandleLValueBasePath (EvalInfo &Info, const CastExpr *E, QualType Type, LValue &Result) |
static bool | CastToBaseClass (EvalInfo &Info, const Expr *E, LValue &Result, const CXXRecordDecl *DerivedRD, const CXXRecordDecl *BaseRD) |
Cast an lvalue referring to a derived class to a known base subobject. More... | |
static bool | HandleLValueMember (EvalInfo &Info, const Expr *E, LValue &LVal, const FieldDecl *FD, const ASTRecordLayout *RL=nullptr) |
Update LVal to refer to the given field, which must be a member of the type currently described by LVal. More... | |
static bool | HandleLValueIndirectMember (EvalInfo &Info, const Expr *E, LValue &LVal, const IndirectFieldDecl *IFD) |
Update LVal to refer to the given indirect field. More... | |
static bool | HandleSizeof (EvalInfo &Info, SourceLocation Loc, QualType Type, CharUnits &Size) |
Get the size of the given type in char units. More... | |
static bool | HandleLValueArrayAdjustment (EvalInfo &Info, const Expr *E, LValue &LVal, QualType EltTy, APSInt Adjustment) |
Update a pointer value to model pointer arithmetic. More... | |
static bool | HandleLValueArrayAdjustment (EvalInfo &Info, const Expr *E, LValue &LVal, QualType EltTy, int64_t Adjustment) |
static bool | HandleLValueComplexElement (EvalInfo &Info, const Expr *E, LValue &LVal, QualType EltTy, bool Imag) |
Update an lvalue to refer to a component of a complex number. More... | |
static bool | evaluateVarDeclInit (EvalInfo &Info, const Expr *E, const VarDecl *VD, CallStackFrame *Frame, APValue *&Result, const LValue *LVal) |
Try to evaluate the initializer for a variable declaration. More... | |
static bool | IsConstNonVolatile (QualType T) |
static unsigned | getBaseIndex (const CXXRecordDecl *Derived, const CXXRecordDecl *Base) |
Get the base index of the given base class within an APValue representing the given derived class. More... | |
static APSInt | extractStringLiteralCharacter (EvalInfo &Info, const Expr *Lit, uint64_t Index) |
Extract the value of a character from a string literal. More... | |
static void | expandStringLiteral (EvalInfo &Info, const StringLiteral *S, APValue &Result, QualType AllocType=QualType()) |
static void | expandArray (APValue &Array, unsigned Index) |
static bool | isReadByLvalueToRvalueConversion (QualType T) |
Determine whether a type would actually be read by an lvalue-to-rvalue conversion. More... | |
static bool | diagnoseMutableFields (EvalInfo &Info, const Expr *E, AccessKinds AK, QualType T) |
Diagnose an attempt to read from any unreadable field within the specified type, which might be a class type. More... | |
static bool | lifetimeStartedInEvaluation (EvalInfo &Info, APValue::LValueBase Base, bool MutableSubobject=false) |
static QualType | getSubobjectType (QualType ObjType, QualType SubobjType, bool IsMutable=false) |
template<typename SubobjectHandler > | |
SubobjectHandler::result_type | findSubobject (EvalInfo &Info, const Expr *E, const CompleteObject &Obj, const SubobjectDesignator &Sub, SubobjectHandler &handler) |
Find the designated sub-object of an rvalue. More... | |
static bool | extractSubobject (EvalInfo &Info, const Expr *E, const CompleteObject &Obj, const SubobjectDesignator &Sub, APValue &Result, AccessKinds AK=AK_Read) |
Extract the designated sub-object of an rvalue. More... | |
static bool | modifySubobject (EvalInfo &Info, const Expr *E, const CompleteObject &Obj, const SubobjectDesignator &Sub, APValue &NewVal) |
Update the designated sub-object of an rvalue to the given value. More... | |
static unsigned | FindDesignatorMismatch (QualType ObjType, const SubobjectDesignator &A, const SubobjectDesignator &B, bool &WasArrayIndex) |
Find the position where two subobject designators diverge, or equivalently the length of the common initial subsequence. More... | |
static bool | AreElementsOfSameArray (QualType ObjType, const SubobjectDesignator &A, const SubobjectDesignator &B) |
Determine whether the given subobject designators refer to elements of the same array object. More... | |
static CompleteObject | findCompleteObject (EvalInfo &Info, const Expr *E, AccessKinds AK, const LValue &LVal, QualType LValType) |
Find the complete object to which an LValue refers. More... | |
static bool | handleLValueToRValueConversion (EvalInfo &Info, const Expr *Conv, QualType Type, const LValue &LVal, APValue &RVal, bool WantObjectRepresentation=false) |
Perform an lvalue-to-rvalue conversion on the given glvalue. More... | |
static bool | handleAssignment (EvalInfo &Info, const Expr *E, const LValue &LVal, QualType LValType, APValue &Val) |
Perform an assignment of Val to LVal. Takes ownership of Val. More... | |
static bool | handleCompoundAssignment (EvalInfo &Info, const Expr *E, const LValue &LVal, QualType LValType, QualType PromotedLValType, BinaryOperatorKind Opcode, const APValue &RVal) |
Perform a compound assignment of LVal <op>= RVal. More... | |
static bool | handleIncDec (EvalInfo &Info, const Expr *E, const LValue &LVal, QualType LValType, bool IsIncrement, APValue *Old) |
Perform an increment or decrement on LVal. More... | |
static bool | EvaluateObjectArgument (EvalInfo &Info, const Expr *Object, LValue &This) |
Build an lvalue for the object argument of a member function call. More... | |
static const ValueDecl * | HandleMemberPointerAccess (EvalInfo &Info, QualType LVType, LValue &LV, const Expr *RHS, bool IncludeMember=true) |
HandleMemberPointerAccess - Evaluate a member access operation and build an lvalue referring to the result. More... | |
static const ValueDecl * | HandleMemberPointerAccess (EvalInfo &Info, const BinaryOperator *BO, LValue &LV, bool IncludeMember=true) |
static bool | HandleBaseToDerivedCast (EvalInfo &Info, const CastExpr *E, LValue &Result) |
HandleBaseToDerivedCast - Apply the given base-to-derived cast operation on the provided lvalue, which currently refers to the base object. More... | |
static APValue | getDefaultInitValue (QualType T) |
Get the value to use for a default-initialized object of type T. More... | |
static bool | EvaluateVarDecl (EvalInfo &Info, const VarDecl *VD) |
static bool | EvaluateDecl (EvalInfo &Info, const Decl *D) |
static bool | EvaluateCond (EvalInfo &Info, const VarDecl *CondDecl, const Expr *Cond, bool &Result) |
Evaluate a condition (either a variable declaration or an expression). More... | |
static EvalStmtResult | EvaluateStmt (StmtResult &Result, EvalInfo &Info, const Stmt *S, const SwitchCase *SC=nullptr) |
static EvalStmtResult | EvaluateLoopBody (StmtResult &Result, EvalInfo &Info, const Stmt *Body, const SwitchCase *Case=nullptr) |
Evaluate the body of a loop, and translate the result as appropriate. More... | |
static EvalStmtResult | EvaluateSwitch (StmtResult &Result, EvalInfo &Info, const SwitchStmt *SS) |
Evaluate a switch statement. More... | |
static bool | CheckTrivialDefaultConstructor (EvalInfo &Info, SourceLocation Loc, const CXXConstructorDecl *CD, bool IsValueInitialization) |
CheckTrivialDefaultConstructor - Check whether a constructor is a trivial default constructor. More... | |
static bool | CheckConstexprFunction (EvalInfo &Info, SourceLocation CallLoc, const FunctionDecl *Declaration, const FunctionDecl *Definition, const Stmt *Body) |
CheckConstexprFunction - Check that a function can be called in a constant expression. More... | |
static bool | checkDynamicType (EvalInfo &Info, const Expr *E, const LValue &This, AccessKinds AK, bool Polymorphic) |
Check that we can access the notional vptr of an object / determine its dynamic type. More... | |
static bool | checkNonVirtualMemberCallThisPointer (EvalInfo &Info, const Expr *E, const LValue &This, const CXXMethodDecl *NamedMember) |
Check that the pointee of the 'this' pointer in a member function call is either within its lifetime or in its period of construction or destruction. More... | |
static const CXXRecordDecl * | getBaseClassType (SubobjectDesignator &Designator, unsigned PathLength) |
static Optional< DynamicType > | ComputeDynamicType (EvalInfo &Info, const Expr *E, LValue &This, AccessKinds AK) |
Determine the dynamic type of an object. More... | |
static const CXXMethodDecl * | HandleVirtualDispatch (EvalInfo &Info, const Expr *E, LValue &This, const CXXMethodDecl *Found, llvm::SmallVectorImpl< QualType > &CovariantAdjustmentPath) |
Perform virtual dispatch. More... | |
static bool | HandleCovariantReturnAdjustment (EvalInfo &Info, const Expr *E, APValue &Result, ArrayRef< QualType > Path) |
Perform the adjustment from a value returned by a virtual function to a value of the statically expected type, which may be a pointer or reference to a base class of the returned type. More... | |
static bool | isBaseClassPublic (const CXXRecordDecl *Derived, const CXXRecordDecl *Base) |
Determine whether Base , which is known to be a direct base class of Derived , is a public base class. More... | |
static bool | HandleDynamicCast (EvalInfo &Info, const ExplicitCastExpr *E, LValue &Ptr) |
Apply the given dynamic cast operation on the provided lvalue. More... | |
static bool | HandleUnionActiveMemberChange (EvalInfo &Info, const Expr *LHSExpr, const LValue &LHS) |
Handle a builtin simple-assignment or a call to a trivial assignment operator whose left-hand side might involve a union member access. More... | |
static bool | hasFields (const CXXRecordDecl *RD) |
Determine if a class has any fields that might need to be copied by a trivial copy or move operation. More... | |
static bool | EvaluateArgs (ArrayRef< const Expr *> Args, ArgVector &ArgValues, EvalInfo &Info, const FunctionDecl *Callee) |
EvaluateArgs - Evaluate the arguments to a function call. More... | |
static bool | HandleFunctionCall (SourceLocation CallLoc, const FunctionDecl *Callee, const LValue *This, ArrayRef< const Expr *> Args, const Stmt *Body, EvalInfo &Info, APValue &Result, const LValue *ResultSlot) |
Evaluate a function call. More... | |
static bool | HandleConstructorCall (const Expr *E, const LValue &This, APValue *ArgValues, const CXXConstructorDecl *Definition, EvalInfo &Info, APValue &Result) |
Evaluate a constructor call. More... | |
static bool | HandleConstructorCall (const Expr *E, const LValue &This, ArrayRef< const Expr *> Args, const CXXConstructorDecl *Definition, EvalInfo &Info, APValue &Result) |
static bool | HandleDestructionImpl (EvalInfo &Info, SourceLocation CallLoc, const LValue &This, APValue &Value, QualType T) |
static bool | HandleOperatorNewCall (EvalInfo &Info, const CallExpr *E, LValue &Result) |
Perform a call to 'perator new' or to `__builtin_operator_new'. More... | |
static bool | hasVirtualDestructor (QualType T) |
static const FunctionDecl * | getVirtualOperatorDelete (QualType T) |
static Optional< DynAlloc * > | CheckDeleteKind (EvalInfo &Info, const Expr *E, const LValue &Pointer, DynAlloc::Kind DeallocKind) |
Check that the given object is a suitable pointer to a heap allocation that still exists and is of the right kind for the purpose of a deletion. More... | |
bool | HandleOperatorDeleteCall (EvalInfo &Info, const CallExpr *E) |
static bool | getBytesReturnedByAllocSizeCall (const ASTContext &Ctx, const CallExpr *Call, llvm::APInt &Result) |
Attempts to compute the number of bytes available at the pointer returned by a function with the alloc_size attribute. More... | |
static bool | getBytesReturnedByAllocSizeCall (const ASTContext &Ctx, const LValue &LVal, llvm::APInt &Result) |
Convenience function. More... | |
static bool | evaluateLValueAsAllocSize (EvalInfo &Info, APValue::LValueBase Base, LValue &Result) |
Attempts to evaluate the given LValueBase as the result of a call to a function with the alloc_size attribute. More... | |
static CharUnits | GetAlignOfType (EvalInfo &Info, QualType T, UnaryExprOrTypeTrait ExprKind) |
static CharUnits | GetAlignOfExpr (EvalInfo &Info, const Expr *E, UnaryExprOrTypeTrait ExprKind) |
static CharUnits | getBaseAlignment (EvalInfo &Info, const LValue &Value) |
static bool | getAlignmentArgument (const Expr *E, QualType ForType, EvalInfo &Info, APSInt &Alignment) |
Evaluate the value of the alignment argument to __builtin_align_{up,down}, __builtin_is_aligned and __builtin_assume_aligned. More... | |
static bool | EvaluateArrayNewInitList (EvalInfo &Info, LValue &This, APValue &Result, const InitListExpr *ILE, QualType AllocType) |
static bool | HandleClassZeroInitialization (EvalInfo &Info, const Expr *E, const RecordDecl *RD, const LValue &This, APValue &Result) |
Perform zero-initialization on an object of non-union class type. More... | |
static bool | EvaluateRecord (const Expr *E, const LValue &This, APValue &Result, EvalInfo &Info) |
static bool | EvaluateVector (const Expr *E, APValue &Result, EvalInfo &Info) |
static bool | EvaluateArray (const Expr *E, const LValue &This, APValue &Result, EvalInfo &Info) |
static bool | MaybeElementDependentArrayFiller (const Expr *FillerExpr) |
static GCCTypeClass | EvaluateBuiltinClassifyType (QualType T, const LangOptions &LangOpts) |
EvaluateBuiltinClassifyType - Evaluate __builtin_classify_type the same way as GCC. More... | |
static GCCTypeClass | EvaluateBuiltinClassifyType (const CallExpr *E, const LangOptions &LangOpts) |
EvaluateBuiltinClassifyType - Evaluate __builtin_classify_type the same way as GCC. More... | |
static bool | EvaluateBuiltinConstantPForLValue (const APValue &LV) |
EvaluateBuiltinConstantPForLValue - Determine the result of __builtin_constant_p when applied to the given pointer. More... | |
static bool | EvaluateBuiltinConstantP (EvalInfo &Info, const Expr *Arg) |
EvaluateBuiltinConstantP - Evaluate __builtin_constant_p as similarly to GCC as we can manage. More... | |
static QualType | getObjectType (APValue::LValueBase B) |
Retrieves the "underlying object type" of the given expression, as used by __builtin_object_size. More... | |
static const Expr * | ignorePointerCastsAndParens (const Expr *E) |
A more selective version of E->IgnoreParenCasts for tryEvaluateBuiltinObjectSize. More... | |
static bool | isDesignatorAtObjectEnd (const ASTContext &Ctx, const LValue &LVal) |
Checks to see if the given LValue's Designator is at the end of the LValue's record layout. More... | |
static bool | refersToCompleteObject (const LValue &LVal) |
Tests to see if the LValue has a user-specified designator (that isn't necessarily valid). More... | |
static bool | isUserWritingOffTheEnd (const ASTContext &Ctx, const LValue &LVal) |
Attempts to detect a user writing into a piece of memory that's impossible to figure out the size of by just using types. More... | |
static bool | convertUnsignedAPIntToCharUnits (const llvm::APInt &Int, CharUnits &Result) |
Converts the given APInt to CharUnits, assuming the APInt is unsigned. More... | |
static bool | determineEndOffset (EvalInfo &Info, SourceLocation ExprLoc, unsigned Type, const LValue &LVal, CharUnits &EndOffset) |
Helper for tryEvaluateBuiltinObjectSize – Given an LValue, this will determine how many bytes exist from the beginning of the object to either the end of the current subobject, or the end of the object itself, depending on what the LValue looks like + the value of Type. More... | |
static bool | tryEvaluateBuiltinObjectSize (const Expr *E, unsigned Type, EvalInfo &Info, uint64_t &Size) |
Tries to evaluate the __builtin_object_size for E . More... | |
static bool | getBuiltinAlignArguments (const CallExpr *E, EvalInfo &Info, APValue &Val, APSInt &Alignment) |
static bool | isOnePastTheEndOfCompleteObject (const ASTContext &Ctx, const LValue &LV) |
Determine whether this is a pointer past the end of the complete object referred to by the lvalue. More... | |
static void | addOrSubLValueAsInteger (APValue &LVal, const APSInt &Index, bool IsSub) |
template<class SuccessCB , class AfterCB > | |
static bool | EvaluateComparisonBinaryOperator (EvalInfo &Info, const BinaryOperator *E, SuccessCB &&Success, AfterCB &&DoAfter) |
static bool | TryEvaluateBuiltinNaN (const ASTContext &Context, QualType ResultTy, const Expr *Arg, bool SNaN, llvm::APFloat &Result) |
static bool | EvaluateVoid (const Expr *E, EvalInfo &Info) |
static bool | FastEvaluateAsRValue (const Expr *Exp, Expr::EvalResult &Result, const ASTContext &Ctx, bool &IsConst) |
static bool | hasUnacceptableSideEffect (Expr::EvalStatus &Result, Expr::SideEffectsKind SEK) |
static bool | EvaluateAsRValue (const Expr *E, Expr::EvalResult &Result, const ASTContext &Ctx, EvalInfo &Info) |
static bool | EvaluateAsInt (const Expr *E, Expr::EvalResult &ExprResult, const ASTContext &Ctx, Expr::SideEffectsKind AllowSideEffects, EvalInfo &Info) |
static bool | EvaluateAsFixedPoint (const Expr *E, Expr::EvalResult &ExprResult, const ASTContext &Ctx, Expr::SideEffectsKind AllowSideEffects, EvalInfo &Info) |
static ICEDiag | NoDiag () |
static ICEDiag | Worst (ICEDiag A, ICEDiag B) |
static ICEDiag | CheckEvalInICE (const Expr *E, const ASTContext &Ctx) |
static ICEDiag | CheckICE (const Expr *E, const ASTContext &Ctx) |
static bool | EvaluateCPlusPlus11IntegralConstantExpr (const ASTContext &Ctx, const Expr *E, llvm::APSInt *Value, SourceLocation *Loc) |
Evaluate an expression as a C++11 integral constant expression. More... | |
#define ABSTRACT_STMT | ( | Node | ) |
#define ABSTRACT_TYPE | ( | Class, | |
Base | |||
) |
#define BUILTIN_TYPE | ( | ID, | |
SINGLETON_ID | |||
) |
#define DEBUG_TYPE "exprconstant" |
Definition at line 62 of file ExprConstant.cpp.
#define DEPENDENT_TYPE | ( | Class, | |
Base | |||
) |
#define DEPENDENT_TYPE | ( | ID, | |
BASE | |||
) | case Type::ID: |
#define EXT_OPAQUE_TYPE | ( | ExtType, | |
Id, | |||
Ext | |||
) | case BuiltinType::Id: |
#define FLOATING_TYPE | ( | ID, | |
SINGLETON_ID | |||
) | case BuiltinType::ID: return GCCTypeClass::RealFloat; |
#define IMAGE_TYPE | ( | ImgType, | |
Id, | |||
SingletonId, | |||
Access, | |||
Suffix | |||
) | case BuiltinType::Id: |
#define NON_CANONICAL_TYPE | ( | Class, | |
Base | |||
) |
#define NON_CANONICAL_TYPE | ( | ID, | |
BASE | |||
) | case Type::ID: |
#define NON_CANONICAL_UNLESS_DEPENDENT | ( | Class, | |
Base | |||
) |
#define NON_CANONICAL_UNLESS_DEPENDENT_TYPE | ( | ID, | |
BASE | |||
) | case Type::ID: |
#define PLACEHOLDER_TYPE | ( | ID, | |
SINGLETON_ID | |||
) | case BuiltinType::ID: break; |
#define SIGNED_TYPE | ( | ID, | |
SINGLETON_ID | |||
) | case BuiltinType::ID: return GCCTypeClass::Integer; |
#define STMT | ( | Node, | |
Base | |||
) | case Expr::Node##Class: |
#define SVE_TYPE | ( | Name, | |
Id, | |||
SingletonId | |||
) | case BuiltinType::Id: |
#define TYPE | ( | Class, | |
Base | |||
) |
#define TYPE | ( | ID, | |
BASE | |||
) |
using CheckedTemporaries = llvm::SmallPtrSet<const MaterializeTemporaryExpr *, 8> |
Materialized temporaries that we've already checked to determine if they're initializsed by a constant expression.
Definition at line 1987 of file ExprConstant.cpp.
|
strong |
Enumerator | |
---|---|
ConstantExpression | |
FullyInitialized |
Definition at line 1979 of file ExprConstant.cpp.
|
strong |
Definition at line 11664 of file ExprConstant.cpp.
|
strong |
Definition at line 673 of file ExprConstant.cpp.
enum EvalStmtResult |
Definition at line 4267 of file ExprConstant.cpp.
|
strong |
Values returned by __builtin_classify_type, chosen to match the values produced by GCC's builtin.
Enumerator | |
---|---|
None | |
Void | |
Integer | |
Enum | |
Bool | |
Pointer | |
PointerToDataMember | |
RealFloat | |
Complex | |
PointerToMemberFunction | |
ClassOrStruct | |
Union |
Definition at line 10056 of file ExprConstant.cpp.
enum ICEKind |
Definition at line 14028 of file ExprConstant.cpp.
Definition at line 11491 of file ExprConstant.cpp.
|
static |
Determine whether the given subobject designators refer to elements of the same array object.
Definition at line 3486 of file ExprConstant.cpp.
References FindDesignatorMismatch().
Referenced by EvaluateComparisonBinaryOperator().
|
static |
Cast an lvalue referring to a derived class to a known base subobject.
Definition at line 2705 of file ExprConstant.cpp.
Referenced by HandleCovariantReturnAdjustment().
|
static |
Cast an lvalue referring to a base subobject to a derived class, by truncating the lvalue's path to the given length.
Definition at line 2623 of file ExprConstant.cpp.
References clang::CSK_Derived, clang::ASTRecordLayout::getBaseClassOffset(), clang::ASTRecordLayout::getVBaseClassOffset(), and clang::Decl::isInvalidDecl().
Referenced by HandleBaseToDerivedCast(), HandleDynamicCast(), HandleLValueBase(), and HandleMemberPointerAccess().
|
static |
Check that this core constant expression value is a valid value for a constant expression.
If not, report an appropriate diagnostic. Does not check that the expression is of literal type.
Definition at line 2238 of file ExprConstant.cpp.
References CheckEvaluationResult(), and ConstantExpression.
Referenced by clang::Expr::EvaluateAsConstantExpr(), clang::Expr::EvaluateAsInitializer(), EvaluateAsRValue(), and EvaluateComparisonBinaryOperator().
|
static |
CheckConstexprFunction - Check that a function can be called in a constant expression.
Definition at line 4883 of file ExprConstant.cpp.
References bool, clang::InheritedConstructor::getConstructor(), clang::CXXConstructorDecl::getInheritedConstructor(), clang::Decl::getLocation(), clang::FunctionDecl::isConstexpr(), and clang::Decl::isInvalidDecl().
Referenced by HandleDestructionImpl().
|
static |
Check that the given object is a suitable pointer to a heap allocation that still exists and is of the right kind for the purpose of a deletion.
On success, returns the heap allocation to deallocate. On failure, produces a diagnostic and returns None.
Definition at line 6040 of file ExprConstant.cpp.
References clang::None, and NoteLValueLocation().
Referenced by EvaluateAtomic(), and HandleOperatorDeleteCall().
|
static |
Check that we can access the notional vptr of an object / determine its dynamic type.
Definition at line 4958 of file ExprConstant.cpp.
References findCompleteObject(), findSubobject(), and clang::APValue::getAsString().
Referenced by checkNonVirtualMemberCallThisPointer(), and ComputeDynamicType().
|
static |
Perform the given integer operation, which is known to need at most BitWidth bits, and check for overflow in the original type (if that type was not an unsigned type).
Definition at line 2460 of file ExprConstant.cpp.
References clang::Expr::getExprLoc(), clang::Expr::getType(), and HandleOverflow().
Referenced by handleIntIntBinOp().
|
static |
Definition at line 14052 of file ExprConstant.cpp.
Referenced by CheckICE().
|
static |
Definition at line 2153 of file ExprConstant.cpp.
References clang::Type::castAs(), clang::Type::castAsArrayTypeUnsafe(), CheckLValueConstantExpression(), CheckMemberPointerConstantExpression(), ConstantExpression, clang::RecordDecl::fields(), clang::APValue::getArrayFiller(), clang::APValue::getArrayInitializedElt(), clang::APValue::getArrayInitializedElts(), clang::Type::getAs(), clang::ArrayType::getElementType(), clang::Decl::getLocation(), clang::APValue::getStructBase(), clang::APValue::getStructField(), clang::ValueDecl::getType(), clang::APValue::getUnionField(), clang::APValue::getUnionValue(), clang::APValue::hasArrayFiller(), clang::APValue::hasValue(), clang::APValue::isArray(), clang::APValue::isLValue(), clang::APValue::isMemberPointer(), clang::APValue::isStruct(), clang::APValue::isUnion(), and clang::SourceLocation::isValid().
Referenced by CheckConstantExpression(), CheckFullyInitialized(), and CheckLValueConstantExpression().
|
static |
Check that this evaluated value is fully-initialized and can be loaded by an lvalue-to-rvalue conversion.
Definition at line 2249 of file ExprConstant.cpp.
References CheckEvaluationResult(), clang::Expr::EvaluateForCodeGen, and FullyInitialized.
|
static |
Definition at line 14065 of file ExprConstant.cpp.
References CheckEvalInICE(), clang::VarDecl::checkInitIsICE(), clang::Expr::EvaluateKnownConstInt(), clang::Stmt::getBeginLoc(), clang::CallExpr::getBuiltinCallee(), clang::BinaryConditionalOperator::getCommon(), clang::ConditionalOperator::getCond(), clang::ConditionalOperator::getFalseExpr(), clang::BinaryConditionalOperator::getFalseExpr(), clang::ASTContext::getIntWidth(), clang::UnaryExprOrTypeTraitExpr::getKind(), clang::ASTContext::getLangOpts(), clang::BinaryOperator::getLHS(), clang::UnaryOperator::getOpcode(), clang::BinaryOperator::getOpcode(), clang::BinaryOperator::getRHS(), clang::Stmt::getStmtClass(), clang::UnaryOperator::getSubExpr(), clang::ConditionalOperator::getTrueExpr(), clang::Expr::getType(), clang::ValueDecl::getType(), clang::UnaryExprOrTypeTraitExpr::getTypeOfArgument(), clang::Expr::IgnoreParenCasts(), clang::Expr::IgnoreParenImpCasts(), IsConstNonVolatile(), clang::Type::isIntegralOrEnumerationType(), clang::Expr::isRValue(), clang::Type::isSignedIntegerOrEnumerationType(), clang::Expr::isValueDependent(), clang::Type::isVariableArrayType(), NoDiag(), clang::Stmt::NoStmtClass, clang::UETT_SizeOf, and Worst().
Referenced by clang::Expr::isCXX98IntegralConstantExpr(), and clang::Expr::isIntegerConstantExpr().
|
static |
Check that this core constant expression is of literal type, and if not, produce an appropriate diagnostic.
Definition at line 2123 of file ExprConstant.cpp.
References clang::Expr::getType(), clang::Type::isLiteralType(), and clang::Expr::isRValue().
Referenced by EvaluateAsRValue(), EvaluateComparisonBinaryOperator(), and EvaluateInPlace().
|
static |
Check that this reference or pointer core constant expression is a valid value for an address or reference constant expression.
Return true if we can fold this expression, whether or not it's a constant expression.
Definition at line 1999 of file ExprConstant.cpp.
References CheckEvaluationResult(), ConstantExpression, clang::APValue::LValueBase::dyn_cast(), clang::Expr::EvaluateForCodeGen, clang::APValue::LValueBase::is(), clang::QualType::isDestructedType(), IsGlobalLValue(), clang::Type::isReferenceType(), NoteLValueLocation(), and V.
Referenced by CheckEvaluationResult(), and clang::Expr::EvaluateAsLValue().
|
static |
Member pointers are constant expressions unless they point to a non-virtual dllimport member function.
Definition at line 2108 of file ExprConstant.cpp.
References clang::Expr::EvaluateForMangling, and clang::APValue::getMemberPointerDecl().
Referenced by CheckEvaluationResult().
|
static |
Enforce C++2a [expr.const]/4.17, which disallows new-expressions unless "the allocated storage is deallocated within the evaluation".
Definition at line 2259 of file ExprConstant.cpp.
Referenced by clang::Expr::EvaluateAsConstantExpr(), clang::Expr::EvaluateAsInitializer(), and EvaluateAsRValue().
|
static |
Check that the pointee of the 'this' pointer in a member function call is either within its lifetime or in its period of construction or destruction.
Definition at line 5000 of file ExprConstant.cpp.
References clang::AK_Destroy, clang::AK_MemberCall, and checkDynamicType().
|
static |
CheckTrivialDefaultConstructor - Check whether a constructor is a trivial default constructor.
If so, we'll fold it whether or not it's marked as constexpr. If it is marked as constexpr, we will never implicitly define it, so we need special handling.
Definition at line 4858 of file ExprConstant.cpp.
References clang::Decl::getLocation(), clang::FunctionDecl::isConstexpr(), clang::CXXConstructorDecl::isDefaultConstructor(), and clang::FunctionDecl::isTrivial().
|
static |
Determine the dynamic type of an object.
Definition at line 5025 of file ExprConstant.cpp.
References checkDynamicType(), getBaseClassType(), clang::CXXRecordDecl::getNumVBases(), and clang::None.
Referenced by HandleDynamicCast(), and HandleVirtualDispatch().
Converts the given APInt to CharUnits, assuming the APInt is unsigned.
Fails if the conversion would cause loss of precision.
Definition at line 10480 of file ExprConstant.cpp.
References clang::CharUnits::fromQuantity(), and max().
Referenced by determineEndOffset().
|
static |
Helper for tryEvaluateBuiltinObjectSize – Given an LValue, this will determine how many bytes exist from the beginning of the object to either the end of the current subobject, or the end of the object itself, depending on what the LValue looks like + the value of Type.
If this returns false, the value of Result is undefined.
Definition at line 10495 of file ExprConstant.cpp.
References convertUnsignedAPIntToCharUnits(), getBytesReturnedByAllocSizeCall(), getObjectType(), HandleSizeof(), clang::Type::isFunctionType(), clang::Type::isIncompleteType(), clang::QualType::isNull(), isUserWritingOffTheEnd(), refersToCompleteObject(), and clang::Result.
Referenced by tryEvaluateBuiltinObjectSize().
|
static |
Diagnose an attempt to read from any unreadable field within the specified type, which might be a class type.
Definition at line 3029 of file ExprConstant.cpp.
References clang::CXXRecordDecl::bases(), clang::RecordDecl::fields(), clang::Type::getAsCXXRecordDecl(), clang::Type::getBaseElementTypeUnsafe(), clang::Expr::getType(), clang::CXXRecordDecl::hasMutableFields(), isReadByLvalueToRvalueConversion(), and clang::TagDecl::isUnion().
Referenced by findSubobject().
Definition at line 2409 of file ExprConstant.cpp.
References clang::Type::castAs(), Evaluate(), clang::APValue::getFloat(), clang::APValue::getInt(), clang::Expr::getType(), clang::APValue::getVectorElt(), clang::APValue::getVectorLength(), clang::APValue::isFloat(), clang::APValue::isInt(), and clang::APValue::isVector().
Referenced by EvaluateVector().
Definition at line 2271 of file ExprConstant.cpp.
References clang::APValue::LValueBase::dyn_cast(), clang::APValue::getLValueBase(), clang::APValue::getLValueOffset(), clang::ValueDecl::isWeak(), and clang::CharUnits::isZero().
Referenced by HandleConversionToBool().
Definition at line 13534 of file ExprConstant.cpp.
References clang::C, EvaluateArray(), EvaluateAtomic(), EvaluateComplex(), EvaluateFloat(), EvaluateLValue(), EvaluateMemberPointer(), EvaluatePointer(), EvaluateRecord(), EvaluateVector(), EvaluateVoid(), clang::QualType::getAtomicUnqualifiedType(), clang::Expr::getType(), clang::Type::hasPointerRepresentation(), clang::Type::isAnyComplexType(), clang::Type::isArrayType(), clang::Type::isAtomicType(), clang::Type::isFixedPointType(), clang::Type::isFunctionType(), clang::Expr::isGLValue(), clang::Type::isIntegralOrEnumerationType(), clang::Type::isMemberPointerType(), clang::Type::isRealFloatingType(), clang::Type::isRecordType(), clang::Type::isVectorType(), clang::Type::isVoidType(), and P.
Referenced by EvalAndBitcastToAPInt(), EvaluateArgs(), EvaluateAsBooleanCondition(), clang::Expr::EvaluateAsConstantExpr(), EvaluateAsRValue(), EvaluateComparisonBinaryOperator(), EvaluateComplex(), EvaluateIgnoredValue(), EvaluateInPlace(), handleLValueToRValueConversion(), and isOnePastTheEndOfCompleteObject().
|
static |
EvaluateArgs - Evaluate the arguments to a function call.
Definition at line 5431 of file ExprConstant.cpp.
References Evaluate(), clang::Decl::hasAttr(), and clang::Decl::specific_attrs().
Referenced by HandleConstructorCall(), and HandleFunctionCall().
|
static |
Definition at line 9585 of file ExprConstant.cpp.
References clang::Expr::getType(), clang::Type::isArrayType(), and clang::Expr::isRValue().
Referenced by Evaluate(), and EvaluateInPlace().
|
static |
Definition at line 9591 of file ExprConstant.cpp.
References clang::Expr::getType(), clang::Type::isArrayType(), and clang::Expr::isRValue().
Referenced by getAlignmentArgument().
Definition at line 2324 of file ExprConstant.cpp.
References Evaluate(), HandleConversionToBool(), and clang::Expr::isRValue().
Referenced by EvaluateComparisonBinaryOperator(), and EvaluateCond().
|
static |
Definition at line 13730 of file ExprConstant.cpp.
References EvaluateAsRValue(), clang::Expr::getType(), hasUnacceptableSideEffect(), clang::APValue::isFixedPoint(), clang::Type::isFixedPointType(), and clang::Expr::EvalResult::Val.
Referenced by clang::Expr::EvaluateAsFixedPoint().
|
static |
Definition at line 13715 of file ExprConstant.cpp.
References EvaluateAsRValue(), clang::Expr::getType(), hasUnacceptableSideEffect(), clang::APValue::isInt(), clang::Type::isIntegralOrEnumerationType(), and clang::Expr::EvalResult::Val.
Referenced by clang::Expr::EvaluateAsInt().
EvaluateAsRValue - Try to evaluate this expression, performing an implicit lvalue-to-rvalue cast if it is an lvalue.
Definition at line 13644 of file ExprConstant.cpp.
References CheckConstantExpression(), CheckLiteralType(), CheckMemoryLeaks(), Evaluate(), clang::Expr::getExprLoc(), clang::Expr::getType(), handleLValueToRValueConversion(), clang::Expr::isGLValue(), clang::QualType::isNull(), and clang::Result.
Referenced by clang::Expr::EvaluateAsBooleanCondition(), EvaluateAsFixedPoint(), clang::Expr::EvaluateAsFloat(), EvaluateAsInt(), clang::Expr::EvaluateAsRValue(), EvaluateAsRValue(), EvaluateBuiltinConstantP(), clang::Expr::EvaluateForOverflow(), clang::Expr::EvaluateKnownConstInt(), clang::Expr::EvaluateKnownConstIntCheckOverflow(), clang::Expr::isEvaluatable(), and tryEvaluateBuiltinObjectSize().
|
static |
Definition at line 13706 of file ExprConstant.cpp.
References EvaluateAsRValue(), FastEvaluateAsRValue(), and clang::Expr::EvalResult::Val.
|
static |
Definition at line 13400 of file ExprConstant.cpp.
References CheckDeleteKind(), EvaluatePointer(), clang::CXXDeleteExpr::getArgument(), clang::CallExpr::getBuiltinCallee(), clang::CastExpr::getCastKind(), clang::Expr::getExprLoc(), clang::CXXDeleteExpr::getOperatorDelete(), clang::Type::getPointeeType(), clang::CastExpr::getSubExpr(), clang::Expr::getType(), getVirtualOperatorDelete(), HandleDestruction(), HandleOperatorDeleteCall(), hasVirtualDestructor(), clang::CXXDeleteExpr::isArrayForm(), clang::Type::isAtomicType(), clang::CXXDeleteExpr::isGlobalDelete(), clang::FunctionDecl::isReplaceableGlobalAllocationFunction(), clang::Expr::isRValue(), Pointer, and V.
Referenced by Evaluate(), and EvaluateInPlace().
|
static |
EvaluateBuiltinClassifyType - Evaluate __builtin_classify_type the same way as GCC.
Definition at line 10087 of file ExprConstant.cpp.
References clang::Auto, Bool, ClassOrStruct, Complex, Enum, clang::QualType::getCanonicalType(), clang::BuiltinType::getKind(), clang::AtomicType::getValueType(), Integer, clang::Type::isDependentType(), None, Pointer, PointerToDataMember, PointerToMemberFunction, Union, and Void.
Referenced by EvaluateBuiltinClassifyType(), and getBuiltinAlignArguments().
|
static |
EvaluateBuiltinClassifyType - Evaluate __builtin_classify_type the same way as GCC.
Definition at line 10222 of file ExprConstant.cpp.
References EvaluateBuiltinClassifyType(), clang::CallExpr::getArg(), clang::CallExpr::getNumArgs(), clang::Expr::getType(), and None.
EvaluateBuiltinConstantP - Evaluate __builtin_constant_p as similarly to GCC as we can manage.
Definition at line 10260 of file ExprConstant.cpp.
References EvaluateAsRValue(), EvaluateBuiltinConstantPForLValue(), clang::APValue::getKind(), clang::Expr::getType(), clang::APValue::hasValue(), clang::Type::isAnyComplexType(), clang::Type::isFloatingType(), clang::Type::isIntegralOrEnumerationType(), clang::Type::isNullPtrType(), clang::Type::isPointerType(), clang::APValue::LValue, and V.
Referenced by getBuiltinAlignArguments().
EvaluateBuiltinConstantPForLValue - Determine the result of __builtin_constant_p when applied to the given pointer.
A pointer is only "constant" if it is null (or a pointer cast to integer) or it points to the first character of a string literal.
Definition at line 10239 of file ExprConstant.cpp.
References clang::APValue::LValueBase::dyn_cast(), clang::APValue::getLValueBase(), clang::APValue::getLValueOffset(), clang::APValue::LValueBase::is(), clang::APValue::LValueBase::isNull(), and clang::CharUnits::isZero().
Referenced by EvaluateBuiltinConstantP().
|
static |
Definition at line 11675 of file ExprConstant.cpp.
References clang::APFixedPoint::add(), AreElementsOfSameArray(), clang::OffsetOfNode::Array, clang::OffsetOfNode::Base, clang::C, clang::UnaryOperator::canOverflow(), clang::Type::castAs(), CheckConstantExpression(), CheckLiteralType(), clang::APFixedPoint::convert(), clang::Equal, clang::Error, Evaluate(), EvaluateAsBooleanCondition(), EvaluateComplex(), EvaluateFixedPoint(), EvaluateFixedPointOrInteger(), EvaluateFloat(), EvaluateInteger(), EvaluateLValue(), EvaluateMemberPointer(), EvaluatePointer(), clang::OffsetOfNode::Field, FindDesignatorMismatch(), clang::Decl::getAccess(), GetAlignOfExpr(), GetAlignOfType(), clang::UnaryExprOrTypeTraitExpr::getArgumentExpr(), clang::UnaryExprOrTypeTraitExpr::getArgumentType(), clang::OffsetOfNode::getArrayExprIndex(), clang::Type::getAs(), clang::OffsetOfNode::getBase(), clang::ASTRecordLayout::getBaseClassOffset(), clang::APFixedPoint::getBoolValue(), clang::CastExpr::getCastKind(), clang::OffsetOfExpr::getComponent(), clang::RecordType::getDecl(), clang::Decl::getDeclContext(), clang::ArrayType::getElementType(), clang::Expr::getExprLoc(), clang::BinaryOperator::getExprLoc(), clang::OffsetOfNode::getField(), clang::ASTRecordLayout::getFieldCount(), clang::FieldDecl::getFieldIndex(), clang::ASTRecordLayout::getFieldOffset(), clang::APValue::getFixedPoint(), clang::APValue::getFloat(), clang::APFixedPoint::getFromIntValue(), clang::OffsetOfExpr::getIndexExpr(), clang::OffsetOfNode::getKind(), clang::UnaryExprOrTypeTraitExpr::getKind(), clang::AddrLabelExpr::getLabel(), clang::BinaryOperator::getLHS(), clang::QualType::getNonReferenceType(), clang::OffsetOfExpr::getNumComponents(), clang::UnaryOperator::getOpcode(), clang::BinaryOperator::getOpcode(), clang::SizeOfPackExpr::getPackLength(), clang::FieldDecl::getParent(), clang::Type::getPointeeType(), clang::CharUnits::getQuantity(), clang::BinaryOperator::getRHS(), clang::UnaryOperator::getSubExpr(), clang::CastExpr::getSubExpr(), clang::Expr::getType(), clang::CXXBaseSpecifier::getType(), clang::ValueDecl::getType(), clang::TypeSourceInfo::getType(), clang::UnaryExprOrTypeTraitExpr::getTypeOfArgument(), clang::OffsetOfExpr::getTypeSourceInfo(), clang::CXXNoexceptExpr::getValue(), clang::ComparisonCategoryInfo::getValueInfo(), clang::Greater, HandleFloatToIntCast(), HandleIntToIntCast(), handleLValueToRValueConversion(), HandleOverflow(), HandleSizeof(), HasSameBase(), clang::OffsetOfNode::Identifier, clang::Type::isAnyComplexType(), clang::UnaryExprOrTypeTraitExpr::isArgumentType(), clang::BinaryOperator::isAssignmentOp(), clang::BinaryOperator::isComparisonOp(), clang::Type::isComplexIntegerType(), clang::BinaryOperator::isEqualityOp(), clang::Type::isFixedPointType(), clang::Type::isIncompleteType(), clang::Type::isIntegralOrEnumerationType(), clang::Decl::isInvalidDecl(), IsLiteralLValue(), clang::Type::isMemberPointerType(), clang::Type::isNullPtrType(), isOnePastTheEndOfCompleteObject(), clang::Type::isPointerType(), clang::Type::isRealFloatingType(), clang::BinaryOperator::isRelationalOp(), clang::ConceptSpecializationExpr::isSatisfied(), clang::RequiresExpr::isSatisfied(), clang::Type::isSignedIntegerOrEnumerationType(), clang::TagDecl::isUnion(), clang::Type::isVectorType(), clang::CXXBaseSpecifier::isVirtual(), clang::Type::isVoidPointerType(), IsWeakLValue(), clang::CharUnits::isZero(), isZeroSized(), clang::Less, clang::ComparisonCategoryInfo::makeWeakResult(), clang::Result, clang::APValue::toIntegralConstant(), clang::UETT_AlignOf, clang::UETT_OpenMPRequiredSimdAlign, clang::UETT_PreferredAlignOf, clang::UETT_SizeOf, clang::UETT_VecStep, clang::Unordered, and V.
Definition at line 12895 of file ExprConstant.cpp.
References abs(), clang::C, clang::Type::castAs(), clang::Error, Evaluate(), EvaluateFloat(), EvaluateInPlace(), EvaluateInteger(), clang::CastExpr::getCastKind(), clang::InitListExpr::getInit(), clang::BinaryOperator::getLHS(), clang::InitListExpr::getNumInits(), clang::UnaryOperator::getOpcode(), clang::BinaryOperator::getOpcode(), clang::BinaryOperator::getRHS(), clang::ImaginaryLiteral::getSubExpr(), clang::UnaryOperator::getSubExpr(), clang::CastExpr::getSubExpr(), clang::Expr::getType(), HandleFloatToFloatCast(), HandleFloatToIntCast(), HandleIntToFloatCast(), HandleIntToIntCast(), ilogb, clang::Type::isAnyComplexType(), clang::BinaryOperator::isAssignmentOp(), clang::Type::isComplexType(), clang::Type::isIntegerType(), clang::BinaryOperator::isPtrMemOp(), clang::Type::isRealFloatingType(), clang::Expr::isRValue(), clang::Result, scalbn, clang::interp::This(), V, and clang::interp::Zero().
Referenced by Evaluate(), and EvaluateComparisonBinaryOperator().
|
static |
Evaluate a condition (either a variable declaration or an expression).
Definition at line 4327 of file ExprConstant.cpp.
References EvaluateAsBooleanCondition(), EvaluateDecl(), and EvaluateStmt().
|
static |
Evaluate an expression as a C++11 integral constant expression.
Definition at line 14464 of file ExprConstant.cpp.
References clang::Expr::getExprLoc(), clang::APValue::getInt(), clang::Expr::getType(), clang::Expr::isCXX11ConstantExpr(), clang::APValue::isInt(), clang::Type::isIntegralOrUnscopedEnumerationType(), and clang::Result.
Referenced by clang::Expr::isIntegerConstantExpr().
Definition at line 4311 of file ExprConstant.cpp.
References EvaluateVarDecl().
Referenced by EvaluateCond(), and EvaluateSwitch().
|
static |
Evaluate only a fixed point expression into an APResult.
Definition at line 9997 of file ExprConstant.cpp.
References clang::APValue::getFixedPoint(), clang::Expr::getType(), clang::APValue::isFixedPoint(), and clang::Type::isFixedPointType().
Referenced by EvaluateComparisonBinaryOperator(), and EvaluateFixedPointOrInteger().
|
static |
Evaluate an integer or fixed point expression into an APResult.
Definition at line 10012 of file ExprConstant.cpp.
References EvaluateFixedPoint(), EvaluateInteger(), clang::Expr::getType(), clang::Type::isFixedPointType(), clang::Type::isIntegerType(), and clang::Type::isSignedIntegerOrEnumerationType().
Referenced by EvaluateComparisonBinaryOperator().
Definition at line 12664 of file ExprConstant.cpp.
References clang::Expr::getType(), clang::Type::isRealFloatingType(), and clang::Expr::isRValue().
Referenced by Evaluate(), EvaluateComparisonBinaryOperator(), EvaluateComplex(), EvaluateVector(), and getBuiltinAlignArguments().
Evaluate an expression to see if it had side-effects, and discard its result.
true
if the caller should keep evaluating. Definition at line 1840 of file ExprConstant.cpp.
References Evaluate().
Referenced by evaluateLValueAsAllocSize(), HandleOperatorDeleteCall(), and HandleOperatorNewCall().
|
static |
EvaluateInPlace - Evaluate an expression in-place in an APValue.
In some cases, the in-place evaluation is essential, since later initializers for an object can indirectly refer to subobjects which were initialized earlier.
Definition at line 13616 of file ExprConstant.cpp.
References CheckLiteralType(), Evaluate(), EvaluateArray(), EvaluateAtomic(), EvaluateRecord(), clang::QualType::getAtomicUnqualifiedType(), clang::Expr::getType(), clang::Type::isArrayType(), clang::Type::isAtomicType(), clang::Type::isRecordType(), clang::Expr::isRValue(), and clang::Expr::isValueDependent().
Referenced by clang::Expr::EvaluateAsInitializer(), EvaluateComplex(), EvaluatePointer(), EvaluateRecord(), EvaluateVarDecl(), EvaluateVector(), getAlignmentArgument(), and HandleConstructorCall().
Definition at line 9977 of file ExprConstant.cpp.
References clang::SourceLocExpr::EvaluateInContext(), EvaluateIntegerOrLValue(), clang::APValue::getInt(), and clang::APValue::isInt().
Referenced by EvaluateComparisonBinaryOperator(), EvaluateComplex(), EvaluateFixedPointOrInteger(), EvaluatePointer(), EvaluateSwitch(), EvaluateVector(), getAlignmentArgument(), getBuiltinAlignArguments(), and HandleOperatorNewCall().
EvaluateIntegerOrLValue - Evaluate an rvalue integral-typed expression, and produce either the integer value or a pointer.
GCC has a heinous extension which folds casts between pointer types and pointer-sized integral types. We support this by allowing the evaluation of an integer rvalue to produce a pointer (represented as an lvalue) instead. Some simple arithmetic on such values is supported (they are treated much like char*).
Definition at line 9971 of file ExprConstant.cpp.
References clang::Expr::getType(), clang::Type::isIntegralOrEnumerationType(), and clang::Expr::isRValue().
Referenced by EvaluateInteger(), and EvaluatePointer().
|
static |
Evaluate the body of a loop, and translate the result as appropriate.
Definition at line 4366 of file ExprConstant.cpp.
References EvaluateStmt().
|
static |
Evaluate an expression as an lvalue.
This can be legitimately called on expressions which are not glvalues, in three cases:
Definition at line 7437 of file ExprConstant.cpp.
References clang::Error, evaluateVarDeclInit(), clang::DeclRefExpr::getDecl(), clang::Decl::getDeclContext(), clang::Expr::getType(), clang::ValueDecl::getType(), HandleLValueMember(), handleLValueToRValueConversion(), clang::VarDecl::hasLocalStorage(), clang::APValue::hasValue(), clang::Type::isFunctionType(), clang::Expr::isGLValue(), clang::isLambdaCallOperator(), clang::Type::isReferenceType(), clang::Type::isVoidType(), clang::Result, and V.
Referenced by Evaluate(), clang::Expr::EvaluateAsLValue(), EvaluateComparisonBinaryOperator(), evaluateLValueAsAllocSize(), EvaluateObjectArgument(), and getAlignmentArgument().
|
static |
Attempts to evaluate the given LValueBase as the result of a call to a function with the alloc_size attribute.
If it was possible to do so, this function will return true, make Result's Base point to said function call, and mark Result's Base as invalid.
Definition at line 7822 of file ExprConstant.cpp.
References clang::Type::castAs(), clang::APValue::LValueBase::dyn_cast(), clang::Error, EvaluateIgnoredValue(), clang::SourceLocExpr::EvaluateInContext(), EvaluateLValue(), EvaluatePointer(), clang::VarDecl::getAnyInitializer(), clang::BlockExpr::getBlockDecl(), clang::ObjCBoxedExpr::getSubExpr(), clang::Expr::getType(), clang::ValueDecl::getType(), HandleLValueMember(), handleLValueToRValueConversion(), clang::BlockDecl::hasCaptures(), clang::Expr::IgnoreParens(), clang::QualType::isConstQualified(), clang::ObjCBoxedExpr::isExpressibleAsConstantInitializer(), clang::CXXThisExpr::isImplicit(), clang::isLambdaCallOperator(), clang::VarDecl::isLocalVarDecl(), clang::APValue::LValueBase::isNull(), clang::SourceLocExpr::isStringType(), clang::Result, and V.
Referenced by EvaluatePointer().
Definition at line 8820 of file ExprConstant.cpp.
References clang::Type::castAs(), clang::Error, clang::Type::getAsCXXRecordDecl(), clang::CastExpr::getCastKind(), clang::UnaryOperator::getSubExpr(), clang::CastExpr::getSubExpr(), clang::Expr::getType(), clang::Type::isMemberPointerType(), clang::Expr::isRValue(), clang::CastExpr::path_begin(), clang::CastExpr::path_empty(), clang::CastExpr::path_end(), clang::Result, clang::interp::This(), and V.
Referenced by Evaluate(), EvaluateComparisonBinaryOperator(), and HandleMemberPointerAccess().
Build an lvalue for the object argument of a member function call.
Definition at line 4068 of file ExprConstant.cpp.
References EvaluateLValue(), EvaluatePointer(), EvaluateTemporary(), clang::Expr::getType(), clang::Expr::isGLValue(), clang::Type::isLiteralType(), clang::Type::isPointerType(), and clang::Expr::isRValue().
Referenced by HandleMemberPointerAccess().
|
static |
Definition at line 7965 of file ExprConstant.cpp.
References clang::Type::castAs(), EvaluateInPlace(), EvaluateInteger(), EvaluateIntegerOrLValue(), evaluateLValueAsAllocSize(), clang::CharUnits::fromQuantity(), clang::CastExpr::getCastKind(), clang::APValue::getInt(), clang::BinaryOperator::getLHS(), clang::BinaryOperator::getOpcode(), clang::Type::getPointeeType(), clang::BinaryOperator::getRHS(), clang::UnaryOperator::getSubExpr(), clang::CastExpr::getSubExpr(), clang::Expr::getType(), HandleBaseToDerivedCast(), HandleDynamicCast(), HandleLValueArrayAdjustment(), HandleLValueBasePath(), handleLValueToRValueConversion(), clang::Type::hasPointerRepresentation(), clang::Expr::isGLValue(), clang::APValue::isInt(), clang::Type::isPointerType(), clang::Expr::isRValue(), clang::Type::isVoidPointerType(), negateAsSigned(), Offset, and clang::Result.
Referenced by Evaluate(), EvaluateAtomic(), EvaluateComparisonBinaryOperator(), evaluateLValueAsAllocSize(), EvaluateObjectArgument(), getAlignmentArgument(), getBuiltinAlignArguments(), HandleOperatorDeleteCall(), and tryEvaluateBuiltinObjectSize().
|
static |
Definition at line 9287 of file ExprConstant.cpp.
References EvaluateInPlace(), clang::CastExpr::getCastKind(), clang::CastExpr::getSubExpr(), clang::Expr::getType(), clang::Type::isRecordType(), clang::Expr::isRValue(), and clang::Result.
Referenced by Evaluate(), and EvaluateInPlace().
|
static |
Definition at line 4463 of file ExprConstant.cpp.
References clang::Stmt::getStmtClass().
Referenced by EvaluateCond(), EvaluateLoopBody(), EvaluateSwitch(), HandleConstructorCall(), HandleDestructionImpl(), and HandleFunctionCall().
|
static |
Evaluate a switch statement.
Definition at line 4390 of file ExprConstant.cpp.
References EvaluateDecl(), EvaluateInteger(), clang::Expr::EvaluateKnownConstInt(), EvaluateStmt(), clang::SwitchCase::getBeginLoc(), clang::SwitchStmt::getBody(), clang::SwitchStmt::getCond(), clang::SwitchStmt::getConditionVariable(), clang::SwitchStmt::getInit(), clang::CaseStmt::getLHS(), clang::SwitchCase::getNextSwitchCase(), clang::CaseStmt::getRHS(), and clang::SwitchStmt::getSwitchCaseList().
Evaluate an expression of record type as a temporary.
Definition at line 9343 of file ExprConstant.cpp.
References clang::Type::castAs(), clang::UnaryOperator::getSubExpr(), clang::Expr::getType(), clang::Type::isRecordType(), clang::Expr::isRValue(), clang::APValue::isVector(), clang::Result, and V.
Referenced by EvaluateObjectArgument().
Definition at line 4283 of file ExprConstant.cpp.
References EvaluateInPlace(), getDefaultInitValue(), clang::VarDecl::getInit(), clang::ValueDecl::getType(), clang::VarDecl::hasLocalStorage(), clang::Expr::isValueDependent(), and clang::Result.
Referenced by EvaluateDecl().
|
static |
Try to evaluate the initializer for a variable declaration.
Info | Information about the ongoing evaluation. |
E | An expression to be used when printing diagnostics. |
VD | The variable whose initializer should be obtained. |
Frame | The frame in which the variable was created. Must be null if this variable is not local to the evaluation. |
Result | Filled in with a pointer to the value of the variable. |
Definition at line 2821 of file ExprConstant.cpp.
References clang::VarDecl::checkInitIsICE(), clang::VarDecl::evaluateValue(), clang::VarDecl::getAnyInitializer(), clang::Stmt::getBeginLoc(), clang::Decl::getDeclContext(), clang::VarDecl::getEvaluatedValue(), clang::Decl::getLocation(), clang::VarDecl::isInitCapture(), clang::isLambdaCallOperator(), clang::Expr::isValueDependent(), and clang::ValueDecl::isWeak().
Referenced by EvaluateLValue(), and findCompleteObject().
Definition at line 9386 of file ExprConstant.cpp.
References clang::Type::castAs(), clang::Error, EvalAndBitcastToAPInt(), EvaluateFloat(), EvaluateInPlace(), EvaluateInteger(), expandStringLiteral(), clang::APValue::getArrayFiller(), clang::CastExpr::getCastKind(), clang::ArrayType::getElementType(), clang::VectorType::getElementType(), clang::InitListExpr::getInit(), clang::VectorType::getNumElements(), clang::InitListExpr::getNumInits(), clang::ConstantArrayType::getSize(), clang::UnaryOperator::getSubExpr(), clang::CastExpr::getSubExpr(), clang::Expr::getType(), clang::APValue::getVectorElt(), clang::APValue::getVectorLength(), clang::APValue::hasArrayFiller(), clang::APValue::isArray(), clang::Type::isIntegerType(), clang::Type::isRealFloatingType(), clang::Expr::isRValue(), clang::Type::isSignedIntegerType(), clang::Type::isVectorType(), clang::Result, clang::interp::This(), v, and V.
Referenced by Evaluate().
Definition at line 13525 of file ExprConstant.cpp.
References clang::Expr::getType(), clang::Expr::isRValue(), and clang::Type::isVoidType().
Referenced by Evaluate().
|
static |
Definition at line 2984 of file ExprConstant.cpp.
Referenced by HandleDestructionImpl().
|
static |
Definition at line 2961 of file ExprConstant.cpp.
Referenced by EvaluateVector().
|
static |
Extract the value of a character from a string literal.
Definition at line 2928 of file ExprConstant.cpp.
Referenced by handleLValueToRValueConversion().
|
static |
Extract the designated sub-object of an rvalue.
Definition at line 3381 of file ExprConstant.cpp.
References clang::AK_Assign, clang::AK_Read, clang::AK_ReadObjectRepresentation, findSubobject(), clang::APValue::getFloat(), clang::APValue::getInt(), clang::QualType::isConstQualified(), clang::APValue::isInt(), clang::Result, and clang::APValue::swap().
Referenced by handleLValueToRValueConversion().
|
static |
Definition at line 13671 of file ExprConstant.cpp.
References clang::ASTContext::getLangOpts(), clang::Expr::getType(), clang::Type::isArrayType(), clang::QualType::isNull(), clang::Type::isRecordType(), clang::Expr::isRValue(), and clang::Expr::EvalResult::Val.
Referenced by EvaluateAsRValue(), and clang::Expr::EvaluateForOverflow().
|
static |
Find the complete object to which an LValue refers.
Definition at line 3506 of file ExprConstant.cpp.
References Depth, evaluateVarDeclInit(), clang::QualType::getAddressSpace(), clang::VarDecl::getDefinition(), clang::Decl::getLocation(), clang::ValueDecl::getType(), clang::VarDecl::hasDefinition(), isAnyAccess(), clang::VarDecl::isConstexpr(), clang::QualType::isConstQualified(), clang::Type::isFloatingType(), isFormalAccess(), clang::Type::isIntegralOrEnumerationType(), clang::Decl::isInvalidDecl(), isModification(), clang::QualType::isVolatileQualified(), lifetimeStartedInEvaluation(), NoteLValueLocation(), clang::opencl_constant, and clang::SD_Static.
Referenced by checkDynamicType(), getAlignmentArgument(), handleAssignment(), handleCompoundAssignment(), HandleDestruction(), handleIncDec(), and handleLValueToRValueConversion().
|
static |
Find the position where two subobject designators diverge, or equivalently the length of the common initial subsequence.
Definition at line 3449 of file ExprConstant.cpp.
References clang::Type::castAs(), clang::Type::castAsArrayTypeUnsafe(), clang::ComplexType::getElementType(), clang::ArrayType::getElementType(), clang::Type::isAnyComplexType(), clang::Type::isArrayType(), clang::QualType::isNull(), and min().
Referenced by AreElementsOfSameArray(), and EvaluateComparisonBinaryOperator().
SubobjectHandler::result_type findSubobject | ( | EvalInfo & | Info, |
const Expr * | E, | ||
const CompleteObject & | Obj, | ||
const SubobjectDesignator & | Sub, | ||
SubobjectHandler & | handler | ||
) |
Find the designated sub-object of an rvalue.
Definition at line 3156 of file ExprConstant.cpp.
References clang::AK_Assign, clang::AK_Construct, clang::AK_ReadObjectRepresentation, diagnoseMutableFields(), clang::Expr::getExprLoc(), clang::Decl::getLocation(), clang::APValue::isAbsent(), clang::Type::isAnyComplexType(), clang::Type::isArrayType(), clang::FieldDecl::isBitField(), clang::QualType::isConstQualified(), isFormalAccess(), clang::APValue::isIndeterminate(), isModification(), clang::Type::isRecordType(), clang::QualType::isVolatileQualified(), clang::None, clang::QualType::removeLocalConst(), clang::QualType::removeLocalVolatile(), and truncateBitfieldValue().
Referenced by checkDynamicType(), extractSubobject(), getAlignmentArgument(), handleCompoundAssignment(), HandleDestruction(), handleIncDec(), and modifySubobject().
|
static |
Evaluate the value of the alignment argument to __builtin_align_{up,down}, __builtin_is_aligned and __builtin_assume_aligned.
Definition at line 8188 of file ExprConstant.cpp.
References clang::AK_Construct, clang::AK_Read, clang::CharUnits::alignmentAtOffset(), clang::Type::castAs(), clang::Error, EvaluateArrayNewInitList(), EvaluateInPlace(), EvaluateInteger(), EvaluateLValue(), EvaluatePointer(), findCompleteObject(), findSubobject(), clang::CharUnits::fromQuantity(), clang::CXXNewExpr::getAllocatedType(), clang::CallExpr::getArg(), clang::CXXNewExpr::getArraySize(), clang::Type::getAsArrayTypeUnsafe(), clang::APValue::getAsString(), getBaseAlignment(), clang::CallExpr::getBuiltinCallee(), getDefaultInitValue(), clang::CXXNewExpr::getInitializer(), clang::APValue::getInt(), clang::ConstantArrayType::getMaxSizeBits(), clang::ConstantArrayType::getNumAddressingBits(), clang::CallExpr::getNumArgs(), clang::CXXNewExpr::getNumPlacementArgs(), clang::CXXNewExpr::getOperatorNew(), clang::CXXNewExpr::getPlacementArg(), clang::Type::getPointeeType(), clang::CharUnits::getQuantity(), clang::Expr::getType(), handleAssignment(), HandleIntToIntCast(), HandleLValueArrayAdjustment(), handleLValueToRValueConversion(), HandleOperatorNewCall(), HasSameBase(), clang::CXXNewExpr::isArray(), clang::Type::isArrayType(), clang::Type::isIncompleteType(), clang::APValue::isInt(), clang::Type::isNothrowT(), clang::FunctionDecl::isReplaceableGlobalAllocationFunction(), clang::FunctionDecl::isReservedGlobalPlacementOperator(), IsStringLiteralCall(), clang::QualType::isTriviallyCopyableType(), max(), clang::diff::Move, clang::ArrayType::Normal, Offset, clang::CharUnits::One(), clang::Result, and V.
Referenced by getBuiltinAlignArguments().
|
static |
Definition at line 8157 of file ExprConstant.cpp.
References GetAlignOfType(), clang::Expr::getType(), and clang::Expr::IgnoreParens().
Referenced by EvaluateComparisonBinaryOperator(), and getBaseAlignment().
|
static |
Definition at line 8130 of file ExprConstant.cpp.
References clang::Type::getAs(), clang::Type::getPointeeType(), clang::QualType::getQualifiers(), clang::QualType::getTypePtr(), clang::Qualifiers::hasUnaligned(), clang::CharUnits::One(), clang::UETT_AlignOf, clang::UETT_PreferredAlignOf, and clang::LangOptions::Ver7.
Referenced by EvaluateComparisonBinaryOperator(), GetAlignOfExpr(), and getBaseAlignment().
|
static |
Definition at line 8178 of file ExprConstant.cpp.
References GetAlignOfExpr(), GetAlignOfType(), and clang::UETT_AlignOf.
Referenced by getAlignmentArgument(), and getBuiltinAlignArguments().
|
static |
Definition at line 5015 of file ExprConstant.cpp.
Referenced by ComputeDynamicType(), and HandleVirtualDispatch().
|
static |
Get the base index of the given base class within an APValue representing the given derived class.
Definition at line 2914 of file ExprConstant.cpp.
References clang::CXXRecordDecl::getCanonicalDecl().
|
static |
Definition at line 10634 of file ExprConstant.cpp.
References clang::AK_Read, clang::CharUnits::alignmentAtOffset(), clang::analyze_os_log::computeOSLogBufferLayout(), clang::Error, EvaluateBuiltinClassifyType(), EvaluateBuiltinConstantP(), EvaluateFloat(), EvaluateInteger(), clang::Expr::EvaluateKnownConstInt(), EvaluatePointer(), clang::CharUnits::fromQuantity(), getAlignmentArgument(), clang::CallExpr::getArg(), getBaseAlignment(), clang::CallExpr::getBuiltinCallee(), clang::Expr::getExprLoc(), clang::NamedDecl::getIdentifier(), clang::APValue::getInt(), clang::Type::getPointeeType(), clang::CharUnits::getQuantity(), clang::Expr::getType(), handleAssignment(), HandleLValueArrayAdjustment(), handleLValueToRValueConversion(), clang::Expr::HasSideEffects(), clang::APValue::hasValue(), clang::Expr::IgnoreImpCasts(), clang::Type::isIncompleteType(), clang::Decl::isInStdNamespace(), clang::APValue::isInt(), clang::Type::isIntegralOrEnumerationType(), clang::APValue::isLValue(), clang::Expr::isNullPointerConstant(), clang::Type::isPointerType(), clang::CharUnits::isPowerOfTwo(), clang::Type::isSignedIntegerOrEnumerationType(), clang::IdentifierInfo::isStr(), max(), clang::Expr::NPC_NeverValueDependent, clang::CharUnits::One(), clang::Result, clang::analyze_os_log::OSLogBufferLayout::size(), and tryEvaluateBuiltinObjectSize().
|
static |
Attempts to compute the number of bytes available at the pointer returned by a function with the alloc_size attribute.
Returns true if we were successful. Places an unsigned number into Result
.
This expects the given CallExpr to be a call to a function with an alloc_size attribute.
Definition at line 7761 of file ExprConstant.cpp.
References clang::Expr::EvaluateAsInt(), clang::CallExpr::getArg(), clang::APValue::getInt(), clang::CallExpr::getNumArgs(), clang::ASTContext::getSizeType(), clang::ASTContext::getTypeSize(), clang::Expr::SE_AllowSideEffects, and clang::Expr::EvalResult::Val.
Referenced by determineEndOffset(), and getBytesReturnedByAllocSizeCall().
|
static |
Convenience function.
LVal's base must be a call to an alloc_size function.
Definition at line 7808 of file ExprConstant.cpp.
References getBytesReturnedByAllocSizeCall().
Get the value to use for a default-initialized object of type T.
Definition at line 4233 of file ExprConstant.cpp.
References distance(), and clang::Type::getAsCXXRecordDecl().
Referenced by EvaluateVarDecl(), getAlignmentArgument(), and HandleConstructorCall().
|
static |
Definition at line 1915 of file ExprConstant.cpp.
Referenced by HasSameBase(), IsWeakLValue(), and isZeroSized().
|
static |
Retrieves the "underlying object type" of the given expression, as used by __builtin_object_size.
Definition at line 10309 of file ExprConstant.cpp.
References clang::APValue::LValueBase::dyn_cast(), clang::APValue::LValueBase::getDynamicAllocType(), clang::Expr::getType(), clang::ValueDecl::getType(), clang::APValue::LValueBase::getTypeInfoType(), and clang::APValue::LValueBase::is().
Referenced by clang::Sema::checkInitMethod(), determineEndOffset(), clang::ObjCObjectPointerType::getInterfaceDecl(), clang::ObjCObjectPointerType::getInterfaceType(), clang::ObjCObjectPointerType::getNumProtocols(), clang::ObjCObjectPointerType::getProtocol(), clang::ObjCObjectPointerType::getSuperClassType(), clang::ObjCObjectPointerType::getTypeArgs(), clang::ObjCObjectPointerType::getTypeArgsAsWritten(), clang::ObjCObjectPointerType::isKindOfType(), clang::ObjCObjectPointerType::isObjCClassType(), clang::ObjCObjectPointerType::isObjCIdOrClassType(), clang::ObjCObjectPointerType::isObjCIdType(), clang::ObjCObjectPointerType::isObjCQualifiedClassType(), clang::ObjCObjectPointerType::isObjCQualifiedIdType(), clang::ObjCObjectPointerType::isSpecialized(), clang::ObjCObjectPointerType::isSpecializedAsWritten(), clang::ObjCObjectPointerType::isUnspecialized(), clang::ObjCObjectPointerType::qual_begin(), clang::ObjCObjectPointerType::qual_empty(), clang::ObjCObjectPointerType::qual_end(), and clang::ObjCObjectPointerType::stripObjCKindOfTypeAndQuals().
|
static |
Definition at line 3139 of file ExprConstant.cpp.
References clang::QualType::addConst(), clang::QualType::addVolatile(), clang::QualType::isConstQualified(), and clang::QualType::isVolatileQualified().
|
static |
Definition at line 6028 of file ExprConstant.cpp.
References clang::Type::getAsCXXRecordDecl().
Referenced by EvaluateAtomic().
|
static |
Perform an assignment of Val to LVal. Takes ownership of Val.
Definition at line 3782 of file ExprConstant.cpp.
References clang::AK_Assign, clang::APValue::ComplexFloat, clang::APValue::ComplexInt, findCompleteObject(), clang::APValue::Float, clang::Type::getAs(), clang::APValue::getFloat(), clang::APValue::getInt(), clang::APValue::getKind(), clang::Type::getPointeeType(), handleFloatFloatBinOp(), HandleFloatToFloatCast(), HandleFloatToIntCast(), handleIntIntBinOp(), HandleIntToFloatCast(), HandleIntToIntCast(), HandleLValueArrayAdjustment(), clang::APValue::Int, clang::QualType::isConstQualified(), clang::APValue::isFloat(), clang::APValue::isInt(), clang::Type::isIntegerType(), clang::QualType::isNull(), clang::APValue::LValue, modifySubobject(), negateAsSigned(), and Offset.
Referenced by getAlignmentArgument(), getBuiltinAlignArguments(), and HandleFunctionCall().
HandleBaseToDerivedCast - Apply the given base-to-derived cast operation on the provided lvalue, which currently refers to the base object.
Definition at line 4196 of file ExprConstant.cpp.
References CastToDerivedClass(), clang::CSK_Derived, clang::Type::getAs(), clang::Type::getAsCXXRecordDecl(), clang::CXXRecordDecl::getCanonicalDecl(), clang::Type::getPointeeType(), clang::Expr::getType(), and clang::CastExpr::path_size().
Referenced by EvaluatePointer().
|
static |
Perform zero-initialization on an object of non-union class type.
C++11 [dcl.init]p5: To zero-initialize an object or reference of type T means: [...] – if T is a (possibly cv-qualified) non-union class type, each non-static data member and each base-class subobject is zero-initialized
Definition at line 8923 of file ExprConstant.cpp.
References distance(), clang::RecordDecl::field_begin(), clang::RecordDecl::field_end(), clang::Decl::isInvalidDecl(), and clang::TagDecl::isUnion().
|
static |
Perform a compound assignment of LVal <op>= RVal.
Definition at line 3905 of file ExprConstant.cpp.
References clang::AK_Assign, clang::AK_Increment, clang::UnaryOperator::canOverflow(), clang::Type::castAs(), clang::APValue::ComplexFloat, clang::APValue::ComplexInt, findCompleteObject(), findSubobject(), clang::APValue::Float, clang::Type::getAs(), clang::APValue::getComplexFloatReal(), clang::APValue::getComplexIntReal(), clang::QualType::getCVRQualifiers(), clang::APValue::getFloat(), clang::APValue::getInt(), clang::APValue::getKind(), clang::Type::getPointeeType(), HandleLValueArrayAdjustment(), HandleOverflow(), clang::APValue::Int, clang::Type::isBooleanType(), clang::QualType::isConstQualified(), clang::Type::isIntegerType(), and clang::APValue::LValue.
|
static |
Evaluate a constructor call.
Definition at line 5534 of file ExprConstant.cpp.
References clang::CXXRecordDecl::bases_begin(), clang::C, clang::declaresSameEntity(), distance(), EvaluateInPlace(), EvaluateStmt(), clang::RecordDecl::field_begin(), clang::RecordDecl::field_end(), clang::FunctionDecl::getBody(), getDefaultInitValue(), clang::Expr::getExprLoc(), clang::FieldDecl::getFieldIndex(), clang::QualType::getNonReferenceType(), clang::CXXRecordDecl::getNumBases(), clang::CXXRecordDecl::getNumVBases(), clang::FunctionDecl::getParamDecl(), clang::CXXMethodDecl::getParent(), clang::FieldDecl::getParent(), clang::APValue::getStructBase(), clang::APValue::getStructField(), clang::CXXBaseSpecifier::getType(), clang::ValueDecl::getType(), clang::APValue::getUnionField(), clang::APValue::getUnionValue(), HandleLValueDirectBase(), HandleLValueMember(), handleLValueToRValueConversion(), hasFields(), clang::APValue::hasValue(), clang::CXXConstructorDecl::init_begin(), clang::CXXConstructorDecl::inits(), clang::FieldDecl::isBitField(), clang::CXXConstructorDecl::isCopyOrMoveConstructor(), clang::FunctionDecl::isDefaulted(), clang::CXXConstructorDecl::isDelegatingConstructor(), clang::Decl::isInvalidDecl(), clang::FunctionDecl::isTrivial(), clang::APValue::isUnion(), clang::TagDecl::isUnion(), clang::CXXBaseSpecifier::isVirtual(), clang::Result, Ret(), clang::interp::This(), and truncateBitfieldValue().
Referenced by HandleConstructorCall().
|
static |
Definition at line 5732 of file ExprConstant.cpp.
References EvaluateArgs(), HandleConstructorCall(), and clang::Result.
Definition at line 2286 of file ExprConstant.cpp.
References clang::APValue::AddrLabelDiff, clang::APValue::Array, clang::APValue::ComplexFloat, clang::APValue::ComplexInt, EvalPointerValueAsBool(), clang::APValue::FixedPoint, clang::APValue::Float, clang::APFixedPoint::getBoolValue(), clang::APValue::getComplexFloatImag(), clang::APValue::getComplexFloatReal(), clang::APValue::getComplexIntImag(), clang::APValue::getComplexIntReal(), clang::APValue::getFixedPoint(), clang::APValue::getFloat(), clang::APValue::getInt(), clang::APValue::getKind(), clang::APValue::getMemberPointerDecl(), clang::APValue::Indeterminate, clang::APValue::Int, clang::APValue::LValue, clang::APValue::MemberPointer, clang::APValue::None, clang::APValue::Struct, clang::APValue::Union, and clang::APValue::Vector.
Referenced by clang::Expr::EvaluateAsBooleanCondition(), EvaluateAsBooleanCondition(), and isOnePastTheEndOfCompleteObject().
|
static |
Perform the adjustment from a value returned by a virtual function to a value of the statically expected type, which may be a pointer or reference to a base class of the returned type.
Definition at line 5144 of file ExprConstant.cpp.
References CastToBaseClass(), clang::APValue::isLValue(), and clang::APValue::isNullPointer().
|
static |
Perform a destructor or pseudo-destructor call on the given object, which might in general not be a complete object.
Definition at line 5936 of file ExprConstant.cpp.
References clang::AK_Destroy, findCompleteObject(), findSubobject(), and clang::interp::This().
Referenced by EvaluateAtomic(), and clang::VarDecl::evaluateDestruction().
|
static |
Destroy and end the lifetime of the given complete object.
Definition at line 5944 of file ExprConstant.cpp.
References HandleDestructionImpl().
|
static |
Definition at line 5744 of file ExprConstant.cpp.
References clang::CXXRecordDecl::bases(), CheckConstexprFunction(), EvaluateStmt(), expandArray(), clang::RecordDecl::field_begin(), clang::RecordDecl::field_end(), clang::APValue::getArrayInitializedElt(), clang::APValue::getArrayInitializedElts(), clang::APValue::getArraySize(), clang::Type::getAsCXXRecordDecl(), clang::APValue::getAsString(), clang::FunctionDecl::getBody(), clang::CXXRecordDecl::getDestructor(), clang::Expr::getExprLoc(), clang::CXXRecordDecl::getNumBases(), clang::CXXRecordDecl::getNumVBases(), clang::APValue::getStructBase(), clang::APValue::getStructField(), HandleLValueArrayAdjustment(), HandleLValueDirectBase(), HandleLValueMember(), clang::CXXRecordDecl::hasTrivialDestructor(), clang::APValue::isAbsent(), clang::RecordDecl::isAnonymousStructOrUnion(), clang::QualType::isDestructedType(), clang::Type::isNullPtrType(), clang::FunctionDecl::isTrivial(), clang::TagDecl::isUnion(), Ret(), clang::interp::This(), and clang::VK_RValue.
Referenced by HandleDestruction().
|
static |
Apply the given dynamic cast operation on the provided lvalue.
This implements the hard case of dynamic_cast, requiring a "runtime check" to find a suitable target subobject.
Definition at line 5185 of file ExprConstant.cpp.
References clang::AK_DynamicCast, clang::C, CastToDerivedClass(), ComputeDynamicType(), clang::Type::getPointeeCXXRecordDecl(), clang::Expr::getType(), clang::ExplicitCastExpr::getTypeAsWritten(), clang::Expr::isGLValue(), and clang::Type::isVoidPointerType().
Referenced by EvaluatePointer().
|
static |
Perform the given binary floating-point operation, in-place, on LHS.
Definition at line 2585 of file ExprConstant.cpp.
Referenced by handleAssignment().
|
static |
Definition at line 2356 of file ExprConstant.cpp.
References clang::Result.
Referenced by EvaluateComplex(), and handleAssignment().
|
static |
Definition at line 2341 of file ExprConstant.cpp.
References HandleOverflow(), and clang::Type::isSignedIntegerOrEnumerationType().
Referenced by EvaluateComparisonBinaryOperator(), EvaluateComplex(), and handleAssignment().
|
static |
Evaluate a function call.
Definition at line 5471 of file ExprConstant.cpp.
References EvaluateArgs(), EvaluateStmt(), clang::Decl::getEndLoc(), clang::FunctionDecl::getReturnType(), handleAssignment(), handleLValueToRValueConversion(), HandleUnionActiveMemberChange(), hasFields(), clang::isLambdaCallOperator(), clang::APValue::isUnion(), clang::Type::isVoidType(), clang::Result, and Ret().
|
static |
Perform an increment or decrement on LVal.
Definition at line 4051 of file ExprConstant.cpp.
References clang::AK_Decrement, clang::AK_Increment, findCompleteObject(), and findSubobject().
|
static |
Perform the given binary integer operation.
Definition at line 2483 of file ExprConstant.cpp.
References CheckedIntArithmetic(), clang::Expr::getType(), and HandleOverflow().
Referenced by handleAssignment().
|
static |
Definition at line 2379 of file ExprConstant.cpp.
Referenced by EvaluateComplex(), and handleAssignment().
|
static |
Definition at line 2366 of file ExprConstant.cpp.
References clang::APFixedPoint::getBoolValue(), clang::Type::isBooleanType(), clang::Type::isUnsignedIntegerOrEnumerationType(), and clang::Result.
Referenced by EvaluateComparisonBinaryOperator(), EvaluateComplex(), getAlignmentArgument(), and handleAssignment().
|
static |
Update a pointer value to model pointer arithmetic.
Info | - Information about the ongoing evaluation. |
E | - The expression being evaluated, for diagnostic purposes. |
LVal | - The pointer value to be updated. |
EltTy | - The pointee type represented by LVal. |
Adjustment | - The adjustment, in objects of type EltTy, to add. |
Definition at line 2777 of file ExprConstant.cpp.
References clang::Expr::getExprLoc(), and HandleSizeof().
Referenced by EvaluatePointer(), getAlignmentArgument(), getBuiltinAlignArguments(), handleAssignment(), handleCompoundAssignment(), HandleDestructionImpl(), and HandleLValueArrayAdjustment().
|
static |
Definition at line 2788 of file ExprConstant.cpp.
References HandleLValueArrayAdjustment().
|
static |
Definition at line 2666 of file ExprConstant.cpp.
References CastToDerivedClass(), clang::Type::getAsCXXRecordDecl(), clang::CXXBaseSpecifier::getType(), clang::ASTRecordLayout::getVBaseClassOffset(), HandleLValueDirectBase(), clang::Decl::isInvalidDecl(), and clang::CXXBaseSpecifier::isVirtual().
Referenced by HandleLValueBasePath().
|
static |
Definition at line 2691 of file ExprConstant.cpp.
References clang::Type::getAsCXXRecordDecl(), HandleLValueBase(), clang::CastExpr::path_begin(), and clang::CastExpr::path_end().
Referenced by EvaluatePointer().
|
static |
Update an lvalue to refer to a component of a complex number.
Info | - Information about the ongoing evaluation. |
LVal | - The lvalue to be updated. |
EltTy | - The complex number's component type. |
Imag | - False for the real component, true for the imaginary. |
Definition at line 2800 of file ExprConstant.cpp.
References clang::Expr::getExprLoc(), and HandleSizeof().
|
static |
Definition at line 2652 of file ExprConstant.cpp.
References clang::Decl::isInvalidDecl().
Referenced by HandleConstructorCall(), HandleDestructionImpl(), HandleLValueBase(), and HandleMemberPointerAccess().
|
static |
Update LVal to refer to the given indirect field.
Definition at line 2736 of file ExprConstant.cpp.
References clang::C, clang::IndirectFieldDecl::chain(), and HandleLValueMember().
|
static |
Update LVal to refer to the given field, which must be a member of the type currently described by LVal.
Definition at line 2721 of file ExprConstant.cpp.
References clang::FieldDecl::getFieldIndex(), clang::FieldDecl::getParent(), and clang::Decl::isInvalidDecl().
Referenced by EvaluateLValue(), evaluateLValueAsAllocSize(), HandleConstructorCall(), HandleDestructionImpl(), and HandleLValueIndirectMember().
|
static |
Perform an lvalue-to-rvalue conversion on the given glvalue.
This can also be used for 'lvalue-to-lvalue' conversions for looking up the glvalue referred to by an entity of reference type.
Info | - Information about the ongoing evaluation. |
Conv | - The expression for which we are performing the conversion. Used for diagnostics. |
Type | - The type of the glvalue (before stripping cv-qualifiers in the case of a non-class type). |
LVal | - The glvalue on which we are attempting to perform this action. |
RVal | - The produced value will be placed here. |
WantObjectRepresentation | - If true, we're looking for the object representation rather than the value, and in particular, there is no requirement that the result be fully initialized. |
Definition at line 3726 of file ExprConstant.cpp.
References clang::AK_Read, clang::AK_ReadObjectRepresentation, Evaluate(), extractStringLiteralCharacter(), extractSubobject(), findCompleteObject(), clang::Expr::getType(), and clang::QualType::isVolatileQualified().
Referenced by EvaluateAsRValue(), EvaluateComparisonBinaryOperator(), EvaluateLValue(), evaluateLValueAsAllocSize(), EvaluatePointer(), getAlignmentArgument(), getBuiltinAlignArguments(), HandleConstructorCall(), and HandleFunctionCall().
|
static |
HandleMemberPointerAccess - Evaluate a member access operation and build an lvalue referring to the result.
Info | - Information about the ongoing evaluation. |
LV | - An lvalue referring to the base of the member pointer. |
RHS | - The member pointer expression. |
IncludeMember | - Specifies whether the member itself is included in the resulting LValue subobject designator. This is not possible when creating a bound member function. |
Definition at line 4094 of file ExprConstant.cpp.
References CastToDerivedClass(), EvaluateMemberPointer(), clang::Type::getAs(), clang::Type::getAsCXXRecordDecl(), clang::CXXRecordDecl::getCanonicalDecl(), clang::Type::getPointeeType(), and HandleLValueDirectBase().
Referenced by HandleMemberPointerAccess().
|
static |
Definition at line 4176 of file ExprConstant.cpp.
References EvaluateMemberPointer(), EvaluateObjectArgument(), clang::BinaryOperator::getLHS(), clang::BinaryOperator::getOpcode(), clang::BinaryOperator::getRHS(), clang::Expr::getType(), and HandleMemberPointerAccess().
Definition at line 6088 of file ExprConstant.cpp.
References CheckDeleteKind(), EvaluateIgnoredValue(), EvaluatePointer(), clang::CallExpr::getArg(), clang::Expr::getExprLoc(), clang::CallExpr::getNumArgs(), clang::CharUnits::getQuantity(), Offset, and Pointer.
Referenced by EvaluateAtomic().
Perform a call to 'perator new' or to `__builtin_operator_new'.
Definition at line 5958 of file ExprConstant.cpp.
References EvaluateIgnoredValue(), EvaluateInteger(), clang::CallExpr::getArg(), clang::Expr::getExprLoc(), clang::ConstantArrayType::getMaxSizeBits(), clang::CallExpr::getNumArgs(), clang::CharUnits::getQuantity(), clang::Expr::getType(), HandleSizeof(), clang::Type::isFunctionType(), clang::Type::isIncompleteType(), clang::Type::isNothrowT(), and clang::ArrayType::Normal.
Referenced by getAlignmentArgument().
|
static |
Definition at line 2334 of file ExprConstant.cpp.
Referenced by CheckedIntArithmetic(), EvaluateComparisonBinaryOperator(), handleCompoundAssignment(), HandleFloatToIntCast(), and handleIntIntBinOp().
|
static |
Get the size of the given type in char units.
Definition at line 2746 of file ExprConstant.cpp.
References clang::Type::isConstantSizeType(), clang::Type::isDependentType(), clang::Type::isFunctionType(), clang::Type::isVoidType(), and clang::CharUnits::One().
Referenced by determineEndOffset(), EvaluateComparisonBinaryOperator(), HandleLValueArrayAdjustment(), HandleLValueComplexElement(), and HandleOperatorNewCall().
|
static |
Handle a builtin simple-assignment or a call to a trivial assignment operator whose left-hand side might involve a union member access.
If it does, implicitly start the lifetime of any accessed union elements per C++20 [class.union]5.
Definition at line 5317 of file ExprConstant.cpp.
References clang::declaresSameEntity(), clang::Type::getAsCXXRecordDecl(), clang::Type::getBaseElementTypeUnsafe(), and clang::ValueDecl::getType().
Referenced by HandleFunctionCall().
|
static |
Perform virtual dispatch.
Definition at line 5079 of file ExprConstant.cpp.
References clang::AK_Destroy, clang::AK_MemberCall, ComputeDynamicType(), getBaseClassType(), clang::CXXMethodDecl::getCorrespondingMethodDeclaredInClass(), clang::Decl::getLocation(), clang::FunctionDecl::getReturnType(), and clang::FunctionDecl::isPure().
|
static |
Determine if a class has any fields that might need to be copied by a trivial copy or move operation.
Definition at line 5412 of file ExprConstant.cpp.
References clang::CXXRecordDecl::bases(), clang::RecordDecl::fields(), and clang::CXXRecordDecl::isEmpty().
Referenced by HandleConstructorCall(), and HandleFunctionCall().
|
static |
Definition at line 1942 of file ExprConstant.cpp.
References clang::Decl::getCanonicalDecl(), GetLValueBaseDecl(), and IsGlobalLValue().
Referenced by EvaluateComparisonBinaryOperator(), and getAlignmentArgument().
|
static |
Definition at line 13700 of file ExprConstant.cpp.
References clang::Expr::EvalStatus::HasSideEffects, clang::Expr::EvalStatus::HasUndefinedBehavior, clang::Expr::SE_AllowSideEffects, and clang::Expr::SE_AllowUndefinedBehavior.
Referenced by EvaluateAsFixedPoint(), clang::Expr::EvaluateAsFloat(), EvaluateAsInt(), and clang::Expr::isEvaluatable().
Definition at line 6021 of file ExprConstant.cpp.
References clang::Type::getAsCXXRecordDecl().
Referenced by EvaluateAtomic().
A more selective version of E->IgnoreParenCasts for tryEvaluateBuiltinObjectSize.
This ignores some casts/parens that serve only to change the type of E. Ex. For E = (short*)((char*)(&foo))
, returns &foo
Always returns an RValue with a pointer representation.
Definition at line 10331 of file ExprConstant.cpp.
References clang::interp::Cast(), clang::Expr::getType(), clang::Type::hasPointerRepresentation(), clang::Expr::IgnoreParens(), and clang::Expr::isRValue().
Referenced by tryEvaluateBuiltinObjectSize().
|
static |
Definition at line 1411 of file ExprConstant.cpp.
References isModification(), and isRead().
Referenced by findCompleteObject(), and isFormalAccess().
|
static |
Determine whether Base
, which is known to be a direct base class of Derived
, is a public base class.
Definition at line 5171 of file ExprConstant.cpp.
References clang::AS_public, clang::CXXRecordDecl::bases(), and clang::declaresSameEntity().
Definition at line 2907 of file ExprConstant.cpp.
References clang::QualType::getQualifiers(), clang::Qualifiers::hasConst(), and clang::Qualifiers::hasVolatile().
Referenced by CheckICE().
|
static |
Checks to see if the given LValue's Designator is at the end of the LValue's record layout.
e.g. struct { struct { int a, b; } fst, snd; } obj; obj.fst // no obj.snd // yes obj.fst.a // no obj.fst.b // no obj.snd.a // no obj.snd.b // yes
Please note: this function is specialized for how __builtin_object_size views "objects".
If this encounters an invalid RecordDecl or otherwise cannot determine the correct result, it will always return true.
Definition at line 10367 of file ExprConstant.cpp.
References clang::Type::castAs(), clang::ASTContext::getAsArrayType(), clang::ASTContext::getASTRecordLayout(), clang::ArrayType::getElementType(), clang::ASTRecordLayout::getFieldCount(), clang::FieldDecl::getFieldIndex(), clang::FieldDecl::getParent(), clang::Type::isArrayType(), clang::Type::isIncompleteArrayType(), clang::Decl::isInvalidDecl(), clang::TagDecl::isUnion(), and Parent.
Referenced by isUserWritingOffTheEnd().
|
static |
Is this an access per the C++ definition?
Definition at line 1416 of file ExprConstant.cpp.
References clang::AK_Construct, clang::AK_Destroy, clang::APValue::getComplexFloatImag(), clang::APValue::getComplexFloatReal(), clang::APValue::getComplexIntImag(), clang::APValue::getComplexIntReal(), isAnyAccess(), clang::APValue::isComplexFloat(), clang::APValue::isComplexInt(), and v.
Referenced by findCompleteObject(), and findSubobject().
|
static |
Definition at line 1855 of file ExprConstant.cpp.
References clang::APValue::LValueBase::dyn_cast(), clang::APValue::LValueBase::get(), clang::Stmt::getStmtClass(), clang::APValue::LValueBase::is(), clang::CompoundLiteralExpr::isFileScope(), clang::Expr::isLValue(), IsStringLiteralCall(), and clang::SD_Static.
Referenced by CheckLValueConstantExpression(), HasSameBase(), and clang::Expr::EvalResult::isGlobalLValue().
|
static |
Definition at line 1919 of file ExprConstant.cpp.
Referenced by EvaluateComparisonBinaryOperator().
|
static |
Definition at line 1393 of file ExprConstant.cpp.
References clang::AK_Assign, clang::AK_Construct, clang::AK_Decrement, clang::AK_Destroy, clang::AK_DynamicCast, clang::AK_Increment, clang::AK_MemberCall, clang::AK_Read, clang::AK_ReadObjectRepresentation, and clang::AK_TypeId.
Referenced by findCompleteObject(), findSubobject(), and isAnyAccess().
|
static |
Determine whether this is a pointer past the end of the complete object referred to by the lvalue.
Definition at line 11308 of file ExprConstant.cpp.
References clang::Error, Evaluate(), clang::BinaryOperator::getLHS(), clang::BinaryOperator::getOpcode(), clang::BinaryOperator::getRHS(), clang::Expr::getType(), clang::ASTContext::getTypeSizeInChars(), HandleConversionToBool(), clang::Expr::IgnoreParens(), clang::Type::isIncompleteType(), clang::Type::isIntegralOrEnumerationType(), clang::BinaryOperator::isLogicalOp(), clang::Expr::isRValue(), and clang::APValue::swap().
Referenced by EvaluateComparisonBinaryOperator().
|
static |
Definition at line 1389 of file ExprConstant.cpp.
References clang::AK_Read, and clang::AK_ReadObjectRepresentation.
Referenced by isAnyAccess(), and clang::PipeType::isReadOnly().
Determine whether a type would actually be read by an lvalue-to-rvalue conversion.
If it's of class type, we may assume that the copy operation is trivial. Note that this is never true for a union type with fields (because the copy always "reads" the active member) and always true for a non-class type.
Definition at line 3009 of file ExprConstant.cpp.
References clang::CXXRecordDecl::bases(), clang::RecordDecl::field_empty(), clang::RecordDecl::fields(), clang::Type::getAsCXXRecordDecl(), clang::Type::getBaseElementTypeUnsafe(), clang::CXXRecordDecl::isEmpty(), and clang::TagDecl::isUnion().
Referenced by diagnoseMutableFields().
Should this call expression be treated as a string literal?
Definition at line 1849 of file ExprConstant.cpp.
References clang::CallExpr::getBuiltinCallee().
Referenced by getAlignmentArgument(), and IsGlobalLValue().
|
static |
Attempts to detect a user writing into a piece of memory that's impossible to figure out the size of by just using types.
Definition at line 10459 of file ExprConstant.cpp.
References isDesignatorAtObjectEnd().
Referenced by determineEndOffset().
|
static |
Definition at line 1926 of file ExprConstant.cpp.
References GetLValueBaseDecl(), and clang::ValueDecl::isWeak().
Referenced by EvaluateComparisonBinaryOperator().
|
static |
Definition at line 1931 of file ExprConstant.cpp.
References clang::Decl::getASTContext(), GetLValueBaseDecl(), clang::ValueDecl::getType(), clang::ASTContext::getTypeSize(), clang::Type::isArrayType(), and clang::Type::isIncompleteType().
Referenced by EvaluateComparisonBinaryOperator().
|
static |
Definition at line 3062 of file ExprConstant.cpp.
References clang::declaresSameEntity(), clang::APValue::LValueBase::dyn_cast(), and clang::APValue::LValueBase::getCallIndex().
Referenced by findCompleteObject().
Definition at line 9601 of file ExprConstant.cpp.
References clang::Error, clang::APValue::getArrayFiller(), clang::InitListExpr::getArrayFiller(), clang::APValue::getArrayInitializedElt(), clang::APValue::getArrayInitializedElts(), clang::InitListExpr::getInit(), clang::InitListExpr::getNumInits(), clang::ConstantArrayType::getSize(), clang::Expr::getType(), clang::APValue::hasArrayFiller(), clang::InitListExpr::hasArrayFiller(), clang::APValue::hasValue(), clang::Expr::IgnoreParens(), clang::APValue::isArray(), clang::QualType::isNull(), clang::InitListExpr::isStringLiteralInit(), and clang::interp::This().
|
static |
Update the designated sub-object of an rvalue to the given value.
Definition at line 3439 of file ExprConstant.cpp.
References findSubobject().
Referenced by handleAssignment().
|
static |
Negate an APSInt in place, converting it to a signed form if necessary, and preserving its value (by extending by up to one bit as needed).
Definition at line 1756 of file ExprConstant.cpp.
Referenced by EvaluatePointer(), and handleAssignment().
|
static |
Definition at line 14048 of file ExprConstant.cpp.
Referenced by CheckICE().
|
static |
Definition at line 1963 of file ExprConstant.cpp.
References clang::APValue::LValueBase::dyn_cast(), clang::Expr::getExprLoc(), and clang::Decl::getLocation().
Referenced by CheckDeleteKind(), CheckLValueConstantExpression(), and findCompleteObject().
|
static |
Tests to see if the LValue has a user-specified designator (that isn't necessarily valid).
Note that this always returns 'true' if the LValue has an unsized array as its first designator entry, because there's currently no way to tell if the user typed *foo or foo[0].
Definition at line 10441 of file ExprConstant.cpp.
Referenced by determineEndOffset().
|
static |
Definition at line 2388 of file ExprConstant.cpp.
References clang::FieldDecl::getBitWidthValue(), clang::APValue::getInt(), clang::FieldDecl::isBitField(), clang::APValue::isInt(), and clang::APValue::isLValue().
Referenced by findSubobject(), and HandleConstructorCall().
|
static |
Definition at line 12669 of file ExprConstant.cpp.
|
static |
Tries to evaluate the __builtin_object_size for E
.
If successful, returns true and stores the result in Size
.
If WasError
is non-null, this will report whether the failure to evaluate is to be treated as an Error in IntExprEvaluator.
Definition at line 10577 of file ExprConstant.cpp.
References determineEndOffset(), EvaluateAsRValue(), EvaluatePointer(), clang::ConstantExpr::getAPValueResult(), clang::CallExpr::getBuiltinCallee(), clang::Expr::getExprLoc(), clang::ConstantExpr::getResultAPValueKind(), ignorePointerCastsAndParens(), clang::Expr::isGLValue(), and clang::APValue::None.
Referenced by getBuiltinAlignArguments().
|
static |
Definition at line 14050 of file ExprConstant.cpp.
Referenced by CheckICE().