Lines Matching refs:regno
911 uint32_t regno, _Unwind_VRS_DataRepresentation representation, in _Unwind_VRS_Set() argument
915 static_cast<void *>(context), regclass, regno, in _Unwind_VRS_Set()
921 if (representation != _UVRSD_UINT32 || regno > 15) in _Unwind_VRS_Set()
923 return __unw_set_reg(cursor, (unw_regnum_t)(UNW_ARM_R0 + regno), in _Unwind_VRS_Set()
932 if (regno > 15) in _Unwind_VRS_Set()
936 if (regno > 31) in _Unwind_VRS_Set()
939 return __unw_set_fpreg(cursor, (unw_regnum_t)(UNW_ARM_D0 + regno), in _Unwind_VRS_Set()
945 if (representation != _UVRSD_UINT32 || regno > 3) in _Unwind_VRS_Set()
947 return __unw_set_reg(cursor, (unw_regnum_t)(UNW_ARM_WC0 + regno), in _Unwind_VRS_Set()
952 if (representation != _UVRSD_DOUBLE || regno > 31) in _Unwind_VRS_Set()
954 return __unw_set_fpreg(cursor, (unw_regnum_t)(UNW_ARM_WR0 + regno), in _Unwind_VRS_Set()
965 if (representation != _UVRSD_UINT32 || regno != 0) in _Unwind_VRS_Set()
978 _Unwind_VRS_RegClass regclass, uint32_t regno, in _Unwind_VRS_Get_Internal() argument
984 if (representation != _UVRSD_UINT32 || regno > 15) in _Unwind_VRS_Get_Internal()
986 return __unw_get_reg(cursor, (unw_regnum_t)(UNW_ARM_R0 + regno), in _Unwind_VRS_Get_Internal()
995 if (regno > 15) in _Unwind_VRS_Get_Internal()
999 if (regno > 31) in _Unwind_VRS_Get_Internal()
1002 return __unw_get_fpreg(cursor, (unw_regnum_t)(UNW_ARM_D0 + regno), in _Unwind_VRS_Get_Internal()
1008 if (representation != _UVRSD_UINT32 || regno > 3) in _Unwind_VRS_Get_Internal()
1010 return __unw_get_reg(cursor, (unw_regnum_t)(UNW_ARM_WC0 + regno), in _Unwind_VRS_Get_Internal()
1015 if (representation != _UVRSD_DOUBLE || regno > 31) in _Unwind_VRS_Get_Internal()
1017 return __unw_get_fpreg(cursor, (unw_regnum_t)(UNW_ARM_WR0 + regno), in _Unwind_VRS_Get_Internal()
1028 if (representation != _UVRSD_UINT32 || regno != 0) in _Unwind_VRS_Get_Internal()
1041 uint32_t regno, _Unwind_VRS_DataRepresentation representation, in _Unwind_VRS_Get() argument
1044 _Unwind_VRS_Get_Internal(context, regclass, regno, representation, in _Unwind_VRS_Get()
1048 static_cast<void *>(context), regclass, regno, in _Unwind_VRS_Get()