LLDB mainline
ValueObjectConstResultCast.cpp
Go to the documentation of this file.
1//===-- ValueObjectConstResultCast.cpp ------------------------------------===//
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
10
11namespace lldb_private {
12class DataExtractor;
13}
14namespace lldb_private {
15class Status;
16}
17namespace lldb_private {
18class ValueObject;
19}
20
21using namespace lldb_private;
22
24 ValueObject &parent, ConstString name, const CompilerType &cast_type,
25 lldb::addr_t live_address)
26 : ValueObjectCast(parent, name, cast_type), m_impl(this, live_address) {
27 m_name = name;
28}
29
31
33 return m_impl.Dereference(error);
34}
35
37 uint32_t offset, const CompilerType &type, bool can_create,
38 ConstString name_const_str) {
39 return m_impl.GetSyntheticChildAtOffset(offset, type, can_create,
40 name_const_str);
41}
42
44 return m_impl.AddressOf(error);
45}
46
48 size_t idx, bool synthetic_array_member, int32_t synthetic_index) {
49 return m_impl.CreateChildAtIndex(idx, synthetic_array_member,
50 synthetic_index);
51}
52
54 uint32_t item_idx,
55 uint32_t item_count) {
56 return m_impl.GetPointeeData(data, item_idx, item_count);
57}
58
61 return m_impl.Cast(compiler_type);
62}
static llvm::raw_ostream & error(Stream &strm)
Generic representation of a type in a programming language.
Definition: CompilerType.h:36
A uniqued constant string class.
Definition: ConstString.h:40
An data extractor class.
Definition: DataExtractor.h:48
An error handling class.
Definition: Status.h:44
A ValueObject that represents a given value represented as a different type.
lldb::ValueObjectSP DoCast(const CompilerType &compiler_type) override
size_t GetPointeeData(DataExtractor &data, uint32_t item_idx=0, uint32_t item_count=1) override
ValueObject * CreateChildAtIndex(size_t idx, bool synthetic_array_member, int32_t synthetic_index) override
Should only be called by ValueObject::GetChildAtIndex().
lldb::ValueObjectSP GetSyntheticChildAtOffset(uint32_t offset, const CompilerType &type, bool can_create, ConstString name_const_str=ConstString()) override
lldb::ValueObjectSP AddressOf(Status &error) override
lldb::ValueObjectSP Dereference(Status &error) override
ValueObjectConstResultCast(ValueObject &parent, ConstString name, const CompilerType &cast_type, lldb::addr_t live_address=LLDB_INVALID_ADDRESS)
lldb::ValueObjectSP GetSyntheticChildAtOffset(uint32_t offset, const CompilerType &type, bool can_create, ConstString name_const_str=ConstString())
virtual size_t GetPointeeData(DataExtractor &data, uint32_t item_idx=0, uint32_t item_count=1)
ValueObject * CreateChildAtIndex(size_t idx, bool synthetic_array_member, int32_t synthetic_index)
lldb::ValueObjectSP Cast(const CompilerType &compiler_type)
lldb::ValueObjectSP Dereference(Status &error)
ConstString m_name
The name of this object.
Definition: ValueObject.h:844
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
uint64_t addr_t
Definition: lldb-types.h:79