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

  /external/lldb/source/API/
SBWatchpoint.cpp 109 int32_t hw_index = -1; local
115 hw_index = watchpoint_sp->GetHardwareIndex();
118 return hw_index;
  /external/lldb/source/Plugins/Process/POSIX/
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/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/chromium_org/third_party/mesa/src/src/gallium/drivers/radeon/
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/mesa3d/src/gallium/drivers/radeon/
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/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...]
  /external/lldb/tools/debugserver/source/MacOSX/i386/
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.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...]

Completed in 204 milliseconds