LLDB mainline
Public Member Functions | Private Attributes | List of all members
lldb_private::formatters::LibcxxStdSliceArraySyntheticFrontEnd Class Reference

Data formatter for libc++'s std::slice_array. More...

Inheritance diagram for lldb_private::formatters::LibcxxStdSliceArraySyntheticFrontEnd:
Inheritance graph
[legend]

Public Member Functions

 LibcxxStdSliceArraySyntheticFrontEnd (lldb::ValueObjectSP valobj_sp)
 
 ~LibcxxStdSliceArraySyntheticFrontEnd () override
 
llvm::Expected< uint32_t > CalculateNumChildren () override
 
lldb::ValueObjectSP GetChildAtIndex (uint32_t idx) override
 
lldb::ChildCacheState Update () override
 This function is assumed to always succeed and if it fails, the front-end should know to deal with it in the correct way (most probably, by refusing to return any children).
 
bool MightHaveChildren () override
 
size_t GetIndexOfChildWithName (ConstString name) override
 
- Public Member Functions inherited from lldb_private::SyntheticChildrenFrontEnd
 SyntheticChildrenFrontEnd (ValueObject &backend)
 
virtual ~SyntheticChildrenFrontEnd ()=default
 
virtual llvm::Expected< uint32_t > CalculateNumChildren ()=0
 
virtual llvm::Expected< uint32_t > CalculateNumChildren (uint32_t max)
 
uint32_t CalculateNumChildrenIgnoringErrors (uint32_t max=UINT32_MAX)
 
virtual lldb::ValueObjectSP GetChildAtIndex (uint32_t idx)=0
 
virtual size_t GetIndexOfChildWithName (ConstString name)=0
 
virtual lldb::ChildCacheState Update ()=0
 This function is assumed to always succeed and if it fails, the front-end should know to deal with it in the correct way (most probably, by refusing to return any children).
 
virtual bool MightHaveChildren ()=0
 
virtual lldb::ValueObjectSP GetSyntheticValue ()
 
virtual ConstString GetSyntheticTypeName ()
 

Private Attributes

ValueObjectm_start = nullptr
 A non-owning pointer to slice_array.__vp_.
 
size_t m_size = 0
 slice_array.__size_.
 
size_t m_stride = 0
 slice_array.__stride_.
 
CompilerType m_element_type
 The type of slice_array's template argument T.
 
uint32_t m_element_size = 0
 The sizeof slice_array's template argument T.
 

Additional Inherited Members

- Public Types inherited from lldb_private::SyntheticChildrenFrontEnd
typedef std::shared_ptr< SyntheticChildrenFrontEndSharedPointer
 
typedef std::unique_ptr< SyntheticChildrenFrontEndAutoPointer
 
- Protected Member Functions inherited from lldb_private::SyntheticChildrenFrontEnd
void SetValid (bool valid)
 
bool IsValid ()
 
lldb::ValueObjectSP CreateValueObjectFromExpression (llvm::StringRef name, llvm::StringRef expression, const ExecutionContext &exe_ctx)
 
lldb::ValueObjectSP CreateValueObjectFromAddress (llvm::StringRef name, uint64_t address, const ExecutionContext &exe_ctx, CompilerType type)
 
lldb::ValueObjectSP CreateValueObjectFromData (llvm::StringRef name, const DataExtractor &data, const ExecutionContext &exe_ctx, CompilerType type)
 
- Protected Attributes inherited from lldb_private::SyntheticChildrenFrontEnd
ValueObjectm_backend
 

Detailed Description

Data formatter for libc++'s std::slice_array.

A slice_array is created by using: operator[](std::slice slicearr); and std::slice is created by: slice(std::size_t start, std::size_t size, std::size_t stride); The std::slice_array has the following members:

Definition at line 53 of file LibCxxSliceArray.cpp.

Constructor & Destructor Documentation

◆ LibcxxStdSliceArraySyntheticFrontEnd()

lldb_private::formatters::LibcxxStdSliceArraySyntheticFrontEnd::LibcxxStdSliceArraySyntheticFrontEnd ( lldb::ValueObjectSP  valobj_sp)

Definition at line 85 of file LibCxxSliceArray.cpp.

References Update().

◆ ~LibcxxStdSliceArraySyntheticFrontEnd()

lldb_private::formatters::LibcxxStdSliceArraySyntheticFrontEnd::~LibcxxStdSliceArraySyntheticFrontEnd ( )
override

Definition at line 92 of file LibCxxSliceArray.cpp.

Member Function Documentation

◆ CalculateNumChildren()

llvm::Expected< uint32_t > lldb_private::formatters::LibcxxStdSliceArraySyntheticFrontEnd::CalculateNumChildren ( )
overridevirtual

Implements lldb_private::SyntheticChildrenFrontEnd.

Definition at line 99 of file LibCxxSliceArray.cpp.

◆ GetChildAtIndex()

lldb::ValueObjectSP lldb_private::formatters::LibcxxStdSliceArraySyntheticFrontEnd::GetChildAtIndex ( uint32_t  idx)
overridevirtual

◆ GetIndexOfChildWithName()

size_t lldb_private::formatters::LibcxxStdSliceArraySyntheticFrontEnd::GetIndexOfChildWithName ( ConstString  name)
overridevirtual

◆ MightHaveChildren()

bool lldb_private::formatters::LibcxxStdSliceArraySyntheticFrontEnd::MightHaveChildren ( )
overridevirtual

Implements lldb_private::SyntheticChildrenFrontEnd.

Definition at line 148 of file LibCxxSliceArray.cpp.

◆ Update()

lldb::ChildCacheState lldb_private::formatters::LibcxxStdSliceArraySyntheticFrontEnd::Update ( )
overridevirtual

This function is assumed to always succeed and if it fails, the front-end should know to deal with it in the correct way (most probably, by refusing to return any children).

The return value of Update should actually be interpreted as "ValueObjectSyntheticFilter cache is good/bad". If this function returns lldb::ChildCacheState::eReuse, ValueObjectSyntheticFilter is allowed to use the children it fetched previously and cached. Otherwise, ValueObjectSyntheticFilter must throw away its cache, and query again for children.

Implements lldb_private::SyntheticChildrenFrontEnd.

Definition at line 120 of file LibCxxSliceArray.cpp.

References lldb_private::CompilerType::GetNumTemplateArguments(), and lldb_private::CompilerType::GetTypeTemplateArgument().

Referenced by LibcxxStdSliceArraySyntheticFrontEnd().

Member Data Documentation

◆ m_element_size

uint32_t lldb_private::formatters::LibcxxStdSliceArraySyntheticFrontEnd::m_element_size = 0
private

The sizeof slice_array's template argument T.

Definition at line 79 of file LibCxxSliceArray.cpp.

◆ m_element_type

CompilerType lldb_private::formatters::LibcxxStdSliceArraySyntheticFrontEnd::m_element_type
private

The type of slice_array's template argument T.

Definition at line 77 of file LibCxxSliceArray.cpp.

◆ m_size

size_t lldb_private::formatters::LibcxxStdSliceArraySyntheticFrontEnd::m_size = 0
private

slice_array.__size_.

Definition at line 73 of file LibCxxSliceArray.cpp.

◆ m_start

ValueObject* lldb_private::formatters::LibcxxStdSliceArraySyntheticFrontEnd::m_start = nullptr
private

A non-owning pointer to slice_array.__vp_.

Definition at line 71 of file LibCxxSliceArray.cpp.

◆ m_stride

size_t lldb_private::formatters::LibcxxStdSliceArraySyntheticFrontEnd::m_stride = 0
private

slice_array.__stride_.

Definition at line 75 of file LibCxxSliceArray.cpp.


The documentation for this class was generated from the following file: