Home
last modified time | relevance | path

Searched refs:m_instruction_addr (Results 1 – 2 of 2) sorted by relevance

/openbsd-src/gnu/llvm/lldb/source/Target/
H A DThreadPlanStepInstruction.cpp31 m_instruction_addr(0), m_stop_other_threads(stop_other_threads), in ThreadPlanStepInstruction()
41 m_instruction_addr = thread.GetRegisterContext()->GetPC(0); in SetUpState()
70 DumpAddress(s->AsRawOstream(), m_instruction_addr, sizeof(addr_t)); in GetDescription()
107 bool next_instruction_reached = (pc > m_instruction_addr) && in IsPlanStale()
108 (pc <= m_instruction_addr + max_opcode_size); in IsPlanStale()
112 return (thread.GetRegisterContext()->GetPC(0) != m_instruction_addr); in IsPlanStale()
144 if (thread.GetRegisterContext()->GetPC(0) != m_instruction_addr) { in ShouldStop()
222 if (pc_addr != m_instruction_addr) { in ShouldStop()
/openbsd-src/gnu/llvm/lldb/include/lldb/Target/
H A DThreadPlanStepInstruction.h44 lldb::addr_t m_instruction_addr; variable