Home
last modified time | relevance | path

Searched refs:m_addr_context (Results 1 – 4 of 4) sorted by relevance

/freebsd/contrib/llvm-project/lldb/source/Target/
H A DThreadPlanStepOverRange.cpp62 if (m_addr_context.line_entry.IsValid()) { in GetDescription()
64 m_addr_context.line_entry.DumpStopContext(s, false); in GetDescription()
108 if (m_addr_context.comp_unit) { in IsEquivalentContext()
109 if (m_addr_context.comp_unit != context.comp_unit) in IsEquivalentContext()
111 if (m_addr_context.function) { in IsEquivalentContext()
112 if (m_addr_context.function != context.function) in IsEquivalentContext()
117 if (m_addr_context.block->GetInlinedFunctionInfo() == nullptr && in IsEquivalentContext()
120 return m_addr_context.block == context.block; in IsEquivalentContext()
124 return m_addr_context.symbol && m_addr_context.symbol == context.symbol; in IsEquivalentContext()
218 if (m_addr_context.line_entry.IsValid()) { in ShouldStop()
[all …]
H A DThreadPlanStepRange.cpp39 m_addr_context(addr_context), m_address_ranges(), in ThreadPlanStepRange()
121 if (m_addr_context.line_entry.IsValid() && in InRange()
123 if (m_addr_context.line_entry.original_file_sp->Equal( in InRange()
126 if (m_addr_context.line_entry.line == new_context.line_entry.line) { in InRange()
127 m_addr_context = new_context; in InRange()
130 AddRange(m_addr_context.line_entry.GetSameLineContiguousAddressRange( in InRange()
135 m_addr_context.line_entry.Dump(&s, &GetTarget(), true, in InRange()
145 new_context.line_entry.line = m_addr_context.line_entry.line; in InRange()
146 m_addr_context = new_context; in InRange()
149 AddRange(m_addr_context.line_entry.GetSameLineContiguousAddressRange( in InRange()
[all …]
H A DThreadPlanStepInRange.cpp108 if (m_addr_context.line_entry.IsValid()) { in GetDescription()
110 m_addr_context.line_entry.DumpStopContext(s, false); in GetDescription()
/freebsd/contrib/llvm-project/lldb/include/lldb/Target/
H A DThreadPlanStepRange.h65 SymbolContext m_addr_context; variable