LLDB mainline
lldb_private::OptionValueUInt64 Class Reference

#include <OptionValueUInt64.h>

Inheritance diagram for lldb_private::OptionValueUInt64:
[legend]

Public Member Functions

 OptionValueUInt64 ()=default
 OptionValueUInt64 (uint64_t value)
 OptionValueUInt64 (uint64_t current_value, uint64_t default_value)
 ~OptionValueUInt64 () override=default
OptionValue::Type GetType () const override
void DumpValue (const ExecutionContext *exe_ctx, Stream &strm, uint32_t dump_mask) override
llvm::json::Value ToJSON (const ExecutionContext *exe_ctx) const override
Status SetValueFromString (llvm::StringRef value, VarSetOperationType op=eVarSetOperationAssign) override
void Clear () override
const uint64_t & operator= (uint64_t value)
 operator uint64_t () const
uint64_t GetCurrentValue () const
uint64_t GetDefaultValue () const
bool SetCurrentValue (uint64_t value)
bool SetDefaultValue (uint64_t value)
void SetMinimumValue (uint64_t v)
uint64_t GetMinimumValue () const
void SetMaximumValue (uint64_t v)
uint64_t GetMaximumValue () const
Public Member Functions inherited from lldb_private::Cloneable< OptionValueUInt64, OptionValue >
std::shared_ptr< typename OptionValue::TopmostBaseClone () const override
Public Member Functions inherited from lldb_private::OptionValue
 OptionValue ()=default
virtual ~OptionValue ()=default
 OptionValue (const OptionValue &other)
OptionValueoperator= (const OptionValue &other)
virtual bool ValueIsTransparent () const
virtual const char * GetTypeAsCString () const
virtual lldb::OptionValueSP DeepCopy (const lldb::OptionValueSP &new_parent) const
virtual void AutoComplete (CommandInterpreter &interpreter, CompletionRequest &request)
virtual lldb::OptionValueSP GetSubValue (const ExecutionContext *exe_ctx, llvm::StringRef name, Status &error) const
virtual Status SetSubValue (const ExecutionContext *exe_ctx, VarSetOperationType op, llvm::StringRef name, llvm::StringRef value)
virtual bool IsAggregateValue () const
virtual llvm::StringRef GetName () const
virtual bool DumpQualifiedName (Stream &strm) const
uint32_t GetTypeAsMask ()
OptionValueArchGetAsArch ()
const OptionValueArchGetAsArch () const
OptionValueArrayGetAsArray ()
const OptionValueArrayGetAsArray () const
OptionValueArgsGetAsArgs ()
const OptionValueArgsGetAsArgs () const
OptionValueBooleanGetAsBoolean ()
const OptionValueBooleanGetAsBoolean () const
OptionValueCharGetAsChar ()
const OptionValueCharGetAsChar () const
OptionValueDictionaryGetAsDictionary ()
const OptionValueDictionaryGetAsDictionary () const
OptionValueEnumerationGetAsEnumeration ()
const OptionValueEnumerationGetAsEnumeration () const
OptionValueFileSpecGetAsFileSpec ()
const OptionValueFileSpecGetAsFileSpec () const
OptionValueFileSpecListGetAsFileSpecList ()
const OptionValueFileSpecListGetAsFileSpecList () const
OptionValueFormatGetAsFormat ()
const OptionValueFormatGetAsFormat () const
OptionValueLanguageGetAsLanguage ()
const OptionValueLanguageGetAsLanguage () const
OptionValuePathMappingsGetAsPathMappings ()
const OptionValuePathMappingsGetAsPathMappings () const
OptionValuePropertiesGetAsProperties ()
const OptionValuePropertiesGetAsProperties () const
OptionValueRegexGetAsRegex ()
const OptionValueRegexGetAsRegex () const
OptionValueSInt64GetAsSInt64 ()
const OptionValueSInt64GetAsSInt64 () const
OptionValueStringGetAsString ()
const OptionValueStringGetAsString () const
OptionValueUInt64GetAsUInt64 ()
const OptionValueUInt64GetAsUInt64 () const
OptionValueUUIDGetAsUUID ()
const OptionValueUUIDGetAsUUID () const
OptionValueFormatEntityGetAsFormatEntity ()
const OptionValueFormatEntityGetAsFormatEntity () const
bool AppendFileSpecValue (FileSpec file_spec)
bool OptionWasSet () const
void SetOptionWasSet ()
void SetParent (const lldb::OptionValueSP &parent_sp)
lldb::OptionValueSP GetParent () const
void SetValueChangedCallback (std::function< void()> callback)
void NotifyValueChanged ()
template<typename T, std::enable_if_t<!std::is_pointer_v< T >, bool > = true>
std::optional< T > GetValueAs () const
template<typename T, typename U = typename std::remove_const< typename std::remove_pointer<T>::type>::type, std::enable_if_t< std::is_pointer_v< T >, bool > = true>
GetValueAs () const
bool SetValueAs (bool v)
bool SetValueAs (char v)
bool SetValueAs (uint64_t v)
bool SetValueAs (int64_t v)
bool SetValueAs (UUID v)
bool SetValueAs (llvm::StringRef v)
bool SetValueAs (lldb::LanguageType v)
bool SetValueAs (lldb::Format v)
bool SetValueAs (FileSpec v)
bool SetValueAs (ArchSpec v)
bool SetValueAs (const FormatEntity::Entry &v)
template<typename T, std::enable_if_t< std::is_enum_v< T >, bool > = true>
bool SetValueAs (T t)

Static Public Member Functions

static lldb::OptionValueSP Create (llvm::StringRef value_str, Status &error)
Static Public Member Functions inherited from lldb_private::OptionValue
static const char * GetBuiltinTypeAsCString (Type t)
static uint32_t ConvertTypeToMask (OptionValue::Type type)
static OptionValue::Type ConvertTypeMaskToType (uint32_t type_mask)
static lldb::OptionValueSP CreateValueFromCStringForTypeMask (const char *value_cstr, uint32_t type_mask, Status &error)

Protected Attributes

uint64_t m_current_value = 0
uint64_t m_default_value = 0
uint64_t m_min_value = std::numeric_limits<uint64_t>::min()
uint64_t m_max_value = std::numeric_limits<uint64_t>::max()
Protected Attributes inherited from lldb_private::OptionValue
lldb::OptionValueWP m_parent_wp
std::function< void()> m_callback
bool m_value_was_set = false

Additional Inherited Members

Public Types inherited from lldb_private::OptionValue
enum  Type {
  eTypeInvalid = 0 , eTypeArch , eTypeArgs , eTypeArray ,
  eTypeBoolean , eTypeChar , eTypeDictionary , eTypeEnum ,
  eTypeFileLineColumn , eTypeFileSpec , eTypeFileSpecList , eTypeFormat ,
  eTypeLanguage , eTypePathMap , eTypeProperties , eTypeRegex ,
  eTypeSInt64 , eTypeString , eTypeUInt64 , eTypeUUID ,
  eTypeFormatEntity
}
enum  {
  eDumpOptionName = (1u << 0) , eDumpOptionType = (1u << 1) , eDumpOptionValue = (1u << 2) , eDumpOptionDescription = (1u << 3) ,
  eDumpOptionRaw = (1u << 4) , eDumpOptionCommand = (1u << 5) , eDumpOptionDefaultValue = (1u << 6) , eDumpGroupValue = (eDumpOptionName | eDumpOptionType | eDumpOptionValue) ,
  eDumpGroupHelp , eDumpGroupExport = (eDumpOptionCommand | eDumpOptionName | eDumpOptionValue)
}
Protected Types inherited from lldb_private::OptionValue
using TopmostBase = OptionValue

Detailed Description

Definition at line 17 of file OptionValueUInt64.h.

Constructor & Destructor Documentation

◆ OptionValueUInt64() [1/3]

lldb_private::OptionValueUInt64::OptionValueUInt64 ( )
default

Referenced by Create().

◆ OptionValueUInt64() [2/3]

lldb_private::OptionValueUInt64::OptionValueUInt64 ( uint64_t value)
inline

Definition at line 21 of file OptionValueUInt64.h.

References m_current_value, and m_default_value.

◆ OptionValueUInt64() [3/3]

lldb_private::OptionValueUInt64::OptionValueUInt64 ( uint64_t current_value,
uint64_t default_value )
inline

Definition at line 24 of file OptionValueUInt64.h.

References m_current_value, and m_default_value.

◆ ~OptionValueUInt64()

lldb_private::OptionValueUInt64::~OptionValueUInt64 ( )
overridedefault

References error().

Member Function Documentation

◆ Clear()

void lldb_private::OptionValueUInt64::Clear ( )
inlineoverridevirtual

◆ Create()

lldb::OptionValueSP OptionValueUInt64::Create ( llvm::StringRef value_str,
Status & error )
static

◆ DumpValue()

◆ GetCurrentValue()

uint64_t lldb_private::OptionValueUInt64::GetCurrentValue ( ) const
inline

◆ GetDefaultValue()

uint64_t lldb_private::OptionValueUInt64::GetDefaultValue ( ) const
inline

Definition at line 65 of file OptionValueUInt64.h.

References m_default_value.

◆ GetMaximumValue()

uint64_t lldb_private::OptionValueUInt64::GetMaximumValue ( ) const
inline

Definition at line 88 of file OptionValueUInt64.h.

References m_max_value.

◆ GetMinimumValue()

uint64_t lldb_private::OptionValueUInt64::GetMinimumValue ( ) const
inline

Definition at line 84 of file OptionValueUInt64.h.

References m_min_value.

◆ GetType()

OptionValue::Type lldb_private::OptionValueUInt64::GetType ( ) const
inlineoverridevirtual

Implements lldb_private::OptionValue.

Definition at line 36 of file OptionValueUInt64.h.

References lldb_private::OptionValue::eTypeUInt64.

◆ operator uint64_t()

lldb_private::OptionValueUInt64::operator uint64_t ( ) const
inline

Definition at line 61 of file OptionValueUInt64.h.

References m_current_value.

◆ operator=()

const uint64_t & lldb_private::OptionValueUInt64::operator= ( uint64_t value)
inline

Definition at line 56 of file OptionValueUInt64.h.

References m_current_value.

◆ SetCurrentValue()

bool lldb_private::OptionValueUInt64::SetCurrentValue ( uint64_t value)
inline

Definition at line 67 of file OptionValueUInt64.h.

References m_current_value, m_max_value, and m_min_value.

◆ SetDefaultValue()

bool lldb_private::OptionValueUInt64::SetDefaultValue ( uint64_t value)
inline

Definition at line 75 of file OptionValueUInt64.h.

References m_default_value, m_max_value, and m_min_value.

◆ SetMaximumValue()

void lldb_private::OptionValueUInt64::SetMaximumValue ( uint64_t v)
inline

Definition at line 86 of file OptionValueUInt64.h.

References m_max_value.

◆ SetMinimumValue()

void lldb_private::OptionValueUInt64::SetMinimumValue ( uint64_t v)
inline

Definition at line 82 of file OptionValueUInt64.h.

References m_min_value.

Referenced by lldb_private::Debugger::Debugger().

◆ SetValueFromString()

◆ ToJSON()

llvm::json::Value lldb_private::OptionValueUInt64::ToJSON ( const ExecutionContext * exe_ctx) const
inlineoverridevirtual

Implements lldb_private::OptionValue.

Definition at line 41 of file OptionValueUInt64.h.

References m_current_value.

Member Data Documentation

◆ m_current_value

uint64_t lldb_private::OptionValueUInt64::m_current_value = 0
protected

◆ m_default_value

uint64_t lldb_private::OptionValueUInt64::m_default_value = 0
protected

◆ m_max_value

uint64_t lldb_private::OptionValueUInt64::m_max_value = std::numeric_limits<uint64_t>::max()
protected

◆ m_min_value

uint64_t lldb_private::OptionValueUInt64::m_min_value = std::numeric_limits<uint64_t>::min()
protected

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