Searched refs:bytepos (Results 1 – 4 of 4) sorted by relevance
/openbsd/gnu/gcc/gcc/ |
H A D | expr.c | 1664 bytelen = ssize - bytepos; in emit_group_load_1() 1705 if ((bytepos == 0 && bytelen == slen0) in emit_group_load_1() 1706 || (bytepos != 0 && bytepos + bytelen <= slen)) in emit_group_load_1() 1712 tmps[i] = XEXP (src, bytepos / slen0); in emit_group_load_1() 1716 (bytepos % slen0) * BITS_PER_UNIT, in emit_group_load_1() 1723 gcc_assert (!bytepos); in emit_group_load_1() 1751 bytepos * BITS_PER_UNIT, 1, NULL_RTX, in emit_group_load_1() 1932 HOST_WIDE_INT bytepos; in emit_group_store() local 1946 bytepos = subreg_lowpart_offset (inner, outer); in emit_group_store() 1965 bytepos = subreg_lowpart_offset (inner, outer); in emit_group_store() [all …]
|
H A D | dwarf2out.c | 9232 HOST_WIDE_INT bitsize, bitpos, bytepos; in loc_descriptor_from_tree_1() local 9255 bytepos = bitpos / BITS_PER_UNIT; in loc_descriptor_from_tree_1() 9256 if (bytepos > 0) in loc_descriptor_from_tree_1() 9257 add_loc_descr (&ret, new_loc_descr (DW_OP_plus_uconst, bytepos, 0)); in loc_descriptor_from_tree_1() 9258 else if (bytepos < 0) in loc_descriptor_from_tree_1() 9260 add_loc_descr (&ret, int_loc_descriptor (bytepos)); in loc_descriptor_from_tree_1()
|
/openbsd/gnu/usr.bin/gcc/gcc/ |
H A D | expr.c | 2332 shift = (bytelen - (ssize - bytepos)) * BITS_PER_UNIT; 2333 bytelen = ssize - bytepos; 2369 if ((bytepos == 0 && bytelen == slen0) 2370 || (bytepos != 0 && bytepos + bytelen <= slen)) 2376 tmps[i] = XEXP (src, bytepos / slen0); 2380 (bytepos % slen0) * BITS_PER_UNIT, 2383 else if (bytepos == 0) 2397 bytepos * BITS_PER_UNIT, 1, NULL_RTX, 2511 bytelen = ssize - bytepos; 2520 bytepos -= GET_MODE_SIZE (GET_MODE (XEXP (dst, 0))); [all …]
|
H A D | dwarf2out.c | 8538 HOST_WIDE_INT bitsize, bitpos, bytepos; local 8563 bytepos = bitpos / BITS_PER_UNIT; 8564 if (bytepos > 0) 8565 add_loc_descr (&ret, new_loc_descr (DW_OP_plus_uconst, bytepos, 0)); 8566 else if (bytepos < 0) 8568 add_loc_descr (&ret, int_loc_descriptor (bytepos));
|