/freebsd/contrib/llvm-project/lldb/source/Plugins/Process/Utility/ |
H A D | NativeRegisterContextDBReg_x86.cpp | 41 static inline uint64_t GetWatchTypeBits(uint32_t watch_flags, in GetWatchTypeBits() argument 50 return static_cast<uint64_t>(watch_flags) << (16 + 4 * wp_index); in GetWatchTypeBits() 144 lldb::addr_t addr, size_t size, uint32_t watch_flags, uint32_t wp_index) { in SetHardwareWatchpointWithIndex() argument 153 if (watch_flags == 2) in SetHardwareWatchpointWithIndex() 154 watch_flags = 3; in SetHardwareWatchpointWithIndex() 156 if (watch_flags != 1 && watch_flags != 3) in SetHardwareWatchpointWithIndex() 178 GetWatchTypeBits(watch_flags, wp_index) | in SetHardwareWatchpointWithIndex() 188 (GetWatchTypeBits(watch_flags, wp_index) | in SetHardwareWatchpointWithIndex() 244 lldb::addr_t addr, size_t size, uint32_t watch_flags) { in SetHardwareWatchpoint() argument 251 error = SetHardwareWatchpointWithIndex(addr, size, watch_flags, wp_index); in SetHardwareWatchpoint()
|
H A D | NativeRegisterContextDBReg_arm64.cpp | 222 lldb::addr_t addr, size_t size, uint32_t watch_flags) { in SetHardwareWatchpoint() argument 225 watch_flags); in SetHardwareWatchpoint() 241 switch (watch_flags) { in SetHardwareWatchpoint() 243 watch_flags = 2; in SetHardwareWatchpoint() 246 watch_flags = 1; in SetHardwareWatchpoint() 278 control_value |= watch_flags << 3; in SetHardwareWatchpoint()
|
H A D | NativeRegisterContextDBReg_x86.h | 39 uint32_t watch_flags, 43 uint32_t watch_flags) override;
|
H A D | NativeRegisterContextDBReg_arm64.h | 37 uint32_t watch_flags) override;
|
/freebsd/contrib/llvm-project/lldb/source/Host/common/ |
H A D | NativeWatchpointList.cpp | 16 Status NativeWatchpointList::Add(addr_t addr, size_t size, uint32_t watch_flags, in Add() argument 18 m_watchpoints[addr] = {addr, size, watch_flags, hardware}; in Add()
|
H A D | NativeProcessProtocol.cpp | 149 uint32_t watch_flags, in SetWatchpoint() argument 178 thread->SetWatchpoint(addr, size, watch_flags, hardware); in SetWatchpoint() 182 thread_error = thread->SetWatchpoint(addr, size, watch_flags, false); in SetWatchpoint() 205 return m_watchpoint_list.Add(addr, size, watch_flags, hardware); in SetWatchpoint()
|
H A D | NativeRegisterContext.cpp | 266 uint32_t watch_flags) { in SetHardwareWatchpoint() argument
|
/freebsd/contrib/llvm-project/lldb/include/lldb/Host/common/ |
H A D | NativeWatchpointList.h | 27 Status Add(lldb::addr_t addr, size_t size, uint32_t watch_flags,
|
H A D | NativeThreadProtocol.h | 45 uint32_t watch_flags, bool hardware) = 0;
|
H A D | NativeRegisterContext.h | 76 uint32_t watch_flags);
|
H A D | NativeProcessProtocol.h | 179 uint32_t watch_flags, bool hardware);
|
/freebsd/contrib/llvm-project/lldb/source/Plugins/Process/NetBSD/ |
H A D | NativeThreadNetBSD.cpp | 264 uint32_t watch_flags, bool hardware) { in SetWatchpoint() argument 272 GetRegisterContext().SetHardwareWatchpoint(addr, size, watch_flags); in SetWatchpoint()
|
H A D | NativeThreadNetBSD.h | 41 Status SetWatchpoint(lldb::addr_t addr, size_t size, uint32_t watch_flags,
|
/freebsd/contrib/llvm-project/lldb/source/Plugins/Process/FreeBSD/ |
H A D | NativeThreadFreeBSD.cpp | 252 uint32_t watch_flags, bool hardware) { in SetWatchpoint() argument 260 GetRegisterContext().SetHardwareWatchpoint(addr, size, watch_flags); in SetWatchpoint()
|
H A D | NativeThreadFreeBSD.h | 41 Status SetWatchpoint(lldb::addr_t addr, size_t size, uint32_t watch_flags,
|
/freebsd/contrib/llvm-project/lldb/source/Plugins/Process/gdb-remote/ |
H A D | GDBRemoteCommunicationServerLLGS.cpp | 2844 uint32_t watch_flags = 0; in Handle_Z() local 2858 watch_flags = 1; in Handle_Z() 2863 watch_flags = 2; in Handle_Z() 2868 watch_flags = 3; in Handle_Z() 2910 addr, size, watch_flags, want_hardware); in Handle_Z()
|