LLDB mainline
OptionValueArch.h
Go to the documentation of this file.
1//===-- OptionValueArch.h -----------------------------------*- C++ -*-===//
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
9#ifndef LLDB_INTERPRETER_OPTIONVALUEARCH_H
10#define LLDB_INTERPRETER_OPTIONVALUEARCH_H
11
15
16namespace lldb_private {
17
18class OptionValueArch : public Cloneable<OptionValueArch, OptionValue> {
19public:
20 OptionValueArch() = default;
21
22 OptionValueArch(const char *triple) : m_current_value(triple) {
24 }
25
27 : m_current_value(value), m_default_value(value) {}
28
29 OptionValueArch(const ArchSpec &current_value, const ArchSpec &default_value)
30 : m_current_value(current_value), m_default_value(default_value) {}
31
32 ~OptionValueArch() override = default;
33
34 // Virtual subclass pure virtual overrides
35
36 OptionValue::Type GetType() const override { return eTypeArch; }
37
38 void DumpValue(const ExecutionContext *exe_ctx, Stream &strm,
39 uint32_t dump_mask) override;
40
41 llvm::json::Value ToJSON(const ExecutionContext *exe_ctx) const override;
42
43 Status
44 SetValueFromString(llvm::StringRef value,
46
47 void Clear() override {
49 m_value_was_set = false;
50 }
51
52 void AutoComplete(CommandInterpreter &interpreter,
53 lldb_private::CompletionRequest &request) override;
54
55 // Subclass specific functions
56
58
59 const ArchSpec &GetCurrentValue() const { return m_current_value; }
60
61 const ArchSpec &GetDefaultValue() const { return m_default_value; }
62
63 void SetCurrentValue(const ArchSpec &value, bool set_value_was_set) {
64 m_current_value = value;
65 if (set_value_was_set)
66 m_value_was_set = true;
67 }
68
69 void SetDefaultValue(const ArchSpec &value) { m_default_value = value; }
70
71protected:
74};
75
76} // namespace lldb_private
77
78#endif // LLDB_INTERPRETER_OPTIONVALUEARCH_H
An architecture specification class.
Definition ArchSpec.h:31
A class that implements CRTP-based "virtual constructor" idiom.
Definition Cloneable.h:40
"lldb/Utility/ArgCompletionRequest.h"
"lldb/Target/ExecutionContext.h" A class that contains an execution context.
OptionValueArch(const char *triple)
const ArchSpec & GetDefaultValue() const
void SetCurrentValue(const ArchSpec &value, bool set_value_was_set)
void AutoComplete(CommandInterpreter &interpreter, lldb_private::CompletionRequest &request) override
const ArchSpec & GetCurrentValue() const
OptionValueArch(const ArchSpec &current_value, const ArchSpec &default_value)
void SetDefaultValue(const ArchSpec &value)
~OptionValueArch() override=default
Status SetValueFromString(llvm::StringRef value, VarSetOperationType op=eVarSetOperationAssign) override
llvm::json::Value ToJSON(const ExecutionContext *exe_ctx) const override
OptionValue::Type GetType() const override
OptionValueArch(const ArchSpec &value)
void DumpValue(const ExecutionContext *exe_ctx, Stream &strm, uint32_t dump_mask) override
An error handling class.
Definition Status.h:118
A stream class that can stream formatted output to a file.
Definition Stream.h:28
A class that represents a running process on the host machine.
VarSetOperationType
Settable state variable types.