Home | History | Annotate | Download | only in Symbol

Lines Matching refs:reg_num

37                 return m_location.reg_num == rhs.m_location.reg_num;
130 other_reg_info = unwind_plan->GetRegisterInfo (thread, m_location.reg_num);
134 s.Printf ("=reg(%u)", m_location.reg_num);
199 UnwindPlan::Row::GetRegisterInfo (uint32_t reg_num, UnwindPlan::Row::RegisterLocation& register_location) const
201 collection::const_iterator pos = m_register_locations.find(reg_num);
211 UnwindPlan::Row::SetRegisterInfo (uint32_t reg_num, const UnwindPlan::Row::RegisterLocation register_location)
213 m_register_locations[reg_num] = register_location;
217 UnwindPlan::Row::SetRegisterLocationToAtCFAPlusOffset (uint32_t reg_num, int32_t offset, bool can_replace)
219 if (!can_replace && m_register_locations.find(reg_num) != m_register_locations.end())
223 m_register_locations[reg_num] = reg_loc;
228 UnwindPlan::Row::SetRegisterLocationToIsCFAPlusOffset (uint32_t reg_num, int32_t offset, bool can_replace)
230 if (!can_replace && m_register_locations.find(reg_num) != m_register_locations.end())
234 m_register_locations[reg_num] = reg_loc;
239 UnwindPlan::Row::SetRegisterLocationToUndefined (uint32_t reg_num, bool can_replace, bool can_replace_only_if_unspecified)
241 collection::iterator pos = m_register_locations.find(reg_num);
253 m_register_locations[reg_num] = reg_loc;
258 UnwindPlan::Row::SetRegisterLocationToUnspecified (uint32_t reg_num, bool can_replace)
260 if (!can_replace && m_register_locations.find(reg_num) != m_register_locations.end())
264 m_register_locations[reg_num] = reg_loc;
269 UnwindPlan::Row::SetRegisterLocationToRegister (uint32_t reg_num,
273 if (!can_replace && m_register_locations.find(reg_num) != m_register_locations.end())
277 m_register_locations[reg_num] = reg_loc;
282 UnwindPlan::Row::SetRegisterLocationToSame (uint32_t reg_num, bool must_replace)
284 if (must_replace && m_register_locations.find(reg_num) == m_register_locations.end())
288 m_register_locations[reg_num] = reg_loc;
293 UnwindPlan::Row::SetCFARegister (uint32_t reg_num)
295 m_cfa_reg_num = reg_num;