Home | History | Annotate | Download | only in Analysis

Lines Matching refs:BM

1272 // Computes the GCD of AM and BM.
1276 bool findGCD(unsigned Bits, APInt AM, APInt BM, APInt Delta,
1281 APInt G1 = BM.abs();
1294 Y = BM.slt(0) ? B1 : -B1;
1374 DEBUG(dbgs() << "\t DstCoeff = " << *DstCoeff << " = BM\n");
1394 APInt BM = ConstDstCoeff->getValue()->getValue();
1396 if (findGCD(Bits, AM, BM, ConstDelta->getValue()->getValue(), G, X, Y)) {
1419 // test(BM/G, LM-X) and test(-BM/G, X-UM)
1420 APInt TMUL = BM.sdiv(G);
1469 TMUL = AM - BM;
1495 TMUL = BM - AM;
1782 DEBUG(dbgs() << "\t DstCoeff = " << *DstCoeff << " = BM\n");
1798 APInt BM = ConstDstCoeff->getValue()->getValue();
1800 if (findGCD(Bits, AM, BM, ConstDelta->getValue()->getValue(), G, X, Y)) {
1832 // test(BM/G, LM-X) and test(-BM/G, X-UM)
1833 APInt TMUL = BM.sdiv(G);