Searched refs:target_sp (Results 51 - 75 of 109) sorted by relevance

12345

/freebsd-13-stable/contrib/llvm-project/lldb/source/Commands/
H A DCommandCompletions.cpp290 lldb::TargetSP target_sp = interpreter.GetDebugger().GetSelectedTarget(); local
291 SearchFilterForUnconstrainedSearches null_searcher(target_sp);
481 lldb::TargetSP target_sp = interpreter.GetDebugger().GetSelectedTarget(); local
482 SearchFilterForUnconstrainedSearches null_searcher(target_sp);
495 lldb::TargetSP target_sp = interpreter.GetDebugger().GetSelectedTarget(); local
496 SearchFilterForUnconstrainedSearches null_searcher(target_sp);
H A DCommandObjectTarget.cpp122 TargetSP target_sp(target_list.GetTargetAtIndex(i));
123 if (target_sp) {
124 bool is_selected = target_sp.get() == selected_target_sp.get();
125 DumpTargetInfo(i, target_sp.get(), is_selected ? "* " : " ",
316 TargetSP target_sp; variable
320 m_add_dependents.m_load_dependent_files, nullptr, target_sp));
322 if (target_sp) {
327 PlatformSP platform_sp = target_sp->GetPlatform();
378 ModuleSP module_sp(target_sp->GetExecutableModule());
384 target_sp
588 TargetSP target_sp; variable
[all...]
/freebsd-13-stable/contrib/llvm-project/lldb/source/API/
H A DSBBlock.cpp307 TargetSP target_sp(target.GetSP());
337 if (target_sp)
339 ValueObjectVariable::Create(target_sp.get(), variable_sp));
H A DSBSection.cpp138 TargetSP target_sp(sb_target.GetSP());
139 if (target_sp) {
142 return section_sp->GetLoadBaseAddress(target_sp.get());
/freebsd-13-stable/contrib/llvm-project/lldb/source/Plugins/ExpressionParser/Clang/
H A DClangExpressionParser.cpp284 lldb::TargetSP target_sp) {
332 lldb::TargetSP target_sp; local
333 target_sp = exe_scope->CalculateTarget();
334 if (!target_sp) {
335 lldbassert(target_sp.get() &&
365 target_arch = target_sp->GetArchitecture();
565 target_sp);
627 target_sp->GetClangModulesDeclVendor()) {
629 target_sp->GetPersistentExpressionStateForLanguage(
1295 } else if (lldb::TargetSP target_sp
282 SetupModuleHeaderPaths(CompilerInstance *compiler, std::vector<std::string> include_directories, lldb::TargetSP target_sp) argument
[all...]
H A DClangExpressionDeclMap.h314 else if (m_sym_ctx.target_sp)
315 return m_sym_ctx.target_sp.get();
/freebsd-13-stable/contrib/llvm-project/lldb/source/Plugins/Language/CPlusPlus/
H A DLibStdcpp.cpp91 TargetSP target_sp(valobj_sp->GetTargetSP());
93 if (!target_sp)
96 bool is_64bit = (target_sp->GetArchitecture().GetAddressByteSize() == 8);
/freebsd-13-stable/contrib/llvm-project/lldb/source/Plugins/OperatingSystem/Python/
H A DOperatingSystemPython.cpp85 TargetSP target_sp = process->CalculateTarget();
86 if (!target_sp)
88 m_interpreter = target_sp->GetDebugger().GetScriptInterpreter();
/freebsd-13-stable/contrib/llvm-project/lldb/source/Plugins/Language/ObjC/
H A DNSString.cpp299 TargetSP target_sp(valobj.GetTargetSP());
300 if (!target_sp)
302 uint32_t addr_size = target_sp->GetArchitecture().GetAddressByteSize();
308 ExecutionContext exe_ctx(target_sp, false);
/freebsd-13-stable/contrib/llvm-project/lldb/source/Breakpoint/
H A DBreakpointResolverFileRegex.cpp98 if (!context.target_sp)
104 context.target_sp->GetSourceManager().FindLinesMatchingRegex(
/freebsd-13-stable/contrib/llvm-project/lldb/source/DataFormatters/
H A DVectorType.cpp224 if (auto target_sp = m_backend.GetTargetSP()) {
226 target_sp->GetScratchTypeSystemForLanguage(lldb::eLanguageTypeC);
/freebsd-13-stable/contrib/llvm-project/lldb/source/Target/
H A DLanguageRuntime.cpp21 ExceptionSearchFilter::ExceptionSearchFilter(const lldb::TargetSP &target_sp, argument
24 : SearchFilter(target_sp, FilterTy::Exception), m_language(language),
H A DStackFrameList.cpp368 TargetSP target_sp = next_frame.CalculateTarget();
369 if (!target_sp)
399 Target &target = *target_sp.get();
401 ExecutionContext exe_ctx(target_sp, /*get_process=*/true);
527 TargetSP target_sp = m_thread.CalculateTarget(); local
539 target_sp.get(), AddressClass::eCode);
541 load_addr - 1, target_sp.get(), AddressClass::eCode);
552 next_frame_sc.line_entry.ApplyFileMappings(target_sp);
/freebsd-13-stable/contrib/llvm-project/lldb/source/Core/
H A DValueObject.cpp130 TargetSP target_sp(exe_scope->CalculateTarget());
131 if (target_sp) {
132 const ArchSpec &arch = target_sp->GetArchitecture();
1888 TargetSP target_sp(GetTargetSP());
1889 if (target_sp && !target_sp->GetEnableSyntheticValue()) {
2915 TargetSP target_sp(exe_ctx.GetTargetSP());
2916 if (target_sp) {
2917 m_exe_ctx_ref.SetTargetSP(target_sp);
2920 process_sp = target_sp
[all...]
H A DAddress.cpp65 TargetSP target_sp(exe_scope->CalculateTarget());
66 if (target_sp) {
69 return target_sp->ReadMemory(address, prefer_file_cache, dst, dst_len,
84 TargetSP target_sp(exe_scope->CalculateTarget());
85 if (target_sp) {
86 byte_order = target_sp->GetArchitecture().GetByteOrder();
87 addr_size = target_sp->GetArchitecture().GetAddressByteSize();
H A DValueObjectDynamicValue.cpp231 lldb::TargetSP target_sp(GetTargetSP());
232 lldb::addr_t load_address = m_address.GetLoadAddress(target_sp.get());
/freebsd-13-stable/contrib/llvm-project/lldb/source/Symbol/
H A DUnwindPlan.cpp494 TargetSP target_sp(thread->CalculateTarget());
495 addr_t lsda_load_addr = m_lsda_address.GetLoadAddress(target_sp.get());
497 m_personality_func_addr.GetLoadAddress(target_sp.get());
533 TargetSP target_sp(thread->CalculateTarget());
534 m_plan_valid_address_range.Dump(&s, target_sp.get(),
/freebsd-13-stable/contrib/llvm-project/lldb/source/Plugins/Process/gdb-remote/
H A DProcessGDBRemote.h52 ProcessGDBRemote(lldb::TargetSP target_sp, lldb::ListenerSP listener_sp);
56 static lldb::ProcessSP CreateInstance(lldb::TargetSP target_sp,
71 bool CanDebug(lldb::TargetSP target_sp,
/freebsd-13-stable/contrib/llvm-project/lldb/include/lldb/Core/
H A DSourceManager.h118 SourceManager(const lldb::TargetSP &target_sp);
/freebsd-13-stable/contrib/llvm-project/lldb/include/lldb/Expression/
H A DIRMemoryMap.h36 IRMemoryMap(lldb::TargetSP target_sp);
H A DUserExpression.h290 bool LockAndCheckContext(ExecutionContext &exe_ctx, lldb::TargetSP &target_sp,
/freebsd-13-stable/contrib/llvm-project/lldb/include/lldb/Target/
H A DLanguageRuntime.h28 ExceptionSearchFilter(const lldb::TargetSP &target_sp,
/freebsd-13-stable/contrib/llvm-project/lldb/include/lldb/
H A Dlldb-private-interfaces.h71 lldb::TargetSP target_sp, lldb::ListenerSP listener_sp,
/freebsd-13-stable/contrib/llvm-project/lldb/source/Plugins/Process/FreeBSD/
H A DProcessFreeBSD.cpp71 ProcessFreeBSD::CreateInstance(lldb::TargetSP target_sp, argument
77 new ProcessFreeBSD(target_sp, listener_sp, GetFreeBSDSignals()));
250 ProcessFreeBSD::ProcessFreeBSD(lldb::TargetSP target_sp, argument
253 : Process(target_sp, listener_sp, unix_signals_sp),
274 bool ProcessFreeBSD::CanDebug(lldb::TargetSP target_sp, argument
277 ModuleSP exe_module_sp(target_sp->GetExecutableModule());
/freebsd-13-stable/contrib/llvm-project/lldb/source/Plugins/Process/elf-core/
H A DProcessElfCore.cpp53 lldb::ProcessSP ProcessElfCore::CreateInstance(lldb::TargetSP target_sp, argument
72 process_sp = std::make_shared<ProcessElfCore>(target_sp, listener_sp,
80 bool ProcessElfCore::CanDebug(lldb::TargetSP target_sp, argument
84 ModuleSpec core_module_spec(m_core_file, target_sp->GetArchitecture());
97 ProcessElfCore::ProcessElfCore(lldb::TargetSP target_sp, argument
100 : Process(target_sp, listener_sp), m_core_file(core_file) {}

Completed in 320 milliseconds

12345