Home | History | Annotate | Download | only in SelectionDAG

Lines Matching refs:Offset1

7761     //   x1 * offset1 + y1 * ptr0 = t1 (the indexed load/store)
7767 // t0 = (x0 * offset0 - x1 * y0 * y1 *offset1) + (y0 * y1) * t1
7773 APInt Offset1 = cast<ConstantSDNode>(Offset)->getAPIntValue();
7784 if (X1 * Y0 * Y1 < 0) CNV = CNV + Offset1;
7785 else CNV = CNV - Offset1;
11499 int64_t Offset1, Offset2;
11503 Base1, Offset1, GV1, CV1);
11509 return !((Offset1 + (Op0->getMemoryVT().getSizeInBits() >> 3)) <= Offset2 ||
11510 (Offset2 + (Op1->getMemoryVT().getSizeInBits() >> 3)) <= Offset1);
11518 Offset1 += MFI->getObjectOffset(cast<FrameIndexSDNode>(Base1)->getIndex());
11520 return !((Offset1 + (Op0->getMemoryVT().getSizeInBits() >> 3)) <= Offset2 ||
11521 (Offset2 + (Op1->getMemoryVT().getSizeInBits() >> 3)) <= Offset1);