HomeSort by relevance Sort by last modified time
    Searched refs:hw_index (Results 1 - 24 of 24) sorted by null

  /external/lldb/source/Plugins/Process/POSIX/
RegisterContextPOSIX.h 44 // Checks to see if a watchpoint specified by hw_index caused the inferior
47 IsWatchpointHit (uint32_t hw_index) { return false; }
56 GetWatchpointAddress (uint32_t hw_index) { return LLDB_INVALID_ADDRESS; }
59 IsWatchpointVacant (uint32_t hw_index) { return false; }
64 uint32_t hw_index) { return false; }
RegisterContext_x86_64.h 197 bool write, uint32_t hw_index);
200 ClearHardwareWatchpoint(uint32_t hw_index);
209 IsWatchpointVacant(uint32_t hw_index);
212 IsWatchpointHit (uint32_t hw_index);
215 GetWatchpointAddress (uint32_t hw_index);
RegisterContext_x86_64.cpp     [all...]
POSIXThread.cpp 365 uint32_t hw_index = LLDB_INVALID_INDEX32; local
375 hw_index = wp_idx;
380 return hw_index;
  /external/lldb/tools/debugserver/source/
DNBArch.h 80 virtual bool DisableHardwareBreakpoint (uint32_t hw_index) { return false; }
81 virtual bool DisableHardwareWatchpoint (uint32_t hw_index, bool also_set_on_task) { return false; }
DNBBreakpoint.h 103 void SetHardwareIndex(uint32_t hw_index) { m_hw_index = hw_index; }
  /external/lldb/tools/debugserver/source/MacOSX/arm/
DNBArchImpl.cpp 456 uint32_t hw_index = GetHardwareWatchpointHit(addr); local
457 if (hw_index != INVALID_NUB_HW_INDEX)
460 m_watchpoint_hw_index = hw_index;
462 // Piggyback the hw_index in the exc.data.
463 exc.exc_data.push_back(hw_index);
849 DNBArchMachARM::DisableHardwareBreakpoint (uint32_t hw_index)
856 if (hw_index < num_hw_points)
858 m_state.dbg.__bcr[hw_index] = 0
    [all...]
DNBArchImpl.h 233 static bool IsWatchpointEnabled(const DBG &debug_state, uint32_t hw_index);
234 static nub_addr_t GetWatchAddress(const DBG &debug_state, uint32_t hw_index);
  /external/lldb/tools/debugserver/source/MacOSX/i386/
DNBArchImplI386.h 224 static void SetWatchpoint(DBG &debug_state, uint32_t hw_index, nub_addr_t addr, nub_size_t size, bool read, bool write);
225 static void ClearWatchpoint(DBG &debug_state, uint32_t hw_index);
226 static bool IsWatchpointVacant(const DBG &debug_state, uint32_t hw_index);
228 static bool IsWatchpointHit(const DBG &debug_state, uint32_t hw_index);
229 static nub_addr_t GetWatchAddress(const DBG &debug_state, uint32_t hw_index);
DNBArchImplI386.cpp 679 uint32_t hw_index = GetHardwareWatchpointHit(addr); local
680 if (hw_index != INVALID_NUB_HW_INDEX)
683 // Piggyback the hw_index in the exc.data.
684 exc.exc_data.push_back(hw_index);
733 DNBArchImplI386::SetWatchpoint(DBG &debug_state, uint32_t hw_index, nub_addr_t addr, nub_size_t size, bool read, bool write)
757 debug_state.__dr7 |= (1 << (2*hw_index) |
758 size_and_rw_bits(size, read, write) << (16+4*hw_index));
760 switch (hw_index) {
776 DNBArchImplI386::ClearWatchpoint(DBG &debug_state, uint32_t hw_index)
778 debug_state.__dr7 &= ~(3 << (2*hw_index));
    [all...]
  /external/lldb/tools/debugserver/source/MacOSX/x86_64/
DNBArchImplX86_64.h 231 static void SetWatchpoint(DBG &debug_state, uint32_t hw_index, nub_addr_t addr, nub_size_t size, bool read, bool write);
232 static void ClearWatchpoint(DBG &debug_state, uint32_t hw_index);
233 static bool IsWatchpointVacant(const DBG &debug_state, uint32_t hw_index);
235 static bool IsWatchpointHit(const DBG &debug_state, uint32_t hw_index);
236 static nub_addr_t GetWatchAddress(const DBG &debug_state, uint32_t hw_index);
DNBArchImplX86_64.cpp 633 uint32_t hw_index = GetHardwareWatchpointHit(addr); local
634 if (hw_index != INVALID_NUB_HW_INDEX)
637 // Piggyback the hw_index in the exc.data.
638 exc.exc_data.push_back(hw_index);
687 DNBArchImplX86_64::SetWatchpoint(DBG &debug_state, uint32_t hw_index, nub_addr_t addr, nub_size_t size, bool read, bool write)
711 debug_state.__dr7 |= (1 << (2*hw_index) |
712 size_and_rw_bits(size, read, write) << (16+4*hw_index));
713 switch (hw_index) {
729 DNBArchImplX86_64::ClearWatchpoint(DBG &debug_state, uint32_t hw_index)
731 debug_state.__dr7 &= ~(3 << (2*hw_index));
    [all...]
  /external/lldb/source/Plugins/Process/Utility/
RegisterContextThreadMemory.h 90 ClearHardwareWatchpoint (uint32_t hw_index);
RegisterContextThreadMemory.cpp 224 RegisterContextThreadMemory::ClearHardwareWatchpoint (uint32_t hw_index)
228 return m_reg_ctx_sp->ClearHardwareWatchpoint(hw_index);
RegisterContextDarwin_arm.cpp     [all...]
RegisterContextDarwin_arm.h 108 ClearHardwareWatchpoint (uint32_t hw_index);
  /external/chromium_org/third_party/mesa/src/src/gallium/drivers/radeon/
R600GenRegisterInfo.pl 177 my $hw_index = get_hw_index($i);
179 my $name = "$prefix$hw_index\_$chan";
180 print qq{def $name : R600Reg <"$prefix$hw_index.$chan">;\n};
radeon_setup_tgsi_llvm.c 94 LLVMValueRef hw_index = LLVMBuildAdd(gallivm->builder, addr, offset, ""); local
95 LLVMValueRef soa_index = LLVMBuildMul(gallivm->builder, hw_index,
    [all...]
  /external/lldb/source/API/
SBWatchpoint.cpp 109 int32_t hw_index = -1; local
115 hw_index = watchpoint_sp->GetHardwareIndex();
118 return hw_index;
  /external/mesa3d/src/gallium/drivers/radeon/
R600GenRegisterInfo.pl 177 my $hw_index = get_hw_index($i);
179 my $name = "$prefix$hw_index\_$chan";
180 print qq{def $name : R600Reg <"$prefix$hw_index.$chan">;\n};
radeon_setup_tgsi_llvm.c 94 LLVMValueRef hw_index = LLVMBuildAdd(gallivm->builder, addr, offset, ""); local
95 LLVMValueRef soa_index = LLVMBuildMul(gallivm->builder, hw_index,
    [all...]
  /external/lldb/include/lldb/Target/
RegisterContext.h 100 ClearHardwareWatchpoint (uint32_t hw_index);
  /external/lldb/tools/debugserver/source/MacOSX/
MachThreadList.cpp 526 uint32_t hw_index = INVALID_NUB_HW_INDEX; local
536 if ((hw_index = m_threads[idx]->EnableHardwareWatchpoint(wp, also_set_on_task)) == INVALID_NUB_HW_INDEX)
550 return hw_index;
  /external/lldb/source/Target/
RegisterContext.cpp 278 RegisterContext::ClearHardwareWatchpoint (uint32_t hw_index)

Completed in 1418 milliseconds