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"
35#include "lldb/Utility/Log.h"
36#include "lldb/Utility/Scalar.h"
37#include "lldb/Utility/Status.h"
39#include "clang/AST/Type.h"
40
42
43#include <vector>
44
45using namespace lldb;
46using namespace lldb_private;
47
49
51
53
55 : ObjCLanguageRuntime(process), m_read_objc_library(false),
56 m_objc_trampoline_handler_up(), m_Foundation_major() {
58}
59
63}
64
68}
69
71 CompilerType compiler_type(valobj.GetCompilerType());
72 bool is_signed;
73 // ObjC objects can only be pointers (or numbers that actually represents
74 // pointers but haven't been typecast, because reasons..)
75 if (!compiler_type.IsIntegerType(is_signed) && !compiler_type.IsPointerType())
76 return false;
77
78 // Make the argument list: we pass one arg, the address of our pointer, to
79 // the print function.
80 Value val;
81
82 if (!valobj.ResolveValue(val.GetScalar()))
83 return false;
84
85 // Value Objects may not have a process in their ExecutionContextRef. But we
86 // need to have one in the ref we pass down to eventually call description.
87 // Get it from the target if it isn't present.
88 ExecutionContext exe_ctx;
89 if (valobj.GetProcessSP()) {
90 exe_ctx = ExecutionContext(valobj.GetExecutionContextRef());
91 } else {
92 exe_ctx.SetContext(valobj.GetTargetSP(), true);
93 if (!exe_ctx.HasProcessScope())
94 return false;
95 }
96 return GetObjectDescription(str, val, exe_ctx.GetBestExecutionContextScope());
97}
99 ExecutionContextScope *exe_scope) {
101 return false;
102
103 ExecutionContext exe_ctx;
104 exe_scope->CalculateExecutionContext(exe_ctx);
105 Process *process = exe_ctx.GetProcessPtr();
106 if (!process)
107 return false;
108
109 // We need other parts of the exe_ctx, but the processes have to match.
110 assert(m_process == process);
111
112 // Get the function address for the print function.
113 const Address *function_address = GetPrintForDebuggerAddr();
114 if (!function_address)
115 return false;
116
117 Target *target = exe_ctx.GetTargetPtr();
118 CompilerType compiler_type = value.GetCompilerType();
119 if (compiler_type) {
120 if (!TypeSystemClang::IsObjCObjectPointerType(compiler_type)) {
121 strm.Printf("Value doesn't point to an ObjC object.\n");
122 return false;
123 }
124 } else {
125 // If it is not a pointer, see if we can make it into a pointer.
126 TypeSystemClangSP scratch_ts_sp =
128 if (!scratch_ts_sp)
129 return false;
130
131 CompilerType opaque_type = scratch_ts_sp->GetBasicType(eBasicTypeObjCID);
132 if (!opaque_type)
133 opaque_type = scratch_ts_sp->GetBasicType(eBasicTypeVoid).GetPointerType();
134 // value.SetContext(Value::eContextTypeClangType, opaque_type_ptr);
135 value.SetCompilerType(opaque_type);
136 }
137
138 ValueList arg_value_list;
139 arg_value_list.PushValue(value);
140
141 // This is the return value:
142 TypeSystemClangSP scratch_ts_sp =
144 if (!scratch_ts_sp)
145 return false;
146
147 CompilerType return_compiler_type = scratch_ts_sp->GetCStringType(true);
148 Value ret;
149 // ret.SetContext(Value::eContextTypeClangType, return_compiler_type);
150 ret.SetCompilerType(return_compiler_type);
151
152 if (exe_ctx.GetFramePtr() == nullptr) {
153 Thread *thread = exe_ctx.GetThreadPtr();
154 if (thread == nullptr) {
155 exe_ctx.SetThreadSP(process->GetThreadList().GetSelectedThread());
156 thread = exe_ctx.GetThreadPtr();
157 }
158 if (thread) {
160 }
161 }
162
163 // Now we're ready to call the function:
164
165 DiagnosticManager diagnostics;
166 lldb::addr_t wrapper_struct_addr = LLDB_INVALID_ADDRESS;
167
171 exe_scope->CalculateTarget()->GetFunctionCallerForLanguage(
172 eLanguageTypeObjC, return_compiler_type, *function_address,
173 arg_value_list, "objc-object-description", error));
174 if (error.Fail()) {
176 strm.Printf("Could not get function runner to call print for debugger "
177 "function: %s.",
178 error.AsCString());
179 return false;
180 }
181 m_print_object_caller_up->InsertFunction(exe_ctx, wrapper_struct_addr,
182 diagnostics);
183 } else {
184 m_print_object_caller_up->WriteFunctionArguments(
185 exe_ctx, wrapper_struct_addr, arg_value_list, diagnostics);
186 }
187
189 options.SetUnwindOnError(true);
190 options.SetTryAllThreads(true);
191 options.SetStopOthers(true);
192 options.SetIgnoreBreakpoints(true);
193 options.SetTimeout(process->GetUtilityExpressionTimeout());
194 options.SetIsForUtilityExpr(true);
195
196 ExpressionResults results = m_print_object_caller_up->ExecuteFunction(
197 exe_ctx, &wrapper_struct_addr, options, diagnostics, ret);
198 if (results != eExpressionCompleted) {
199 strm.Printf("Error evaluating Print Object function: %d.\n", results);
200 return false;
201 }
202
204
205 char buf[512];
206 size_t cstr_len = 0;
207 size_t full_buffer_len = sizeof(buf) - 1;
208 size_t curr_len = full_buffer_len;
209 while (curr_len == full_buffer_len) {
211 curr_len = process->ReadCStringFromMemory(result_ptr + cstr_len, buf,
212 sizeof(buf), error);
213 strm.Write(buf, curr_len);
214 cstr_len += curr_len;
215 }
216 return cstr_len > 0;
217}
218
220 ModuleSP module_sp(m_objc_module_wp.lock());
221 if (module_sp)
222 return module_sp;
223
224 Process *process = GetProcess();
225 if (process) {
226 const ModuleList &modules = process->GetTarget().GetImages();
227 for (uint32_t idx = 0; idx < modules.GetSize(); idx++) {
228 module_sp = modules.GetModuleAtIndex(idx);
230 m_objc_module_wp = module_sp;
231 return module_sp;
232 }
233 }
234 }
235 return ModuleSP();
236}
237
240 const ModuleList &modules = m_process->GetTarget().GetImages();
241
242 SymbolContextList contexts;
243 SymbolContext context;
244
245 modules.FindSymbolsWithNameAndType(ConstString("_NSPrintForDebugger"),
246 eSymbolTypeCode, contexts);
247 if (contexts.IsEmpty()) {
248 modules.FindSymbolsWithNameAndType(ConstString("_CFPrintForDebugger"),
249 eSymbolTypeCode, contexts);
250 if (contexts.IsEmpty())
251 return nullptr;
252 }
253
254 contexts.GetContextAtIndex(0, context);
255
257 std::make_unique<Address>(context.symbol->GetAddress());
258 }
259
260 return m_PrintForDebugger_addr.get();
261}
262
264 return in_value.GetCompilerType().IsPossibleDynamicType(
265 nullptr,
266 false, // do not check C++
267 true); // check ObjC
268}
269
271 ValueObject &in_value, lldb::DynamicValueType use_dynamic,
272 TypeAndOrName &class_type_or_name, Address &address,
273 Value::ValueType &value_type) {
274 return false;
275}
276
279 ValueObject &static_value) {
280 CompilerType static_type(static_value.GetCompilerType());
281 Flags static_type_flags(static_type.GetTypeInfo());
282
283 TypeAndOrName ret(type_and_or_name);
284 if (type_and_or_name.HasType()) {
285 // The type will always be the type of the dynamic object. If our parent's
286 // type was a pointer, then our type should be a pointer to the type of the
287 // dynamic object. If a reference, then the original type should be
288 // okay...
289 CompilerType orig_type = type_and_or_name.GetCompilerType();
290 CompilerType corrected_type = orig_type;
291 if (static_type_flags.AllSet(eTypeIsPointer))
292 corrected_type = orig_type.GetPointerType();
293 ret.SetCompilerType(corrected_type);
294 } else {
295 // If we are here we need to adjust our dynamic type name to include the
296 // correct & or * symbol
297 std::string corrected_name(type_and_or_name.GetName().GetCString());
298 if (static_type_flags.AllSet(eTypeIsPointer))
299 corrected_name.append(" *");
300 // the parent type should be a correctly pointer'ed or referenc'ed type
301 ret.SetCompilerType(static_type);
302 ret.SetName(corrected_name.c_str());
303 }
304 return ret;
305}
306
308 if (module_sp) {
309 const FileSpec &module_file_spec = module_sp->GetFileSpec();
310 static ConstString ObjCName("libobjc.A.dylib");
311
312 if (module_file_spec) {
313 if (module_file_spec.GetFilename() == ObjCName)
314 return true;
315 }
316 }
317 return false;
318}
319
320// we use the version of Foundation to make assumptions about the ObjC runtime
321// on a target
323 if (!m_Foundation_major) {
324 const ModuleList &modules = m_process->GetTarget().GetImages();
325 for (uint32_t idx = 0; idx < modules.GetSize(); idx++) {
326 lldb::ModuleSP module_sp = modules.GetModuleAtIndex(idx);
327 if (!module_sp)
328 continue;
329 if (strcmp(module_sp->GetFileSpec().GetFilename().AsCString(""),
330 "Foundation") == 0) {
331 m_Foundation_major = module_sp->GetVersion().getMajor();
332 return *m_Foundation_major;
333 }
334 }
336 } else
337 return *m_Foundation_major;
338}
339
341 lldb::addr_t &cf_false) {
342 cf_true = cf_false = LLDB_INVALID_ADDRESS;
343}
344
346 return AppleIsModuleObjCLibrary(module_sp);
347}
348
350 // Maybe check here and if we have a handler already, and the UUID of this
351 // module is the same as the one in the current module, then we don't have to
352 // reread it?
353 m_objc_trampoline_handler_up = std::make_unique<AppleObjCTrampolineHandler>(
354 m_process->shared_from_this(), module_sp);
355 if (m_objc_trampoline_handler_up != nullptr) {
356 m_read_objc_library = true;
357 return true;
358 } else
359 return false;
360}
361
363 bool stop_others) {
364 ThreadPlanSP thread_plan_sp;
366 thread_plan_sp = m_objc_trampoline_handler_up->GetStepThroughDispatchPlan(
367 thread, stop_others);
368 return thread_plan_sp;
369}
370
371// Static Functions
374 if (!process)
376
377 Target &target = process->GetTarget();
378 if (target.GetArchitecture().GetTriple().getVendor() !=
379 llvm::Triple::VendorType::Apple)
381
382 for (ModuleSP module_sp : target.GetImages().Modules()) {
383 // One tricky bit here is that we might get called as part of the initial
384 // module loading, but before all the pre-run libraries get winnowed from
385 // the module list. So there might actually be an old and incorrect ObjC
386 // library sitting around in the list, and we don't want to look at that.
387 // That's why we call IsLoadedInTarget.
388
389 if (AppleIsModuleObjCLibrary(module_sp) &&
390 module_sp->IsLoadedInTarget(&target)) {
391 objc_module_sp = module_sp;
392 ObjectFile *ofile = module_sp->GetObjectFile();
393 if (!ofile)
395
396 SectionList *sections = module_sp->GetSectionList();
397 if (!sections)
399 SectionSP v1_telltale_section_sp =
400 sections->FindSectionByName(ConstString("__OBJC"));
401 if (v1_telltale_section_sp) {
403 }
405 }
406 }
407
409}
410
412 const bool catch_bp = false;
413 const bool throw_bp = true;
414 const bool is_internal = true;
415
418 m_process->GetTarget(), GetLanguageType(), catch_bp, throw_bp,
419 is_internal);
421 m_objc_exception_bp_sp->SetBreakpointKind("ObjC exception");
422 } else
423 m_objc_exception_bp_sp->SetEnabled(true);
424}
425
427 if (!m_process)
428 return;
429
430 if (m_objc_exception_bp_sp.get()) {
431 m_objc_exception_bp_sp->SetEnabled(false);
432 }
433}
434
436 return m_objc_exception_bp_sp && m_objc_exception_bp_sp->IsEnabled();
437}
438
440 lldb::StopInfoSP stop_reason) {
441 if (!m_process)
442 return false;
443
444 if (!stop_reason || stop_reason->GetStopReason() != eStopReasonBreakpoint)
445 return false;
446
447 uint64_t break_site_id = stop_reason->GetValue();
449 break_site_id, m_objc_exception_bp_sp->GetID());
450}
451
453 if (!m_process)
454 return false;
455
456 Target &target(m_process->GetTarget());
457
458 static ConstString s_method_signature(
459 "-[NSDictionary objectForKeyedSubscript:]");
460 static ConstString s_arclite_method_signature(
461 "__arclite_objectForKeyedSubscript");
462
463 SymbolContextList sc_list;
464
465 target.GetImages().FindSymbolsWithNameAndType(s_method_signature,
466 eSymbolTypeCode, sc_list);
467 if (sc_list.IsEmpty())
468 target.GetImages().FindSymbolsWithNameAndType(s_arclite_method_signature,
469 eSymbolTypeCode, sc_list);
470 return !sc_list.IsEmpty();
471}
472
474 Target &target = m_process->GetTarget();
475
476 FileSpecList filter_modules;
477 if (target.GetArchitecture().GetTriple().getVendor() == llvm::Triple::Apple) {
478 filter_modules.Append(std::get<0>(GetExceptionThrowLocation()));
479 }
480 return target.GetSearchFilterForModuleList(&filter_modules);
481}
482
484 ThreadSP thread_sp) {
486 if (!cpp_runtime) return ValueObjectSP();
487 auto cpp_exception = cpp_runtime->GetExceptionObjectForThread(thread_sp);
488 if (!cpp_exception) return ValueObjectSP();
489
490 auto descriptor = GetClassDescriptor(*cpp_exception);
491 if (!descriptor || !descriptor->IsValid()) return ValueObjectSP();
492
493 while (descriptor) {
494 ConstString class_name(descriptor->GetClassName());
495 if (class_name == "NSException")
496 return cpp_exception;
497 descriptor = descriptor->GetSuperclass();
498 }
499
500 return ValueObjectSP();
501}
502
503/// Utility method for error handling in GetBacktraceThreadFromException.
504/// \param msg The message to add to the log.
505/// \return An invalid ThreadSP to be returned from
506/// GetBacktraceThreadFromException.
507[[nodiscard]]
508static ThreadSP FailExceptionParsing(llvm::StringRef msg) {
510 LLDB_LOG(log, "Failed getting backtrace from exception: {0}", msg);
511 return ThreadSP();
512}
513
515 lldb::ValueObjectSP exception_sp) {
516 ValueObjectSP reserved_dict =
517 exception_sp->GetChildMemberWithName("reserved");
518 if (!reserved_dict)
519 return FailExceptionParsing("Failed to get 'reserved' member.");
520
521 reserved_dict = reserved_dict->GetSyntheticValue();
522 if (!reserved_dict)
523 return FailExceptionParsing("Failed to get synthetic value.");
524
525 TypeSystemClangSP scratch_ts_sp =
526 ScratchTypeSystemClang::GetForTarget(*exception_sp->GetTargetSP());
527 if (!scratch_ts_sp)
528 return FailExceptionParsing("Failed to get scratch AST.");
529 CompilerType objc_id = scratch_ts_sp->GetBasicType(lldb::eBasicTypeObjCID);
530 ValueObjectSP return_addresses;
531
532 auto objc_object_from_address = [&exception_sp, &objc_id](uint64_t addr,
533 const char *name) {
534 Value value(addr);
535 value.SetCompilerType(objc_id);
536 auto object = ValueObjectConstResult::Create(
537 exception_sp->GetTargetSP().get(), value, ConstString(name));
538 object = object->GetDynamicValue(eDynamicDontRunTarget);
539 return object;
540 };
541
542 for (size_t idx = 0; idx < reserved_dict->GetNumChildrenIgnoringErrors();
543 idx++) {
544 ValueObjectSP dict_entry = reserved_dict->GetChildAtIndex(idx);
545
546 DataExtractor data;
547 data.SetAddressByteSize(dict_entry->GetProcessSP()->GetAddressByteSize());
549 dict_entry->GetData(data, error);
550 if (error.Fail()) return ThreadSP();
551
552 lldb::offset_t data_offset = 0;
553 auto dict_entry_key = data.GetAddress(&data_offset);
554 auto dict_entry_value = data.GetAddress(&data_offset);
555
556 auto key_nsstring = objc_object_from_address(dict_entry_key, "key");
557 StreamString key_summary;
559 *key_nsstring, key_summary, TypeSummaryOptions()) &&
560 !key_summary.Empty()) {
561 if (key_summary.GetString() == "\"callStackReturnAddresses\"") {
562 return_addresses = objc_object_from_address(dict_entry_value,
563 "callStackReturnAddresses");
564 break;
565 }
566 }
567 }
568
569 if (!return_addresses)
570 return FailExceptionParsing("Failed to get return addresses.");
571 auto frames_value = return_addresses->GetChildMemberWithName("_frames");
572 if (!frames_value)
573 return FailExceptionParsing("Failed to get frames_value.");
574 addr_t frames_addr = frames_value->GetValueAsUnsigned(0);
575 auto count_value = return_addresses->GetChildMemberWithName("_cnt");
576 if (!count_value)
577 return FailExceptionParsing("Failed to get count_value.");
578 size_t count = count_value->GetValueAsUnsigned(0);
579 auto ignore_value = return_addresses->GetChildMemberWithName("_ignore");
580 if (!ignore_value)
581 return FailExceptionParsing("Failed to get ignore_value.");
582 size_t ignore = ignore_value->GetValueAsUnsigned(0);
583
584 size_t ptr_size = m_process->GetAddressByteSize();
585 std::vector<lldb::addr_t> pcs;
586 for (size_t idx = 0; idx < count; idx++) {
589 frames_addr + (ignore + idx) * ptr_size, error);
590 pcs.push_back(pc);
591 }
592
593 if (pcs.empty())
594 return FailExceptionParsing("Failed to get PC list.");
595
596 ThreadSP new_thread_sp(new HistoryThread(*m_process, 0, pcs));
597 m_process->GetExtendedThreadList().AddThread(new_thread_sp);
598 return new_thread_sp;
599}
600
601std::tuple<FileSpec, ConstString>
603 return std::make_tuple(
604 FileSpec("libobjc.A.dylib"), ConstString("objc_exception_throw"));
605}
606
608 if (!HasReadObjCLibrary()) {
609 std::lock_guard<std::recursive_mutex> guard(module_list.GetMutex());
610
611 size_t num_modules = module_list.GetSize();
612 for (size_t i = 0; i < num_modules; i++) {
613 auto mod = module_list.GetModuleAtIndex(i);
614 if (IsModuleObjCLibrary(mod)) {
615 ReadObjCLibrary(mod);
616 break;
617 }
618 }
619 }
620}
621
623 ReadObjCLibraryIfNeeded(module_list);
624}
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:342
#define LLDB_PLUGIN_DEFINE(PluginName)
Definition: PluginManager.h:31
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
bool GetObjectDescription(Stream &str, Value &value, ExecutionContextScope *exe_scope) 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)
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:214
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:334
void SetTryAllThreads(bool try_others=true)
Definition: Target.h:367
void SetTimeout(const Timeout< std::micro > &timeout)
Definition: Target.h:355
void SetStopOthers(bool stop_others=true)
Definition: Target.h:371
void SetIgnoreBreakpoints(bool ignore=false)
Definition: Target.h:338
"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:319
A plug-in interface definition class for debugging a process.
Definition: Process.h:341
StopPointSiteList< lldb_private::BreakpointSite > & GetBreakpointSiteList()
Definition: Process.cpp:1576
ThreadList & GetThreadList()
Definition: Process.h:2213
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:2005
ThreadList & GetExtendedThreadList()
Definition: Process.h:2224
lldb::addr_t ReadPointerFromMemory(lldb::addr_t vm_addr, Status &error)
Definition: Process.cpp:2102
LanguageRuntime * GetLanguageRuntime(lldb::LanguageType language)
Definition: Process.cpp:1523
uint32_t GetAddressByteSize() const
Definition: Process.cpp:3404
Target & GetTarget()
Get the target object pointer for this module.
Definition: Process.h:1277
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
size_t Printf(const char *format,...) __attribute__((format(printf
Output printf formatted output to the stream.
Definition: Stream.cpp:134
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:972
const ArchSpec & GetArchitecture() const
Definition: Target.h:1014
void AddThread(const lldb::ThreadSP &thread_sp)
lldb::ThreadSP GetSelectedThread()
Definition: ThreadList.cpp:684
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:712
void SetName(ConstString type_name)
Definition: Type.cpp:872
CompilerType GetCompilerType() const
Definition: Type.h:726
ConstString GetName() const
Definition: Type.cpp:864
void SetCompilerType(CompilerType compiler_type)
Definition: Type.cpp:892
bool HasType() const
Definition: Type.h:744
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.
Definition: SBAttachInfo.h:14
Log * GetLog(Cat mask)
Retrieve the Log object for the channel associated with the given log enum.
Definition: Log.h:314
Definition: SBAddress.h:15
std::shared_ptr< lldb_private::ThreadPlan > ThreadPlanSP
Definition: lldb-forward.h:441
std::shared_ptr< lldb_private::SearchFilter > SearchFilterSP
Definition: lldb-forward.h:410
@ eBasicTypeObjCID
std::shared_ptr< lldb_private::Thread > ThreadSP
Definition: lldb-forward.h:438
std::shared_ptr< lldb_private::ValueObject > ValueObjectSP
Definition: lldb-forward.h:472
uint64_t offset_t
Definition: lldb-types.h:83
@ 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:458
std::shared_ptr< lldb_private::StopInfo > StopInfoSP
Definition: lldb-forward.h:419
std::shared_ptr< lldb_private::Section > SectionSP
Definition: lldb-forward.h:406
uint64_t addr_t
Definition: lldb-types.h:79
@ eStopReasonBreakpoint
@ eDynamicDontRunTarget
std::shared_ptr< lldb_private::Module > ModuleSP
Definition: lldb-forward.h:365