Searched refs:m_location (Results 1 – 3 of 3) sorted by relevance
38 return m_location.offset == rhs.m_location.offset; in operator ==()41 return m_location.reg_num == rhs.m_location.reg_num; in operator ==()45 if (m_location.expr.length == rhs.m_location.expr.length) in operator ==()46 return !memcmp(m_location.expr.opcodes, rhs.m_location.expr.opcodes, in operator ==()47 m_location.expr.length); in operator ==()59 m_location.expr.opcodes = opcodes; in SetAtDWARFExpression()60 m_location.expr.length = len; in SetAtDWARFExpression()68 m_location.expr.opcodes = opcodes; in SetIsDWARFExpression()69 m_location.expr.length = len; in SetIsDWARFExpression()120 s.Printf("CFA%+d", m_location.offset); in Dump()[all …]
74 RegisterLocation() : m_location() {} in RegisterLocation()110 m_location.offset = offset; in SetAtCFAPlusOffset()115 m_location.offset = offset; in SetIsCFAPlusOffset()120 m_location.offset = offset; in SetAtAFAPlusOffset()125 m_location.offset = offset; in SetIsAFAPlusOffset()130 m_location.reg_num = reg_num; in SetInRegister()135 return m_location.reg_num; in GetRegisterNumber()148 return m_location.offset; in GetOffset()156 *opcodes = m_location.expr.opcodes; in GetDWARFExpr()157 len = m_location.expr.length; in GetDWARFExpr()[all …]
108 void SetLocation(Address l) { m_location = std::move(l); } in SetLocation()110 const Address &GetLocation() const { return m_location; } in GetLocation()121 Address m_location;