Home
last modified time | relevance | path

Searched refs:other_reg_info (Results 1 – 2 of 2) sorted by relevance

/external/lldb/source/Symbol/
DUnwindPlan.cpp128 const RegisterInfo *other_reg_info = NULL; in Dump() local
130 other_reg_info = unwind_plan->GetRegisterInfo (thread, m_location.reg_num); in Dump()
131 if (other_reg_info) in Dump()
132 s.Printf ("=%s", other_reg_info->name); in Dump()
/external/lldb/source/Plugins/Process/Utility/
DRegisterContextLLDB.cpp815 … const RegisterInfo *other_reg_info = GetRegisterInfoAtIndex(regloc.location.register_number); in ReadRegisterValueFromRegisterLocation() local
817 if (!other_reg_info) in ReadRegisterValueFromRegisterLocation()
822 success = m_thread.GetRegisterContext()->ReadRegister (other_reg_info, value); in ReadRegisterValueFromRegisterLocation()
826 success = GetNextFrame()->ReadRegister (other_reg_info, value); in ReadRegisterValueFromRegisterLocation()
869 … const RegisterInfo *other_reg_info = GetRegisterInfoAtIndex(regloc.location.register_number); in WriteRegisterValueToRegisterLocation() local
872 success = m_thread.GetRegisterContext()->WriteRegister (other_reg_info, value); in WriteRegisterValueToRegisterLocation()
876 success = GetNextFrame()->WriteRegister (other_reg_info, value); in WriteRegisterValueToRegisterLocation()