LLDB mainline
ValueObjectCast.h
Go to the documentation of this file.
1//===-- ValueObjectCast.h ---------------------------------------*- C++ -*-===//
2//
3// Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions.
4// See https://llvm.org/LICENSE.txt for license information.
5// SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception
6//
7//===----------------------------------------------------------------------===//
8
9#ifndef LLDB_CORE_VALUEOBJECTCAST_H
10#define LLDB_CORE_VALUEOBJECTCAST_H
11
14#include "lldb/lldb-defines.h"
16#include "lldb/lldb-forward.h"
17
18#include <cstddef>
19#include <cstdint>
20#include <optional>
21
22namespace lldb_private {
23class ConstString;
24
25/// A ValueObject that represents a given value represented as a different type.
27public:
28 ~ValueObjectCast() override;
29
31 ConstString name,
32 const CompilerType &cast_type);
33
34 std::optional<uint64_t> GetByteSize() override;
35
36 llvm::Expected<uint32_t> CalculateNumChildren(uint32_t max) override;
37
38 lldb::ValueType GetValueType() const override;
39
40 bool IsInScope() override;
41
42 ValueObject *GetParent() override {
43 return ((m_parent != nullptr) ? m_parent->GetParent() : nullptr);
44 }
45
46 const ValueObject *GetParent() const override {
47 return ((m_parent != nullptr) ? m_parent->GetParent() : nullptr);
48 }
49
50protected:
52 const CompilerType &cast_type);
53
54 bool UpdateValue() override;
55
57
59
60private:
62 const ValueObjectCast &operator=(const ValueObjectCast &) = delete;
63};
64
65} // namespace lldb_private
66
67#endif // LLDB_CORE_VALUEOBJECTCAST_H
Generic representation of a type in a programming language.
Definition: CompilerType.h:36
A uniqued constant string class.
Definition: ConstString.h:40
A ValueObject that represents a given value represented as a different type.
CompilerType GetCompilerTypeImpl() override
llvm::Expected< uint32_t > CalculateNumChildren(uint32_t max) override
Should only be called by ValueObject::GetNumChildren().
const ValueObjectCast & operator=(const ValueObjectCast &)=delete
ValueObject * GetParent() override
ValueObjectCast(const ValueObjectCast &)=delete
static lldb::ValueObjectSP Create(ValueObject &parent, ConstString name, const CompilerType &cast_type)
std::optional< uint64_t > GetByteSize() override
lldb::ValueType GetValueType() const override
const ValueObject * GetParent() const override
ValueObject * m_parent
The parent value object, or nullptr if this has no parent.
Definition: ValueObject.h:835
virtual ValueObject * GetParent()
Definition: ValueObject.h:748
A class that represents a running process on the host machine.
Definition: SBAttachInfo.h:14
std::shared_ptr< lldb_private::ValueObject > ValueObjectSP
Definition: lldb-forward.h:472