/external/llvm-project/lldb/source/Plugins/Process/Linux/ |
D | NativeRegisterContextLinux_arm.cpp | 366 bool NativeRegisterContextLinux_arm::ClearHardwareBreakpoint(uint32_t hw_idx) { in ClearHardwareBreakpoint() argument 368 LLDB_LOG(log, "hw_idx: {0}", hw_idx); in ClearHardwareBreakpoint() 376 if (hw_idx >= m_max_hbp_supported) in ClearHardwareBreakpoint() 380 lldb::addr_t tempAddr = m_hbr_regs[hw_idx].address; in ClearHardwareBreakpoint() 381 uint32_t tempControl = m_hbr_regs[hw_idx].control; in ClearHardwareBreakpoint() 383 m_hbr_regs[hw_idx].control &= ~1; in ClearHardwareBreakpoint() 384 m_hbr_regs[hw_idx].address = 0; in ClearHardwareBreakpoint() 387 error = WriteHardwareDebugRegs(eDREGTypeBREAK, hw_idx); in ClearHardwareBreakpoint() 390 m_hbr_regs[hw_idx].control = tempControl; in ClearHardwareBreakpoint() 391 m_hbr_regs[hw_idx].address = tempAddr; in ClearHardwareBreakpoint()
|
D | NativeRegisterContextLinux_arm64.cpp | 519 uint32_t hw_idx) { in ClearHardwareBreakpoint() argument 521 LLDB_LOG(log, "hw_idx: {0}", hw_idx); in ClearHardwareBreakpoint() 529 if (hw_idx >= m_max_hbp_supported) in ClearHardwareBreakpoint() 533 lldb::addr_t tempAddr = m_hbr_regs[hw_idx].address; in ClearHardwareBreakpoint() 534 uint32_t tempControl = m_hbr_regs[hw_idx].control; in ClearHardwareBreakpoint() 536 m_hbr_regs[hw_idx].control &= ~1; in ClearHardwareBreakpoint() 537 m_hbr_regs[hw_idx].address = 0; in ClearHardwareBreakpoint() 543 m_hbr_regs[hw_idx].control = tempControl; in ClearHardwareBreakpoint() 544 m_hbr_regs[hw_idx].address = tempAddr; in ClearHardwareBreakpoint()
|
D | NativeRegisterContextLinux_arm.h | 50 bool ClearHardwareBreakpoint(uint32_t hw_idx) override;
|
D | NativeRegisterContextLinux_arm64.h | 58 bool ClearHardwareBreakpoint(uint32_t hw_idx) override;
|
/external/llvm-project/lldb/source/Plugins/Process/Utility/ |
D | RegisterContextThreadMemory.cpp | 156 bool RegisterContextThreadMemory::ClearHardwareBreakpoint(uint32_t hw_idx) { in ClearHardwareBreakpoint() argument 159 return m_reg_ctx_sp->ClearHardwareBreakpoint(hw_idx); in ClearHardwareBreakpoint()
|
D | RegisterContextThreadMemory.h | 67 bool ClearHardwareBreakpoint(uint32_t hw_idx) override;
|
D | RegisterContextDarwin_arm.h | 80 bool ClearHardwareBreakpoint(uint32_t hw_idx) override;
|
/external/mesa3d/src/gallium/drivers/r600/ |
D | r600_shader.h | 63 unsigned hw_idx; member
|
D | r600_dump.c | 89 PRINT_UINT_ARRAY_ELM(atomics, hw_idx); in print_shader_info()
|
D | evergreen_state.c | 4793 uint32_t reg_val = (base_reg_0 + atomic->hw_idx * 4 - EVERGREEN_CONTEXT_REG_OFFSET) >> 2; in evergreen_emit_set_append_cnt() 4816 uint32_t reg_val = (base_reg_0 + atomic->hw_idx * 4) >> 2; in evergreen_emit_event_write_eos() 4850 radeon_emit(cs, (atomic->hw_idx) | (1 << 16)); in cayman_emit_event_write_eos() 4871 radeon_emit(cs, atomic->hw_idx * 4); in cayman_write_count_to_gds() 4908 if (atomic_used_mask & (1u << (atomic->hw_idx + k))) in evergreen_emit_atomic_buffer_setup_count() 4911 combined_atomics[atomic->hw_idx + k].hw_idx = atomic->hw_idx + k; in evergreen_emit_atomic_buffer_setup_count() 4912 combined_atomics[atomic->hw_idx + k].buffer_id = atomic->buffer_id; in evergreen_emit_atomic_buffer_setup_count() 4913 combined_atomics[atomic->hw_idx + k].start = atomic->start + k; in evergreen_emit_atomic_buffer_setup_count() 4914 combined_atomics[atomic->hw_idx + k].end = combined_atomics[atomic->hw_idx + k].start + 1; in evergreen_emit_atomic_buffer_setup_count() 4915 atomic_used_mask |= (1u << (atomic->hw_idx + k)); in evergreen_emit_atomic_buffer_setup_count()
|
D | r600_shader.c | 1182 ctx->shader->atomics[i].hw_idx = ctx->shader->atomic_base + ctx->shader->nhwatomic; in tgsi_declaration() 8634 return ctx->shader->atomics[i].hw_idx; in find_hw_atomic_counter() 8646 return ctx->shader->atomics[i].hw_idx + offset; in find_hw_atomic_counter()
|
/external/llvm-project/lldb/include/lldb/Target/ |
D | RegisterContext.h | 117 virtual bool ClearHardwareBreakpoint(uint32_t hw_idx);
|
/external/llvm-project/lldb/include/lldb/Host/common/ |
D | NativeRegisterContext.h | 66 virtual bool ClearHardwareBreakpoint(uint32_t hw_idx);
|
/external/llvm-project/lldb/source/Host/common/ |
D | NativeRegisterContext.cpp | 247 bool NativeRegisterContext::ClearHardwareBreakpoint(uint32_t hw_idx) { in ClearHardwareBreakpoint() argument
|
/external/llvm-project/lldb/source/Target/ |
D | RegisterContext.cpp | 295 bool RegisterContext::ClearHardwareBreakpoint(uint32_t hw_idx) { return false; } in ClearHardwareBreakpoint() argument
|
/external/mesa3d/src/gallium/drivers/r600/sfn/ |
D | sfn_shader_base.cpp | 257 atom.hw_idx = m_atomic_base + m_next_hwatomic_loc; in process_uniforms()
|