/freebsd/contrib/llvm-project/lldb/source/Target/ |
H A D | SectionLoadHistory.cpp | 36 SectionLoadHistory::GetSectionLoadListForStopID(uint32_t stop_id, in GetSectionLoadListForStopID() argument 44 if (stop_id == eStopIDNow) { in GetSectionLoadListForStopID() 52 m_stop_id_to_section_load_list.lower_bound(stop_id); in GetSectionLoadListForStopID() 54 pos->first == stop_id) in GetSectionLoadListForStopID() 64 assert(stop_id != eStopIDNow); in GetSectionLoadListForStopID() 70 m_stop_id_to_section_load_list.lower_bound(stop_id); in GetSectionLoadListForStopID() 72 pos->first == stop_id) { in GetSectionLoadListForStopID() 84 m_stop_id_to_section_load_list[stop_id] = section_load_list_sp; in GetSectionLoadListForStopID() 89 if (stop_id == eStopIDNow) in GetSectionLoadListForStopID() 90 stop_id = 0; in GetSectionLoadListForStopID() [all …]
|
H A D | Target.cpp | 3105 uint32_t stop_id) { in ResolveLoadAddress() argument 3106 return m_section_load_history.ResolveLoadAddress(stop_id, load_addr, so_addr); in ResolveLoadAddress() 3121 uint32_t stop_id = 0; in SetSectionLoadAddress() local 3124 stop_id = process_sp->GetStopID(); in SetSectionLoadAddress() 3126 stop_id = m_section_load_history.GetLastStopID(); in SetSectionLoadAddress() 3128 stop_id, section_sp, new_section_load_addr, warn_multiple)) in SetSectionLoadAddress() 3145 uint32_t stop_id = 0; in UnloadModuleSections() local 3148 stop_id = process_sp->GetStopID(); in UnloadModuleSections() 3150 stop_id = m_section_load_history.GetLastStopID(); in UnloadModuleSections() 3157 stop_id, sections->GetSectionAtIndex(i)); in UnloadModuleSections() [all …]
|
H A D | Statistics.cpp | 185 uint32_t stop_id = process_sp->GetStopID(); in ToJSON() local 186 target_metrics_json.try_emplace("stopCount", stop_id); in ToJSON()
|
H A D | ThreadList.cpp | 80 void ThreadList::SetStopID(uint32_t stop_id) { m_stop_id = stop_id; } in SetStopID() argument
|
H A D | Thread.cpp | 347 const uint32_t stop_id = process_sp ? process_sp->GetStopID() : UINT32_MAX; in GetStopInfo() local 356 m_stop_info_stop_id == stop_id; in GetStopInfo()
|
H A D | Process.cpp | 1177 const uint32_t stop_id = GetStopID(); in UpdateThreadListIfNeeded() local 1179 stop_id != m_thread_list.GetStopID()) { in UpdateThreadListIfNeeded() 1184 m_thread_list.SetStopID(stop_id); in UpdateThreadListIfNeeded() 1242 m_thread_list.SetStopID(stop_id); in UpdateThreadListIfNeeded()
|
/freebsd/contrib/llvm-project/lldb/include/lldb/Target/ |
H A D | SectionLoadHistory.h | 44 lldb::addr_t GetSectionLoadAddress(uint32_t stop_id, 47 bool ResolveLoadAddress(uint32_t stop_id, lldb::addr_t load_addr, 50 bool SetSectionLoadAddress(uint32_t stop_id, 58 bool SetSectionUnloaded(uint32_t stop_id, const lldb::SectionSP §ion_sp, 64 size_t SetSectionUnloaded(uint32_t stop_id, 70 SectionLoadList *GetSectionLoadListForStopID(uint32_t stop_id,
|
H A D | QueueItem.h | 112 void SetStopID(uint32_t stop_id) { m_stop_id = stop_id; } in SetStopID() argument
|
H A D | RegisterContext.h | 227 void SetStopID(uint32_t stop_id) { m_stop_id = stop_id; } 217 SetStopID(uint32_t stop_id) SetStopID() argument
|
H A D | ThreadList.h | 135 void SetStopID(uint32_t stop_id);
|
H A D | Process.h | 307 lldb::EventSP GetStopEventForStopID(uint32_t stop_id) const { in GetStopEventForStopID() argument 308 if (stop_id == m_last_natural_stop_id) in GetStopEventForStopID() 1490 lldb::EventSP GetStopEventForStopID(uint32_t stop_id) const { in GetStopEventForStopID() argument 1491 return m_mod_id.GetStopEventForStopID(stop_id); in GetStopEventForStopID()
|
H A D | Target.h | 1205 uint32_t stop_id = SectionLoadHistory::eStopIDNow);
|
/freebsd/contrib/llvm-project/lldb/source/Plugins/Process/Utility/ |
H A D | RegisterContextThreadMemory.cpp | 33 const uint32_t stop_id = process_sp->GetModID().GetStopID(); in UpdateRegisterContext() local 34 if (m_stop_id != stop_id) { in UpdateRegisterContext() 35 m_stop_id = stop_id; in UpdateRegisterContext()
|
/freebsd/contrib/llvm-project/lldb/source/Plugins/Process/gdb-remote/ |
H A D | ThreadGDBRemote.h | 115 void SetStopInfoFromPacket(StringExtractor &stop_packet, uint32_t stop_id);
|
H A D | ProcessGDBRemote.cpp | 2129 const uint32_t stop_id = GetStopID(); in SetThreadStopInfo() local 2130 if (stop_id == 0) { in SetThreadStopInfo()
|
/freebsd/contrib/llvm-project/lldb/include/lldb/API/ |
H A D | SBProcess.h | 189 lldb::SBEvent GetStopEventForStopID(uint32_t stop_id);
|
H A D | SBTarget.h | 567 lldb::SBAddress ResolvePastLoadAddress(uint32_t stop_id,
|
/freebsd/contrib/llvm-project/lldb/source/API/ |
H A D | SBProcess.cpp | 456 SBEvent SBProcess::GetStopEventForStopID(uint32_t stop_id) { in GetStopEventForStopID() argument 457 LLDB_INSTRUMENT_VA(this, stop_id); in GetStopEventForStopID() 465 event_sp = process_sp->GetStopEventForStopID(stop_id); in GetStopEventForStopID()
|
H A D | SBTarget.cpp | 625 lldb::SBAddress SBTarget::ResolvePastLoadAddress(uint32_t stop_id, in ResolvePastLoadAddress() argument 627 LLDB_INSTRUMENT_VA(this, stop_id, vm_addr); in ResolvePastLoadAddress()
|
/freebsd/contrib/llvm-project/lldb/source/Core/ |
H A D | IOHandlerCursesGUI.cpp | 4512 auto stop_id = process_sp->GetStopID(); in GetChildren() local 4513 if (process_sp && stop_id != children_stop_id) { in GetChildren() 4514 children_stop_id = stop_id; in GetChildren() 5232 const uint32_t stop_id = process_sp->GetStopID(); in TreeDelegateGenerateChildren() local 5233 if (m_stop_id == stop_id) in TreeDelegateGenerateChildren() 5236 m_stop_id = stop_id; in TreeDelegateGenerateChildren() 6862 const uint32_t stop_id = process ? process->GetStopID() : 0; in WindowDelegateDraw() local 6863 const bool stop_id_changed = stop_id != m_stop_id; in WindowDelegateDraw() 6865 m_stop_id = stop_id; in WindowDelegateDraw()
|