LLDB mainline
NSException.cpp
Go to the documentation of this file.
1//===-- NSException.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//===----------------------------------------------------------------------===//
8
9#include "clang/AST/DeclCXX.h"
10
11#include "Cocoa.h"
12
17#include "lldb/Target/Target.h"
19#include "lldb/Utility/Endian.h"
20#include "lldb/Utility/Status.h"
21#include "lldb/Utility/Stream.h"
22
26
27using namespace lldb;
28using namespace lldb_private;
29using namespace lldb_private::formatters;
30
31static bool ExtractFields(ValueObject &valobj, ValueObjectSP *name_sp,
32 ValueObjectSP *reason_sp, ValueObjectSP *userinfo_sp,
33 ValueObjectSP *reserved_sp) {
34 ProcessSP process_sp(valobj.GetProcessSP());
35 if (!process_sp)
36 return false;
37
39
40 CompilerType valobj_type(valobj.GetCompilerType());
41 Flags type_flags(valobj_type.GetTypeInfo());
42 if (type_flags.AllClear(eTypeHasValue)) {
43 if (valobj.IsBaseClass() && valobj.GetParent())
45 } else {
47 }
48
49 if (ptr == LLDB_INVALID_ADDRESS)
50 return false;
51 size_t ptr_size = process_sp->GetAddressByteSize();
52
54 auto name = process_sp->ReadPointerFromMemory(ptr + 1 * ptr_size, error);
55 if (error.Fail() || name == LLDB_INVALID_ADDRESS)
56 return false;
57 auto reason = process_sp->ReadPointerFromMemory(ptr + 2 * ptr_size, error);
58 if (error.Fail() || reason == LLDB_INVALID_ADDRESS)
59 return false;
60 auto userinfo = process_sp->ReadPointerFromMemory(ptr + 3 * ptr_size, error);
61 if (error.Fail() || userinfo == LLDB_INVALID_ADDRESS)
62 return false;
63 auto reserved = process_sp->ReadPointerFromMemory(ptr + 4 * ptr_size, error);
64 if (error.Fail() || reserved == LLDB_INVALID_ADDRESS)
65 return false;
66
67 InferiorSizedWord name_isw(name, *process_sp);
68 InferiorSizedWord reason_isw(reason, *process_sp);
69 InferiorSizedWord userinfo_isw(userinfo, *process_sp);
70 InferiorSizedWord reserved_isw(reserved, *process_sp);
71
72 TypeSystemClangSP scratch_ts_sp =
73 ScratchTypeSystemClang::GetForTarget(process_sp->GetTarget());
74 if (!scratch_ts_sp)
75 return false;
76
77 CompilerType voidstar =
78 scratch_ts_sp->GetBasicType(lldb::eBasicTypeVoid).GetPointerType();
79
80 if (name_sp)
82 "name", name_isw.GetAsData(process_sp->GetByteOrder()),
83 valobj.GetExecutionContextRef(), voidstar);
84 if (reason_sp)
86 "reason", reason_isw.GetAsData(process_sp->GetByteOrder()),
87 valobj.GetExecutionContextRef(), voidstar);
88 if (userinfo_sp)
90 "userInfo", userinfo_isw.GetAsData(process_sp->GetByteOrder()),
91 valobj.GetExecutionContextRef(), voidstar);
92 if (reserved_sp)
94 "reserved", reserved_isw.GetAsData(process_sp->GetByteOrder()),
95 valobj.GetExecutionContextRef(), voidstar);
96
97 return true;
98}
99
101 ValueObject &valobj, Stream &stream, const TypeSummaryOptions &options) {
102 lldb::ValueObjectSP reason_sp;
103 if (!ExtractFields(valobj, nullptr, &reason_sp, nullptr, nullptr))
104 return false;
105
106 if (!reason_sp) {
107 stream.Printf("No reason");
108 return false;
109 }
110
111 StreamString reason_str_summary;
112 if (NSStringSummaryProvider(*reason_sp, reason_str_summary, options) &&
113 !reason_str_summary.Empty()) {
114 stream.Printf("%s", reason_str_summary.GetData());
115 return true;
116 } else
117 return false;
118}
119
121public:
122 NSExceptionSyntheticFrontEnd(lldb::ValueObjectSP valobj_sp)
123 : SyntheticChildrenFrontEnd(*valobj_sp) {}
124
125 ~NSExceptionSyntheticFrontEnd() override = default;
126
127 size_t CalculateNumChildren() override {
128 return 4;
129 }
130
131 lldb::ValueObjectSP GetChildAtIndex(size_t idx) override {
132 switch (idx) {
133 case 0: return m_name_sp;
134 case 1: return m_reason_sp;
135 case 2: return m_userinfo_sp;
136 case 3: return m_reserved_sp;
137 }
138 return lldb::ValueObjectSP();
139 }
140
141 bool Update() override {
142 m_name_sp.reset();
143 m_reason_sp.reset();
144 m_userinfo_sp.reset();
145 m_reserved_sp.reset();
146
149 }
150
151 bool MightHaveChildren() override { return true; }
152
153 size_t GetIndexOfChildWithName(ConstString name) override {
154 // NSException has 4 members:
155 // NSString *name;
156 // NSString *reason;
157 // NSDictionary *userInfo;
158 // id reserved;
159 static ConstString g_name("name");
160 static ConstString g_reason("reason");
161 static ConstString g_userInfo("userInfo");
162 static ConstString g_reserved("reserved");
163 if (name == g_name) return 0;
164 if (name == g_reason) return 1;
165 if (name == g_userInfo) return 2;
166 if (name == g_reserved) return 3;
167 return UINT32_MAX;
168 }
169
170private:
171 ValueObjectSP m_name_sp;
172 ValueObjectSP m_reason_sp;
173 ValueObjectSP m_userinfo_sp;
174 ValueObjectSP m_reserved_sp;
175};
176
179 CXXSyntheticChildren *, lldb::ValueObjectSP valobj_sp) {
180 lldb::ProcessSP process_sp(valobj_sp->GetProcessSP());
181 if (!process_sp)
182 return nullptr;
183 ObjCLanguageRuntime *runtime = ObjCLanguageRuntime::Get(*process_sp);
184 if (!runtime)
185 return nullptr;
186
188 runtime->GetClassDescriptor(*valobj_sp.get()));
189
190 if (!descriptor.get() || !descriptor->IsValid())
191 return nullptr;
192
193 const char *class_name = descriptor->GetClassName().GetCString();
194
195 if (!class_name || !*class_name)
196 return nullptr;
197
198 if (!strcmp(class_name, "NSException"))
199 return (new NSExceptionSyntheticFrontEnd(valobj_sp));
200 else if (!strcmp(class_name, "NSCFException"))
201 return (new NSExceptionSyntheticFrontEnd(valobj_sp));
202 else if (!strcmp(class_name, "__NSCFException"))
203 return (new NSExceptionSyntheticFrontEnd(valobj_sp));
204
205 return nullptr;
206}
static llvm::raw_ostream & error(Stream &strm)
static bool ExtractFields(ValueObject &valobj, ValueObjectSP *name_sp, ValueObjectSP *reason_sp, ValueObjectSP *userinfo_sp, ValueObjectSP *reserved_sp)
Definition: NSException.cpp:31
size_t GetIndexOfChildWithName(ConstString name) override
~NSExceptionSyntheticFrontEnd() override=default
bool MightHaveChildren() override
lldb::ValueObjectSP GetChildAtIndex(size_t idx) override
NSExceptionSyntheticFrontEnd(lldb::ValueObjectSP valobj_sp)
size_t CalculateNumChildren() override
Generic representation of a type in a programming language.
Definition: CompilerType.h:36
CompilerType GetPointerType() const
Return a new CompilerType that is a pointer to this type.
uint32_t GetTypeInfo(CompilerType *pointee_or_element_compiler_type=nullptr) const
A uniqued constant string class.
Definition: ConstString.h:39
A class to manage flags.
Definition: Flags.h:22
bool AllClear(ValueType mask) const
Test if all bits in mask are clear.
Definition: Flags.h:103
std::shared_ptr< ClassDescriptor > ClassDescriptorSP
static ObjCLanguageRuntime * Get(Process &process)
virtual ClassDescriptorSP GetClassDescriptor(ValueObject &in_value)
static lldb::TypeSystemClangSP GetForTarget(Target &target, std::optional< IsolatedASTKind > ast_kind=DefaultAST, bool create_on_demand=true)
Returns the scratch TypeSystemClang for the given target.
An error handling class.
Definition: Status.h:44
const char * GetData() const
Definition: StreamString.h:43
A stream class that can stream formatted output to a file.
Definition: Stream.h:28
size_t Printf(const char *format,...) __attribute__((format(printf
Output printf formatted output to the stream.
Definition: Stream.cpp:107
CompilerType GetCompilerType()
Definition: ValueObject.h:352
lldb::ProcessSP GetProcessSP() const
Definition: ValueObject.h:338
virtual uint64_t GetValueAsUnsigned(uint64_t fail_value, bool *success=nullptr)
static lldb::ValueObjectSP CreateValueObjectFromData(llvm::StringRef name, const DataExtractor &data, const ExecutionContext &exe_ctx, CompilerType type)
virtual bool IsBaseClass()
Definition: ValueObject.h:398
virtual ValueObject * GetParent()
Definition: ValueObject.h:753
const ExecutionContextRef & GetExecutionContextRef() const
Definition: ValueObject.h:330
#define LLDB_INVALID_ADDRESS
Definition: lldb-defines.h:74
#define UINT32_MAX
Definition: lldb-defines.h:19
bool NSException_SummaryProvider(ValueObject &valobj, Stream &stream, const TypeSummaryOptions &options)
SyntheticChildrenFrontEnd * NSExceptionSyntheticFrontEndCreator(CXXSyntheticChildren *, lldb::ValueObjectSP valobj_sp)
bool NSStringSummaryProvider(ValueObject &valobj, Stream &stream, const TypeSummaryOptions &options)
Definition: NSString.cpp:33
A class that represents a running process on the host machine.
Definition: SBAttachInfo.h:14
Definition: SBAddress.h:15
uint64_t addr_t
Definition: lldb-types.h:79
DataExtractor GetAsData(lldb::ByteOrder byte_order=lldb::eByteOrderInvalid) const