LLDB mainline
Public Member Functions | Protected Attributes | List of all members
lldb_private::OptionValueSInt64 Class Reference

#include <OptionValueSInt64.h>

Inheritance diagram for lldb_private::OptionValueSInt64:
Inheritance graph
[legend]
Collaboration diagram for lldb_private::OptionValueSInt64:
Collaboration graph
[legend]

Public Member Functions

 OptionValueSInt64 ()=default
 
 OptionValueSInt64 (int64_t value)
 
 OptionValueSInt64 (int64_t current_value, int64_t default_value)
 
 OptionValueSInt64 (const OptionValueSInt64 &rhs)=default
 
 ~OptionValueSInt64 () 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 int64_t & operator= (int64_t value)
 
int64_t GetCurrentValue () const
 
int64_t GetDefaultValue () const
 
bool SetCurrentValue (int64_t value)
 
bool SetDefaultValue (int64_t value)
 
void SetMinimumValue (int64_t v)
 
int64_t GetMinimumValue () const
 
void SetMaximumValue (int64_t v)
 
int64_t GetMaximumValue () const
 
- Public Member Functions inherited from lldb_private::Cloneable< OptionValueSInt64, OptionValue >
std::shared_ptr< typename Base::TopmostBase > Clone () const override
 
- Public Member Functions inherited from lldb_private::OptionValue
 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, bool will_modify, 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 ()
 
uint64_t GetUInt64Value (uint64_t fail_value, bool *success_ptr)
 
OptionValueArchGetAsArch ()
 
const OptionValueArchGetAsArch () const
 
OptionValueArrayGetAsArray ()
 
const OptionValueArrayGetAsArray () const
 
OptionValueArgsGetAsArgs ()
 
const OptionValueArgsGetAsArgs () const
 
OptionValueBooleanGetAsBoolean ()
 
OptionValueCharGetAsChar ()
 
const OptionValueBooleanGetAsBoolean () const
 
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 GetBooleanValue (bool fail_value=false) const
 
bool SetBooleanValue (bool new_value)
 
char GetCharValue (char fail_value) const
 
char SetCharValue (char new_value)
 
int64_t GetEnumerationValue (int64_t fail_value=-1) const
 
bool SetEnumerationValue (int64_t value)
 
FileSpec GetFileSpecValue () const
 
bool SetFileSpecValue (const FileSpec &file_spec)
 
FileSpecList GetFileSpecListValue () const
 
lldb::Format GetFormatValue (lldb::Format fail_value=lldb::eFormatDefault) const
 
bool SetFormatValue (lldb::Format new_value)
 
lldb::LanguageType GetLanguageValue (lldb::LanguageType fail_value=lldb::eLanguageTypeUnknown) const
 
bool SetLanguageValue (lldb::LanguageType new_language)
 
const FormatEntity::EntryGetFormatEntity () const
 
const RegularExpressionGetRegexValue () const
 
int64_t GetSInt64Value (int64_t fail_value=0) const
 
bool SetSInt64Value (int64_t new_value)
 
llvm::StringRef GetStringValue (llvm::StringRef fail_value) const
 
llvm::StringRef GetStringValue () const
 
bool SetStringValue (llvm::StringRef new_value)
 
uint64_t GetUInt64Value (uint64_t fail_value=0) const
 
bool SetUInt64Value (uint64_t new_value)
 
UUID GetUUIDValue () const
 
bool SetUUIDValue (const UUID &uuid)
 
bool OptionWasSet () const
 
void SetOptionWasSet ()
 
void SetParent (const lldb::OptionValueSP &parent_sp)
 
lldb::OptionValueSP GetParent () const
 
void SetValueChangedCallback (std::function< void()> callback)
 
void NotifyValueChanged ()
 

Protected Attributes

int64_t m_current_value = 0
 
int64_t m_default_value = 0
 
int64_t m_min_value = INT64_MIN
 
int64_t m_max_value = INT64_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) , eDumpGroupValue = (eDumpOptionName | eDumpOptionType | eDumpOptionValue) , eDumpGroupHelp ,
  eDumpGroupExport = (eDumpOptionCommand | eDumpOptionName | eDumpOptionValue)
}
 
- 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 Types inherited from lldb_private::OptionValue
using TopmostBase = OptionValue
 
virtual lldb::OptionValueSP Clone () const =0
 

Detailed Description

Definition at line 17 of file OptionValueSInt64.h.

Constructor & Destructor Documentation

◆ OptionValueSInt64() [1/4]

lldb_private::OptionValueSInt64::OptionValueSInt64 ( )
default

◆ OptionValueSInt64() [2/4]

lldb_private::OptionValueSInt64::OptionValueSInt64 ( int64_t  value)
inline

Definition at line 21 of file OptionValueSInt64.h.

◆ OptionValueSInt64() [3/4]

lldb_private::OptionValueSInt64::OptionValueSInt64 ( int64_t  current_value,
int64_t  default_value 
)
inline

Definition at line 24 of file OptionValueSInt64.h.

◆ OptionValueSInt64() [4/4]

lldb_private::OptionValueSInt64::OptionValueSInt64 ( const OptionValueSInt64 rhs)
default

◆ ~OptionValueSInt64()

lldb_private::OptionValueSInt64::~OptionValueSInt64 ( )
overridedefault

Member Function Documentation

◆ Clear()

void lldb_private::OptionValueSInt64::Clear ( )
inlineoverridevirtual

◆ DumpValue()

void OptionValueSInt64::DumpValue ( const ExecutionContext exe_ctx,
Stream strm,
uint32_t  dump_mask 
)
overridevirtual

◆ GetCurrentValue()

int64_t lldb_private::OptionValueSInt64::GetCurrentValue ( ) const
inline

Definition at line 58 of file OptionValueSInt64.h.

References m_current_value.

Referenced by lldb_private::OptionValue::GetSInt64Value().

◆ GetDefaultValue()

int64_t lldb_private::OptionValueSInt64::GetDefaultValue ( ) const
inline

Definition at line 60 of file OptionValueSInt64.h.

References m_default_value.

◆ GetMaximumValue()

int64_t lldb_private::OptionValueSInt64::GetMaximumValue ( ) const
inline

Definition at line 84 of file OptionValueSInt64.h.

References m_max_value.

◆ GetMinimumValue()

int64_t lldb_private::OptionValueSInt64::GetMinimumValue ( ) const
inline

Definition at line 80 of file OptionValueSInt64.h.

References m_min_value.

◆ GetType()

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

Implements lldb_private::OptionValue.

Definition at line 33 of file OptionValueSInt64.h.

References lldb_private::OptionValue::eTypeSInt64.

◆ operator=()

const int64_t & lldb_private::OptionValueSInt64::operator= ( int64_t  value)
inline

Definition at line 53 of file OptionValueSInt64.h.

References m_current_value.

◆ SetCurrentValue()

bool lldb_private::OptionValueSInt64::SetCurrentValue ( int64_t  value)
inline

Definition at line 62 of file OptionValueSInt64.h.

References m_current_value, m_max_value, and m_min_value.

Referenced by lldb_private::OptionValue::SetSInt64Value().

◆ SetDefaultValue()

bool lldb_private::OptionValueSInt64::SetDefaultValue ( int64_t  value)
inline

Definition at line 70 of file OptionValueSInt64.h.

References m_default_value, m_max_value, and m_min_value.

◆ SetMaximumValue()

void lldb_private::OptionValueSInt64::SetMaximumValue ( int64_t  v)
inline

Definition at line 82 of file OptionValueSInt64.h.

References m_max_value.

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

◆ SetMinimumValue()

void lldb_private::OptionValueSInt64::SetMinimumValue ( int64_t  v)
inline

Definition at line 78 of file OptionValueSInt64.h.

References m_min_value.

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

◆ SetValueFromString()

Status OptionValueSInt64::SetValueFromString ( llvm::StringRef  value,
VarSetOperationType  op = eVarSetOperationAssign 
)
overridevirtual

◆ ToJSON()

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

Reimplemented from lldb_private::OptionValue.

Definition at line 38 of file OptionValueSInt64.h.

References m_current_value.

Member Data Documentation

◆ m_current_value

int64_t lldb_private::OptionValueSInt64::m_current_value = 0
protected

◆ m_default_value

int64_t lldb_private::OptionValueSInt64::m_default_value = 0
protected

Definition at line 88 of file OptionValueSInt64.h.

Referenced by Clear(), GetDefaultValue(), and SetDefaultValue().

◆ m_max_value

int64_t lldb_private::OptionValueSInt64::m_max_value = INT64_MAX
protected

◆ m_min_value

int64_t lldb_private::OptionValueSInt64::m_min_value = INT64_MIN
protected

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