|
LLDB mainline
|
#include <DILEval.h>
Public Member Functions | |
| Interpreter (lldb::TargetSP target, llvm::StringRef expr, StackFrame &stack_frame, lldb::DynamicValueType use_dynamic, uint32_t options) | |
| llvm::Expected< lldb::ValueObjectSP > | Evaluate (const ASTNode &node) |
| Evaluate an ASTNode. | |
Private Member Functions | |
| llvm::Expected< lldb::ValueObjectSP > | EvaluateAndDereference (const ASTNode &node) |
| Evaluate an ASTNode. | |
| llvm::Expected< lldb::ValueObjectSP > | Visit (const IdentifierNode &node) override |
| llvm::Expected< lldb::ValueObjectSP > | Visit (const MemberOfNode &node) override |
| llvm::Expected< lldb::ValueObjectSP > | Visit (const UnaryOpNode &node) override |
| llvm::Expected< lldb::ValueObjectSP > | Visit (const BinaryOpNode &node) override |
| llvm::Expected< lldb::ValueObjectSP > | Visit (const ArraySubscriptNode &node) override |
| llvm::Expected< lldb::ValueObjectSP > | Visit (const BitFieldExtractionNode &node) override |
| llvm::Expected< lldb::ValueObjectSP > | Visit (const IntegerLiteralNode &node) override |
| llvm::Expected< lldb::ValueObjectSP > | Visit (const FloatLiteralNode &node) override |
| llvm::Expected< lldb::ValueObjectSP > | Visit (const BooleanLiteralNode &node) override |
| llvm::Expected< lldb::ValueObjectSP > | Visit (const CastNode &node) override |
| llvm::Expected< lldb::ValueObjectSP > | UnaryConversion (lldb::ValueObjectSP valobj, uint32_t location) |
| Perform usual unary conversions on a value. | |
| llvm::Expected< CompilerType > | PromoteSignedInteger (CompilerType &lhs_type, CompilerType &rhs_type) |
| If lhs_type is unsigned and rhs_type is signed, check whether it can represent all of the values of lhs_type. | |
| llvm::Expected< CompilerType > | ArithmeticConversion (lldb::ValueObjectSP &lhs, lldb::ValueObjectSP &rhs, uint32_t location) |
| Perform an arithmetic conversion on two values from an arithmetic operation. | |
| llvm::Expected< lldb::ValueObjectSP > | PointerOffset (lldb::ValueObjectSP ptr, lldb::ValueObjectSP offset, BinaryOpKind operation, uint32_t location) |
| Add or subtract the offset to the pointer according to the pointee type byte size. | |
| llvm::Expected< lldb::ValueObjectSP > | EvaluateScalarOp (BinaryOpKind kind, lldb::ValueObjectSP lhs, lldb::ValueObjectSP rhs, CompilerType result_type, uint32_t location) |
| llvm::Expected< lldb::ValueObjectSP > | EvaluateBinaryShift (BinaryOpKind kind, lldb::ValueObjectSP lhs, lldb::ValueObjectSP rhs, uint32_t location) |
| llvm::Expected< lldb::ValueObjectSP > | EvaluateBinaryAddition (lldb::ValueObjectSP lhs, lldb::ValueObjectSP rhs, uint32_t location) |
| llvm::Expected< lldb::ValueObjectSP > | EvaluateBinarySubtraction (lldb::ValueObjectSP lhs, lldb::ValueObjectSP rhs, uint32_t location) |
| llvm::Expected< lldb::ValueObjectSP > | EvaluateBinaryMultiplication (lldb::ValueObjectSP lhs, lldb::ValueObjectSP rhs, uint32_t location) |
| llvm::Expected< lldb::ValueObjectSP > | EvaluateBinaryDivision (lldb::ValueObjectSP lhs, lldb::ValueObjectSP rhs, uint32_t location) |
| llvm::Expected< lldb::ValueObjectSP > | EvaluateBinaryRemainder (lldb::ValueObjectSP lhs, lldb::ValueObjectSP rhs, uint32_t location) |
| llvm::Expected< CompilerType > | PickIntegerType (lldb::TypeSystemSP type_system, ExecutionContextScope &ctx, const IntegerLiteralNode &literal) |
| llvm::Expected< lldb::ValueObjectSP > | EvaluateAssignment (lldb::ValueObjectSP lhs, lldb::ValueObjectSP rhs, uint32_t location) |
| llvm::Expected< CastKind > | VerifyArithmeticCast (CompilerType source_type, CompilerType target_type, int location) |
| A helper function for VerifyCastType (below). | |
| llvm::Expected< CastKind > | VerifyCastType (lldb::ValueObjectSP operand, CompilerType source_type, CompilerType target_type, int location) |
| As a preparation for type casting, compare the requested 'target' type of the cast with the type of the operand to be cast. | |
| Private Member Functions inherited from lldb_private::dil::Visitor | |
| virtual | ~Visitor ()=default |
Private Attributes | |
| lldb::TargetSP | m_target |
| llvm::StringRef | m_expr |
| lldb::ValueObjectSP | m_scope |
| StackFrame & | m_stack_frame |
| lldb::DynamicValueType | m_use_dynamic |
| bool | m_use_synthetic |
| bool | m_check_ptr_vs_member |
| bool | m_allow_var_updates |
| bool | m_allow_globals = true |
| lldb_private::dil::Interpreter::Interpreter | ( | lldb::TargetSP | target, |
| llvm::StringRef | expr, | ||
| StackFrame & | stack_frame, | ||
| lldb::DynamicValueType | use_dynamic, | ||
| uint32_t | options ) |
Definition at line 399 of file DILEval.cpp.
References lldb_private::StackFrame::eExpressionPathOptionCheckPtrVsMember, lldb_private::StackFrame::eExpressionPathOptionsAllowVarUpdates, lldb_private::StackFrame::eExpressionPathOptionsDisallowGlobals, lldb_private::StackFrame::eExpressionPathOptionsNoSyntheticChildren, m_allow_globals, m_allow_var_updates, m_check_ptr_vs_member, m_expr, m_stack_frame, m_target, m_use_dynamic, and m_use_synthetic.
|
private |
Perform an arithmetic conversion on two values from an arithmetic operation.
Definition at line 203 of file DILEval.cpp.
References lldb_private::CompilerType::CompareTypes(), lldb_private::dil::ConversionRank(), lldb_private::CompilerType::IsInteger(), lldb_private::CompilerType::IsScalarType(), lldb_private::CompilerType::IsSigned(), m_expr, PromoteSignedInteger(), and UnaryConversion().
Referenced by EvaluateBinaryAddition(), EvaluateBinaryDivision(), EvaluateBinaryMultiplication(), EvaluateBinaryRemainder(), and EvaluateBinarySubtraction().
| llvm::Expected< lldb::ValueObjectSP > lldb_private::dil::Interpreter::Evaluate | ( | const ASTNode & | node | ) |
Evaluate an ASTNode.
Definition at line 420 of file DILEval.cpp.
References lldb_private::dil::ASTNode::Accept(), lldb_private::dil::ASTNode::GetLocation(), and m_expr.
Referenced by lldb_private::StackFrame::DILGetValueForVariableExpressionPath(), EvaluateAndDereference(), Visit(), Visit(), Visit(), and Visit().
|
private |
Evaluate an ASTNode.
If the result is a reference, it is also dereferenced using ValueObject::Dereference.
Definition at line 433 of file DILEval.cpp.
References error(), and Evaluate().
|
private |
Definition at line 880 of file DILEval.cpp.
References m_allow_var_updates, and lldb_private::dil::VerifyAssignmentTypes().
Referenced by Visit().
|
private |
Definition at line 648 of file DILEval.cpp.
References lldb_private::dil::Add, ArithmeticConversion(), EvaluateScalarOp(), lldb_private::CompilerType::IsScalarType(), m_expr, and PointerOffset().
Referenced by Visit().
|
private |
Definition at line 785 of file DILEval.cpp.
References ArithmeticConversion(), lldb_private::dil::Div, EvaluateScalarOp(), lldb_private::CompilerType::IsInteger(), lldb_private::CompilerType::IsScalarType(), and m_expr.
Referenced by Visit().
|
private |
Definition at line 763 of file DILEval.cpp.
References ArithmeticConversion(), EvaluateScalarOp(), lldb_private::CompilerType::IsScalarType(), m_expr, and lldb_private::dil::Mul.
Referenced by Visit().
|
private |
Definition at line 813 of file DILEval.cpp.
References ArithmeticConversion(), EvaluateScalarOp(), lldb_private::CompilerType::IsInteger(), m_expr, and lldb_private::dil::Rem.
Referenced by Visit().
|
private |
Definition at line 895 of file DILEval.cpp.
References EvaluateScalarOp(), lldb_private::CompilerType::GetBitSize(), lldb_private::CompilerType::GetTypeName(), lldb_private::CompilerType::IsInteger(), m_expr, m_stack_frame, and UnaryConversion().
Referenced by Visit().
|
private |
Definition at line 686 of file DILEval.cpp.
References ArithmeticConversion(), lldb_private::CompilerType::CompareTypes(), lldb_private::ValueObject::CreateValueObjectFromScalar(), EvaluateScalarOp(), lldb_private::CompilerType::GetByteSize(), lldb_private::CompilerType::GetCanonicalType(), lldb_private::CompilerType::GetPointeeType(), lldb_private::dil::GetTypeSystemFromCU(), lldb_private::CompilerType::IsScalarType(), m_expr, m_stack_frame, PointerOffset(), and lldb_private::dil::Sub.
Referenced by Visit().
|
private |
Definition at line 604 of file DILEval.cpp.
References lldb_private::dil::Add, lldb_private::ValueObject::CreateValueObjectFromScalar(), lldb_private::dil::Div, l, m_expr, m_stack_frame, lldb_private::dil::Mul, lldb_private::dil::Rem, lldb_private::dil::Shl, lldb_private::dil::Shr, and lldb_private::dil::Sub.
Referenced by EvaluateBinaryAddition(), EvaluateBinaryDivision(), EvaluateBinaryMultiplication(), EvaluateBinaryRemainder(), EvaluateBinaryShift(), and EvaluateBinarySubtraction().
|
private |
Definition at line 1287 of file DILEval.cpp.
References lldb::eBasicTypeInt, lldb::eBasicTypeInvalid, lldb::eBasicTypeLong, lldb::eBasicTypeLongLong, lldb::eBasicTypeUnsignedInt, lldb::eBasicTypeUnsignedLong, lldb::eBasicTypeUnsignedLongLong, lldb_private::CompilerType::GetBitSize(), lldb_private::dil::ASTNode::GetLocation(), lldb_private::dil::IntegerLiteralNode::GetRadix(), lldb_private::dil::IntegerLiteralNode::GetTypeSuffix(), lldb_private::dil::IntegerLiteralNode::GetValue(), lldb_private::dil::IntegerLiteralNode::IsUnsigned(), lldb_private::dil::Long, m_expr, and lldb_private::dil::None.
Referenced by Visit().
|
private |
Add or subtract the offset to the pointer according to the pointee type byte size.
Definition at line 568 of file DILEval.cpp.
References lldb_private::dil::Add, lldb_private::ValueObject::CreateValueObjectFromScalar(), m_expr, m_stack_frame, m_target, and lldb_private::dil::Sub.
Referenced by EvaluateBinaryAddition(), and EvaluateBinarySubtraction().
|
private |
If lhs_type is unsigned and rhs_type is signed, check whether it can represent all of the values of lhs_type.
If not, then promote rhs_type to the unsigned version of its type. This expects that Rank(lhs_type) < Rank(rhs_type).
Definition at line 176 of file DILEval.cpp.
References lldb_private::dil::BasicTypeToUnsigned(), lldb_private::dil::GetBasicType(), lldb_private::CompilerType::GetBasicTypeEnumeration(), lldb_private::CompilerType::GetBitSize(), lldb_private::CompilerType::GetCanonicalType(), lldb_private::dil::GetTypeSystemFromCU(), lldb_private::CompilerType::IsInteger(), lldb_private::CompilerType::IsSigned(), and m_stack_frame.
Referenced by ArithmeticConversion().
|
private |
Perform usual unary conversions on a value.
At the moment this includes array-to-pointer and integral promotion for eligible types.
Definition at line 60 of file DILEval.cpp.
References lldb_private::dil::ArrayToPointerConversion(), lldb_private::ValueObject::CreateValueObjectFromScalar(), lldb::eBasicTypeInt, lldb::eBasicTypeUnsignedInt, lldb_private::dil::GetBasicType(), lldb_private::CompilerType::GetBitSize(), lldb_private::dil::GetTypeSystemFromCU(), lldb_private::CompilerType::IsArrayType(), lldb_private::CompilerType::IsInteger(), lldb_private::CompilerType::IsSigned(), m_expr, and m_stack_frame.
Referenced by ArithmeticConversion(), EvaluateBinaryShift(), and Visit().
|
private |
A helper function for VerifyCastType (below).
This performs arithmetic-specific checks. It should only be called if the target_type is a scalar type.
Definition at line 1386 of file DILEval.cpp.
References lldb_private::dil::eArithmetic, lldb_private::Expressions, lldb_private::CompilerType::GetByteSize(), lldb_private::GetLog(), lldb_private::CompilerType::GetTypeInfo(), lldb_private::CompilerType::IsBoolean(), lldb_private::CompilerType::IsEnumerationType(), lldb_private::CompilerType::IsNullPtrType(), lldb_private::CompilerType::IsPointerType(), lldb_private::CompilerType::IsScalarType(), LLDB_LOG_ERROR, m_expr, m_stack_frame, and lldb_private::CompilerType::TypeDescription().
Referenced by VerifyCastType().
|
private |
As a preparation for type casting, compare the requested 'target' type of the cast with the type of the operand to be cast.
If the cast is allowed, return the appropriate CastKind for the cast; otherwise return an error.
Definition at line 1453 of file DILEval.cpp.
References lldb_private::dil::eEnumeration, lldb_private::dil::ePointer, lldb_private::CompilerType::IsArrayType(), lldb_private::CompilerType::IsEnumerationType(), lldb_private::CompilerType::IsInteger(), lldb_private::CompilerType::IsNullPtrType(), lldb_private::CompilerType::IsPointerType(), lldb_private::CompilerType::IsScalarType(), m_expr, lldb_private::CompilerType::TypeDescription(), and VerifyArithmeticCast().
Referenced by Visit().
|
overrideprivatevirtual |
Implements lldb_private::dil::Visitor.
Definition at line 1086 of file DILEval.cpp.
References lldb::eLanguageTypeObjC, lldb::eNoDynamicValues, Evaluate(), EvaluateAndDereference(), lldb_private::dil::ArraySubscriptNode::GetBase(), lldb_private::StreamString::GetData(), lldb_private::dil::ArraySubscriptNode::GetIndex(), lldb_private::dil::ASTNode::GetLocation(), lldb_private::CompilerType::IsArrayType(), lldb_private::CompilerType::IsPointerToVoid(), lldb_private::CompilerType::IsPointerType(), lldb_private::CompilerType::IsScalarType(), m_expr, m_use_dynamic, and m_use_synthetic.
|
overrideprivatevirtual |
Implements lldb_private::dil::Visitor.
Definition at line 935 of file DILEval.cpp.
References lldb_private::dil::Add, lldb_private::dil::AddAssign, lldb_private::dil::Assign, lldb_private::dil::Div, EvaluateAndDereference(), EvaluateAssignment(), EvaluateBinaryAddition(), EvaluateBinaryDivision(), EvaluateBinaryMultiplication(), EvaluateBinaryRemainder(), EvaluateBinaryShift(), EvaluateBinarySubtraction(), lldb_private::dil::BinaryOpNode::GetKind(), lldb_private::dil::BinaryOpNode::GetLHS(), lldb_private::dil::ASTNode::GetLocation(), lldb_private::dil::BinaryOpNode::GetRHS(), m_expr, lldb_private::dil::Mul, lldb_private::dil::Rem, lldb_private::dil::Shl, lldb_private::dil::Shr, lldb_private::dil::Sub, and lldb_private::dil::SubAssign.
|
overrideprivatevirtual |
Implements lldb_private::dil::Visitor.
Definition at line 1242 of file DILEval.cpp.
References EvaluateAndDereference(), lldb_private::dil::BitFieldExtractionNode::GetBase(), lldb_private::dil::BitFieldExtractionNode::GetFirstIndex(), lldb_private::dil::BitFieldExtractionNode::GetLastIndex(), lldb_private::dil::ASTNode::GetLocation(), and m_expr.
|
overrideprivatevirtual |
Implements lldb_private::dil::Visitor.
Definition at line 1375 of file DILEval.cpp.
References lldb_private::ValueObject::CreateValueObjectFromBool(), lldb_private::dil::GetTypeSystemFromCU(), lldb_private::dil::BooleanLiteralNode::GetValue(), and m_stack_frame.
|
overrideprivatevirtual |
Implements lldb_private::dil::Visitor.
Definition at line 1498 of file DILEval.cpp.
References lldb_private::dil::ArrayToPointerConversion(), lldb_private::ValueObject::CreateValueObjectFromAddress(), lldb_private::dil::eArithmetic, lldb_private::dil::eEnumeration, lldb_private::dil::eNone, lldb_private::dil::ePointer, error(), Evaluate(), lldb_private::dil::ASTNode::GetLocation(), lldb_private::CompilerType::GetNonReferenceType(), lldb_private::dil::CastNode::GetOperand(), lldb_private::dil::CastNode::GetType(), lldb_private::CompilerType::GetTypeInfo(), lldb_private::CompilerType::IsArrayType(), lldb_private::CompilerType::IsEnumerationType(), lldb_private::CompilerType::IsInteger(), lldb_private::CompilerType::IsNullPtrType(), lldb_private::CompilerType::IsPointerType(), lldb_private::CompilerType::IsReferenceType(), lldb_private::CompilerType::IsScalarType(), lldb_private::CompilerType::IsSigned(), m_expr, m_stack_frame, m_target, lldb_private::CompilerType::TypeDescription(), and VerifyCastType().
|
overrideprivatevirtual |
Implements lldb_private::dil::Visitor.
Definition at line 1353 of file DILEval.cpp.
References lldb_private::ValueObject::CreateValueObjectFromScalar(), lldb::eBasicTypeDouble, lldb::eBasicTypeFloat, lldb_private::dil::GetBasicType(), lldb_private::dil::ASTNode::GetLocation(), lldb_private::dil::GetTypeSystemFromCU(), lldb_private::dil::FloatLiteralNode::GetValue(), m_expr, and m_stack_frame.
|
overrideprivatevirtual |
Implements lldb_private::dil::Visitor.
Definition at line 449 of file DILEval.cpp.
References lldb_private::dil::ASTNode::GetLocation(), lldb_private::dil::IdentifierNode::GetName(), lldb_private::dil::LookupEnumValue(), lldb_private::dil::LookupGlobalIdentifier(), lldb_private::dil::LookupIdentifier(), m_allow_globals, m_expr, m_stack_frame, m_target, and m_use_dynamic.
|
overrideprivatevirtual |
Implements lldb_private::dil::Visitor.
Definition at line 1326 of file DILEval.cpp.
References lldb_private::ValueObject::CreateValueObjectFromScalar(), lldb_private::dil::GetTypeSystemFromCU(), lldb_private::dil::IntegerLiteralNode::GetValue(), m_stack_frame, lldb_private::Scalar::MakeSigned(), PickIntegerType(), and lldb_private::Scalar::TruncOrExtendTo().
|
overrideprivatevirtual |
Implements lldb_private::dil::Visitor.
Definition at line 990 of file DILEval.cpp.
References lldb::eNoDynamicValues, Evaluate(), lldb_private::Status::Fail(), lldb_private::dil::MemberOfNode::GetBase(), lldb_private::dil::MemberOfNode::GetFieldName(), lldb_private::dil::MemberOfNode::GetIsArrow(), lldb_private::dil::ASTNode::GetLocation(), lldb_private::CompilerType::GetPointeeType(), m_check_ptr_vs_member, m_expr, m_use_dynamic, m_use_synthetic, and lldb_private::Status::Success().
|
overrideprivatevirtual |
Implements lldb_private::dil::Visitor.
Definition at line 473 of file DILEval.cpp.
References lldb_private::dil::AddrOf, lldb_private::ValueObject::CreateValueObjectFromScalar(), lldb_private::dil::Deref, error(), Evaluate(), lldb_private::dil::UnaryOpNode::GetKind(), lldb_private::dil::ASTNode::GetLocation(), lldb_private::dil::UnaryOpNode::GetOperand(), lldb_private::CompilerType::GetTypeName(), lldb_private::CompilerType::IsPointerType(), lldb_private::CompilerType::IsScalarType(), m_expr, m_stack_frame, m_use_dynamic, m_use_synthetic, lldb_private::dil::Minus, lldb_private::dil::Plus, UnaryConversion(), and lldb_private::Scalar::UnaryNegate().
|
private |
Definition at line 162 of file DILEval.h.
Referenced by Interpreter(), and Visit().
|
private |
Definition at line 161 of file DILEval.h.
Referenced by EvaluateAssignment(), and Interpreter().
|
private |
Definition at line 160 of file DILEval.h.
Referenced by Interpreter(), and Visit().
|
private |
Definition at line 155 of file DILEval.h.
Referenced by ArithmeticConversion(), Evaluate(), EvaluateBinaryAddition(), EvaluateBinaryDivision(), EvaluateBinaryMultiplication(), EvaluateBinaryRemainder(), EvaluateBinaryShift(), EvaluateBinarySubtraction(), EvaluateScalarOp(), Interpreter(), PickIntegerType(), PointerOffset(), UnaryConversion(), VerifyArithmeticCast(), VerifyCastType(), Visit(), Visit(), Visit(), Visit(), Visit(), Visit(), Visit(), and Visit().
|
private |
|
private |
Definition at line 157 of file DILEval.h.
Referenced by EvaluateBinaryShift(), EvaluateBinarySubtraction(), EvaluateScalarOp(), Interpreter(), PointerOffset(), PromoteSignedInteger(), UnaryConversion(), VerifyArithmeticCast(), Visit(), Visit(), Visit(), Visit(), Visit(), and Visit().
|
private |
Definition at line 154 of file DILEval.h.
Referenced by Interpreter(), PointerOffset(), Visit(), and Visit().
|
private |
|
private |