mirror of
https://github.com/intel/llvm.git
synced 2026-01-15 20:54:40 +08:00
to reflect the new license. We understand that people may be surprised that we're moving the header entirely to discuss the new license. We checked this carefully with the Foundation's lawyer and we believe this is the correct approach. Essentially, all code in the project is now made available by the LLVM project under our new license, so you will see that the license headers include that license only. Some of our contributors have contributed code under our old license, and accordingly, we have retained a copy of our old license notice in the top-level files in each project and repository. llvm-svn: 351636
178 lines
5.3 KiB
C++
178 lines
5.3 KiB
C++
//===-- SBVariablesOptions.cpp --------------------------------------*- C++
|
|
//-*-===//
|
|
//
|
|
// Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions.
|
|
// See https://llvm.org/LICENSE.txt for license information.
|
|
// SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception
|
|
//
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
#include "lldb/API/SBVariablesOptions.h"
|
|
#include "lldb/API/SBTarget.h"
|
|
#include "lldb/Target/Target.h"
|
|
|
|
#include "lldb/lldb-private.h"
|
|
|
|
using namespace lldb;
|
|
using namespace lldb_private;
|
|
|
|
class VariablesOptionsImpl {
|
|
public:
|
|
VariablesOptionsImpl()
|
|
: m_include_arguments(false), m_include_locals(false),
|
|
m_include_statics(false), m_in_scope_only(false),
|
|
m_include_runtime_support_values(false),
|
|
m_include_recognized_arguments(eLazyBoolCalculate),
|
|
m_use_dynamic(lldb::eNoDynamicValues) {}
|
|
|
|
VariablesOptionsImpl(const VariablesOptionsImpl &) = default;
|
|
|
|
~VariablesOptionsImpl() = default;
|
|
|
|
VariablesOptionsImpl &operator=(const VariablesOptionsImpl &) = default;
|
|
|
|
bool GetIncludeArguments() const { return m_include_arguments; }
|
|
|
|
void SetIncludeArguments(bool b) { m_include_arguments = b; }
|
|
|
|
bool GetIncludeRecognizedArguments(const lldb::TargetSP &target_sp) const {
|
|
if (m_include_recognized_arguments != eLazyBoolCalculate)
|
|
return m_include_recognized_arguments;
|
|
return target_sp ? target_sp->GetDisplayRecognizedArguments() : false;
|
|
}
|
|
|
|
void SetIncludeRecognizedArguments(bool b) {
|
|
m_include_recognized_arguments = b ? eLazyBoolYes : eLazyBoolNo;
|
|
}
|
|
|
|
bool GetIncludeLocals() const { return m_include_locals; }
|
|
|
|
void SetIncludeLocals(bool b) { m_include_locals = b; }
|
|
|
|
bool GetIncludeStatics() const { return m_include_statics; }
|
|
|
|
void SetIncludeStatics(bool b) { m_include_statics = b; }
|
|
|
|
bool GetInScopeOnly() const { return m_in_scope_only; }
|
|
|
|
void SetInScopeOnly(bool b) { m_in_scope_only = b; }
|
|
|
|
bool GetIncludeRuntimeSupportValues() const {
|
|
return m_include_runtime_support_values;
|
|
}
|
|
|
|
void SetIncludeRuntimeSupportValues(bool b) {
|
|
m_include_runtime_support_values = b;
|
|
}
|
|
|
|
lldb::DynamicValueType GetUseDynamic() const { return m_use_dynamic; }
|
|
|
|
void SetUseDynamic(lldb::DynamicValueType d) { m_use_dynamic = d; }
|
|
|
|
private:
|
|
bool m_include_arguments : 1;
|
|
bool m_include_locals : 1;
|
|
bool m_include_statics : 1;
|
|
bool m_in_scope_only : 1;
|
|
bool m_include_runtime_support_values : 1;
|
|
LazyBool m_include_recognized_arguments; // can be overridden with a setting
|
|
lldb::DynamicValueType m_use_dynamic;
|
|
};
|
|
|
|
SBVariablesOptions::SBVariablesOptions()
|
|
: m_opaque_ap(new VariablesOptionsImpl()) {}
|
|
|
|
SBVariablesOptions::SBVariablesOptions(const SBVariablesOptions &options)
|
|
: m_opaque_ap(new VariablesOptionsImpl(options.ref())) {}
|
|
|
|
SBVariablesOptions &SBVariablesOptions::
|
|
operator=(const SBVariablesOptions &options) {
|
|
m_opaque_ap.reset(new VariablesOptionsImpl(options.ref()));
|
|
return *this;
|
|
}
|
|
|
|
SBVariablesOptions::~SBVariablesOptions() = default;
|
|
|
|
bool SBVariablesOptions::IsValid() const { return m_opaque_ap != nullptr; }
|
|
|
|
bool SBVariablesOptions::GetIncludeArguments() const {
|
|
return m_opaque_ap->GetIncludeArguments();
|
|
}
|
|
|
|
void SBVariablesOptions::SetIncludeArguments(bool arguments) {
|
|
m_opaque_ap->SetIncludeArguments(arguments);
|
|
}
|
|
|
|
bool SBVariablesOptions::GetIncludeRecognizedArguments(
|
|
const lldb::SBTarget &target) const {
|
|
return m_opaque_ap->GetIncludeRecognizedArguments(target.GetSP());
|
|
}
|
|
|
|
void SBVariablesOptions::SetIncludeRecognizedArguments(bool arguments) {
|
|
m_opaque_ap->SetIncludeRecognizedArguments(arguments);
|
|
}
|
|
|
|
bool SBVariablesOptions::GetIncludeLocals() const {
|
|
return m_opaque_ap->GetIncludeLocals();
|
|
}
|
|
|
|
void SBVariablesOptions::SetIncludeLocals(bool locals) {
|
|
m_opaque_ap->SetIncludeLocals(locals);
|
|
}
|
|
|
|
bool SBVariablesOptions::GetIncludeStatics() const {
|
|
return m_opaque_ap->GetIncludeStatics();
|
|
}
|
|
|
|
void SBVariablesOptions::SetIncludeStatics(bool statics) {
|
|
m_opaque_ap->SetIncludeStatics(statics);
|
|
}
|
|
|
|
bool SBVariablesOptions::GetInScopeOnly() const {
|
|
return m_opaque_ap->GetInScopeOnly();
|
|
}
|
|
|
|
void SBVariablesOptions::SetInScopeOnly(bool in_scope_only) {
|
|
m_opaque_ap->SetInScopeOnly(in_scope_only);
|
|
}
|
|
|
|
bool SBVariablesOptions::GetIncludeRuntimeSupportValues() const {
|
|
return m_opaque_ap->GetIncludeRuntimeSupportValues();
|
|
}
|
|
|
|
void SBVariablesOptions::SetIncludeRuntimeSupportValues(
|
|
bool runtime_support_values) {
|
|
m_opaque_ap->SetIncludeRuntimeSupportValues(runtime_support_values);
|
|
}
|
|
|
|
lldb::DynamicValueType SBVariablesOptions::GetUseDynamic() const {
|
|
return m_opaque_ap->GetUseDynamic();
|
|
}
|
|
|
|
void SBVariablesOptions::SetUseDynamic(lldb::DynamicValueType dynamic) {
|
|
m_opaque_ap->SetUseDynamic(dynamic);
|
|
}
|
|
|
|
VariablesOptionsImpl *SBVariablesOptions::operator->() {
|
|
return m_opaque_ap.operator->();
|
|
}
|
|
|
|
const VariablesOptionsImpl *SBVariablesOptions::operator->() const {
|
|
return m_opaque_ap.operator->();
|
|
}
|
|
|
|
VariablesOptionsImpl *SBVariablesOptions::get() { return m_opaque_ap.get(); }
|
|
|
|
VariablesOptionsImpl &SBVariablesOptions::ref() { return *m_opaque_ap; }
|
|
|
|
const VariablesOptionsImpl &SBVariablesOptions::ref() const {
|
|
return *m_opaque_ap;
|
|
}
|
|
|
|
SBVariablesOptions::SBVariablesOptions(VariablesOptionsImpl *lldb_object_ptr)
|
|
: m_opaque_ap(std::move(lldb_object_ptr)) {}
|
|
|
|
void SBVariablesOptions::SetOptions(VariablesOptionsImpl *lldb_object_ptr) {
|
|
m_opaque_ap.reset(std::move(lldb_object_ptr));
|
|
}
|