Lines Matching refs:reg_num

40       return m_location.reg_num == rhs.m_location.reg_num;  in operator ==()
137 other_reg_info = unwind_plan->GetRegisterInfo(thread, m_location.reg_num); in Dump()
141 s.Printf("=reg(%u)", m_location.reg_num); in Dump()
159 Thread *thread, uint32_t reg_num) { in DumpRegisterName() argument
160 const RegisterInfo *reg_info = unwind_plan->GetRegisterInfo(thread, reg_num); in DumpRegisterName()
164 s.Printf("reg(%u)", reg_num); in DumpRegisterName()
179 return m_value.reg.reg_num == rhs.m_value.reg.reg_num; in operator ==()
195 DumpRegisterName(s, unwind_plan, thread, m_value.reg.reg_num); in Dump()
200 DumpRegisterName(s, unwind_plan, thread, m_value.reg.reg_num); in Dump()
252 uint32_t reg_num, in GetRegisterInfo() argument
254 collection::const_iterator pos = m_register_locations.find(reg_num); in GetRegisterInfo()
266 void UnwindPlan::Row::RemoveRegisterInfo(uint32_t reg_num) { in RemoveRegisterInfo() argument
267 collection::const_iterator pos = m_register_locations.find(reg_num); in RemoveRegisterInfo()
274 uint32_t reg_num, in SetRegisterInfo() argument
276 m_register_locations[reg_num] = register_location; in SetRegisterInfo()
279 bool UnwindPlan::Row::SetRegisterLocationToAtCFAPlusOffset(uint32_t reg_num, in SetRegisterLocationToAtCFAPlusOffset() argument
283 m_register_locations.find(reg_num) != m_register_locations.end()) in SetRegisterLocationToAtCFAPlusOffset()
287 m_register_locations[reg_num] = reg_loc; in SetRegisterLocationToAtCFAPlusOffset()
291 bool UnwindPlan::Row::SetRegisterLocationToIsCFAPlusOffset(uint32_t reg_num, in SetRegisterLocationToIsCFAPlusOffset() argument
295 m_register_locations.find(reg_num) != m_register_locations.end()) in SetRegisterLocationToIsCFAPlusOffset()
299 m_register_locations[reg_num] = reg_loc; in SetRegisterLocationToIsCFAPlusOffset()
304 uint32_t reg_num, bool can_replace, bool can_replace_only_if_unspecified) { in SetRegisterLocationToUndefined() argument
305 collection::iterator pos = m_register_locations.find(reg_num); in SetRegisterLocationToUndefined()
316 m_register_locations[reg_num] = reg_loc; in SetRegisterLocationToUndefined()
320 bool UnwindPlan::Row::SetRegisterLocationToUnspecified(uint32_t reg_num, in SetRegisterLocationToUnspecified() argument
323 m_register_locations.find(reg_num) != m_register_locations.end()) in SetRegisterLocationToUnspecified()
327 m_register_locations[reg_num] = reg_loc; in SetRegisterLocationToUnspecified()
331 bool UnwindPlan::Row::SetRegisterLocationToRegister(uint32_t reg_num, in SetRegisterLocationToRegister() argument
335 m_register_locations.find(reg_num) != m_register_locations.end()) in SetRegisterLocationToRegister()
339 m_register_locations[reg_num] = reg_loc; in SetRegisterLocationToRegister()
343 bool UnwindPlan::Row::SetRegisterLocationToSame(uint32_t reg_num, in SetRegisterLocationToSame() argument
346 m_register_locations.find(reg_num) == m_register_locations.end()) in SetRegisterLocationToSame()
350 m_register_locations[reg_num] = reg_loc; in SetRegisterLocationToSame()