Home
last modified time | relevance | path

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

/freebsd-10-stable/contrib/llvm/tools/lldb/source/Symbol/
DUnwindPlan.cpp129 const RegisterInfo *other_reg_info = NULL; in Dump() local
131 other_reg_info = unwind_plan->GetRegisterInfo (thread, m_location.reg_num); in Dump()
132 if (other_reg_info) in Dump()
133 s.Printf ("=%s", other_reg_info->name); in Dump()
/freebsd-10-stable/contrib/llvm/tools/lldb/source/Plugins/Process/Utility/
DRegisterContextLLDB.cpp910 … const RegisterInfo *other_reg_info = GetRegisterInfoAtIndex(regloc.location.register_number); in ReadRegisterValueFromRegisterLocation() local
912 if (!other_reg_info) in ReadRegisterValueFromRegisterLocation()
917 success = m_thread.GetRegisterContext()->ReadRegister (other_reg_info, value); in ReadRegisterValueFromRegisterLocation()
921 success = GetNextFrame()->ReadRegister (other_reg_info, value); in ReadRegisterValueFromRegisterLocation()
964 … const RegisterInfo *other_reg_info = GetRegisterInfoAtIndex(regloc.location.register_number); in WriteRegisterValueToRegisterLocation() local
967 success = m_thread.GetRegisterContext()->WriteRegister (other_reg_info, value); in WriteRegisterValueToRegisterLocation()
971 success = GetNextFrame()->WriteRegister (other_reg_info, value); in WriteRegisterValueToRegisterLocation()