Searched refs:xbitpos (Results 1 – 3 of 3) sorted by relevance
/dragonfly/contrib/gcc-4.7/gcc/ |
H A D | expmed.c | 652 int xbitpos = bitpos; in store_bit_field_1() local 690 xbitpos += GET_MODE_BITSIZE (op_mode) - unit; in store_bit_field_1() 700 xbitpos = unit - bitsize - xbitpos; in store_bit_field_1() 739 create_integer_operand (&ops[2], xbitpos); in store_bit_field_1() 784 unsigned HOST_WIDE_INT xoffset, xbitpos; in store_bit_field_1() local 793 xbitpos = bitnum % unit; in store_bit_field_1() 1575 xbitpos += GET_MODE_BITSIZE (ext_mode) - unit; in extract_bit_field_1() 1585 xbitpos = unit - bitsize - xbitpos; in extract_bit_field_1() 1611 create_integer_operand (&ops[3], xbitpos); in extract_bit_field_1() 1650 unsigned HOST_WIDE_INT xoffset, xbitpos; in extract_bit_field_1() local [all …]
|
H A D | expr.c | 2152 for (bitpos = 0, xbitpos = padding_correction; in copy_blkmode_from_reg() 2154 bitpos += bitsize, xbitpos += bitsize) in copy_blkmode_from_reg() 2159 if (xbitpos % BITS_PER_WORD == 0 in copy_blkmode_from_reg() 2160 || xbitpos == padding_correction) in copy_blkmode_from_reg() 2161 src = operand_subword_force (srcreg, xbitpos / BITS_PER_WORD, in copy_blkmode_from_reg() 2173 xbitpos % BITS_PER_WORD, 1, false, in copy_blkmode_from_reg() 2224 for (bitpos = 0, xbitpos = padding_correction; in copy_blkmode_to_reg() 2226 bitpos += bitsize, xbitpos += bitsize) in copy_blkmode_to_reg() 2231 if (xbitpos % BITS_PER_WORD == 0 in copy_blkmode_to_reg() 2232 || xbitpos == padding_correction) in copy_blkmode_to_reg() [all …]
|
/dragonfly/contrib/gcc-8.0/gcc/ |
H A D | expr.c | 2648 unsigned HOST_WIDE_INT bitpos, xbitpos, padding_correction = 0; in copy_blkmode_from_reg() local 2722 for (bitpos = 0, xbitpos = padding_correction; in copy_blkmode_from_reg() 2724 bitpos += bitsize, xbitpos += bitsize) in copy_blkmode_from_reg() 2729 if (xbitpos % BITS_PER_WORD == 0 || xbitpos == padding_correction) in copy_blkmode_from_reg() 2743 xbitpos % BITS_PER_WORD, 1, in copy_blkmode_from_reg() 2796 for (bitpos = 0, xbitpos = padding_correction; in copy_blkmode_to_reg() 2798 bitpos += bitsize, xbitpos += bitsize) in copy_blkmode_to_reg() 2803 if (xbitpos % BITS_PER_WORD == 0 in copy_blkmode_to_reg() 2804 || xbitpos == padding_correction) in copy_blkmode_to_reg() 2808 dst_words[xbitpos / BITS_PER_WORD] = dst_word; in copy_blkmode_to_reg() [all …]
|