reference, declarationdefinition
definition → references, declarations, derived classes, virtual overrides
reference to multiple definitions → definitions
unreferenced

References

lib/Analysis/DependenceAnalysis.cpp
 1547   if (TMUL.sgt(0)) {
 1548     TL = maxAPInt(TL, ceilingOfQuotient(-X, TMUL));
 1551       TU = minAPInt(TU, floorOfQuotient(UM - X, TMUL));
 1556     TU = minAPInt(TU, floorOfQuotient(-X, TMUL));
 1559       TL = maxAPInt(TL, ceilingOfQuotient(UM - X, TMUL));
 1565   TMUL = AM.sdiv(G);
 1566   if (TMUL.sgt(0)) {
 1567     TL = maxAPInt(TL, ceilingOfQuotient(-Y, TMUL));
 1570       TU = minAPInt(TU, floorOfQuotient(UM - Y, TMUL));
 1575     TU = minAPInt(TU, floorOfQuotient(-Y, TMUL));
 1578       TL = maxAPInt(TL, ceilingOfQuotient(UM - Y, TMUL));
 1595   TMUL = AM - BM;
 1596   if (TMUL.sgt(0)) {
 1597     TL = maxAPInt(TL, ceilingOfQuotient(X - Y + 1, TMUL));
 1601     TU = minAPInt(TU, floorOfQuotient(X - Y + 1, TMUL));
 1613   if (TMUL.sgt(0)) {
 1614     TL = maxAPInt(TL, ceilingOfQuotient(X - Y, TMUL));
 1618     TU = minAPInt(TU, floorOfQuotient(X - Y, TMUL));
 1621   TMUL = BM - AM;
 1622   if (TMUL.sgt(0)) {
 1623     TL = maxAPInt(TL, ceilingOfQuotient(Y - X, TMUL));
 1627     TU = minAPInt(TU, floorOfQuotient(Y - X, TMUL));
 1639   if (TMUL.sgt(0)) {
 1640     TL = maxAPInt(TL, ceilingOfQuotient(Y - X + 1, TMUL));
 1644     TU = minAPInt(TU, floorOfQuotient(Y - X + 1, TMUL));