/freebsd-src/contrib/llvm-project/lldb/source/Breakpoint/ |
H A D | WatchpointList.cpp | 20 lldb::watch_id_t WatchpointList::Add(const WatchpointSP &wp_sp, bool notify) { in Add() argument 22 wp_sp->SetID(++m_next_wp_id); in Add() 23 m_watchpoints.push_back(wp_sp); in Add() 25 if (wp_sp->GetTarget().EventTypeHasListeners( in Add() 28 eWatchpointEventTypeAdded, wp_sp); in Add() 29 wp_sp->GetTarget().BroadcastEvent(Target::eBroadcastBitWatchpointChanged, in Add() 33 return wp_sp->GetID(); in Add() 55 WatchpointSP wp_sp; in FindByAddress() local 63 wp_sp = *pos; in FindByAddress() 69 return wp_sp; in FindByAddress() [all …]
|
H A D | WatchpointResource.cpp | 52 void WatchpointResource::AddConstituent(const WatchpointSP &wp_sp) { 54 m_constituents.push_back(wp_sp); in AddConstituent() 57 void WatchpointResource::RemoveConstituent(WatchpointSP &wp_sp) { 60 std::find(m_constituents.begin(), m_constituents.end(), wp_sp); in RemoveConstituent() 70 bool WatchpointResource::ConstituentsContains(const WatchpointSP &wp_sp) { 71 return ConstituentsContains(wp_sp.get()); in ConstituentsContains() argument 53 AddConstituent(const WatchpointSP & wp_sp) AddConstituent() argument 58 RemoveConstituent(WatchpointSP & wp_sp) RemoveConstituent() argument
|
H A D | WatchpointResourceList.cpp |
|
H A D | Watchpoint.cpp | 543 WatchpointSP wp_sp; 547 wp_sp = data->m_new_watchpoint_sp; 549 return wp_sp; 522 WatchpointSP wp_sp; GetWatchpointFromEvent() local
|
/freebsd-src/contrib/llvm-project/lldb/source/Plugins/Process/Utility/ |
H A D | StopInfoMachException.cpp | 680 lldb::WatchpointSP wp_sp; in CreateStopReasonWithMachException() 682 wp_sp = target->GetWatchpointList().FindByAddress( in CreateStopReasonWithMachException() 684 if (wp_sp && wp_sp->IsEnabled()) { in CreateStopReasonWithMachException() 686 wp_sp->GetID()); in CreateStopReasonWithMachException() 737 lldb::WatchpointSP wp_sp; in CreateStopReasonWithMachException() 739 wp_sp = target->GetWatchpointList().FindByAddress( in CreateStopReasonWithMachException() 741 if (wp_sp && wp_sp->IsEnabled()) { in CreateStopReasonWithMachException() 743 wp_sp in CreateStopReasonWithMachException() 498 lldb::WatchpointSP wp_sp = GetStopInfoForHardwareBP() local 677 lldb::WatchpointSP wp_sp; CreateStopReasonWithMachException() local 756 lldb::WatchpointSP wp_sp; CreateStopReasonWithMachException() local [all...] |
/freebsd-src/contrib/llvm-project/lldb/source/Target/ |
H A D | StopInfo.cpp | 793 WatchpointSP wp_sp( in ShouldStopSynchronous() local 796 if (!wp_sp) { in ShouldStopSynchronous() 810 m_should_stop = wp_sp->ShouldStop(&context); in ShouldStopSynchronous() 834 *(thread_sp.get()), me_as_siwp_sp, wp_sp)); in ShouldStopSynchronous() 885 WatchpointSP wp_sp( in PerformAction() local 888 if (wp_sp) { in PerformAction() 895 WatchpointSentry sentry(process_sp, wp_sp); in PerformAction() 899 wp_sp->UndoHitCount(); in PerformAction() 902 if (wp_sp->GetHitCount() <= wp_sp in PerformAction() [all...] |
H A D | Target.cpp | 864 WatchpointSP wp_sp; in CreateWatchpoint() 867 return wp_sp; in CreateWatchpoint() 875 return wp_sp; in CreateWatchpoint() 883 return wp_sp; in CreateWatchpoint() 919 wp_sp = matched_sp; in CreateWatchpoint() 920 wp_sp->SetEnabled(false, notify); in CreateWatchpoint() 928 if (!wp_sp) { in CreateWatchpoint() 929 wp_sp = std::make_shared<Watchpoint>(*this, addr, size, type); in CreateWatchpoint() 930 wp_sp->SetWatchpointType(kind, notify); in CreateWatchpoint() 931 m_watchpoint_list.Add(wp_sp, tru in CreateWatchpoint() 863 WatchpointSP wp_sp; CreateWatchpoint() local 1237 for (WatchpointSP wp_sp : m_watchpoint_list.Watchpoints()) { RemoveAllWatchpoints() local 1266 for (WatchpointSP wp_sp : m_watchpoint_list.Watchpoints()) { DisableAllWatchpoints() local 1293 for (WatchpointSP wp_sp : m_watchpoint_list.Watchpoints()) { EnableAllWatchpoints() local 1309 for (WatchpointSP wp_sp : m_watchpoint_list.Watchpoints()) { ClearAllWatchpointHitCounts() local 1323 for (WatchpointSP wp_sp : m_watchpoint_list.Watchpoints()) { ClearAllWatchpointHistoricValues() local 1341 for (WatchpointSP wp_sp : m_watchpoint_list.Watchpoints()) { IgnoreAllWatchpoints() local 1358 WatchpointSP wp_sp = m_watchpoint_list.FindByID(watch_id); DisableWatchpointByID() local 1377 WatchpointSP wp_sp = m_watchpoint_list.FindByID(watch_id); EnableWatchpointByID() local 1413 WatchpointSP wp_sp = m_watchpoint_list.FindByID(watch_id); IgnoreWatchpointByID() local [all...] |
H A D | Process.cpp | 2586 Status Process::EnableWatchpoint(WatchpointSP wp_sp, bool notify) { in LaunchPrivate() 2592 Status Process::DisableWatchpoint(WatchpointSP wp_sp, bool notify) { in LaunchPrivate() 2423 EnableWatchpoint(WatchpointSP wp_sp,bool notify) EnableWatchpoint() argument 2429 DisableWatchpoint(WatchpointSP wp_sp,bool notify) DisableWatchpoint() argument
|
/freebsd-src/contrib/llvm-project/lldb/source/API/ |
H A D | SBWatchpoint.cpp | 31 SBWatchpoint::SBWatchpoint(const lldb::WatchpointSP &wp_sp) in SBWatchpoint() argument 32 : m_opaque_wp(wp_sp) { in SBWatchpoint() 33 LLDB_INSTRUMENT_VA(this, wp_sp); in SBWatchpoint()
|
/freebsd-src/contrib/llvm-project/lldb/bindings/lua/ |
H A D | lua-wrapper.swig | 47 lua_State * L, lldb::StackFrameSP stop_frame_sp, lldb::WatchpointSP wp_sp) { 49 lldb::SBWatchpoint sb_wp(wp_sp);
|
/freebsd-src/contrib/llvm-project/lldb/source/Plugins/ScriptInterpreter/Lua/ |
H A D | SWIGLuaBridge.h | 28 lua_State *L, lldb::StackFrameSP stop_frame_sp, lldb::WatchpointSP wp_sp);
|
H A D | Lua.cpp | 108 lldb::WatchpointSP wp_sp) { in CallWatchpointCallback() argument 113 m_lua_state, stop_frame_sp, wp_sp); in CallWatchpointCallback()
|
H A D | Lua.h | 43 lldb::WatchpointSP wp_sp);
|
H A D | ScriptInterpreterLua.cpp | 308 WatchpointSP wp_sp = target->GetWatchpointList().FindByID(watch_id); in WatchpointCallbackFunction() local 316 lua.CallWatchpointCallback(baton, stop_frame_sp, wp_sp); in WatchpointCallbackFunction()
|
/freebsd-src/contrib/llvm-project/lldb/include/lldb/Breakpoint/ |
H A D | WatchpointResourceList.h |
|
H A D | WatchpointResource.h | 101 /// \param[in] wp_sp 106 bool ConstituentsContains(const lldb::WatchpointSP &wp_sp);
|
H A D | WatchpointList.h | 53 lldb::watch_id_t Add(const lldb::WatchpointSP &wp_sp, bool notify);
|
/freebsd-src/contrib/llvm-project/lldb/include/lldb/API/ |
H A D | SBWatchpoint.h | 94 SBWatchpoint(const lldb::WatchpointSP &wp_sp);
|
/freebsd-src/contrib/llvm-project/lldb/source/Plugins/Process/gdb-remote/ |
H A D | ProcessGDBRemote.cpp | 3154 Status ProcessGDBRemote::EnableWatchpoint(WatchpointSP wp_sp, bool notify) { in EnableWatchpoint() 3156 if (!wp_sp) { in EnableWatchpoint() 3160 user_id_t watchID = wp_sp->GetID(); in EnableWatchpoint() 3161 addr_t addr = wp_sp->GetLoadAddress(); in EnableWatchpoint() 3165 if (wp_sp->IsEnabled()) { in EnableWatchpoint() 3173 bool read = wp_sp->WatchpointRead(); in EnableWatchpoint() 3174 bool write = wp_sp->WatchpointWrite() || wp_sp->WatchpointModify(); in EnableWatchpoint() 3175 size_t size = wp_sp->GetByteSize(); in EnableWatchpoint() 3224 wp_sp in EnableWatchpoint() 3133 EnableWatchpoint(WatchpointSP wp_sp,bool notify) EnableWatchpoint() argument 3237 DisableWatchpoint(WatchpointSP wp_sp,bool notify) DisableWatchpoint() argument [all...] |
H A D | ProcessGDBRemote.h | 161 Status EnableWatchpoint(lldb::WatchpointSP wp_sp, 164 Status DisableWatchpoint(lldb::WatchpointSP wp_sp,
|
/freebsd-src/contrib/llvm-project/lldb/source/Commands/ |
H A D | CommandCompletions.cpp | 808 for (lldb::WatchpointSP wp_sp : wp_list.Watchpoints()) { in TypeCategoryNames() 810 wp_sp->Dump(&strm); in TypeCategoryNames() 811 request.TryCompleteCurrentArg(std::to_string(wp_sp->GetID()), 793 for (lldb::WatchpointSP wp_sp : wp_list.Watchpoints()) { WatchPointIDs() local
|
/freebsd-src/contrib/llvm-project/lldb/source/Plugins/ScriptInterpreter/Python/ |
H A D | ScriptInterpreterPython.cpp | 1995 WatchpointSP wp_sp = target->GetWatchpointList().FindByID(watch_id); in GetScriptedSummary() 1996 if (wp_sp) { in GetScriptedSummary() 1997 if (stop_frame_sp && wp_sp) { in GetScriptedSummary() 2006 wp_sp); in FormatterCallbackFunction() 2101 WatchpointSP wp_sp = target->GetWatchpointList().FindByID(watch_id); WatchpointCallbackFunction() local
|
/freebsd-src/contrib/llvm-project/lldb/include/lldb/Target/ |
H A D | Process.h | 2195 virtual Status EnableWatchpoint(lldb::WatchpointSP wp_sp, bool notify = true); in GetWatchpointResourceList() 2197 virtual Status DisableWatchpoint(lldb::WatchpointSP wp_sp,
|
/freebsd-src/contrib/llvm-project/lldb/bindings/python/ |
H A D | python-wrapper.swig | 70 const lldb::StackFrameSP &frame_sp, const lldb::WatchpointSP &wp_sp) { 85 pfunc(SWIGBridge::ToSWIGWrapper(frame_sp), SWIGBridge::ToSWIGWrapper(wp_sp), dict);
|
/freebsd-src/lib/clang/liblldb/ |
H A D | LLDBWrapLua.cpp | 3840 lua_State * L, lldb::StackFrameSP stop_frame_sp, lldb::WatchpointSP wp_sp) { in _wrap_new_string__SWIG_0() 3842 lldb::SBWatchpoint sb_wp(wp_sp); 3781 LLDBSwigLuaWatchpointCallbackFunction(lua_State * L,lldb::StackFrameSP stop_frame_sp,lldb::WatchpointSP wp_sp) LLDBSwigLuaWatchpointCallbackFunction() argument [all...] |