Lines Matching refs:rt_value
3350 uint32_t rt_value = get_register(rt); in DecodeTypeVFP() local
3351 n_flag_FPSCR_ = (rt_value >> 31) & 1; in DecodeTypeVFP()
3352 z_flag_FPSCR_ = (rt_value >> 30) & 1; in DecodeTypeVFP()
3353 c_flag_FPSCR_ = (rt_value >> 29) & 1; in DecodeTypeVFP()
3354 v_flag_FPSCR_ = (rt_value >> 28) & 1; in DecodeTypeVFP()
3355 FPSCR_default_NaN_mode_ = (rt_value >> 25) & 1; in DecodeTypeVFP()
3356 inexact_vfp_flag_ = (rt_value >> 4) & 1; in DecodeTypeVFP()
3357 underflow_vfp_flag_ = (rt_value >> 3) & 1; in DecodeTypeVFP()
3358 overflow_vfp_flag_ = (rt_value >> 2) & 1; in DecodeTypeVFP()
3359 div_zero_vfp_flag_ = (rt_value >> 1) & 1; in DecodeTypeVFP()
3360 inv_op_vfp_flag_ = (rt_value >> 0) & 1; in DecodeTypeVFP()
3362 static_cast<VFPRoundingMode>((rt_value) & kVFPRoundingModeMask); in DecodeTypeVFP()