Home
last modified time | relevance | path

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

/llvm-project-15.0.7/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()
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()
225 sc.comp_unit == m_addr_context.comp_unit && 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 == in InRange()
126 m_addr_context = new_context; in InRange()
145 m_addr_context = new_context; in InRange()
170 m_addr_context = new_context; in InRange()
172 AddRange(m_addr_context.line_entry.range); in InRange()
198 if (m_addr_context.function != nullptr) { in InSymbol()
201 } else if (m_addr_context.symbol && m_addr_context.symbol->ValueIsAddress()) { in InSymbol()
202 AddressRange range(m_addr_context.symbol->GetAddressRef(), in InSymbol()
[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()
/llvm-project-15.0.7/lldb/include/lldb/Target/
H A DThreadPlanStepRange.h65 SymbolContext m_addr_context; variable