Lines Matching refs:lldb_regnum

924 RegisterContextLLDB::SavedLocationForRegister (uint32_t lldb_regnum, lldb_private::UnwindLLDB::Regi…  in SavedLocationForRegister()  argument
930 iterator = m_registers.find (lldb_regnum); in SavedLocationForRegister()
934 UnwindLogMsg ("supplying caller's saved reg %d's location, cached", lldb_regnum); in SavedLocationForRegister()
946 if (sp_regnum != LLDB_INVALID_REGNUM && sp_regnum == lldb_regnum) in SavedLocationForRegister()
952 m_registers[lldb_regnum] = regloc; in SavedLocationForRegister()
953 … UnwindLogMsg ("supplying caller's stack pointer (%d) value, computed from CFA", lldb_regnum); in SavedLocationForRegister()
968 ….GetRegisterContext()->ConvertBetweenRegisterKinds (eRegisterKindLLDB, lldb_regnum, unwindplan_reg… in SavedLocationForRegister()
971 lldb_regnum, (int) unwindplan_registerkind); in SavedLocationForRegister()
976 … UnwindLogMsg ("supplying caller's saved reg %d's location using FastUnwindPlan", lldb_regnum); in SavedLocationForRegister()
996 …if (lldb_regnum == pc_regnum && m_full_unwind_plan_sp->GetReturnAddressRegister() != LLDB_INVALID_… in SavedLocationForRegister()
1005 ….GetRegisterContext()->ConvertBetweenRegisterKinds (eRegisterKindLLDB, lldb_regnum, unwindplan_reg… in SavedLocationForRegister()
1008 …g ("could not convert lldb regnum %d into eRegisterKindGeneric reg numbering scheme", lldb_regnum); in SavedLocationForRegister()
1011 lldb_regnum, (int) unwindplan_registerkind); in SavedLocationForRegister()
1019 … UnwindLogMsg ("supplying caller's saved reg %d's location using %s UnwindPlan", lldb_regnum, in SavedLocationForRegister()
1038 m_registers[lldb_regnum] = new_regloc; in SavedLocationForRegister()
1040 …'s register %d from the live RegisterContext at frame 0, saved in %d", lldb_regnum, ra_regnum_in_l… in SavedLocationForRegister()
1061 && pc_regnum == lldb_regnum in SavedLocationForRegister()
1101 const RegisterInfo *reg_info = GetRegisterInfoAtIndex(lldb_regnum); in SavedLocationForRegister()
1104 … UnwindLogMsg ("did not supply reg location for %d because it is volatile", lldb_regnum); in SavedLocationForRegister()
1114 new_regloc.location.register_number = lldb_regnum; in SavedLocationForRegister()
1115 m_registers[lldb_regnum] = new_regloc; in SavedLocationForRegister()
1117 …indLogMsg ("supplying caller's register %d from the live RegisterContext at frame 0", lldb_regnum); in SavedLocationForRegister()
1121 UnwindLogMsg ("could not supply caller's reg %d location", lldb_regnum); in SavedLocationForRegister()
1130 m_registers[lldb_regnum] = new_regloc; in SavedLocationForRegister()
1131 UnwindLogMsg ("could not supply caller's reg %d location", lldb_regnum); in SavedLocationForRegister()
1139 UnwindLogMsg ("could not supply caller's reg %d location", lldb_regnum); in SavedLocationForRegister()
1153 m_registers[lldb_regnum] = regloc; in SavedLocationForRegister()
1154 UnwindLogMsg ("supplying caller's register %d, value is CFA plus offset", lldb_regnum); in SavedLocationForRegister()
1163 m_registers[lldb_regnum] = regloc; in SavedLocationForRegister()
1164 …indLogMsg ("supplying caller's register %d from the stack, saved at CFA plus offset", lldb_regnum); in SavedLocationForRegister()
1174 UnwindLogMsg ("could not supply caller's reg %d location", lldb_regnum); in SavedLocationForRegister()
1179 m_registers[lldb_regnum] = regloc; in SavedLocationForRegister()
1180 …UnwindLogMsg ("supplying caller's register %d, saved in register %d", lldb_regnum, row_regnum_in_l… in SavedLocationForRegister()
1201 m_registers[lldb_regnum] = regloc; in SavedLocationForRegister()
1202 …indLogMsg ("supplying caller's register %d via DWARF expression (IsDWARFExpression)", lldb_regnum); in SavedLocationForRegister()
1209 m_registers[lldb_regnum] = regloc; in SavedLocationForRegister()
1210 …dLogMsg ("supplying caller's register %d via DWARF expression (IsAtDWARFExpression)", lldb_regnum); in SavedLocationForRegister()
1214 …ogMsg ("tried to use IsDWARFExpression or IsAtDWARFExpression for reg %d but failed", lldb_regnum); in SavedLocationForRegister()
1218 UnwindLogMsg ("could not supply caller's reg %d location", lldb_regnum); in SavedLocationForRegister()
1296 uint32_t lldb_regnum; in ReadGPRValue() local
1299 lldb_regnum = regnum; in ReadGPRValue()
1301 …sterContext()->ConvertBetweenRegisterKinds (register_kind, regnum, eRegisterKindLLDB, lldb_regnum)) in ReadGPRValue()
1306 const RegisterInfo *reg_info = GetRegisterInfoAtIndex(lldb_regnum); in ReadGPRValue()
1332 …if (!m_parent_unwind.SearchForSavedLocationForRegister (lldb_regnum, regloc, m_frame_number - 1, p… in ReadGPRValue()
1352 const uint32_t lldb_regnum = reg_info->kinds[eRegisterKindLLDB]; in ReadRegister() local
1353 UnwindLogMsgVerbose ("looking for register saved location for reg %d", lldb_regnum); in ReadRegister()
1358 UnwindLogMsgVerbose ("passing along to the live register context for reg %d", lldb_regnum); in ReadRegister()
1364 …if (!m_parent_unwind.SearchForSavedLocationForRegister (lldb_regnum, regloc, m_frame_number - 1, f… in ReadRegister()
1376 const uint32_t lldb_regnum = reg_info->kinds[eRegisterKindLLDB]; in WriteRegister() local
1377 UnwindLogMsgVerbose ("looking for register saved location for reg %d", lldb_regnum); in WriteRegister()
1382 UnwindLogMsgVerbose ("passing along to the live register context for reg %d", lldb_regnum); in WriteRegister()
1388 …if (!m_parent_unwind.SearchForSavedLocationForRegister (lldb_regnum, regloc, m_frame_number - 1, f… in WriteRegister()