Searched refs:m_location (Results 1 - 5 of 5) sorted by relevance

/freebsd-11-stable/contrib/llvm-project/lldb/source/Symbol/
H A DUnwindPlan.cpp35 return m_location.offset == rhs.m_location.offset;
38 return m_location.reg_num == rhs.m_location.reg_num;
42 if (m_location.expr.length == rhs.m_location.expr.length)
43 return !memcmp(m_location.expr.opcodes, rhs.m_location.expr.opcodes,
44 m_location.expr.length);
56 m_location
[all...]
H A DVariable.cpp47 m_declaration(decl_ptr), m_location(location), m_external(external),
150 if (m_location.IsValid()) {
153 if (m_location.IsLocationList()) {
167 m_location.GetDescription(s, lldb::eDescriptionLevelBrief,
228 if (!m_location.IsLocationList()) {
246 return m_location.LocationListContainsAddress(
262 if (!m_location.IsLocationList()) {
274 return m_location.LocationListContainsAddress(loclist_base_file_addr,
471 return m_location.DumpLocationForAddress(s, eDescriptionLevelBrief,
476 return m_location
[all...]
/freebsd-11-stable/contrib/llvm-project/lldb/include/lldb/Symbol/
H A DUnwindPlan.h74 RegisterLocation() : m_type(unspecified), m_location() {}
110 m_location.offset = offset;
115 m_location.offset = offset;
120 m_location.offset = offset;
125 m_location.offset = offset;
130 m_location.reg_num = reg_num;
135 return m_location.reg_num;
148 return m_location.offset;
156 *opcodes = m_location.expr.opcodes;
157 len = m_location
195 } m_location; member in class:lldb_private::UnwindPlan::Row::RegisterLocation
[all...]
H A DVariable.h73 DWARFExpression &LocationExpression() { return m_location; }
75 const DWARFExpression &LocationExpression() const { return m_location; }
126 DWARFExpression m_location; member in class:lldb_private::Variable
131 /// The m_location expression contains the constant variable value
/freebsd-11-stable/contrib/llvm-project/lldb/include/lldb/DataFormatters/
H A DStringPrinter.h110 void SetLocation(uint64_t l) { m_location = l; }
112 uint64_t GetLocation() const { return m_location; }
119 uint64_t m_location = 0; member in class:lldb_private::formatters::StringPrinter::ReadStringAndDumpToStreamOptions

Completed in 81 milliseconds