LLDB mainline
|
#include <OptionValueUInt64.h>
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) 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 |
void | SetCurrentValue (uint64_t value) |
void | SetDefaultValue (uint64_t value) |
![]() | |
std::shared_ptr< typename Base::TopmostBase > | Clone () const override |
![]() | |
OptionValue ()=default | |
virtual | ~OptionValue ()=default |
virtual Type | GetType () const =0 |
virtual bool | ValueIsTransparent () const |
virtual const char * | GetTypeAsCString () const |
virtual void | DumpValue (const ExecutionContext *exe_ctx, Stream &strm, uint32_t dump_mask)=0 |
virtual llvm::json::Value | ToJSON (const ExecutionContext *exe_ctx) |
virtual Status | SetValueFromString (llvm::StringRef value, VarSetOperationType op=eVarSetOperationAssign) |
virtual void | Clear ()=0 |
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 ConstString | GetName () const |
virtual bool | DumpQualifiedName (Stream &strm) const |
uint32_t | GetTypeAsMask () |
OptionValueArch * | GetAsArch () |
const OptionValueArch * | GetAsArch () const |
OptionValueArray * | GetAsArray () |
const OptionValueArray * | GetAsArray () const |
OptionValueArgs * | GetAsArgs () |
const OptionValueArgs * | GetAsArgs () const |
OptionValueBoolean * | GetAsBoolean () |
const OptionValueBoolean * | GetAsBoolean () const |
OptionValueChar * | GetAsChar () |
const OptionValueChar * | GetAsChar () const |
OptionValueDictionary * | GetAsDictionary () |
const OptionValueDictionary * | GetAsDictionary () const |
OptionValueEnumeration * | GetAsEnumeration () |
const OptionValueEnumeration * | GetAsEnumeration () const |
OptionValueFileSpec * | GetAsFileSpec () |
const OptionValueFileSpec * | GetAsFileSpec () const |
OptionValueFileSpecList * | GetAsFileSpecList () |
const OptionValueFileSpecList * | GetAsFileSpecList () const |
OptionValueFormat * | GetAsFormat () |
const OptionValueFormat * | GetAsFormat () const |
OptionValueLanguage * | GetAsLanguage () |
const OptionValueLanguage * | GetAsLanguage () const |
OptionValuePathMappings * | GetAsPathMappings () |
const OptionValuePathMappings * | GetAsPathMappings () const |
OptionValueProperties * | GetAsProperties () |
const OptionValueProperties * | GetAsProperties () const |
OptionValueRegex * | GetAsRegex () |
const OptionValueRegex * | GetAsRegex () const |
OptionValueSInt64 * | GetAsSInt64 () |
const OptionValueSInt64 * | GetAsSInt64 () const |
OptionValueString * | GetAsString () |
const OptionValueString * | GetAsString () const |
OptionValueUInt64 * | GetAsUInt64 () |
const OptionValueUInt64 * | GetAsUInt64 () const |
OptionValueUUID * | GetAsUUID () |
const OptionValueUUID * | GetAsUUID () const |
OptionValueFormatEntity * | GetAsFormatEntity () |
const OptionValueFormatEntity * | GetAsFormatEntity () 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> | |
T | 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) |
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 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 |
![]() | |
lldb::OptionValueWP | m_parent_wp |
std::function< void()> | m_callback |
bool | m_value_was_set = false |
Additional Inherited Members | |
![]() | |
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) , eDumpGroupValue = (eDumpOptionName | eDumpOptionType | eDumpOptionValue) , eDumpGroupHelp , eDumpGroupExport = (eDumpOptionCommand | eDumpOptionName | eDumpOptionValue) } |
![]() | |
using | TopmostBase = OptionValue |
virtual lldb::OptionValueSP | Clone () const =0 |
Definition at line 17 of file OptionValueUInt64.h.
|
default |
Referenced by Create().
|
inline |
Definition at line 21 of file OptionValueUInt64.h.
|
inline |
Definition at line 24 of file OptionValueUInt64.h.
|
overridedefault |
|
inlineoverridevirtual |
Implements lldb_private::OptionValue.
Definition at line 49 of file OptionValueUInt64.h.
References m_current_value, m_default_value, and lldb_private::OptionValue::m_value_was_set.
Referenced by lldb_private::OptionGroupFormat::OptionParsingStarting(), lldb_private::OptionGroupUInt64::OptionParsingStarting(), BreakpointNameOptionGroup::OptionParsingStarting(), CommandObjectLogEnable::CommandOptions::OptionParsingStarting(), OptionGroupReadMemory::OptionParsingStarting(), CommandObjectMemoryFind::OptionGroupFindMemory::OptionParsingStarting(), CommandObjectSessionHistory::CommandOptions::OptionParsingStarting(), and SetValueFromString().
|
static |
Definition at line 16 of file OptionValueUInt64.cpp.
References error(), and OptionValueUInt64().
Referenced by CommandObjectRegisterRead::CommandOptions::SetOptionValue().
|
overridevirtual |
Implements lldb_private::OptionValue.
Definition at line 25 of file OptionValueUInt64.cpp.
References lldb_private::OptionValue::eDumpOptionType, lldb_private::OptionValue::eDumpOptionValue, lldb_private::OptionValue::GetTypeAsCString(), m_current_value, lldb_private::Stream::Printf(), and lldb_private::Stream::PutCString().
|
inline |
Definition at line 63 of file OptionValueUInt64.h.
References m_current_value.
Referenced by CommandObjectLogEnable::DoExecute(), CommandObjectTargetModulesLoad::DoExecute(), CommandObjectMemoryRead::DoExecute(), CommandObjectMemoryFind::DoExecute(), CommandObjectMemoryWrite::DoExecute(), CommandObjectSessionHistory::DoExecute(), OptionGroupReadMemory::FinalizeSettings(), lldb_private::OptionGroupFormat::SetOptionValue(), and OptionGroupReadMemory::SetOptionValue().
|
inline |
Definition at line 65 of file OptionValueUInt64.h.
References m_default_value.
Referenced by lldb_private::OptionGroupFormat::GetDefinitions(), and lldb_private::OptionGroupFormat::SetOptionValue().
|
inlineoverridevirtual |
Implements lldb_private::OptionValue.
Definition at line 36 of file OptionValueUInt64.h.
References lldb_private::OptionValue::eTypeUInt64.
|
inline |
Definition at line 61 of file OptionValueUInt64.h.
References m_current_value.
|
inline |
Definition at line 56 of file OptionValueUInt64.h.
References m_current_value.
|
inline |
Definition at line 67 of file OptionValueUInt64.h.
References m_current_value.
Referenced by CommandObjectSessionHistory::CommandOptions::SetOptionValue(), and lldb_private::OptionGroupFormat::SetOptionValue().
|
inline |
Definition at line 69 of file OptionValueUInt64.h.
References m_default_value.
|
overridevirtual |
Reimplemented from lldb_private::OptionValue.
Definition at line 36 of file OptionValueUInt64.cpp.
References Clear(), error(), lldb_private::eVarSetOperationAppend, lldb_private::eVarSetOperationAssign, lldb_private::eVarSetOperationClear, lldb_private::eVarSetOperationInsertAfter, lldb_private::eVarSetOperationInsertBefore, lldb_private::eVarSetOperationInvalid, lldb_private::eVarSetOperationRemove, lldb_private::eVarSetOperationReplace, m_current_value, lldb_private::OptionValue::m_value_was_set, lldb_private::OptionValue::NotifyValueChanged(), and lldb_private::OptionValue::SetValueFromString().
Referenced by BreakpointNameOptionGroup::SetOptionValue(), CommandObjectLogEnable::CommandOptions::SetOptionValue(), CommandObjectSessionHistory::CommandOptions::SetOptionValue(), lldb_private::OptionGroupFormat::SetOptionValue(), lldb_private::OptionGroupUInt64::SetOptionValue(), OptionGroupReadMemory::SetOptionValue(), and CommandObjectMemoryFind::OptionGroupFindMemory::SetOptionValue().
|
inlineoverridevirtual |
Reimplemented from lldb_private::OptionValue.
Definition at line 41 of file OptionValueUInt64.h.
References m_current_value.
|
protected |
Definition at line 72 of file OptionValueUInt64.h.
Referenced by Clear(), DumpValue(), GetCurrentValue(), operator uint64_t(), operator=(), SetCurrentValue(), SetValueFromString(), and ToJSON().
|
protected |
Definition at line 73 of file OptionValueUInt64.h.
Referenced by Clear(), GetDefaultValue(), and SetDefaultValue().