Lines Matching defs:MaxDisp
141 unsigned MaxDisp;
147 : MI(Mi), CPEMI(Cpemi), MaxDisp(Maxdisp), NegOk(Neg) {
152 unsigned getMaxDisp() const { return MaxDisp - 16; }
154 void setMaxDisp(unsigned Val) { MaxDisp = Val; }
186 unsigned MaxDisp : 31;
191 : MI(Mi), MaxDisp(Maxdisp), IsCond(Cond), UncondBr(Ubr) {}
707 /// reference) is within MaxDisp of TrialOffset (a proposed location of a
711 unsigned MaxDisp, bool NegativeOK) {
714 if (TrialOffset - UserOffset <= MaxDisp)
717 if (UserOffset - TrialOffset <= MaxDisp)
770 unsigned MaxDisp, bool NegOk,
779 << " max delta=" << MaxDisp
788 return isOffsetInRange(UserOffset, CPEOffset, MaxDisp, NegOk);
990 unsigned MaxDisp = getUnconditionalBrDisp(UncondBr);
992 ImmBranch(&UserMBB->back(), MaxDisp, false, UncondBr));
1207 unsigned MaxDisp) {
1213 << " max delta=" << MaxDisp << " from " << getOffsetOf(MI)
1219 if (DestOffset - BrOffset <= MaxDisp)
1222 if (BrOffset - DestOffset <= MaxDisp)
1235 if (isBBInRange(MI, DestBB, Br.MaxDisp))
1255 Br.MaxDisp = ((1 << (26 - 1)) - 1) * 2;
1305 if (isBBInRange(MI, NewDest, Br.MaxDisp)) {
1349 unsigned MaxDisp = getUnconditionalBrDisp(Br.UncondBr);
1350 ImmBranches.push_back(ImmBranch(&MBB->back(), MaxDisp, false, Br.UncondBr));