|
LLDB mainline
|
#include <DILEval.h>
Public Member Functions | |
| Interpreter (lldb::TargetSP target, llvm::StringRef expr, std::shared_ptr< StackFrame > frame_sp, 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 > | 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, std::shared_ptr< ExecutionContextScope > ctx, const IntegerLiteralNode &literal) |
| 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 |
| std::shared_ptr< StackFrame > | m_exe_ctx_scope |
| 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, | ||
| std::shared_ptr< StackFrame > | frame_sp, | ||
| lldb::DynamicValueType | use_dynamic, | ||
| uint32_t | options ) |
Definition at line 372 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_exe_ctx_scope, m_expr, m_target, m_use_dynamic, and m_use_synthetic.
|
private |
Perform an arithmetic conversion on two values from an arithmetic operation.
Definition at line 202 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 393 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 406 of file DILEval.cpp.
References error(), and Evaluate().
|
private |
Definition at line 612 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 749 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 727 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 777 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 650 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_exe_ctx_scope, m_expr, PointerOffset(), and lldb_private::dil::Sub.
Referenced by Visit().
|
private |
Definition at line 574 of file DILEval.cpp.
References lldb_private::dil::Add, lldb_private::ValueObject::CreateValueObjectFromScalar(), lldb_private::dil::Div, l, m_exe_ctx_scope, m_expr, lldb_private::dil::Mul, lldb_private::dil::Rem, and lldb_private::dil::Sub.
Referenced by EvaluateBinaryAddition(), EvaluateBinaryDivision(), EvaluateBinaryMultiplication(), EvaluateBinaryRemainder(), and EvaluateBinarySubtraction().
|
private |
Definition at line 1140 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 537 of file DILEval.cpp.
References lldb_private::dil::Add, lldb_private::ValueObject::CreateValueObjectFromScalar(), m_exe_ctx_scope, m_expr, 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 173 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_exe_ctx_scope.
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 57 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_exe_ctx_scope, and m_expr.
Referenced by ArithmeticConversion(), 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 1236 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_exe_ctx_scope, m_expr, 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 1303 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 939 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 805 of file DILEval.cpp.
References lldb_private::dil::Add, lldb_private::dil::Div, EvaluateAndDereference(), EvaluateBinaryAddition(), EvaluateBinaryDivision(), EvaluateBinaryMultiplication(), EvaluateBinaryRemainder(), 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, and lldb_private::dil::Sub.
|
overrideprivatevirtual |
Implements lldb_private::dil::Visitor.
Definition at line 1095 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 1225 of file DILEval.cpp.
References lldb_private::ValueObject::CreateValueObjectFromBool(), lldb_private::dil::GetTypeSystemFromCU(), lldb_private::dil::BooleanLiteralNode::GetValue(), and m_exe_ctx_scope.
|
overrideprivatevirtual |
Implements lldb_private::dil::Visitor.
Definition at line 1348 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_exe_ctx_scope, m_expr, m_target, lldb_private::CompilerType::TypeDescription(), and VerifyCastType().
|
overrideprivatevirtual |
Implements lldb_private::dil::Visitor.
Definition at line 1203 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_exe_ctx_scope, and m_expr.
|
overrideprivatevirtual |
Implements lldb_private::dil::Visitor.
Definition at line 422 of file DILEval.cpp.
References lldb_private::dil::ASTNode::GetLocation(), lldb_private::dil::IdentifierNode::GetName(), lldb_private::dil::LookupGlobalIdentifier(), lldb_private::dil::LookupIdentifier(), m_allow_globals, m_exe_ctx_scope, m_expr, m_target, and m_use_dynamic.
|
overrideprivatevirtual |
Implements lldb_private::dil::Visitor.
Definition at line 1179 of file DILEval.cpp.
References lldb_private::ValueObject::CreateValueObjectFromScalar(), lldb_private::dil::GetTypeSystemFromCU(), lldb_private::dil::IntegerLiteralNode::GetValue(), m_exe_ctx_scope, PickIntegerType(), and lldb_private::Scalar::TruncOrExtendTo().
|
overrideprivatevirtual |
Implements lldb_private::dil::Visitor.
Definition at line 843 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 442 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_exe_ctx_scope, m_expr, m_use_dynamic, m_use_synthetic, lldb_private::dil::Minus, lldb_private::dil::Plus, UnaryConversion(), and lldb_private::Scalar::UnaryNegate().
|
private |
Definition at line 149 of file DILEval.h.
Referenced by Interpreter(), and Visit().
|
private |
Definition at line 148 of file DILEval.h.
Referenced by Interpreter().
|
private |
Definition at line 146 of file DILEval.h.
Referenced by Interpreter(), and Visit().
|
private |
Definition at line 143 of file DILEval.h.
Referenced by EvaluateBinarySubtraction(), EvaluateScalarOp(), Interpreter(), PointerOffset(), PromoteSignedInteger(), UnaryConversion(), VerifyArithmeticCast(), Visit(), Visit(), Visit(), Visit(), Visit(), and Visit().
|
private |
Definition at line 141 of file DILEval.h.
Referenced by ArithmeticConversion(), Evaluate(), EvaluateBinaryAddition(), EvaluateBinaryDivision(), EvaluateBinaryMultiplication(), EvaluateBinaryRemainder(), EvaluateBinarySubtraction(), EvaluateScalarOp(), Interpreter(), PickIntegerType(), PointerOffset(), UnaryConversion(), VerifyArithmeticCast(), VerifyCastType(), Visit(), Visit(), Visit(), Visit(), Visit(), Visit(), Visit(), and Visit().
|
private |
|
private |
Definition at line 140 of file DILEval.h.
Referenced by Interpreter(), PointerOffset(), Visit(), and Visit().
|
private |
|
private |