[RISCV] Reduce redundancy in vnsrl tests
[llvm-project.git] / lldb / source / API / SBVariablesOptions.cpp
blob989d159139cca6494891b903bfc3b35cd494e9ac
1 //===-- SBVariablesOptions.cpp --------------------------------------------===//
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 //===----------------------------------------------------------------------===//
9 #include "lldb/API/SBVariablesOptions.h"
10 #include "lldb/API/SBTarget.h"
11 #include "lldb/Target/Target.h"
12 #include "lldb/Utility/Instrumentation.h"
14 #include "lldb/lldb-private.h"
16 using namespace lldb;
17 using namespace lldb_private;
19 class VariablesOptionsImpl {
20 public:
21 VariablesOptionsImpl()
22 : m_include_arguments(false), m_include_locals(false),
23 m_include_statics(false), m_in_scope_only(false),
24 m_include_runtime_support_values(false) {}
26 VariablesOptionsImpl(const VariablesOptionsImpl &) = default;
28 ~VariablesOptionsImpl() = default;
30 VariablesOptionsImpl &operator=(const VariablesOptionsImpl &) = default;
32 bool GetIncludeArguments() const { return m_include_arguments; }
34 void SetIncludeArguments(bool b) { m_include_arguments = b; }
36 bool GetIncludeRecognizedArguments(const lldb::TargetSP &target_sp) const {
37 if (m_include_recognized_arguments != eLazyBoolCalculate)
38 return m_include_recognized_arguments;
39 return target_sp ? target_sp->GetDisplayRecognizedArguments() : false;
42 void SetIncludeRecognizedArguments(bool b) {
43 m_include_recognized_arguments = b ? eLazyBoolYes : eLazyBoolNo;
46 bool GetIncludeLocals() const { return m_include_locals; }
48 void SetIncludeLocals(bool b) { m_include_locals = b; }
50 bool GetIncludeStatics() const { return m_include_statics; }
52 void SetIncludeStatics(bool b) { m_include_statics = b; }
54 bool GetInScopeOnly() const { return m_in_scope_only; }
56 void SetInScopeOnly(bool b) { m_in_scope_only = b; }
58 bool GetIncludeRuntimeSupportValues() const {
59 return m_include_runtime_support_values;
62 void SetIncludeRuntimeSupportValues(bool b) {
63 m_include_runtime_support_values = b;
66 lldb::DynamicValueType GetUseDynamic() const { return m_use_dynamic; }
68 void SetUseDynamic(lldb::DynamicValueType d) { m_use_dynamic = d; }
70 private:
71 bool m_include_arguments : 1;
72 bool m_include_locals : 1;
73 bool m_include_statics : 1;
74 bool m_in_scope_only : 1;
75 bool m_include_runtime_support_values : 1;
76 LazyBool m_include_recognized_arguments =
77 eLazyBoolCalculate; // can be overridden with a setting
78 lldb::DynamicValueType m_use_dynamic = lldb::eNoDynamicValues;
81 SBVariablesOptions::SBVariablesOptions()
82 : m_opaque_up(new VariablesOptionsImpl()) {
83 LLDB_INSTRUMENT_VA(this);
86 SBVariablesOptions::SBVariablesOptions(const SBVariablesOptions &options)
87 : m_opaque_up(new VariablesOptionsImpl(options.ref())) {
88 LLDB_INSTRUMENT_VA(this, options);
91 SBVariablesOptions &SBVariablesOptions::
92 operator=(const SBVariablesOptions &options) {
93 LLDB_INSTRUMENT_VA(this, options);
95 m_opaque_up = std::make_unique<VariablesOptionsImpl>(options.ref());
96 return *this;
99 SBVariablesOptions::~SBVariablesOptions() = default;
101 bool SBVariablesOptions::IsValid() const {
102 LLDB_INSTRUMENT_VA(this);
103 return this->operator bool();
105 SBVariablesOptions::operator bool() const {
106 LLDB_INSTRUMENT_VA(this);
108 return m_opaque_up != nullptr;
111 bool SBVariablesOptions::GetIncludeArguments() const {
112 LLDB_INSTRUMENT_VA(this);
114 return m_opaque_up->GetIncludeArguments();
117 void SBVariablesOptions::SetIncludeArguments(bool arguments) {
118 LLDB_INSTRUMENT_VA(this, arguments);
120 m_opaque_up->SetIncludeArguments(arguments);
123 bool SBVariablesOptions::GetIncludeRecognizedArguments(
124 const lldb::SBTarget &target) const {
125 LLDB_INSTRUMENT_VA(this, target);
127 return m_opaque_up->GetIncludeRecognizedArguments(target.GetSP());
130 void SBVariablesOptions::SetIncludeRecognizedArguments(bool arguments) {
131 LLDB_INSTRUMENT_VA(this, arguments);
133 m_opaque_up->SetIncludeRecognizedArguments(arguments);
136 bool SBVariablesOptions::GetIncludeLocals() const {
137 LLDB_INSTRUMENT_VA(this);
139 return m_opaque_up->GetIncludeLocals();
142 void SBVariablesOptions::SetIncludeLocals(bool locals) {
143 LLDB_INSTRUMENT_VA(this, locals);
145 m_opaque_up->SetIncludeLocals(locals);
148 bool SBVariablesOptions::GetIncludeStatics() const {
149 LLDB_INSTRUMENT_VA(this);
151 return m_opaque_up->GetIncludeStatics();
154 void SBVariablesOptions::SetIncludeStatics(bool statics) {
155 LLDB_INSTRUMENT_VA(this, statics);
157 m_opaque_up->SetIncludeStatics(statics);
160 bool SBVariablesOptions::GetInScopeOnly() const {
161 LLDB_INSTRUMENT_VA(this);
163 return m_opaque_up->GetInScopeOnly();
166 void SBVariablesOptions::SetInScopeOnly(bool in_scope_only) {
167 LLDB_INSTRUMENT_VA(this, in_scope_only);
169 m_opaque_up->SetInScopeOnly(in_scope_only);
172 bool SBVariablesOptions::GetIncludeRuntimeSupportValues() const {
173 LLDB_INSTRUMENT_VA(this);
175 return m_opaque_up->GetIncludeRuntimeSupportValues();
178 void SBVariablesOptions::SetIncludeRuntimeSupportValues(
179 bool runtime_support_values) {
180 LLDB_INSTRUMENT_VA(this, runtime_support_values);
182 m_opaque_up->SetIncludeRuntimeSupportValues(runtime_support_values);
185 lldb::DynamicValueType SBVariablesOptions::GetUseDynamic() const {
186 LLDB_INSTRUMENT_VA(this);
188 return m_opaque_up->GetUseDynamic();
191 void SBVariablesOptions::SetUseDynamic(lldb::DynamicValueType dynamic) {
192 LLDB_INSTRUMENT_VA(this, dynamic);
194 m_opaque_up->SetUseDynamic(dynamic);
197 VariablesOptionsImpl *SBVariablesOptions::operator->() {
198 return m_opaque_up.operator->();
201 const VariablesOptionsImpl *SBVariablesOptions::operator->() const {
202 return m_opaque_up.operator->();
205 VariablesOptionsImpl *SBVariablesOptions::get() { return m_opaque_up.get(); }
207 VariablesOptionsImpl &SBVariablesOptions::ref() { return *m_opaque_up; }
209 const VariablesOptionsImpl &SBVariablesOptions::ref() const {
210 return *m_opaque_up;
213 SBVariablesOptions::SBVariablesOptions(VariablesOptionsImpl *lldb_object_ptr)
214 : m_opaque_up(std::move(lldb_object_ptr)) {}
216 void SBVariablesOptions::SetOptions(VariablesOptionsImpl *lldb_object_ptr) {
217 m_opaque_up.reset(std::move(lldb_object_ptr));