Lines Matching refs:src_mode
2380 the bit pattern. SRC_MODE is the mode of SRC; if this is smaller than
2390 - when MODE is wider than SRC_MODE, the extraction involves
2393 - when MODE is smaller than SRC_MODE, the extraction involves
2401 extract_low_bits (machine_mode mode, machine_mode src_mode, rtx src)
2405 if (mode == src_mode)
2413 poly_uint64 byte = subreg_lowpart_offset (mode, src_mode);
2414 rtx ret = simplify_subreg (mode, src, src_mode, byte);
2419 || !validate_subreg (mode, src_mode, src, byte))
2426 if (GET_MODE_CLASS (mode) == MODE_CC || GET_MODE_CLASS (src_mode) == MODE_CC)
2429 if (known_eq (GET_MODE_BITSIZE (mode), GET_MODE_BITSIZE (src_mode))
2430 && targetm.modes_tieable_p (mode, src_mode))
2437 if (!int_mode_for_mode (src_mode).exists (&src_int_mode)
2441 if (!targetm.modes_tieable_p (src_int_mode, src_mode))