Searched refs:rt_value (Results 1 – 1 of 1) sorted by relevance
3071 uint32_t rt_value = get_register(rt); in DecodeTypeVFP() local3072 n_flag_FPSCR_ = (rt_value >> 31) & 1; in DecodeTypeVFP()3073 z_flag_FPSCR_ = (rt_value >> 30) & 1; in DecodeTypeVFP()3074 c_flag_FPSCR_ = (rt_value >> 29) & 1; in DecodeTypeVFP()3075 v_flag_FPSCR_ = (rt_value >> 28) & 1; in DecodeTypeVFP()3076 FPSCR_default_NaN_mode_ = (rt_value >> 25) & 1; in DecodeTypeVFP()3077 inexact_vfp_flag_ = (rt_value >> 4) & 1; in DecodeTypeVFP()3078 underflow_vfp_flag_ = (rt_value >> 3) & 1; in DecodeTypeVFP()3079 overflow_vfp_flag_ = (rt_value >> 2) & 1; in DecodeTypeVFP()3080 div_zero_vfp_flag_ = (rt_value >> 1) & 1; in DecodeTypeVFP()[all …]