Home
last modified time | relevance | path

Searched refs:m_opcode_size (Results 1 – 3 of 3) sorted by relevance

/NextBSD/contrib/llvm/tools/lldb/source/Host/common/
HDSoftwareBreakpoint.cpp193 m_opcode_size (opcode_size) in SoftwareBreakpoint()
205 …return EnableSoftwareBreakpoint (m_process, m_addr, m_opcode_size, m_trap_opcodes, m_saved_opcodes… in DoEnable()
218 assert ( (m_opcode_size > 0) && "cannot restore opcodes when there are no opcodes"); in DoDisable()
220 if (m_opcode_size > 0) in DoDisable()
225 assert (m_opcode_size <= sizeof (curr_break_op)); in DoDisable()
229 error = m_process.ReadMemory (m_addr, curr_break_op, m_opcode_size, bytes_read); in DoDisable()
230 if (error.Success() && bytes_read < m_opcode_size) in DoDisable()
232 …ried to read %lu bytes but only read %" PRIu64, __FUNCTION__, m_addr, m_opcode_size, (uint64_t)byt… in DoDisable()
238 if (::memcmp (curr_break_op, m_trap_opcodes, m_opcode_size) == 0) in DoDisable()
244 … error = m_process.WriteMemory (m_addr, m_saved_opcodes, m_opcode_size, bytes_written); in DoDisable()
[all …]
HDNativeBreakpointList.cpp217 auto opcode_size = software_bp_sp->m_opcode_size; in RemoveTrapsFromBuffer()
/NextBSD/contrib/llvm/tools/lldb/include/lldb/Host/common/
HDSoftwareBreakpoint.h45 const size_t m_opcode_size; variable