Searched refs:target_sp (Results 26 - 50 of 109) sorted by relevance

12345

/freebsd-13-stable/contrib/llvm-project/lldb/source/API/
H A DSBBreakpoint.cpp799 SBBreakpointListImpl(lldb::TargetSP target_sp) : m_target_wp() { argument
800 if (target_sp && target_sp->IsValid())
801 m_target_wp = target_sp;
811 TargetSP target_sp = m_target_wp.lock();
812 if (!target_sp)
815 return target_sp->GetBreakpointList().FindBreakpointByID(bp_id);
819 TargetSP target_sp = m_target_wp.lock(); local
820 if (!target_sp)
825 return target_sp
831 TargetSP target_sp = m_target_wp.lock(); local
841 TargetSP target_sp = m_target_wp.lock(); local
856 TargetSP target_sp = m_target_wp.lock(); local
[all...]
H A DSBFunction.cpp129 TargetSP target_sp(target.GetSP());
133 if (target_sp && module_sp) {
134 lock = std::unique_lock<std::recursive_mutex>(target_sp->GetAPIMutex());
137 module_sp->GetArchitecture(), nullptr, flavor, *target_sp,
H A DSBSymbol.cpp127 TargetSP target_sp(target.GetSP());
129 if (target_sp && m_opaque_ptr->ValueIsAddress()) {
130 lock = std::unique_lock<std::recursive_mutex>(target_sp->GetAPIMutex());
137 module_sp->GetArchitecture(), nullptr, flavor_string, *target_sp,
H A DSBAddress.cpp125 TargetSP target_sp(target.GetSP());
126 if (target_sp) {
128 std::lock_guard<std::recursive_mutex> guard(target_sp->GetAPIMutex());
129 addr = m_opaque_up->GetLoadAddress(target_sp.get());
H A DSBVariablesOptions.cpp38 bool GetIncludeRecognizedArguments(const lldb::TargetSP &target_sp) const {
41 return target_sp ? target_sp->GetDisplayRecognizedArguments() : false;
H A DSBCommandInterpreter.cpp376 TargetSP target_sp(m_opaque_ptr->GetDebugger().GetSelectedTarget());
377 if (target_sp) {
378 std::lock_guard<std::recursive_mutex> guard(target_sp->GetAPIMutex());
379 process_sp = target_sp->GetProcessSP();
470 TargetSP target_sp(m_opaque_ptr->GetDebugger().GetSelectedTarget());
472 if (target_sp)
473 lock = std::unique_lock<std::recursive_mutex>(target_sp->GetAPIMutex());
489 TargetSP target_sp(m_opaque_ptr->GetDebugger().GetSelectedTarget());
491 if (target_sp)
492 lock = std::unique_lock<std::recursive_mutex>(target_sp
[all...]
/freebsd-13-stable/contrib/llvm-project/lldb/source/Core/
H A DSourceManager.cpp54 SourceManager::SourceManager(const TargetSP &target_sp) argument
56 m_target_wp(target_sp),
57 m_debugger_wp(target_sp->GetDebugger().shared_from_this()) {}
75 TargetSP target_sp(m_target_wp.lock());
79 if (target_sp && file_sp &&
81 target_sp->GetSourcePathMap().GetModificationID())
90 if (target_sp)
91 file_sp = std::make_shared<File>(file_spec, target_sp.get());
330 TargetSP target_sp(m_target_wp.lock());
332 if (target_sp) {
[all...]
H A DDebugger.cpp190 TargetSP target_sp; local
193 target_sp = exe_ctx->GetTargetSP();
195 target_sp->TargetProperties::GetLoadScriptFromSymbolFile();
220 } else if (is_load_script && target_sp &&
222 if (target_sp->TargetProperties::GetLoadScriptFromSymbolFile() ==
226 if (!target_sp->LoadScriptingResources(errors, &feedback_stream)) {
625 TargetSP target_sp; local
630 target_sp = (*pos)->GetTargetList().FindTargetWithProcessID(pid);
631 if (target_sp)
635 return target_sp;
639 TargetSP target_sp; local
[all...]
H A DValueObjectMemory.cpp61 TargetSP target_sp(GetTargetSP());
62 lldb::addr_t load_address = m_address.GetLoadAddress(target_sp.get());
89 TargetSP target_sp(GetTargetSP());
93 lldb::addr_t load_address = m_address.GetLoadAddress(target_sp.get());
/freebsd-13-stable/contrib/llvm-project/lldb/source/Expression/
H A DIRMemoryMap.cpp22 IRMemoryMap::IRMemoryMap(lldb::TargetSP target_sp) : m_target_wp(target_sp) { argument
23 if (target_sp)
24 m_process_wp = target_sp->GetProcessSP();
58 lldb::TargetSP target_sp = m_target_wp.lock(); local
233 lldb::TargetSP target_sp = m_target_wp.lock();
235 if (target_sp)
236 return target_sp->GetArchitecture().GetByteOrder();
247 lldb::TargetSP target_sp = m_target_wp.lock();
249 if (target_sp)
638 lldb::TargetSP target_sp = m_target_wp.lock(); local
[all...]
H A DUserExpression.cpp72 lldb::TargetSP &target_sp,
82 target_sp = exe_ctx.GetTargetSP();
90 target_sp.get()) == 0);
97 lldb::TargetSP target_sp; local
101 return LockAndCheckContext(exe_ctx, target_sp, process_sp, frame_sp);
71 LockAndCheckContext(ExecutionContext &exe_ctx, lldb::TargetSP &target_sp, lldb::ProcessSP &process_sp, lldb::StackFrameSP &frame_sp) argument
H A DIRExecutionUnit.cpp42 const lldb::TargetSP &target_sp,
45 : IRMemoryMap(target_sp), m_context_up(context_up.release()),
766 Target *target = sc.target_sp.get();
861 if (sc_list.GetSize() == 0 && sc.target_sp) {
862 sc.target_sp->GetImages().FindFunctions(spec.name, spec.mask,
874 if (sc_list.GetSize() == 0 && sc.target_sp) {
875 sc.target_sp->GetImages().FindSymbolsWithNameAndType(
896 lldb::TargetSP target_sp = sc.target_sp; local
898 if (!target_sp) {
39 IRExecutionUnit(std::unique_ptr<llvm::LLVMContext> &context_up, std::unique_ptr<llvm::Module> &module_up, ConstString &name, const lldb::TargetSP &target_sp, const SymbolContext &sym_ctx, std::vector<std::string> &cpu_features) argument
923 lldb::TargetSP target_sp = sc.target_sp; local
[all...]
/freebsd-13-stable/contrib/llvm-project/lldb/include/lldb/Symbol/
H A DLineEntry.h134 /// \param[in] target_sp
136 void ApplyFileMappings(lldb::TargetSP target_sp);
H A DSymbolContext.h71 explicit SymbolContext(const lldb::TargetSP &target_sp,
309 lldb::TargetSP target_sp; ///< The Target for a given query member in class:lldb_private::SymbolContext
333 SymbolContextSpecifier(const lldb::TargetSP &target_sp);
/freebsd-13-stable/contrib/llvm-project/lldb/source/Plugins/LanguageRuntime/CPlusPlus/
H A DCPPLanguageRuntime.cpp345 TargetSP target_sp(thread.CalculateTarget());
347 if (target_sp->GetSectionLoadList().IsEmpty())
354 if (!target_sp->GetSectionLoadList().ResolveLoadAddress(curr_pc,
358 target_sp->GetImages().ResolveSymbolContextForAddress(
/freebsd-13-stable/contrib/llvm-project/lldb/source/Commands/
H A DCommandObjectDisassemble.cpp109 TargetSP target_sp = local
111 if (target_sp && (target_sp->GetArchitecture().GetTriple().getArch() ==
113 target_sp->GetArchitecture().GetTriple().getArch() ==
133 const auto &target_sp = execution_context->GetTargetSP(); local
134 auto platform_ptr = target_sp ? target_sp->GetPlatform().get() : nullptr;
/freebsd-13-stable/contrib/llvm-project/lldb/source/Breakpoint/
H A DBreakpointResolverScripted.cpp48 TargetSP target_sp = breakpoint_sp->GetTargetSP();
49 ScriptInterpreter *script_interp = target_sp->GetDebugger()
/freebsd-13-stable/contrib/llvm-project/lldb/source/DataFormatters/
H A DTypeSynthetic.cpp134 TargetSP target_sp = backend.GetTargetSP();
136 if (!target_sp)
139 m_interpreter = target_sp->GetDebugger().GetScriptInterpreter();
/freebsd-13-stable/contrib/llvm-project/lldb/source/Plugins/Process/FreeBSD/
H A DProcessFreeBSD.h28 CreateInstance(lldb::TargetSP target_sp, lldb::ListenerSP listener_sp,
40 ProcessFreeBSD(lldb::TargetSP target_sp, lldb::ListenerSP listener_sp,
56 bool CanDebug(lldb::TargetSP target_sp,
/freebsd-13-stable/contrib/llvm-project/lldb/source/Symbol/
H A DLineEntry.cpp254 void LineEntry::ApplyFileMappings(lldb::TargetSP target_sp) { argument
255 if (target_sp) {
258 if (target_sp->GetSourcePathMap().FindFile(original_file, new_file_spec))
H A DSymbolContext.cpp30 : target_sp(), module_sp(), comp_unit(nullptr), function(nullptr),
35 : target_sp(), module_sp(m), comp_unit(cu), function(f), block(b),
44 : target_sp(t), module_sp(m), comp_unit(cu), function(f), block(b),
51 : target_sp(), module_sp(), comp_unit(nullptr), function(nullptr),
60 target_sp.reset();
282 if (target_sp)
365 lhs.target_sp.get() == rhs.target_sp.get() &&
762 if (!target_sp) {
766 Target &target = *target_sp;
919 SymbolContextSpecifier(const TargetSP &target_sp) argument
[all...]
/freebsd-13-stable/contrib/llvm-project/lldb/source/Target/
H A DThreadPlanStepUntil.cpp37 TargetSP target_sp(thread.CalculateTarget());
51 target_sp->CreateBreakpoint(m_return_addr, true, false).get();
67 target_sp->CreateBreakpoint(address_list[i], true, false).get();
H A DRegisterContext.cpp127 TargetSP target_sp = m_thread.CalculateTarget(); local
128 if (target_sp) {
129 Target *target = target_sp.get();
154 TargetSP target_sp = m_thread.CalculateTarget(); local
155 Target *target = target_sp.get();
/freebsd-13-stable/contrib/llvm-project/lldb/source/Plugins/Language/CPlusPlus/
H A DLibCxx.cpp221 TargetSP target_sp(valobj_sp->GetTargetSP());
223 if (!target_sp)
298 ProcessSP process_sp(target_sp->GetProcessSP());
448 TargetSP target_sp(valobj_sp->GetTargetSP());
449 if (!target_sp)
452 m_byte_order = target_sp->GetArchitecture().GetByteOrder();
453 m_ptr_size = target_sp->GetArchitecture().GetAddressByteSize();
/freebsd-13-stable/contrib/llvm-project/lldb/source/Plugins/Language/ObjC/
H A DNSDictionary.cpp66 static CompilerType GetLLDBNSPairType(TargetSP target_sp) { argument
69 TypeSystemClang *target_ast_context = TypeSystemClang::GetScratch(*target_sp);
666 TargetSP target_sp(m_backend.GetTargetSP());
667 if (!target_sp)
669 m_pair_type = GetLLDBNSPairType(target_sp);
793 TargetSP target_sp(m_backend.GetTargetSP());
794 if (!target_sp)
796 m_pair_type = GetLLDBNSPairType(target_sp);
1043 TargetSP target_sp(m_backend.GetTargetSP());
1044 if (!target_sp)
[all...]

Completed in 381 milliseconds

12345