Searched refs:hw_index (Results 1 - 13 of 13) sorted by relevance

/freebsd-10.1-release/contrib/llvm/tools/lldb/source/Plugins/Process/POSIX/
H A DRegisterContextPOSIX.h43 // Checks to see if a watchpoint specified by hw_index caused the inferior
46 IsWatchpointHit (uint32_t hw_index) = 0;
55 GetWatchpointAddress (uint32_t hw_index) = 0;
58 IsWatchpointVacant (uint32_t hw_index) = 0;
63 uint32_t hw_index) = 0;
H A DRegisterContextPOSIXProcessMonitor_mips64.h60 ClearHardwareWatchpoint(uint32_t hw_index);
73 IsWatchpointHit(uint32_t hw_index);
79 GetWatchpointAddress(uint32_t hw_index);
82 IsWatchpointVacant(uint32_t hw_index);
85 SetHardwareWatchpointWithIndex(lldb::addr_t addr, size_t size, bool read, bool write, uint32_t hw_index);
H A DRegisterContextPOSIXProcessMonitor_x86.h60 ClearHardwareWatchpoint(uint32_t hw_index);
73 IsWatchpointHit(uint32_t hw_index);
79 GetWatchpointAddress(uint32_t hw_index);
82 IsWatchpointVacant(uint32_t hw_index);
85 SetHardwareWatchpointWithIndex(lldb::addr_t addr, size_t size, bool read, bool write, uint32_t hw_index);
H A DRegisterContextPOSIXProcessMonitor_mips64.cpp230 uint32_t hw_index; local
232 for (hw_index = 0; hw_index < num_hw_watchpoints; ++hw_index)
234 if (IsWatchpointVacant(hw_index))
237 hw_index);
244 RegisterContextPOSIXProcessMonitor_mips64::ClearHardwareWatchpoint(uint32_t hw_index) argument
282 RegisterContextPOSIXProcessMonitor_mips64::IsWatchpointHit(uint32_t hw_index)
294 RegisterContextPOSIXProcessMonitor_mips64::GetWatchpointAddress(uint32_t hw_index)
300 RegisterContextPOSIXProcessMonitor_mips64::IsWatchpointVacant(uint32_t hw_index)
[all...]
H A DRegisterContextPOSIXProcessMonitor_x86.cpp416 uint32_t hw_index; local
418 for (hw_index = 0; hw_index < num_hw_watchpoints; ++hw_index)
420 if (IsWatchpointVacant(hw_index))
423 hw_index);
430 RegisterContextPOSIXProcessMonitor_x86_64::ClearHardwareWatchpoint(uint32_t hw_index) argument
432 if (hw_index < NumSupportedHardwareWatchpoints())
438 uint64_t new_dr7_bits = current_dr7_bits.GetAsUInt64() & ~(3 << (2*hw_index));
502 RegisterContextPOSIXProcessMonitor_x86_64::IsWatchpointHit(uint32_t hw_index)
[all...]
H A DPOSIXThread.cpp424 uint32_t hw_index = LLDB_INVALID_INDEX32; local
434 hw_index = wp_idx;
439 return hw_index;
/freebsd-10.1-release/contrib/llvm/tools/lldb/source/Plugins/Process/Utility/
H A DRegisterContextThreadMemory.cpp224 RegisterContextThreadMemory::ClearHardwareWatchpoint (uint32_t hw_index) argument
228 return m_reg_ctx_sp->ClearHardwareWatchpoint(hw_index);
H A DRegisterContextThreadMemory.h90 ClearHardwareWatchpoint (uint32_t hw_index);
H A DRegisterContextDarwin_arm.cpp1076 RegisterContextDarwin_arm::ClearHardwareBreakpoint (uint32_t hw_index) argument
1083 if (hw_index < num_hw_points)
1085 dbg.bcr[hw_index] = 0;
1087 // hw_index,
1088 // hw_index,
1089 // dbg.bvr[hw_index],
1090 // hw_index,
1091 // dbg.bcr[hw_index]);
1200 RegisterContextDarwin_arm::ClearHardwareWatchpoint (uint32_t hw_index) argument
1207 if (hw_index < num_hw_point
[all...]
H A DRegisterContextDarwin_arm.h108 ClearHardwareWatchpoint (uint32_t hw_index);
/freebsd-10.1-release/contrib/llvm/tools/lldb/source/API/
H A DSBWatchpoint.cpp109 int32_t hw_index = -1; local
115 hw_index = watchpoint_sp->GetHardwareIndex();
118 return hw_index;
/freebsd-10.1-release/contrib/llvm/tools/lldb/include/lldb/Target/
H A DRegisterContext.h112 ClearHardwareWatchpoint (uint32_t hw_index);
/freebsd-10.1-release/contrib/llvm/tools/lldb/source/Target/
H A DRegisterContext.cpp300 RegisterContext::ClearHardwareWatchpoint (uint32_t hw_index) argument

Completed in 78 milliseconds