Lines Matching defs:reg_num
41 return m_location.reg_num == rhs.m_location.reg_num;
138 other_reg_info = unwind_plan->GetRegisterInfo(thread, m_location.reg_num);
142 s.Printf("=reg(%u)", m_location.reg_num);
163 Thread *thread, uint32_t reg_num) {
164 const RegisterInfo *reg_info = unwind_plan->GetRegisterInfo(thread, reg_num);
168 s.Printf("reg(%u)", reg_num);
183 return m_value.reg.reg_num == rhs.m_value.reg.reg_num;
201 DumpRegisterName(s, unwind_plan, thread, m_value.reg.reg_num);
206 DumpRegisterName(s, unwind_plan, thread, m_value.reg.reg_num);
259 uint32_t reg_num,
261 collection::const_iterator pos = m_register_locations.find(reg_num);
273 void UnwindPlan::Row::RemoveRegisterInfo(uint32_t reg_num) {
274 collection::const_iterator pos = m_register_locations.find(reg_num);
281 uint32_t reg_num,
283 m_register_locations[reg_num] = register_location;
286 bool UnwindPlan::Row::SetRegisterLocationToAtCFAPlusOffset(uint32_t reg_num,
290 m_register_locations.find(reg_num) != m_register_locations.end())
294 m_register_locations[reg_num] = reg_loc;
298 bool UnwindPlan::Row::SetRegisterLocationToIsCFAPlusOffset(uint32_t reg_num,
302 m_register_locations.find(reg_num) != m_register_locations.end())
306 m_register_locations[reg_num] = reg_loc;
311 uint32_t reg_num, bool can_replace, bool can_replace_only_if_unspecified) {
312 collection::iterator pos = m_register_locations.find(reg_num);
323 m_register_locations[reg_num] = reg_loc;
327 bool UnwindPlan::Row::SetRegisterLocationToUnspecified(uint32_t reg_num,
330 m_register_locations.find(reg_num) != m_register_locations.end())
334 m_register_locations[reg_num] = reg_loc;
338 bool UnwindPlan::Row::SetRegisterLocationToRegister(uint32_t reg_num,
342 m_register_locations.find(reg_num) != m_register_locations.end())
346 m_register_locations[reg_num] = reg_loc;
350 bool UnwindPlan::Row::SetRegisterLocationToSame(uint32_t reg_num,
353 m_register_locations.find(reg_num) == m_register_locations.end())
357 m_register_locations[reg_num] = reg_loc;
362 uint32_t reg_num, const uint8_t *opcodes, uint32_t len, bool can_replace) {
364 m_register_locations.find(reg_num) != m_register_locations.end())
368 m_register_locations[reg_num] = reg_loc;
372 bool UnwindPlan::Row::SetRegisterLocationToIsConstant(uint32_t reg_num,
376 m_register_locations.find(reg_num) != m_register_locations.end())
380 m_register_locations[reg_num] = reg_loc;