Home | History | Annotate | Download | only in pa

Lines Matching defs:newoffset

1139       HOST_WIDE_INT newoffset;
1149 newoffset = (offset & ~ mask) + mask + 1;
1151 newoffset = (offset & ~ mask);
1153 /* If the newoffset will not fit in 14 bits (ldo), then
1155 the SYMBOL_REF + 1 or 2 to load the newoffset + 1 to
1159 if (! VAL_14_BITS_P (newoffset)
1162 rtx const_part = plus_constant (Pmode, XEXP (x, 0), newoffset);
1173 if (! VAL_14_BITS_P (newoffset))
1174 int_part = force_reg (Pmode, GEN_INT (newoffset));
1176 int_part = GEN_INT (newoffset);
1183 return plus_constant (Pmode, ptr_reg, offset - newoffset);
10963 long offset, newoffset, mask;
10984 newoffset = (offset & ~mask) + mask + 1;
10986 newoffset = offset & ~mask;
10992 newoffset &= ~(GET_MODE_SIZE (mode) - 1);
10994 if (newoffset != 0 && VAL_14_BITS_P (newoffset))
10997 GEN_INT (newoffset));
10998 ad = gen_rtx_PLUS (Pmode, temp, GEN_INT (offset - newoffset));