Home | History | Annotate | Download | only in AST

Lines Matching refs:APValue

36 #include "clang/AST/APValue.h"
55 static bool IsGlobalLValue(APValue::LValueBase B);
62 static QualType getType(APValue::LValueBase B) {
90 APValue::BaseOrMemberType getAsBaseOrMember(APValue::LValuePathEntry E) {
91 APValue::BaseOrMemberType Value;
98 static const FieldDecl *getAsField(APValue::LValuePathEntry E) {
103 static const CXXRecordDecl *getAsBaseClass(APValue::LValuePathEntry E) {
108 static bool isVirtualBaseClass(APValue::LValuePathEntry E) {
116 ArrayRef<APValue::LValuePathEntry> Path,
181 typedef APValue::LValuePathEntry PathEntry;
193 SubobjectDesignator(ASTContext &Ctx, const APValue &V)
254 APValue::BaseOrMemberType Value(D, Virtual);
327 APValue *Arguments;
331 typedef std::map<const void*, APValue> MapTy;
338 APValue *Arguments);
341 APValue *getTemporary(const void *Key) {
345 APValue &createTemporary(const void *Key, bool IsLifetimeExtended);
410 llvm::PointerIntPair<APValue*, 1, bool> Value;
413 Cleanup(APValue *Val, bool IsLifetimeExtended)
418 *Value.getPointer() = APValue();
466 APValue::LValueBase EvaluatingDecl;
470 APValue *EvaluatingDeclValue;
546 void setEvaluatingDecl(APValue::LValueBase Base, APValue &Value) {
898 APValue *Arguments)
911 APValue &CallStackFrame::createTemporary(const void *Key,
913 APValue &Result = Temporaries[Key];
972 void moveInto(APValue &v) const {
974 v = APValue(FloatReal, FloatImag);
976 v = APValue(IntReal, IntImag);
978 void setFrom(const APValue &v) {
993 APValue::LValueBase Base;
999 const APValue::LValueBase getLValueBase() const { return Base; }
1006 void moveInto(APValue &V) const {
1008 V = APValue(Base, Offset, APValue::NoLValuePath(), CallIndex);
1010 V = APValue(Base, Offset, Designator.Entries,
1013 void setFrom(ASTContext &Ctx, const APValue &V) {
1022 void set(APValue::LValueBase B, unsigned I = 0, bool BInvalid = false) {
1030 void setInvalid(APValue::LValueBase B, unsigned I = 0) {
1095 void moveInto(APValue &V) const {
1096 V = APValue(getDecl(), isDerivedMember(), Path);
1098 void setFrom(const APValue &V) {
1174 static bool Evaluate(APValue &Result, EvalInfo &Info, const Expr *E);
1175 static bool EvaluateInPlace(APValue &Result, EvalInfo &Info,
1184 static bool EvaluateIntegerOrLValue(const Expr *E, APValue &Result,
1188 static bool EvaluateAtomic(const Expr *E, APValue &Result, EvalInfo &Info);
1189 static bool EvaluateAsRValue(EvalInfo &Info, const Expr *E, APValue &Result);
1206 APValue Val;
1221 const APValue &Arg = Frame->Arguments[ArgIndex];
1235 APValue Scratch;
1256 static bool IsGlobalLValue(APValue::LValueBase B) {
1312 static void NoteLValueLocation(EvalInfo &Info, APValue::LValueBase Base) {
1329 APValue::LValueBase Base = LVal.getLValueBase();
1428 QualType Type, const APValue &Value) {
1515 static bool EvalPointerValueAsBool(const APValue &Value, bool &Result) {
1530 static bool HandleConversionToBool(const APValue &Val, bool &Result) {
1532 case APValue::Uninitialized:
1534 case APValue::Int:
1537 case APValue::Float:
1540 case APValue::ComplexInt:
1544 case APValue::ComplexFloat:
1548 case APValue::LValue:
1550 case APValue::MemberPointer:
1553 case APValue::Vector:
1554 case APValue::Array:
1555 case APValue::Struct:
1556 case APValue::Union:
1557 case APValue::AddrLabelDiff:
1561 llvm_unreachable("unknown APValue kind");
1567 APValue Val;
1632 APValue &Value, const FieldDecl *FD) {
1654 APValue SVal;
1673 APValue &Elt = SVal.getVectorElt(i);
2029 APValue *&Result) {
2101 /// Get the base index of the given base class within an APValue representing
2138 APValue &Result) {
2147 Result = APValue(APValue::UninitArray(),
2152 Result.getArrayFiller() = APValue(Value);
2155 Result.getArrayInitializedElt(I) = APValue(Value);
2160 static void expandArray(APValue &Array, unsigned Index) {
2170 APValue NewValue(APValue::UninitArray(), NewElts, Size);
2251 APValue *Value;
2256 CompleteObject(APValue *Value, QualType Type)
2282 APValue *O = Obj.Value;
2334 // An array object is represented as either an Array APValue or as an
2436 APValue &Result;
2442 bool found(APValue &Subobj, QualType SubobjType) {
2447 Result = APValue(Value);
2451 Result = APValue(Value);
2454 bool foundString(APValue &Subobj, QualType SubobjType, uint64_t Character) {
2455 Result = APValue(extractStringLiteralCharacter(
2468 APValue &Result) {
2476 APValue &NewVal;
2492 bool found(APValue &Subobj, QualType SubobjType) {
2516 bool foundString(APValue &Subobj, QualType SubobjType, uint64_t Character) {
2528 APValue &NewVal) {
2624 APValue *BaseVal = nullptr;
2796 const LValue &LVal, APValue &RVal) {
2800 // Check for special cases where there is no existing APValue to look at.
2812 APValue Lit;
2821 APValue Str(Base, CharUnits::Zero(), APValue::NoLValuePath(), 0);
2833 QualType LValType, APValue &Val) {
2857 const APValue &RHS;
2873 bool found(APValue &Subobj, QualType SubobjType) {
2875 case APValue::Int:
2877 case APValue::Float:
2879 case APValue::ComplexInt:
2880 case APValue::ComplexFloat:
2884 case APValue::LValue:
2917 bool foundPointer(APValue &Subobj, QualType SubobjType) {
2942 bool foundString(APValue &Subobj, QualType SubobjType, uint64_t Character) {
2954 BinaryOperatorKind Opcode, const APValue &RVal) {
2974 APValue *Old;
2988 bool found(APValue &Subobj, QualType SubobjType) {
2997 case APValue::Int:
2999 case APValue::Float:
3001 case APValue::ComplexInt:
3005 case APValue::ComplexFloat:
3009 case APValue::LValue:
3028 if (Old) *Old = APValue(Value);
3066 if (Old) *Old = APValue(Value);
3075 bool foundPointer(APValue &Subobj, QualType SubobjType) {
3095 bool foundString(APValue &Subobj, QualType SubobjType, uint64_t Character) {
3103 QualType LValType, bool IsIncrement, APValue *Old) {
3308 APValue &Val = Info.CurrentCall->createTemporary(VD, true);
3314 Val = APValue();
3324 Val = APValue();
3344 /// The APValue that should be filled in with the returned value.
3345 APValue &Value;
3786 typedef SmallVector<APValue, 8> ArgVector;
3810 EvalInfo &Info, APValue &Result,
3821 // For a trivial copy or move assignment, perform an APValue copy. This is
3835 APValue RHSValue;
3860 EvalInfo &Info, APValue &Result) {
3876 // FIXME: Creating an APValue just to hold a nonexistent return value is
3878 APValue RetVal;
3892 // For a trivial copy or move constructor, perform an APValue copy. This is
3911 Result = APValue(APValue::UninitStruct(), RD->getNumBases(),
3927 APValue *Value = &Result;
3949 Result = APValue(FD);
3968 *Value = APValue(FD);
3970 *Value = APValue(APValue::UninitStruct(), CD->getNumBases(),
4010 bool DerivedSuccess(const APValue &V, const Expr *E) {
4137 APValue Result;
4181 if (APValue *Value = Info.CurrentCall->getTemporary(E))
4195 APValue Result;
4201 bool handleCallExpr(const CallExpr *E, APValue &Result,
4310 APValue Val;
4326 APValue Result;
4337 APValue AtomicVal;
4351 APValue RVal;
4376 APValue RVal;
4407 APValue ReturnValue;
4444 bool Success(APValue::LValueBase B) {
4453 bool Success(const APValue &V, const Expr *E) {
4494 APValue RefValue;
4649 APValue *V;
4676 APValue *Value;
4679 *Value = APValue();
4693 *Value = APValue();
4822 APValue RHS;
4844 APValue NewVal;
4877 bool Success(const APValue &V, const Expr *E) {
5009 APValue Value;
5180 bool Success(const APValue &V, const Expr *E) {
5258 APValue &Result;
5261 RecordExprEvaluator(EvalInfo &info, const LValue &This, APValue &Result)
5264 bool Success(const APValue &V, const Expr *E) {
5289 const LValue &This, APValue &Result) {
5292 Result = APValue(APValue::UninitStruct(), CD ? CD->getNumBases() : 0,
5338 Result = APValue((const FieldDecl*)nullptr);
5345 Result = APValue(*I);
5368 APValue DerivedObject;
5375 APValue *Value = &DerivedObject;
5397 Result = APValue(Field);
5422 Result = APValue(APValue::UninitStruct(), 0,
5451 APValue &FieldVal = Result.getStructField(Field->getFieldIndex());
5531 Result = APValue(APValue::UninitStruct(), 0, 2);
5548 Result.getStructField(1) = APValue(APSInt(ArrayType->getSize()));
5559 APValue &Result, EvalInfo &Info) {
5623 APValue &Result;
5626 VectorExprEvaluator(EvalInfo &info, APValue &Result)
5629 bool Success(ArrayRef<APValue> V, const Expr *E) {
5631 // FIXME: remove this APValue copy.
5632 Result = APValue(V.data(), V.size());
5635 bool Success(const APValue &V, const Expr *E) {
5653 static bool EvaluateVector(const Expr* E, APValue& Result, EvalInfo &Info) {
5667 APValue Val = APValue();
5672 Val = APValue(std::move(IntResult));
5677 Val = APValue(std::move(FloatResult));
5682 // Splat and create vector APValue.
5683 SmallVector<APValue, 4> Elts(NElts, Val);
5695 SmallVector<APValue, 4> Elts;
5707 Elts.push_back(APValue(APFloat(Sem, Elt)));
5716 Elts.push_back(APValue(APSInt(Elt, EltTy->isSignedIntegerType())));
5735 SmallVector<APValue, 4> Elements;
5746 APValue v;
5760 Elements.push_back(APValue(sInt));
5769 Elements.push_back(APValue(f));
5781 APValue ZeroElement;
5783 ZeroElement = APValue(Info.Ctx.MakeIntValue(0, EltTy));
5786 APValue(APFloat::getZero(Info.Ctx.getFloatTypeSemantics(EltTy)));
5788 SmallVector<APValue, 4> Elements(VT->getNumElements(), ZeroElement);
5805 APValue &Result;
5808 ArrayExprEvaluator(EvalInfo &Info, const LValue &This, APValue &Result)
5811 bool Success(const APValue &V, const Expr *E) {
5824 Result = APValue(APValue::UninitArray(), 0,
5842 APValue *Value, QualType Type);
5847 APValue &Result, EvalInfo &Info) {
5863 APValue Val;
5872 APValue Filler;
5885 Result = APValue(APValue::UninitArray(), NumEltsToInit, NumElts);
5927 APValue *Value,
5935 APValue Filler =
5937 : APValue();
5939 *Value = APValue(APValue::UninitArray(), N, N);
5996 // either as an integer-valued APValue, or as an lvalue-valued APValue.
6002 APValue &Result;
6004 IntExprEvaluator(EvalInfo &info, APValue &result)
6007 bool Success(const llvm::APSInt &SI, const Expr *E, APValue &Result) {
6014 Result = APValue(SI);
6021 bool Success(const llvm::APInt &I, const Expr *E, APValue &Result) {
6026 Result = APValue(APSInt(I));
6035 bool Success(uint64_t Value, const Expr *E, APValue &Result) {
6038 Result = APValue(Info.Ctx.MakeIntValue(Value, E->getType()));
6049 bool Success(const APValue &V, const Expr *E) {
6139 static bool EvaluateIntegerOrLValue(const Expr *E, APValue &Result,
6146 APValue Val;
6275 APValue &V = Result.Val;
6276 if (V.getKind() == APValue::Int)
6278 if (V.getKind() == APValue::LValue)
6298 static QualType getObjectType(APValue::LValueBase B) {
6450 APValue RVal;
6768 APValue Char;
6882 APValue Val;
6925 APValue &FinalResult;
6928 DataRecursiveIntBinOpEvaluator(IntExprEvaluator &IntEval, APValue &Result)
6955 bool Success(uint64_t Value, const Expr *E, APValue &Result) {
6958 bool Success(const APSInt &Value, const Expr *E, APValue &Result) {
6977 const BinaryOperator *E, APValue &Result);
6982 Result.Val = APValue();
7044 const BinaryOperator *E, APValue &Result) {
7082 const APValue &LHSVal = LHSResult.Val;
7083 const APValue &RHSVal = RHSResult.Val;
7123 Result = APValue(LHSAddrExpr, RHSAddrExpr);
7321 return Success(APValue(LHSAddrExpr, RHSAddrExpr), E);
7906 bool Success(const APValue &V, const Expr *e) {
8136 bool Success(const APValue &V, const Expr *e) {
8619 APValue &Result;
8621 AtomicExprEvaluator(EvalInfo &Info, APValue &Result)
8624 bool Success(const APValue &V, const Expr *E) {
8646 static bool EvaluateAtomic(const Expr *E, APValue &Result, EvalInfo &Info) {
8662 bool Success(const APValue &V, const Expr *e) { return true; }
8696 static bool Evaluate(APValue &Result, EvalInfo &Info, const Expr *E) {
8720 Result = APValue(F);
8735 APValue &Value = Info.CurrentCall->createTemporary(E, false);
8742 APValue &Value = Info.CurrentCall->createTemporary(E, false);
8766 /// EvaluateInPlace - Evaluate an expression in-place in an APValue. In some
8769 static bool EvaluateInPlace(APValue &Result, EvalInfo &Info, const LValue &This,
8791 static bool EvaluateAsRValue(EvalInfo &Info, const Expr *E, APValue &Result) {
8817 Result.Val = APValue(APSInt(L->getValue(),
8896 bool Expr::EvaluateAsInitializer(APValue &Value, const ASTContext &Ctx,
9410 APValue Result;
9456 bool Expr::isCXX11ConstantExpr(const ASTContext &Ctx, APValue *Result,
9468 APValue Scratch;
9482 bool Expr::EvaluateWithSubstitution(APValue &Value, ASTContext &Ctx,
9494 ArgValues[I - Args.begin()] = APValue();
9533 APValue Scratch;
9565 APValue ResultScratch;