Home | History | Annotate | Download | only in SelectionDAG

Lines Matching defs:Y1

7761     //   x1 * offset1 + y1 * ptr0 = t1 (the indexed load/store)
7763 // where x0, x1, y0 and y1 in {-1, 1} are given by the types of the
7767 // t0 = (x0 * offset0 - x1 * y0 * y1 *offset1) + (y0 * y1) * t1
7771 int X0, X1, Y0, Y1;
7778 Y1 = (AM == ISD::PRE_DEC && Swapped) ? -1 : 1;
7780 unsigned Opcode = (Y0 * Y1 < 0) ? ISD::SUB : ISD::ADD;
7784 if (X1 * Y0 * Y1 < 0) CNV = CNV + Offset1;