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

12345

/freebsd-11-stable/contrib/llvm-project/lldb/source/Interpreter/
H A DOptionGroupFormat.cpp201 TargetSP target_sp = local
203 if (target_sp)
204 byte_size = target_sp->GetArchitecture().GetAddressByteSize();
/freebsd-11-stable/contrib/llvm-project/lldb/include/lldb/Core/
H A DSearchFilter.h87 /// \param[in] target_sp
89 SearchFilter(const lldb::TargetSP &target_sp);
91 SearchFilter(const lldb::TargetSP &target_sp, unsigned char filterType);
266 void SetTarget(lldb::TargetSP &target_sp) { m_target_sp = target_sp; } argument
281 SearchFilterForUnconstrainedSearches(const lldb::TargetSP &target_sp) argument
282 : SearchFilter(target_sp, FilterTy::Unconstrained) {}
/freebsd-11-stable/contrib/llvm-project/lldb/source/API/
H A DSBBreakpoint.cpp790 SBBreakpointListImpl(lldb::TargetSP target_sp) : m_target_wp() { argument
791 if (target_sp && target_sp->IsValid())
792 m_target_wp = target_sp;
802 TargetSP target_sp = m_target_wp.lock();
803 if (!target_sp)
806 return target_sp->GetBreakpointList().FindBreakpointByID(bp_id);
810 TargetSP target_sp = m_target_wp.lock(); local
811 if (!target_sp)
816 return target_sp
822 TargetSP target_sp = m_target_wp.lock(); local
832 TargetSP target_sp = m_target_wp.lock(); local
847 TargetSP target_sp = m_target_wp.lock(); local
[all...]
H A DSBSymbol.cpp130 TargetSP target_sp(target.GetSP());
132 if (target_sp) {
133 lock = std::unique_lock<std::recursive_mutex>(target_sp->GetAPIMutex());
135 target_sp->CalculateExecutionContext(exe_ctx);
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.cpp39 bool GetIncludeRecognizedArguments(const lldb::TargetSP &target_sp) const {
42 return target_sp ? target_sp->GetDisplayRecognizedArguments() : false;
H A DSBCommandInterpreter.cpp472 TargetSP target_sp(m_opaque_ptr->GetDebugger().GetSelectedTarget());
473 if (target_sp) {
474 std::lock_guard<std::recursive_mutex> guard(target_sp->GetAPIMutex());
475 process_sp = target_sp->GetProcessSP();
566 TargetSP target_sp(m_opaque_ptr->GetDebugger().GetSelectedTarget());
568 if (target_sp)
569 lock = std::unique_lock<std::recursive_mutex>(target_sp->GetAPIMutex());
585 TargetSP target_sp(m_opaque_ptr->GetDebugger().GetSelectedTarget());
587 if (target_sp)
588 lock = std::unique_lock<std::recursive_mutex>(target_sp
[all...]
/freebsd-11-stable/contrib/llvm-project/lldb/source/Core/
H A DSourceManager.cpp53 SourceManager::SourceManager(const TargetSP &target_sp) argument
55 m_target_wp(target_sp),
56 m_debugger_wp(target_sp->GetDebugger().shared_from_this()) {}
77 TargetSP target_sp(m_target_wp.lock());
81 if (target_sp && file_sp &&
83 target_sp->GetSourcePathMap().GetModificationID())
92 if (target_sp)
93 file_sp = std::make_shared<File>(file_spec, target_sp.get());
315 TargetSP target_sp(m_target_wp.lock());
317 if (target_sp) {
[all...]
H A DSearchFilter.cpp72 SearchFilter::SearchFilter(const TargetSP &target_sp, unsigned char filterType) argument
73 : m_target_sp(target_sp), SubclassID(filterType) {}
165 TargetSP target_sp = breakpoint.GetTargetSP(); local
166 ret_sp->SetTarget(target_sp);
209 empty_sc.target_sp = m_target_sp;
224 empty_sc.target_sp = m_target_sp;
401 SearchFilterByModule::SearchFilterByModule(const lldb::TargetSP &target_sp, argument
403 : SearchFilter(target_sp, FilterTy::ByModule), m_module_spec(module) {}
433 empty_sc.target_sp = m_target_sp;
517 const lldb::TargetSP &target_sp, cons
516 SearchFilterByModuleList( const lldb::TargetSP &target_sp, const FileSpecList &module_list) argument
521 SearchFilterByModuleList( const lldb::TargetSP &target_sp, const FileSpecList &module_list, enum FilterTy filter_ty) argument
660 SearchFilterByModuleListAndCU( const lldb::TargetSP &target_sp, const FileSpecList &module_list, const FileSpecList &cu_list) argument
[all...]
H A DDebugger.cpp268 TargetSP target_sp; local
271 target_sp = exe_ctx->GetTargetSP();
273 target_sp->TargetProperties::GetLoadScriptFromSymbolFile();
293 } else if (is_load_script && target_sp &&
295 if (target_sp->TargetProperties::GetLoadScriptFromSymbolFile() ==
299 if (!target_sp->LoadScriptingResources(errors, &feedback_stream)) {
671 TargetSP target_sp; local
676 target_sp = (*pos)->GetTargetList().FindTargetWithProcessID(pid);
677 if (target_sp)
681 return target_sp;
685 TargetSP target_sp; local
[all...]
H A DValueObjectMemory.cpp55 TargetSP target_sp(GetTargetSP());
56 lldb::addr_t load_address = m_address.GetLoadAddress(target_sp.get());
82 TargetSP target_sp(GetTargetSP());
88 lldb::addr_t load_address = m_address.GetLoadAddress(target_sp.get());
/freebsd-11-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.cpp71 lldb::TargetSP &target_sp,
81 target_sp = exe_ctx.GetTargetSP();
89 target_sp.get()) == 0);
96 lldb::TargetSP target_sp; local
100 return LockAndCheckContext(exe_ctx, target_sp, process_sp, frame_sp);
70 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()),
771 Target *target = sc.target_sp.get();
866 if (sc_list.GetSize() == 0 && sc.target_sp) {
867 sc.target_sp->GetImages().FindFunctions(spec.name, spec.mask,
879 if (sc_list.GetSize() == 0 && sc.target_sp) {
880 sc.target_sp->GetImages().FindSymbolsWithNameAndType(
901 lldb::TargetSP target_sp = sc.target_sp; local
903 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
928 lldb::TargetSP target_sp = sc.target_sp; local
[all...]
/freebsd-11-stable/contrib/llvm-project/lldb/source/Plugins/LanguageRuntime/CPlusPlus/
H A DCPPLanguageRuntime.cpp346 TargetSP target_sp(thread.CalculateTarget());
348 if (target_sp->GetSectionLoadList().IsEmpty())
355 if (!target_sp->GetSectionLoadList().ResolveLoadAddress(curr_pc,
359 target_sp->GetImages().ResolveSymbolContextForAddress(
/freebsd-11-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-11-stable/contrib/llvm-project/lldb/source/Commands/
H A DCommandObjectDisassemble.cpp108 TargetSP target_sp = local
110 if (target_sp && (target_sp->GetArchitecture().GetTriple().getArch() ==
112 target_sp->GetArchitecture().GetTriple().getArch() ==
132 const auto &target_sp = execution_context->GetTargetSP(); local
133 auto platform_ptr = target_sp ? target_sp->GetPlatform().get() : nullptr;
/freebsd-11-stable/contrib/llvm-project/lldb/source/Breakpoint/
H A DBreakpointResolverScripted.cpp46 TargetSP target_sp = m_breakpoint->GetTargetSP(); local
47 ScriptInterpreter *script_interp = target_sp->GetDebugger()
/freebsd-11-stable/contrib/llvm-project/lldb/source/DataFormatters/
H A DTypeSynthetic.cpp135 TargetSP target_sp = backend.GetTargetSP();
137 if (!target_sp)
140 m_interpreter = target_sp->GetDebugger().GetScriptInterpreter();
/freebsd-11-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-11-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))
/freebsd-11-stable/contrib/llvm-project/lldb/source/Target/
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-11-stable/contrib/llvm-project/lldb/source/Plugins/Language/ObjC/
H A DNSDictionary.cpp65 static CompilerType GetLLDBNSPairType(TargetSP target_sp) { argument
68 ClangASTContext *target_ast_context = ClangASTContext::GetScratch(*target_sp);
614 TargetSP target_sp(m_backend.GetTargetSP());
615 if (!target_sp)
617 m_pair_type = GetLLDBNSPairType(target_sp);
858 TargetSP target_sp(m_backend.GetTargetSP());
859 if (!target_sp)
861 m_pair_type = GetLLDBNSPairType(target_sp);
1016 TargetSP target_sp(m_backend.GetTargetSP());
1017 if (!target_sp)
[all...]
/freebsd-11-stable/contrib/llvm-project/lldb/source/Plugins/Language/CPlusPlus/
H A DLibCxx.cpp185 TargetSP target_sp(valobj_sp->GetTargetSP());
187 if (!target_sp)
262 ProcessSP process_sp(target_sp->GetProcessSP());
412 TargetSP target_sp(valobj_sp->GetTargetSP());
413 if (!target_sp)
416 m_byte_order = target_sp->GetArchitecture().GetByteOrder();
417 m_ptr_size = target_sp->GetArchitecture().GetAddressByteSize();

Completed in 251 milliseconds

12345