| /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 | 3244 uint32_t stop_id, bool allow_section_end) { in ResolveLoadAddress() argument 3245 return m_section_load_history.ResolveLoadAddress(stop_id, load_addr, so_addr, in ResolveLoadAddress() 3261 uint32_t stop_id = 0; in SetSectionLoadAddress() local 3264 stop_id = process_sp->GetStopID(); in SetSectionLoadAddress() 3266 stop_id = m_section_load_history.GetLastStopID(); in SetSectionLoadAddress() 3268 stop_id, section_sp, new_section_load_addr, warn_multiple)) in SetSectionLoadAddress() 3285 uint32_t stop_id = 0; in UnloadModuleSections() local 3288 stop_id = process_sp->GetStopID(); in UnloadModuleSections() 3290 stop_id = m_section_load_history.GetLastStopID(); in UnloadModuleSections() 3297 stop_id, sections->GetSectionAtIndex(i)); in UnloadModuleSections() [all …]
|
| H A D | Statistics.cpp | 197 uint32_t stop_id = process_sp->GetStopID(); in ToJSON() local 198 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 | 354 const uint32_t stop_id = process_sp ? process_sp->GetStopID() : UINT32_MAX; in GetStopInfo() local 363 m_stop_info_stop_id == stop_id; in GetStopInfo()
|
| H A D | Process.cpp | 1123 const uint32_t stop_id = GetStopID(); in UpdateThreadListIfNeeded() local 1125 stop_id != m_thread_list.GetStopID()) { in UpdateThreadListIfNeeded() 1130 m_thread_list.SetStopID(stop_id); in UpdateThreadListIfNeeded() 1188 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 | 137 void SetStopID(uint32_t stop_id);
|
| H A D | Process.h | 310 lldb::EventSP GetStopEventForStopID(uint32_t stop_id) const { in GetStopEventForStopID() argument 311 if (stop_id == m_last_natural_stop_id) in GetStopEventForStopID() 1486 lldb::EventSP GetStopEventForStopID(uint32_t stop_id) const { in GetStopEventForStopID() argument 1487 return m_mod_id.GetStopEventForStopID(stop_id); in GetStopEventForStopID()
|
| H A D | Target.h | 1246 uint32_t stop_id = SectionLoadHistory::eStopIDNow,
|
| /freebsd/contrib/llvm-project/lldb/source/Plugins/Process/Utility/ |
| H A D | RegisterContextThreadMemory.cpp | 35 const uint32_t stop_id = process_sp->GetModID().GetStopID(); in UpdateRegisterContext() local 36 if (m_stop_id != stop_id) { in UpdateRegisterContext() 37 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 | 2212 const uint32_t stop_id = GetStopID(); in SetThreadStopInfo() local 2213 if (stop_id == 0) { in SetThreadStopInfo()
|
| /freebsd/contrib/llvm-project/lldb/include/lldb/API/ |
| H A D | SBProcess.h | 190 lldb::SBEvent GetStopEventForStopID(uint32_t stop_id);
|
| H A D | SBTarget.h | 584 lldb::SBAddress ResolvePastLoadAddress(uint32_t stop_id,
|
| /freebsd/contrib/llvm-project/lldb/source/API/ |
| H A D | SBProcess.cpp | 459 SBEvent SBProcess::GetStopEventForStopID(uint32_t stop_id) { in GetStopEventForStopID() argument 460 LLDB_INSTRUMENT_VA(this, stop_id); in GetStopEventForStopID() 468 event_sp = process_sp->GetStopEventForStopID(stop_id); in GetStopEventForStopID()
|
| H A D | SBTarget.cpp | 616 lldb::SBAddress SBTarget::ResolvePastLoadAddress(uint32_t stop_id, in ResolvePastLoadAddress() argument 618 LLDB_INSTRUMENT_VA(this, stop_id, vm_addr); in ResolvePastLoadAddress()
|
| /freebsd/contrib/llvm-project/lldb/source/Core/ |
| H A D | IOHandlerCursesGUI.cpp | 4514 auto stop_id = process_sp->GetStopID(); in GetChildren() local 4515 if (process_sp && stop_id != children_stop_id) { in GetChildren() 4516 children_stop_id = stop_id; in GetChildren() 5234 const uint32_t stop_id = process_sp->GetStopID(); in TreeDelegateGenerateChildren() local 5235 if (m_stop_id == stop_id) in TreeDelegateGenerateChildren() 5238 m_stop_id = stop_id; in TreeDelegateGenerateChildren() 6863 const uint32_t stop_id = process ? process->GetStopID() : 0; in WindowDelegateDraw() local 6864 const bool stop_id_changed = stop_id != m_stop_id; in WindowDelegateDraw() 6866 m_stop_id = stop_id; in WindowDelegateDraw()
|