Searched refs:rt_value (Results 1 – 1 of 1) sorted by relevance
2864 uint32_t rt_value = get_register(rt); in DecodeTypeVFP() local2865 n_flag_FPSCR_ = (rt_value >> 31) & 1; in DecodeTypeVFP()2866 z_flag_FPSCR_ = (rt_value >> 30) & 1; in DecodeTypeVFP()2867 c_flag_FPSCR_ = (rt_value >> 29) & 1; in DecodeTypeVFP()2868 v_flag_FPSCR_ = (rt_value >> 28) & 1; in DecodeTypeVFP()2869 inexact_vfp_flag_ = (rt_value >> 4) & 1; in DecodeTypeVFP()2870 underflow_vfp_flag_ = (rt_value >> 3) & 1; in DecodeTypeVFP()2871 overflow_vfp_flag_ = (rt_value >> 2) & 1; in DecodeTypeVFP()2872 div_zero_vfp_flag_ = (rt_value >> 1) & 1; in DecodeTypeVFP()2873 inv_op_vfp_flag_ = (rt_value >> 0) & 1; in DecodeTypeVFP()[all …]