Home | History | Annotate | Download | only in gcc

Lines Matching defs:srcreg

2898 /* Copy a BLKmode object of TYPE out of a register SRCREG into TARGET.
2903 copy_blkmode_from_reg (rtx target, rtx srcreg, tree type)
2910 fixed_size_mode mode = as_a <fixed_size_mode> (GET_MODE (srcreg));
2918 SRCREG is padded on the left or on the right. If it's on the left,
2939 emit_move_insn (adjust_address (target, mode, 0), srcreg);
2948 emit_move_insn (target, srcreg);
2952 /* This code assumes srcreg is at least a full word. If it isn't, copy it
2956 srcreg = convert_to_mode (word_mode, srcreg, TYPE_UNSIGNED (type));
2990 src = operand_subword_force (srcreg, xbitpos / BITS_PER_WORD, mode);