Lines Matching refs:m_type

74       RegisterLocation() : m_type(unspecified), m_location() {}
82 void SetUnspecified() { m_type = unspecified; }
84 void SetUndefined() { m_type = undefined; }
86 void SetSame() { m_type = same; }
88 bool IsSame() const { return m_type == same; }
90 bool IsUnspecified() const { return m_type == unspecified; }
92 bool IsUndefined() const { return m_type == undefined; }
94 bool IsCFAPlusOffset() const { return m_type == isCFAPlusOffset; }
96 bool IsAtCFAPlusOffset() const { return m_type == atCFAPlusOffset; }
98 bool IsAFAPlusOffset() const { return m_type == isAFAPlusOffset; }
100 bool IsAtAFAPlusOffset() const { return m_type == atAFAPlusOffset; }
102 bool IsInOtherRegister() const { return m_type == inOtherRegister; }
104 bool IsAtDWARFExpression() const { return m_type == atDWARFExpression; }
106 bool IsDWARFExpression() const { return m_type == isDWARFExpression; }
109 m_type = atCFAPlusOffset;
114 m_type = isCFAPlusOffset;
119 m_type = atAFAPlusOffset;
124 m_type = isAFAPlusOffset;
129 m_type = inOtherRegister;
134 if (m_type == inOtherRegister)
139 RestoreType GetLocationType() const { return m_type; }
142 switch(m_type)
155 if (m_type == atDWARFExpression || m_type == isDWARFExpression) {
169 if (m_type == atDWARFExpression || m_type == isDWARFExpression)
175 if (m_type == atDWARFExpression || m_type == isDWARFExpression)
184 RestoreType m_type; // How do we locate this register?
186 // For m_type == atCFAPlusOffset or m_type == isCFAPlusOffset
188 // For m_type == inOtherRegister
190 // For m_type == atDWARFExpression or m_type == isDWARFExpression
208 FAValue() : m_type(unspecified), m_value() {}
214 void SetUnspecified() { m_type = unspecified; }
216 bool IsUnspecified() const { return m_type == unspecified; }
219 m_type = isRaSearch;
224 return m_type == isRegisterPlusOffset;
228 m_type = isRegisterPlusOffset;
234 return m_type == isRegisterDereferenced;
238 m_type = isRegisterDereferenced;
242 bool IsDWARFExpression() const { return m_type == isDWARFExpression; }
245 m_type = isDWARFExpression;
251 if (m_type == isRegisterDereferenced || m_type == isRegisterPlusOffset)
256 ValueType GetValueType() const { return m_type; }
259 switch (m_type) {
270 if (m_type == isRegisterPlusOffset)
275 if (m_type == isRegisterPlusOffset)
280 if (m_type == isDWARFExpression) {
290 if (m_type == isDWARFExpression)
296 if (m_type == isDWARFExpression)
304 ValueType m_type; // How do we compute CFA value?
307 // For m_type == isRegisterPlusOffset or m_type ==
310 // For m_type == isRegisterPlusOffset
313 // For m_type == isDWARFExpression
318 // For m_type == isRaSearch