LLDB mainline
AppleObjCRuntime.cpp
Go to the documentation of this file.
1//===-- AppleObjCRuntime.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 "AppleObjCRuntime.h"
10#include "AppleObjCRuntimeV1.h"
11#include "AppleObjCRuntimeV2.h"
17#include "lldb/Core/Module.h"
20#include "lldb/Core/Section.h"
28#include "lldb/Target/Process.h"
31#include "lldb/Target/Target.h"
32#include "lldb/Target/Thread.h"
36#include "lldb/Utility/Log.h"
37#include "lldb/Utility/Scalar.h"
38#include "lldb/Utility/Status.h"
40#include "clang/AST/Type.h"
41
43
44#include <vector>
45
46using namespace lldb;
47using namespace lldb_private;
48
50
52
54
56 : ObjCLanguageRuntime(process), m_read_objc_library(false),
57 m_objc_trampoline_handler_up(), m_Foundation_major() {
59}
60
64}
65
69}
70
72 ValueObject &valobj) {
73 CompilerType compiler_type(valobj.GetCompilerType());
74 bool is_signed;
75 // ObjC objects can only be pointers (or numbers that actually represents
76 // pointers but haven't been typecast, because reasons..)
77 if (!compiler_type.IsIntegerType(is_signed) && !compiler_type.IsPointerType())
78 return llvm::createStringError("not a pointer type");
79
80 // Make the argument list: we pass one arg, the address of our pointer, to
81 // the print function.
82 Value val;
83
84 if (!valobj.ResolveValue(val.GetScalar()))
85 return llvm::createStringError("pointer value could not be resolved");
86
87 // Value Objects may not have a process in their ExecutionContextRef. But we
88 // need to have one in the ref we pass down to eventually call description.
89 // Get it from the target if it isn't present.
90 ExecutionContext exe_ctx;
91 if (valobj.GetProcessSP()) {
92 exe_ctx = ExecutionContext(valobj.GetExecutionContextRef());
93 } else {
94 exe_ctx.SetContext(valobj.GetTargetSP(), true);
95 if (!exe_ctx.HasProcessScope())
96 return llvm::createStringError("no process");
97 }
98 return GetObjectDescription(str, val, exe_ctx.GetBestExecutionContextScope());
99}
100
101llvm::Error
103 ExecutionContextScope *exe_scope) {
105 return llvm::createStringError("Objective-C runtime not loaded");
106
107 ExecutionContext exe_ctx;
108 exe_scope->CalculateExecutionContext(exe_ctx);
109 Process *process = exe_ctx.GetProcessPtr();
110 if (!process)
111 return llvm::createStringError("no process");
112
113 // We need other parts of the exe_ctx, but the processes have to match.
114 assert(m_process == process);
115
116 // Get the function address for the print function.
117 const Address *function_address = GetPrintForDebuggerAddr();
118 if (!function_address)
119 return llvm::createStringError("no print function");
120
121 Target *target = exe_ctx.GetTargetPtr();
122 CompilerType compiler_type = value.GetCompilerType();
123 if (compiler_type) {
125 return llvm::createStringError(
126 "Value doesn't point to an ObjC object.\n");
127 } else {
128 // If it is not a pointer, see if we can make it into a pointer.
129 TypeSystemClangSP scratch_ts_sp =
131 if (!scratch_ts_sp)
132 return llvm::createStringError("no scratch type system");
133
134 CompilerType opaque_type = scratch_ts_sp->GetBasicType(eBasicTypeObjCID);
135 if (!opaque_type)
136 opaque_type =
137 scratch_ts_sp->GetBasicType(eBasicTypeVoid).GetPointerType();
138 // value.SetContext(Value::eContextTypeClangType, opaque_type_ptr);
139 value.SetCompilerType(opaque_type);
140 }
141
142 ValueList arg_value_list;
143 arg_value_list.PushValue(value);
144
145 // This is the return value:
146 TypeSystemClangSP scratch_ts_sp =
148 if (!scratch_ts_sp)
149 return llvm::createStringError("no scratch type system");
150
151 CompilerType return_compiler_type = scratch_ts_sp->GetCStringType(true);
152 Value ret;
153 // ret.SetContext(Value::eContextTypeClangType, return_compiler_type);
154 ret.SetCompilerType(return_compiler_type);
155
156 if (!exe_ctx.GetFramePtr()) {
157 Thread *thread = exe_ctx.GetThreadPtr();
158 if (thread == nullptr) {
159 exe_ctx.SetThreadSP(process->GetThreadList().GetSelectedThread());
160 thread = exe_ctx.GetThreadPtr();
161 }
162 if (thread) {
164 }
165 }
166
167 // Now we're ready to call the function:
168
169 DiagnosticManager diagnostics;
170 lldb::addr_t wrapper_struct_addr = LLDB_INVALID_ADDRESS;
171
175 exe_scope->CalculateTarget()->GetFunctionCallerForLanguage(
176 eLanguageTypeObjC, return_compiler_type, *function_address,
177 arg_value_list, "objc-object-description", error));
178 if (error.Fail()) {
180 return llvm::createStringError(
181 llvm::Twine(
182 "could not get function runner to call print for debugger "
183 "function: ") +
184 error.AsCString());
185 }
186 m_print_object_caller_up->InsertFunction(exe_ctx, wrapper_struct_addr,
187 diagnostics);
188 } else {
189 m_print_object_caller_up->WriteFunctionArguments(
190 exe_ctx, wrapper_struct_addr, arg_value_list, diagnostics);
191 }
192
194 options.SetUnwindOnError(true);
195 options.SetTryAllThreads(true);
196 options.SetStopOthers(true);
197 options.SetIgnoreBreakpoints(true);
198 options.SetTimeout(process->GetUtilityExpressionTimeout());
199 options.SetIsForUtilityExpr(true);
200
201 ExpressionResults results = m_print_object_caller_up->ExecuteFunction(
202 exe_ctx, &wrapper_struct_addr, options, diagnostics, ret);
203 if (results != eExpressionCompleted)
204 return llvm::createStringError(
205 "could not evaluate print object function: " + toString(results));
206
208
209 char buf[512];
210 size_t cstr_len = 0;
211 size_t full_buffer_len = sizeof(buf) - 1;
212 size_t curr_len = full_buffer_len;
213 while (curr_len == full_buffer_len) {
215 curr_len = process->ReadCStringFromMemory(result_ptr + cstr_len, buf,
216 sizeof(buf), error);
217 strm.Write(buf, curr_len);
218 cstr_len += curr_len;
219 }
220 if (cstr_len > 0)
221 return llvm::Error::success();
222 return llvm::createStringError("empty object description");
223}
224
226 ModuleSP module_sp(m_objc_module_wp.lock());
227 if (module_sp)
228 return module_sp;
229
230 Process *process = GetProcess();
231 if (process) {
232 const ModuleList &modules = process->GetTarget().GetImages();
233 for (uint32_t idx = 0; idx < modules.GetSize(); idx++) {
234 module_sp = modules.GetModuleAtIndex(idx);
236 m_objc_module_wp = module_sp;
237 return module_sp;
238 }
239 }
240 }
241 return ModuleSP();
242}
243
246 const ModuleList &modules = m_process->GetTarget().GetImages();
247
248 SymbolContextList contexts;
249 SymbolContext context;
250
251 modules.FindSymbolsWithNameAndType(ConstString("_NSPrintForDebugger"),
252 eSymbolTypeCode, contexts);
253 if (contexts.IsEmpty()) {
254 modules.FindSymbolsWithNameAndType(ConstString("_CFPrintForDebugger"),
255 eSymbolTypeCode, contexts);
256 if (contexts.IsEmpty())
257 return nullptr;
258 }
259
260 contexts.GetContextAtIndex(0, context);
261
263 std::make_unique<Address>(context.symbol->GetAddress());
264 }
265
266 return m_PrintForDebugger_addr.get();
267}
268
270 return in_value.GetCompilerType().IsPossibleDynamicType(
271 nullptr,
272 false, // do not check C++
273 true); // check ObjC
274}
275
277 ValueObject &in_value, lldb::DynamicValueType use_dynamic,
278 TypeAndOrName &class_type_or_name, Address &address,
279 Value::ValueType &value_type) {
280 return false;
281}
282
285 ValueObject &static_value) {
286 CompilerType static_type(static_value.GetCompilerType());
287 Flags static_type_flags(static_type.GetTypeInfo());
288
289 TypeAndOrName ret(type_and_or_name);
290 if (type_and_or_name.HasType()) {
291 // The type will always be the type of the dynamic object. If our parent's
292 // type was a pointer, then our type should be a pointer to the type of the
293 // dynamic object. If a reference, then the original type should be
294 // okay...
295 CompilerType orig_type = type_and_or_name.GetCompilerType();
296 CompilerType corrected_type = orig_type;
297 if (static_type_flags.AllSet(eTypeIsPointer))
298 corrected_type = orig_type.GetPointerType();
299 ret.SetCompilerType(corrected_type);
300 } else {
301 // If we are here we need to adjust our dynamic type name to include the
302 // correct & or * symbol
303 std::string corrected_name(type_and_or_name.GetName().GetCString());
304 if (static_type_flags.AllSet(eTypeIsPointer))
305 corrected_name.append(" *");
306 // the parent type should be a correctly pointer'ed or referenc'ed type
307 ret.SetCompilerType(static_type);
308 ret.SetName(corrected_name.c_str());
309 }
310 return ret;
311}
312
314 if (module_sp) {
315 const FileSpec &module_file_spec = module_sp->GetFileSpec();
316 static ConstString ObjCName("libobjc.A.dylib");
317
318 if (module_file_spec) {
319 if (module_file_spec.GetFilename() == ObjCName)
320 return true;
321 }
322 }
323 return false;
324}
325
326// we use the version of Foundation to make assumptions about the ObjC runtime
327// on a target
329 if (!m_Foundation_major) {
330 const ModuleList &modules = m_process->GetTarget().GetImages();
331 for (uint32_t idx = 0; idx < modules.GetSize(); idx++) {
332 lldb::ModuleSP module_sp = modules.GetModuleAtIndex(idx);
333 if (!module_sp)
334 continue;
335 if (strcmp(module_sp->GetFileSpec().GetFilename().AsCString(""),
336 "Foundation") == 0) {
337 m_Foundation_major = module_sp->GetVersion().getMajor();
338 return *m_Foundation_major;
339 }
340 }
342 } else
343 return *m_Foundation_major;
344}
345
347 lldb::addr_t &cf_false) {
348 cf_true = cf_false = LLDB_INVALID_ADDRESS;
349}
350
352 return AppleIsModuleObjCLibrary(module_sp);
353}
354
356 // Maybe check here and if we have a handler already, and the UUID of this
357 // module is the same as the one in the current module, then we don't have to
358 // reread it?
359 m_objc_trampoline_handler_up = std::make_unique<AppleObjCTrampolineHandler>(
360 m_process->shared_from_this(), module_sp);
361 if (m_objc_trampoline_handler_up != nullptr) {
362 m_read_objc_library = true;
363 return true;
364 } else
365 return false;
366}
367
369 bool stop_others) {
370 ThreadPlanSP thread_plan_sp;
372 thread_plan_sp = m_objc_trampoline_handler_up->GetStepThroughDispatchPlan(
373 thread, stop_others);
374 return thread_plan_sp;
375}
376
377// Static Functions
380 if (!process)
382
383 Target &target = process->GetTarget();
384 if (target.GetArchitecture().GetTriple().getVendor() !=
385 llvm::Triple::VendorType::Apple)
387
388 for (ModuleSP module_sp : target.GetImages().Modules()) {
389 // One tricky bit here is that we might get called as part of the initial
390 // module loading, but before all the pre-run libraries get winnowed from
391 // the module list. So there might actually be an old and incorrect ObjC
392 // library sitting around in the list, and we don't want to look at that.
393 // That's why we call IsLoadedInTarget.
394
395 if (AppleIsModuleObjCLibrary(module_sp) &&
396 module_sp->IsLoadedInTarget(&target)) {
397 objc_module_sp = module_sp;
398 ObjectFile *ofile = module_sp->GetObjectFile();
399 if (!ofile)
401
402 SectionList *sections = module_sp->GetSectionList();
403 if (!sections)
405 SectionSP v1_telltale_section_sp =
406 sections->FindSectionByName(ConstString("__OBJC"));
407 if (v1_telltale_section_sp) {
409 }
411 }
412 }
413
415}
416
418 const bool catch_bp = false;
419 const bool throw_bp = true;
420 const bool is_internal = true;
421
424 m_process->GetTarget(), GetLanguageType(), catch_bp, throw_bp,
425 is_internal);
427 m_objc_exception_bp_sp->SetBreakpointKind("ObjC exception");
428 } else
429 m_objc_exception_bp_sp->SetEnabled(true);
430}
431
433 if (!m_process)
434 return;
435
436 if (m_objc_exception_bp_sp.get()) {
437 m_objc_exception_bp_sp->SetEnabled(false);
438 }
439}
440
442 return m_objc_exception_bp_sp && m_objc_exception_bp_sp->IsEnabled();
443}
444
446 lldb::StopInfoSP stop_reason) {
447 if (!m_process)
448 return false;
449
450 if (!stop_reason || stop_reason->GetStopReason() != eStopReasonBreakpoint)
451 return false;
452
453 uint64_t break_site_id = stop_reason->GetValue();
455 break_site_id, m_objc_exception_bp_sp->GetID());
456}
457
459 if (!m_process)
460 return false;
461
462 Target &target(m_process->GetTarget());
463
464 static ConstString s_method_signature(
465 "-[NSDictionary objectForKeyedSubscript:]");
466 static ConstString s_arclite_method_signature(
467 "__arclite_objectForKeyedSubscript");
468
469 SymbolContextList sc_list;
470
471 target.GetImages().FindSymbolsWithNameAndType(s_method_signature,
472 eSymbolTypeCode, sc_list);
473 if (sc_list.IsEmpty())
474 target.GetImages().FindSymbolsWithNameAndType(s_arclite_method_signature,
475 eSymbolTypeCode, sc_list);
476 return !sc_list.IsEmpty();
477}
478
480 Target &target = m_process->GetTarget();
481
482 FileSpecList filter_modules;
483 if (target.GetArchitecture().GetTriple().getVendor() == llvm::Triple::Apple) {
484 filter_modules.Append(std::get<0>(GetExceptionThrowLocation()));
485 }
486 return target.GetSearchFilterForModuleList(&filter_modules);
487}
488
490 ThreadSP thread_sp) {
492 if (!cpp_runtime) return ValueObjectSP();
493 auto cpp_exception = cpp_runtime->GetExceptionObjectForThread(thread_sp);
494 if (!cpp_exception) return ValueObjectSP();
495
496 auto descriptor = GetClassDescriptor(*cpp_exception);
497 if (!descriptor || !descriptor->IsValid()) return ValueObjectSP();
498
499 while (descriptor) {
500 ConstString class_name(descriptor->GetClassName());
501 if (class_name == "NSException")
502 return cpp_exception;
503 descriptor = descriptor->GetSuperclass();
504 }
505
506 return ValueObjectSP();
507}
508
509/// Utility method for error handling in GetBacktraceThreadFromException.
510/// \param msg The message to add to the log.
511/// \return An invalid ThreadSP to be returned from
512/// GetBacktraceThreadFromException.
513[[nodiscard]]
514static ThreadSP FailExceptionParsing(llvm::StringRef msg) {
516 LLDB_LOG(log, "Failed getting backtrace from exception: {0}", msg);
517 return ThreadSP();
518}
519
521 lldb::ValueObjectSP exception_sp) {
522 ValueObjectSP reserved_dict =
523 exception_sp->GetChildMemberWithName("reserved");
524 if (!reserved_dict)
525 return FailExceptionParsing("Failed to get 'reserved' member.");
526
527 reserved_dict = reserved_dict->GetSyntheticValue();
528 if (!reserved_dict)
529 return FailExceptionParsing("Failed to get synthetic value.");
530
531 TypeSystemClangSP scratch_ts_sp =
532 ScratchTypeSystemClang::GetForTarget(*exception_sp->GetTargetSP());
533 if (!scratch_ts_sp)
534 return FailExceptionParsing("Failed to get scratch AST.");
535 CompilerType objc_id = scratch_ts_sp->GetBasicType(lldb::eBasicTypeObjCID);
536 ValueObjectSP return_addresses;
537
538 auto objc_object_from_address = [&exception_sp, &objc_id](uint64_t addr,
539 const char *name) {
540 Value value(addr);
541 value.SetCompilerType(objc_id);
542 auto object = ValueObjectConstResult::Create(
543 exception_sp->GetTargetSP().get(), value, ConstString(name));
544 object = object->GetDynamicValue(eDynamicDontRunTarget);
545 return object;
546 };
547
548 for (size_t idx = 0; idx < reserved_dict->GetNumChildrenIgnoringErrors();
549 idx++) {
550 ValueObjectSP dict_entry = reserved_dict->GetChildAtIndex(idx);
551
552 DataExtractor data;
553 data.SetAddressByteSize(dict_entry->GetProcessSP()->GetAddressByteSize());
555 dict_entry->GetData(data, error);
556 if (error.Fail()) return ThreadSP();
557
558 lldb::offset_t data_offset = 0;
559 auto dict_entry_key = data.GetAddress(&data_offset);
560 auto dict_entry_value = data.GetAddress(&data_offset);
561
562 auto key_nsstring = objc_object_from_address(dict_entry_key, "key");
563 StreamString key_summary;
565 *key_nsstring, key_summary, TypeSummaryOptions()) &&
566 !key_summary.Empty()) {
567 if (key_summary.GetString() == "\"callStackReturnAddresses\"") {
568 return_addresses = objc_object_from_address(dict_entry_value,
569 "callStackReturnAddresses");
570 break;
571 }
572 }
573 }
574
575 if (!return_addresses)
576 return FailExceptionParsing("Failed to get return addresses.");
577 auto frames_value = return_addresses->GetChildMemberWithName("_frames");
578 if (!frames_value)
579 return FailExceptionParsing("Failed to get frames_value.");
580 addr_t frames_addr = frames_value->GetValueAsUnsigned(0);
581 auto count_value = return_addresses->GetChildMemberWithName("_cnt");
582 if (!count_value)
583 return FailExceptionParsing("Failed to get count_value.");
584 size_t count = count_value->GetValueAsUnsigned(0);
585 auto ignore_value = return_addresses->GetChildMemberWithName("_ignore");
586 if (!ignore_value)
587 return FailExceptionParsing("Failed to get ignore_value.");
588 size_t ignore = ignore_value->GetValueAsUnsigned(0);
589
590 size_t ptr_size = m_process->GetAddressByteSize();
591 std::vector<lldb::addr_t> pcs;
592 for (size_t idx = 0; idx < count; idx++) {
595 frames_addr + (ignore + idx) * ptr_size, error);
596 pcs.push_back(pc);
597 }
598
599 if (pcs.empty())
600 return FailExceptionParsing("Failed to get PC list.");
601
602 ThreadSP new_thread_sp(new HistoryThread(*m_process, 0, pcs));
603 m_process->GetExtendedThreadList().AddThread(new_thread_sp);
604 return new_thread_sp;
605}
606
607std::tuple<FileSpec, ConstString>
609 return std::make_tuple(
610 FileSpec("libobjc.A.dylib"), ConstString("objc_exception_throw"));
611}
612
614 if (!HasReadObjCLibrary()) {
615 std::lock_guard<std::recursive_mutex> guard(module_list.GetMutex());
616
617 size_t num_modules = module_list.GetSize();
618 for (size_t i = 0; i < num_modules; i++) {
619 auto mod = module_list.GetModuleAtIndex(i);
620 if (IsModuleObjCLibrary(mod)) {
621 ReadObjCLibrary(mod);
622 break;
623 }
624 }
625 }
626}
627
629 ReadObjCLibraryIfNeeded(module_list);
630}
static ThreadSP FailExceptionParsing(llvm::StringRef msg)
Utility method for error handling in GetBacktraceThreadFromException.
static llvm::raw_ostream & error(Stream &strm)
#define LLDB_LOG(log,...)
The LLDB_LOG* macros defined below are the way to emit log messages.
Definition: Log.h:359
#define LLDB_PLUGIN_DEFINE(PluginName)
Definition: PluginManager.h:32
A section + offset based address class.
Definition: Address.h:62
virtual void GetValuesForGlobalCFBooleans(lldb::addr_t &cf_true, lldb::addr_t &cf_false)
lldb::ThreadSP GetBacktraceThreadFromException(lldb::ValueObjectSP thread_sp) override
bool CalculateHasNewLiteralsAndIndexing() override
static bool AppleIsModuleObjCLibrary(const lldb::ModuleSP &module_sp)
bool ReadObjCLibrary(const lldb::ModuleSP &module_sp) override
bool ExceptionBreakpointsExplainStop(lldb::StopInfoSP stop_reason) override
bool GetDynamicTypeAndAddress(ValueObject &in_value, lldb::DynamicValueType use_dynamic, TypeAndOrName &class_type_or_name, Address &address, Value::ValueType &value_type) override
TypeAndOrName FixUpDynamicType(const TypeAndOrName &type_and_or_name, ValueObject &static_value) override
std::optional< uint32_t > m_Foundation_major
std::unique_ptr< Address > m_PrintForDebugger_addr
static std::tuple< FileSpec, ConstString > GetExceptionThrowLocation()
lldb::BreakpointSP m_objc_exception_bp_sp
void ReadObjCLibraryIfNeeded(const ModuleList &module_list)
lldb::SearchFilterSP CreateExceptionSearchFilter() override
static ObjCRuntimeVersions GetObjCVersion(Process *process, lldb::ModuleSP &objc_module_sp)
llvm::Error GetObjectDescription(Stream &str, Value &value, ExecutionContextScope *exe_scope) override
lldb::ThreadPlanSP GetStepThroughTrampolinePlan(Thread &thread, bool stop_others) override
bool IsModuleObjCLibrary(const lldb::ModuleSP &module_sp) override
lldb::ValueObjectSP GetExceptionObjectForThread(lldb::ThreadSP thread_sp) override
std::unique_ptr< lldb_private::AppleObjCTrampolineHandler > m_objc_trampoline_handler_up
void ModulesDidLoad(const ModuleList &module_list) override
Called when modules have been loaded in the process.
bool CouldHaveDynamicValue(ValueObject &in_value) override
std::unique_ptr< FunctionCaller > m_print_object_caller_up
llvm::Triple & GetTriple()
Architecture triple accessor.
Definition: ArchSpec.h:450
Generic representation of a type in a programming language.
Definition: CompilerType.h:36
bool IsPossibleDynamicType(CompilerType *target_type, bool check_cplusplus, bool check_objc) const
CompilerType GetPointerType() const
Return a new CompilerType that is a pointer to this type.
bool IsIntegerType(bool &is_signed) const
uint32_t GetTypeInfo(CompilerType *pointee_or_element_compiler_type=nullptr) const
bool IsPointerType(CompilerType *pointee_type=nullptr) const
A uniqued constant string class.
Definition: ConstString.h:40
const char * GetCString() const
Get the string value as a C string.
Definition: ConstString.h:216
An data extractor class.
Definition: DataExtractor.h:48
uint64_t GetAddress(lldb::offset_t *offset_ptr) const
Extract an address from *offset_ptr.
void SetAddressByteSize(uint32_t addr_size)
Set the address byte size.
void SetUnwindOnError(bool unwind=false)
Definition: Target.h:343
void SetTryAllThreads(bool try_others=true)
Definition: Target.h:376
void SetTimeout(const Timeout< std::micro > &timeout)
Definition: Target.h:364
void SetStopOthers(bool stop_others=true)
Definition: Target.h:380
void SetIgnoreBreakpoints(bool ignore=false)
Definition: Target.h:347
"lldb/Target/ExecutionContextScope.h" Inherit from this if your object can reconstruct its execution ...
virtual void CalculateExecutionContext(ExecutionContext &exe_ctx)=0
Reconstruct the object's execution context into sc.
virtual lldb::TargetSP CalculateTarget()=0
"lldb/Target/ExecutionContext.h" A class that contains an execution context.
void SetFrameSP(const lldb::StackFrameSP &frame_sp)
Set accessor to set only the frame shared pointer.
bool HasProcessScope() const
Returns true the ExecutionContext object contains a valid target and process.
ExecutionContextScope * GetBestExecutionContextScope() const
StackFrame * GetFramePtr() const
Returns a pointer to the frame object.
void SetContext(const lldb::TargetSP &target_sp, bool get_process)
Target * GetTargetPtr() const
Returns a pointer to the target object.
void SetThreadSP(const lldb::ThreadSP &thread_sp)
Set accessor to set only the thread shared pointer.
Process * GetProcessPtr() const
Returns a pointer to the process object.
Thread * GetThreadPtr() const
Returns a pointer to the thread object.
A file collection class.
Definition: FileSpecList.h:85
void Append(const FileSpec &file)
Append a FileSpec object to the list.
A file utility class.
Definition: FileSpec.h:56
const ConstString & GetFilename() const
Filename string const get accessor.
Definition: FileSpec.h:240
A class to manage flags.
Definition: Flags.h:22
bool AllSet(ValueType mask) const
Test if all bits in mask are 1 in the current flags.
Definition: Flags.h:83
A thread object representing a backtrace from a previous point in the process execution.
Definition: HistoryThread.h:33
static lldb::BreakpointSP CreateExceptionBreakpoint(Target &target, lldb::LanguageType language, bool catch_bp, bool throw_bp, bool is_internal=false)
A collection class for Module objects.
Definition: ModuleList.h:103
std::recursive_mutex & GetMutex() const
Definition: ModuleList.h:230
void FindSymbolsWithNameAndType(ConstString name, lldb::SymbolType symbol_type, SymbolContextList &sc_list) const
Definition: ModuleList.cpp:527
lldb::ModuleSP GetModuleAtIndex(size_t idx) const
Get the module shared pointer for the module at index idx.
Definition: ModuleList.cpp:429
ModuleIterable Modules() const
Definition: ModuleList.h:527
size_t GetSize() const
Gets the size of the module list.
Definition: ModuleList.cpp:638
virtual ClassDescriptorSP GetClassDescriptor(ValueObject &in_value)
lldb::LanguageType GetLanguageType() const override
A plug-in interface definition class for object file parsers.
Definition: ObjectFile.h:44
std::chrono::seconds GetUtilityExpressionTimeout() const
Definition: Process.cpp:348
A plug-in interface definition class for debugging a process.
Definition: Process.h:341
StopPointSiteList< lldb_private::BreakpointSite > & GetBreakpointSiteList()
Definition: Process.cpp:1607
ThreadList & GetThreadList()
Definition: Process.h:2215
size_t ReadCStringFromMemory(lldb::addr_t vm_addr, char *cstr, size_t cstr_max_len, Status &error)
Read a NULL terminated C string from memory.
Definition: Process.cpp:2159
ThreadList & GetExtendedThreadList()
Definition: Process.h:2226
lldb::addr_t ReadPointerFromMemory(lldb::addr_t vm_addr, Status &error)
Definition: Process.cpp:2256
LanguageRuntime * GetLanguageRuntime(lldb::LanguageType language)
Definition: Process.cpp:1554
uint32_t GetAddressByteSize() const
Definition: Process.cpp:3593
Target & GetTarget()
Get the target object pointer for this module.
Definition: Process.h:1279
Process * m_process
Definition: Runtime.h:29
Process * GetProcess()
Definition: Runtime.h:22
unsigned long long ULongLong(unsigned long long fail_value=0) const
Definition: Scalar.cpp:335
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.
lldb::SectionSP FindSectionByName(ConstString section_dstr) const
Definition: Section.cpp:552
An error handling class.
Definition: Status.h:44
bool StopPointSiteContainsBreakpoint(typename StopPointSite::SiteID, lldb::break_id_t bp_id)
Returns whether the BreakpointSite site_id has a BreakpointLocation that is part of Breakpoint bp_id.
llvm::StringRef GetString() const
A stream class that can stream formatted output to a file.
Definition: Stream.h:28
size_t Write(const void *src, size_t src_len)
Output character bytes to the stream.
Definition: Stream.h:112
Defines a list of symbol context objects.
bool GetContextAtIndex(size_t idx, SymbolContext &sc) const
Get accessor for a symbol context at index idx.
Defines a symbol context baton that can be handed other debug core functions.
Definition: SymbolContext.h:34
Symbol * symbol
The Symbol for a given query.
Address GetAddress() const
Definition: Symbol.h:88
lldb::SearchFilterSP GetSearchFilterForModuleList(const FileSpecList *containingModuleList)
Definition: Target.cpp:592
const ModuleList & GetImages() const
Get accessor for the images for this process.
Definition: Target.h:981
const ArchSpec & GetArchitecture() const
Definition: Target.h:1023
void AddThread(const lldb::ThreadSP &thread_sp)
lldb::ThreadSP GetSelectedThread()
Definition: ThreadList.cpp:683
lldb::StackFrameSP GetSelectedFrame(SelectMostRelevant select_most_relevant)
Definition: Thread.cpp:265
Sometimes you can find the name of the type corresponding to an object, but we don't have debug infor...
Definition: Type.h:743
void SetName(ConstString type_name)
Definition: Type.cpp:878
CompilerType GetCompilerType() const
Definition: Type.h:757
ConstString GetName() const
Definition: Type.cpp:870
void SetCompilerType(CompilerType compiler_type)
Definition: Type.cpp:898
bool HasType() const
Definition: Type.h:775
static bool IsObjCObjectPointerType(const CompilerType &type, CompilerType *target_type=nullptr)
void PushValue(const Value &value)
Definition: Value.cpp:682
static lldb::ValueObjectSP Create(ExecutionContextScope *exe_scope, lldb::ByteOrder byte_order, uint32_t addr_byte_size, lldb::addr_t address=LLDB_INVALID_ADDRESS)
CompilerType GetCompilerType()
Definition: ValueObject.h:352
lldb::ProcessSP GetProcessSP() const
Definition: ValueObject.h:338
lldb::TargetSP GetTargetSP() const
Definition: ValueObject.h:334
virtual bool ResolveValue(Scalar &scalar)
const ExecutionContextRef & GetExecutionContextRef() const
Definition: ValueObject.h:330
const Scalar & GetScalar() const
Definition: Value.h:112
ValueType
Type that describes Value::m_value.
Definition: Value.h:41
void SetCompilerType(const CompilerType &compiler_type)
Definition: Value.cpp:268
const CompilerType & GetCompilerType()
Definition: Value.cpp:239
#define LLDB_INVALID_MODULE_VERSION
Definition: lldb-defines.h:86
#define LLDB_INVALID_ADDRESS
Definition: lldb-defines.h:82
@ DoNoSelectMostRelevantFrame
bool NSStringSummaryProvider(ValueObject &valobj, Stream &stream, const TypeSummaryOptions &options)
Definition: NSString.cpp:33
A class that represents a running process on the host machine.
Log * GetLog(Cat mask)
Retrieve the Log object for the channel associated with the given log enum.
Definition: Log.h:331
const char * toString(AppleArm64ExceptionClass EC)
Definition: SBAddress.h:15
std::shared_ptr< lldb_private::ThreadPlan > ThreadPlanSP
Definition: lldb-forward.h:448
std::shared_ptr< lldb_private::SearchFilter > SearchFilterSP
Definition: lldb-forward.h:417
@ eBasicTypeObjCID
std::shared_ptr< lldb_private::Thread > ThreadSP
Definition: lldb-forward.h:445
std::shared_ptr< lldb_private::ValueObject > ValueObjectSP
Definition: lldb-forward.h:479
uint64_t offset_t
Definition: lldb-types.h:85
@ eLanguageTypeObjC
Objective-C.
@ eLanguageTypeC_plus_plus
ISO C++:1998.
ExpressionResults
The results of expression evaluation.
@ eExpressionCompleted
std::shared_ptr< lldb_private::TypeSystemClang > TypeSystemClangSP
Definition: lldb-forward.h:465
std::shared_ptr< lldb_private::StopInfo > StopInfoSP
Definition: lldb-forward.h:426
std::shared_ptr< lldb_private::Section > SectionSP
Definition: lldb-forward.h:413
uint64_t addr_t
Definition: lldb-types.h:80
@ eStopReasonBreakpoint
@ eDynamicDontRunTarget
std::shared_ptr< lldb_private::Module > ModuleSP
Definition: lldb-forward.h:370