Home | History | Annotate | Download | only in Analysis

Lines Matching defs:BM

1277 // Computes the GCD of AM and BM.
1281 bool findGCD(unsigned Bits, APInt AM, APInt BM, APInt Delta,
1286 APInt G1 = BM.abs();
1299 Y = BM.slt(0) ? B1 : -B1;
1379 DEBUG(dbgs() << "\t DstCoeff = " << *DstCoeff << " = BM\n");
1399 APInt BM = ConstDstCoeff->getValue()->getValue();
1401 if (findGCD(Bits, AM, BM, ConstDelta->getValue()->getValue(), G, X, Y)) {
1424 // test(BM/G, LM-X) and test(-BM/G, X-UM)
1425 APInt TMUL = BM.sdiv(G);
1474 TMUL = AM - BM;
1500 TMUL = BM - AM;
1787 DEBUG(dbgs() << "\t DstCoeff = " << *DstCoeff << " = BM\n");
1803 APInt BM = ConstDstCoeff->getValue()->getValue();
1805 if (findGCD(Bits, AM, BM, ConstDelta->getValue()->getValue(), G, X, Y)) {
1837 // test(BM/G, LM-X) and test(-BM/G, X-UM)
1838 APInt TMUL = BM.sdiv(G);