[MLIR][NVVM] Add Op for TMA Store with reduction (#118853)
[llvm-project.git] / lldb / source / API / SBStructuredData.cpp
blobb891a34bd7c76a301a0120633aabbed7aaaf6b1c
1 //===-- SBStructuredData.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/SBStructuredData.h"
11 #include "lldb/API/SBDebugger.h"
12 #include "lldb/API/SBScriptObject.h"
13 #include "lldb/API/SBStream.h"
14 #include "lldb/API/SBStringList.h"
15 #include "lldb/Core/Debugger.h"
16 #include "lldb/Core/StructuredDataImpl.h"
17 #include "lldb/Interpreter/ScriptInterpreter.h"
18 #include "lldb/Target/StructuredDataPlugin.h"
19 #include "lldb/Utility/Event.h"
20 #include "lldb/Utility/Instrumentation.h"
21 #include "lldb/Utility/Status.h"
22 #include "lldb/Utility/Stream.h"
23 #include "lldb/Utility/StringList.h"
24 #include "lldb/Utility/StructuredData.h"
26 using namespace lldb;
27 using namespace lldb_private;
29 #pragma mark--
30 #pragma mark SBStructuredData
32 SBStructuredData::SBStructuredData() : m_impl_up(new StructuredDataImpl()) {
33 LLDB_INSTRUMENT_VA(this);
36 SBStructuredData::SBStructuredData(const lldb::SBStructuredData &rhs)
37 : m_impl_up(new StructuredDataImpl(*rhs.m_impl_up)) {
38 LLDB_INSTRUMENT_VA(this, rhs);
41 SBStructuredData::SBStructuredData(const lldb::SBScriptObject obj,
42 const lldb::SBDebugger &debugger) {
43 LLDB_INSTRUMENT_VA(this, obj, debugger);
45 if (!obj.IsValid())
46 return;
48 ScriptInterpreter *interpreter =
49 debugger.m_opaque_sp->GetScriptInterpreter(true, obj.GetLanguage());
51 if (!interpreter)
52 return;
54 StructuredDataImplUP impl_up = std::make_unique<StructuredDataImpl>(
55 interpreter->CreateStructuredDataFromScriptObject(obj.ref()));
56 if (impl_up && impl_up->IsValid())
57 m_impl_up.reset(impl_up.release());
60 SBStructuredData::SBStructuredData(const lldb::EventSP &event_sp)
61 : m_impl_up(new StructuredDataImpl(event_sp)) {
62 LLDB_INSTRUMENT_VA(this, event_sp);
65 SBStructuredData::SBStructuredData(const lldb_private::StructuredDataImpl &impl)
66 : m_impl_up(new StructuredDataImpl(impl)) {
67 LLDB_INSTRUMENT_VA(this, impl);
70 SBStructuredData::~SBStructuredData() = default;
72 SBStructuredData &SBStructuredData::
73 operator=(const lldb::SBStructuredData &rhs) {
74 LLDB_INSTRUMENT_VA(this, rhs);
76 *m_impl_up = *rhs.m_impl_up;
77 return *this;
80 lldb::SBError SBStructuredData::SetFromJSON(lldb::SBStream &stream) {
81 LLDB_INSTRUMENT_VA(this, stream);
83 lldb::SBError error;
85 StructuredData::ObjectSP json_obj =
86 StructuredData::ParseJSON(stream.GetData());
87 m_impl_up->SetObjectSP(json_obj);
89 static constexpr StructuredDataType unsupported_type[] = {
90 eStructuredDataTypeInvalid,
91 eStructuredDataTypeGeneric,
94 if (!json_obj || llvm::is_contained(unsupported_type, json_obj->GetType()))
95 error = Status::FromErrorString("Invalid Syntax");
96 return error;
99 lldb::SBError SBStructuredData::SetFromJSON(const char *json) {
100 LLDB_INSTRUMENT_VA(this, json);
101 lldb::SBStream s;
102 s.Print(json);
103 return SetFromJSON(s);
106 bool SBStructuredData::IsValid() const {
107 LLDB_INSTRUMENT_VA(this);
108 return this->operator bool();
111 SBStructuredData::operator bool() const {
112 LLDB_INSTRUMENT_VA(this);
114 return m_impl_up->IsValid();
117 void SBStructuredData::Clear() {
118 LLDB_INSTRUMENT_VA(this);
120 m_impl_up->Clear();
123 SBError SBStructuredData::GetAsJSON(lldb::SBStream &stream) const {
124 LLDB_INSTRUMENT_VA(this, stream);
126 SBError error;
127 error.SetError(m_impl_up->GetAsJSON(stream.ref()));
128 return error;
131 lldb::SBError SBStructuredData::GetDescription(lldb::SBStream &stream) const {
132 LLDB_INSTRUMENT_VA(this, stream);
134 Status error = m_impl_up->GetDescription(stream.ref());
135 SBError sb_error;
136 sb_error.SetError(std::move(error));
137 return sb_error;
140 StructuredDataType SBStructuredData::GetType() const {
141 LLDB_INSTRUMENT_VA(this);
143 return m_impl_up->GetType();
146 size_t SBStructuredData::GetSize() const {
147 LLDB_INSTRUMENT_VA(this);
149 return m_impl_up->GetSize();
152 bool SBStructuredData::GetKeys(lldb::SBStringList &keys) const {
153 LLDB_INSTRUMENT_VA(this, keys);
155 if (GetType() != eStructuredDataTypeDictionary)
156 return false;
158 StructuredData::ObjectSP obj_sp = m_impl_up->GetObjectSP();
159 if (!obj_sp)
160 return false;
162 StructuredData::Dictionary *dict = obj_sp->GetAsDictionary();
163 // We claimed we were a dictionary, so this can't be null.
164 assert(dict);
165 // The return kind of GetKeys is an Array:
166 StructuredData::ObjectSP array_sp = dict->GetKeys();
167 StructuredData::Array *key_arr = array_sp->GetAsArray();
168 assert(key_arr);
170 key_arr->ForEach([&keys](StructuredData::Object *object) -> bool {
171 llvm::StringRef key = object->GetStringValue("");
172 keys->AppendString(key);
173 return true;
175 return true;
178 lldb::SBStructuredData SBStructuredData::GetValueForKey(const char *key) const {
179 LLDB_INSTRUMENT_VA(this, key);
181 SBStructuredData result;
182 result.m_impl_up->SetObjectSP(m_impl_up->GetValueForKey(key));
183 return result;
186 lldb::SBStructuredData SBStructuredData::GetItemAtIndex(size_t idx) const {
187 LLDB_INSTRUMENT_VA(this, idx);
189 SBStructuredData result;
190 result.m_impl_up->SetObjectSP(m_impl_up->GetItemAtIndex(idx));
191 return result;
194 uint64_t SBStructuredData::GetIntegerValue(uint64_t fail_value) const {
195 LLDB_INSTRUMENT_VA(this, fail_value);
197 return GetUnsignedIntegerValue(fail_value);
200 uint64_t SBStructuredData::GetUnsignedIntegerValue(uint64_t fail_value) const {
201 LLDB_INSTRUMENT_VA(this, fail_value);
203 return m_impl_up->GetIntegerValue(fail_value);
206 int64_t SBStructuredData::GetSignedIntegerValue(int64_t fail_value) const {
207 LLDB_INSTRUMENT_VA(this, fail_value);
209 return m_impl_up->GetIntegerValue(fail_value);
212 double SBStructuredData::GetFloatValue(double fail_value) const {
213 LLDB_INSTRUMENT_VA(this, fail_value);
215 return m_impl_up->GetFloatValue(fail_value);
218 bool SBStructuredData::GetBooleanValue(bool fail_value) const {
219 LLDB_INSTRUMENT_VA(this, fail_value);
221 return m_impl_up->GetBooleanValue(fail_value);
224 size_t SBStructuredData::GetStringValue(char *dst, size_t dst_len) const {
225 LLDB_INSTRUMENT_VA(this, dst, dst_len);
227 return m_impl_up->GetStringValue(dst, dst_len);
230 lldb::SBScriptObject SBStructuredData::GetGenericValue() const {
231 LLDB_INSTRUMENT_VA(this);
233 return {m_impl_up->GetGenericValue(), eScriptLanguageDefault};