Lines Matching defs:MaxDisp
142 unsigned MaxDisp;
148 : MI(Mi), CPEMI(Cpemi), MaxDisp(Maxdisp), NegOk(Neg) {
153 unsigned getMaxDisp() const { return MaxDisp - 16; }
155 void setMaxDisp(unsigned Val) { MaxDisp = Val; }
187 unsigned MaxDisp : 31;
192 : MI(Mi), MaxDisp(Maxdisp), IsCond(Cond), UncondBr(Ubr) {}
713 /// reference) is within MaxDisp of TrialOffset (a proposed location of a
717 unsigned MaxDisp, bool NegativeOK) {
720 if (TrialOffset - UserOffset <= MaxDisp)
723 if (UserOffset - TrialOffset <= MaxDisp)
776 unsigned MaxDisp, bool NegOk,
785 << " max delta=" << MaxDisp
794 return isOffsetInRange(UserOffset, CPEOffset, MaxDisp, NegOk);
996 unsigned MaxDisp = getUnconditionalBrDisp(UncondBr);
998 ImmBranch(&UserMBB->back(), MaxDisp, false, UncondBr));
1213 unsigned MaxDisp) {
1219 << " max delta=" << MaxDisp << " from " << getOffsetOf(MI)
1225 if (DestOffset - BrOffset <= MaxDisp)
1228 if (BrOffset - DestOffset <= MaxDisp)
1241 if (isBBInRange(MI, DestBB, Br.MaxDisp))
1261 Br.MaxDisp = ((1 << (26 - 1)) - 1) * 2;
1311 if (isBBInRange(MI, NewDest, Br.MaxDisp)) {
1355 unsigned MaxDisp = getUnconditionalBrDisp(Br.UncondBr);
1356 ImmBranches.push_back(ImmBranch(&MBB->back(), MaxDisp, false, Br.UncondBr));